Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. if (self.attacked.type == MP_DRAIN) then -- 00 02
  2. return
  3. end
  4. if (var1 >= 3 and self.attacked.type == MELEE) then -- 00 00
  5. var1 = 0
  6. self.cast(COLD_DUST)
  7. return
  8. end
  9. if (not self.status.haste and var2 >= 3 and self.attacked.type == MELEE) then -- 00 00
  10. var2 = 0
  11. self.target(self)
  12. self.cast(HASTE,HASTE,nil)
  13. return
  14. end
  15. if (var2 >= 3 and self.attacked.type == MELEE) then -- 00 00
  16. var2 = 0
  17. self.cast(CONDEMN)
  18. return
  19. end
  20. if (self.attacked.type == NON_MELEE) then -- 00 01
  21. var1 = var1 + 1
  22. return
  23. end
  24. if (self.attacked.type == MELEE) then -- 00 00
  25. self.cast(SPECIAL,nil,nil)
  26. var2 = var2 + 1
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement