Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.81 KB | None | 0 0
  1. @removelist 'houserunebook'
  2. @removelist 'craftrunebook'
  3. @removelist 'resourcebox'
  4. @removelist 'storagebox'
  5. @removelist 'emptykegbox'
  6. @removelist 'keg'
  7. if not listexists 'houserunebook'
  8. createlist 'houserunebook'
  9. promptalias 'Target House Runebook'
  10. pushlist 'houserunebook' 'Target House Runebook'
  11. endif
  12. if not listexists 'craftrunebook'
  13. createlist 'craftrunebook'
  14. promptalias 'Target craft location runebook'
  15. pushlist 'craftrunebook' 'Target craft location runebook'
  16. endif
  17. if not listexists 'resourcebox'
  18. createlist 'resourcebox'
  19. promptalias 'Target resourcebox'
  20. pushlist 'resourcebox' 'Target resourcebox'
  21. endif
  22. if not listexists 'storagebox'
  23. createlist 'storagebox'
  24. promptalias 'Target storagebox'
  25. pushlist 'storagebox' 'Target storagebox'
  26. endif
  27. if not listexists 'emptykegbox'
  28. createlist 'emptykegbox'
  29. promptalias 'Target empty keg box'
  30. pushlist 'emptykegbox' 'Target empty keg box'
  31. endif
  32. if not listexists 'keg'
  33. createlist 'keg'
  34. endif
  35. for 0 to 50
  36. //grab resources
  37. useobject resourcebox[0]
  38. pause 250
  39. @findtype '0x1940' 'any' emptykegbox[0]
  40. moveitem 'found' 'backpack'
  41. pause 100
  42. ////////////////////////////////////////
  43. @findtype '0x1940' 'any' 'backpack'
  44. pushlist 'keg' 'found'
  45. @findtype '0xf0d' 'any' 'backpack'//explo pot
  46. moveitem 'found' 'keg'
  47. poplist 'keg' 'front'
  48. ////////////////////////////////////////
  49. @findtype '0xf8c' 'any' resourcebox[0]
  50. moveitem 'found' 'backpack' 0 0 0 1000 2
  51. pause 100
  52. //grabs 5 of each recall reg
  53. @findtype '0xf7b' 'any' resourcebox[0]
  54. moveitem 'found' 'backpack' 0 0 0 5 2
  55. pause 100
  56. @findtype '0xf86' 'any' resourcebox[0]
  57. moveitem 'found' 'backpack' 0 0 0 5 2
  58. pause 100
  59. @findtype '0xf7a' 'any' resourcebox[0]
  60. moveitem 'found' 'backpack' 0 0 0 5 2
  61. pause 100
  62. //Recalls to location for crafting
  63. cast 'Recall'
  64. target! craftrunebook[0]
  65. pause 2000
  66. //explo pots
  67. while counter 'emptybottle' >= 1
  68. @findtype '0xe9b' 'any' 'backpack'//find tool
  69. useobject 'found'
  70. replygump 0x38920abd 50
  71. waitforgump 0x38920abd 15000
  72. replygump 0x38920abd 16
  73. waitforgump 0x38920abd 15000
  74. pause 250
  75. endwhile
  76. //recall home
  77. cast 'Recall'
  78. target! houserunebook[0]
  79. pause 2000
  80. useobject storagebox[0]
  81. pause 100
  82. useobject resourcebox[0]
  83. pause 100
  84. @findtype '0x1940' 'any' 'backpack'
  85. moveitem 'found' storagebox[0]
  86. @findtype '0xfab' 'any' resourcebox[0]
  87. useobject 'found'
  88. @findtype '0x1940' 'any' storagebox[0]
  89. target! 'found'
  90. //put extra regs back in the resource pack
  91. @findtype '0xf8c' 'any' 'backpack'
  92. moveitem 'found' resourcebox[0]
  93. pause 100
  94. //drops recall regs into resource pack
  95. @findtype '0xf7b' 'any' 'backpack'
  96. moveitem 'found' resourcebox[0] 0 0 0 5 2
  97. pause 100
  98. @findtype '0xf86' 'any' 'backpack'
  99. moveitem 'found' resourcebox[0] 0 0 0 5 2
  100. pause 100
  101. @findtype '0xf7a' 'any' 'backpack'
  102. moveitem 'found' resourcebox[0] 0 0 0 5 2
  103. endfor
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement