View Single Post
07-10-12, 01:36 PM   #16
Wishko
A Murloc Raider
AddOn Author - Click to view addons
Join Date: Sep 2010
Posts: 7
Lua Code:
  1. msg = msg:lower()
  2. for keyword in pairs(mas) do
  3.     if msg:match(keyword) then
  4.         -- the message contains this keyword
  5.         break
  6.     end
  7. end
Oh, very-very big thanks! I used this and it works perfectly!
  Reply With Quote