Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. if @inrange 'enemy' 5 and not dead 'enemy'
  2. if not flying 'enemy' or not mounted 'enemy'
  3. if not listexists 'mounts'
  4. createlist 'mounts'
  5. //Ostards
  6. pushlist 'mounts' 0xdb
  7. //Horses
  8. pushlist 'mounts' 0xe2
  9. pushlist 'mounts' 0xcc
  10. pushlist 'mounts' 0xe4
  11. //Firesteeds
  12. pushlist 'mounts' 0xbe
  13. //Warhorses
  14. //Beetles
  15. pushlist 'mounts' 0xa9
  16. //Nightmares
  17. pushlist 'mounts' 0xdc
  18. pushlist 'mounts' 0xb2
  19. pushlist 'mounts' 0xb3
  20. endif
  21. cast 'Create Food'
  22. equipitem 0x4046a0d5 1
  23. for 0 to 'mounts'
  24. while @findtype mounts[] 'any' ground 0 1
  25. autotargetobject 'found'
  26. if not poisoned 'found'
  27. pause 700
  28. setability 'primary' 'on'
  29. attack 'found'
  30. pause 200
  31. if poisoned 'found'
  32. @warmode 'off'
  33. @clearusequeue
  34. @cancelautotarget
  35. endif
  36. endwhile
  37. endfor
  38. endif
  39. endif
  40. endif
  41. @clearusequeue
  42. @cancelautotarget
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement