Table true false heal thingy help!

Post Reply
ella
Posts: 33
Joined: Sun Feb 28, 2010 5:46 pm

Table true false heal thingy help!

Post by ella »

Alright, so I have a table that takes the members of my group and stores them, now I want a trigger that will fire when it sees someone slowed down, then I want it to check the table, if they are on it then I want it to untie slow from said person.

DevArrah
Posts: 51
Joined: Sat Oct 29, 2011 4:57 pm

Re: Table true false heal thingy help!

Post by DevArrah »

you'd want a regex trigger like
Code: [show] | [select all] lua
(\w) is slowed down
the have a script like
Code: [show] | [select all] lua
if table.contains(tblParyMembers,matches[2]) then
     send("untie slow "..matches[2])
end

Post Reply