Jethro commented on a Page, Send a dedication  -  Oct 16, 2009

You regex trigger can be simplified to:

on $*:text:/^([!@]dedi)/Si:#: {

since that'll catch dedi or dedicate. I don't see the need for grouping...
Then again, if you only want to match for (!@)dedi and (!@)dedicate exactly, you can do:

on $*:text:/^[!@](\w+)/Si:#: {
  if ($regml(1) == dedi) || ($regml(1) == dedicate) { ...
}

Or

on $*:text:/^[!@](\w+)/Si:#: {
  if ($istok(dedi dedicate,$regml(1),32)) { ...
 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.