Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. ;Arrow crafting - By Malus
  2.  
  3. set %arrow SLK
  4. set %feather VLK
  5. set %chest PHHYPOD
  6. set %x 60
  7. set %y 60
  8.  
  9. loop:
  10. finditem %arrow C_ , %chest
  11. if #findkind = -1
  12. {
  13. display ok You are out of shafts! $Script Halting
  14. halt
  15. }
  16.  
  17.  
  18. for #findindex 1 #FINDCNT
  19. {
  20. exevent Drag #FINDID
  21. wait 5
  22. exevent Dropc #backpackid
  23. wait 20
  24. }
  25.  
  26. finditem %arrow C_ , #backpackid
  27.  
  28. {
  29. set #LOBJECTID #FINDID
  30. repeat
  31. {
  32. event Macro 17 0
  33. wait 10
  34. finditem %feather C_ , #backpackid
  35. if #findkind = -1
  36. {
  37. display ok You are out of feathers! $Script Halting
  38. halt
  39. }
  40. set #ltargetid #findid
  41. event macro 22
  42. wait 20
  43. click %x %y
  44. click %x %y
  45. wait 50
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement