i'm working on a better regex cause all the ones posted won't work in senctences and /\bpokes?\b/i seems to work in sentences AND with the optional s.
But I also noticed that OnEvent_ChatWndReceiveMessage doesn't receives /me messages, don't know if this is a bug or something?
EDIT:
Learned regex, and now came with my own regex match
/\b(\*)?poke(d|s)?(\*)?\b/i
This will match any sentence with poke, poked, pokes and with a * on the beginning and/or ending, ex: *pokes or poked*
Due to a /me message limitation it won't respond when someone sends you "/me pokes you"
EDIT2: Removed attachment, see
my latest post