Advertisement
hhaos

Untitled

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