Guest User

Untitled

a guest
Jul 25th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1.  
  2. SpellB = "exori ico"
  3. SpellC = "exori gran ico"
  4.  
  5.  
  6. Module.New('Monk Attack', function(mod)
  7. if #Self.GetTargets(8) >= 1 then
  8.  
  9. if Self.GetSpellCooldown(SpellB) == 0 then
  10. Self.Say("Flurry of Punches")
  11. end
  12.  
  13. if Self.GetSpellCooldown(SpellC) == 0 and Self.GetSpellCooldown(SpellB) then
  14. Self.Say("Min Flurry of Punches")
  15. end
  16.  
  17. end
  18. end)
Add Comment
Please, Sign In to add comment