Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ^Ethereal bonds flash forth to bind (\w+) as (\w+) gaze falls upon a nairat rune.$
- ^(\w+) gets tangled in a creeping vine, and goes sprawling.$
- --both of the above are regexes for a target proning in a group scenario on room enter
- if matches[2] == target and gmcp.Char.Status.class == "Dragon" then
- Send("queue addclear free bite "..target)
- else if matches[2] == target and gmcp.Char.Status.class == "Psion" then
- send("queue addclear weave overhand "..target)
- else if matches[2] == target and gmcp.Char.Status.class == "Monk" then
- send("queue addclear free bbt "..target)
- end
- --above is the script, change whatever you feel you need to
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement