Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. if not timerexists 'bandage1'
  2. createtimer 'bandage1'
  3. endif
  4. if diffhits > 20
  5. if timer 'bandage1' > 15000
  6. bandageself
  7. waitfortarget 1500
  8. target! 'self'
  9. settimer 'bandage1' 0
  10. endif
  11. endif
  12. if not listexists 'tokill'
  13. createlist 'tokill'
  14. pushlist 'tokill' 0x1f //Headelss
  15. pushlist 'tokill' 0x3 //Zombie
  16. pushlist 'tokill' 0x38 //skeleton
  17. pushlist 'tokill' 0xd7 //a giant rat
  18. pushlist 'tokill' 0x1e //harpy
  19. pushlist 'tokill' 0x27
  20. pushlist 'tokill' 0x1a
  21. pushlist 'tokill' 0x8
  22. pushlist 'tokill' 0x51
  23. pushlist 'tokill' 0x29
  24. endif
  25. if not @inrange 'tobekilled' 6
  26. @unsetalias 'tobekilled'
  27. for 0 in 'tokill'
  28. if @findtype tokill[] 'any' 'ground' 1 6
  29. if innocent 'found'
  30. @ignoreobject 'found'
  31. else
  32. @setalias 'tobekilled' 'found'
  33. attack 'tobekilled'
  34. endif
  35. endif
  36. endfor
  37. endif
  38. pause 500
  39. replay
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement