Hi all.
First of all, excellent script! I LOVE it
Since I didn't find much examples in this forum, I decided to leave here some of my
REGEX.
---------------------------------------------------
receive : [^!].*ok\?$|[^!].*cool\?$
[^!] = phrase doesn't begin with !
.* = 0 or more characters
ok/cool = word to be recognized
\? = character ?
$ = the previous character must be in the end of the phrase
| = OR, means it recognizes both expressions
for example, recognizes:
are you ok?
is it cool?
ok?
cool?
---------------------------------------------------
receive: ^!opsend (.+)$
^! = phrase starts with ! (note that ^ as double meaning depending on place)
(.+) = 1 or more characters
example: !opsend file.txt
answer: /sendfile C:\Users\UserName\Documents\msnsend\$1
$1 = corresponds to the (.+) word of the receive regex
(Don't forget to create the msnsend folder and place there the file you want to share through the !opsend command. Also, you must be online...)
------------------------------------------------------
Hope this helps some of you guys. Cya