View Single Post
10-19-12, 12:13 AM   #11
Phanx
Cat.
 
Phanx's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2006
Posts: 5,617
It only checks messages against the messages in the MESSAGES table. If your messages contain any "magic" characters (such as brackets, parentheses, etc), you could try changing this:

Code:
if strmatch(message, mystring) then
to this:

Code:
if message == mystring then
If it's still not working, please post your actual table of messages, and give an example of a message you think should reset the timer but doesn't.
__________________
Retired author of too many addons.
Message me if you're interested in taking over one of my addons.
Don’t message me about addon bugs or programming questions.
  Reply With Quote