Advertisement
Guest User

Fill an explo keg

a guest
Nov 28th, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1. promptalias 'Target House Runebook'
  2. promptalias 'Target craft location runebook'
  3. promptalias 'Target resourcebox'
  4. promptalias 'Target storagebox'
  5. for 0 to 50
  6. //grab resources
  7. useobject 'Target resourcebox'
  8. pause 250
  9. @findtype '0xf8c' 'any' 'Target resourcebox'
  10. moveitem 'found' 'backpack' 0 0 0 1000 2
  11. pause 100
  12. //grabs 5 of each recall reg
  13. @findtype '0xf7b' 'any' 'Target resourcebox'
  14. moveitem 'found' 'backpack' 0 0 0 5 2
  15. pause 100
  16. @findtype '0xf86' 'any' 'Target resourcebox'
  17. moveitem 'found' 'backpack' 0 0 0 5 2
  18. pause 100
  19. @findtype '0xf7a' 'any' 'Target resourcebox'
  20. moveitem 'found' 'backpack' 0 0 0 5 2
  21. pause 100
  22. //Recalls to location for crafting
  23. cast 'Recall'
  24. !target 'Target craft location runebook'
  25. pause 2000
  26. //explo pots
  27. while counter 'emptybottle' >= 1
  28. @findtype '0xe9b' 'any' 'backpack'
  29. useobject 'found'
  30. replygump 0x38920abd 50
  31. waitforgump 0x38920abd 15000
  32. replygump 0x38920abd 16
  33. waitforgump 0x38920abd 15000
  34. pause 250
  35. endwhile
  36. //recall home
  37. cast 'Recall'
  38. !target 'Target House Runebook'
  39. pause 2000
  40. useobject 'Target storagebox'
  41. pause 100
  42. useobject 'resourcebox'
  43. pause 100
  44. @findtype '0x1940' 'any' 'backpack'
  45. moveitem 'found' 'Target storagebox'
  46. @findtype '0xfab' 'any' 'Target resourcebox'
  47. useobject 'found'
  48. @findtype '0x1940' 'any' 'Target storagebox'
  49. !target 'found'
  50. //put extra regs back in the resource pack
  51. @findtype '0xf8c' 'any' 'backpack'
  52. moveitem 'found' 'Target resourcebox'
  53. pause 100
  54. //drops recall regs into resource pack
  55. @findtype '0xf7b' 'any' 'backpack'
  56. moveitem 'found' 'Target resourcebox' 0 0 0 5 2
  57. pause 100
  58. @findtype '0xf86' 'any' 'backpack'
  59. moveitem 'found' 'Target resourcebox' 0 0 0 5 2
  60. pause 100
  61. @findtype '0xf7a' 'any' 'backpack'
  62. moveitem 'found' 'Target resourcebox' 0 0 0 5 2
  63. endfor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement