Advertisement
Guest User

Untitled

a guest
Oct 24th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. auto(500)
  2.  
  3. local rune = "heavy magic missile rune"
  4.  
  5. local target = getattacking()
  6.  
  7. if target.id ~= 0 then
  8. local item = finditem(rune)
  9. if item.id ~= 0 then
  10. if target.ismonster and target.hppc > 0 and gethp() > 1500 then
  11. item:useoncreature(target.id, target.stackpos)
  12. end
  13. end
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement