Advertisement
Cappelle

Slayer Organize

Nov 17th, 2017
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.99 KB | None | 0 0
  1. // Set the containers to move the slayers into. Change/add more object ids
  2. // to match your containers.
  3. @setalias 'arachnid_bag' 0x416afac3
  4. @setalias 'dragon_bag' 0x416afac10
  5. @setalias 'elemental_bag' 0x416afac0
  6. @setalias 'exorcism_bag' 0x416afac2
  7. @setalias 'fey_bag' 0x416afac5
  8. @setalias 'Orc_bag' 0x416afac6
  9. @setalias 'reptillian_death_bag' 0x416afac1
  10. @setalias 'Repond_bag' 0x416afac7
  11. @setalias 'silver_bag' 0x416afac4
  12. @setalias 'Tera_bag' 0x416afac9
  13. @setalias 'Junk_bag' 0x416afac11
  14. // Set the container holding all your UNORGANIZED slayers.
  15. headmsg 'Select slayer bag'
  16. promptalias 'slayer_bag'
  17. headmsg 'Select Arachnid Bag'
  18. promptalias 'arachnid_bag'
  19. headmsg 'Select dragon bag'
  20. promptalias 'dragon_bag'
  21. headmsg 'Select Elemental Bag'
  22. promptalias 'elemental_bag'
  23. headmsg 'Select Exorcism Bag'
  24. promptalias 'exorcism_bag'
  25. headmsg 'Select Fey Bag'
  26. promptalias 'fey_bag'
  27. headmsg 'Select orc bag'
  28. promptalias 'orc_bag'
  29. headmsg 'Select Repond bag'
  30. promptalias 'Repond_bag'
  31. headmsg 'Select Reptillian Bag'
  32. promptalias 'reptillian_death_bag'
  33. headmsg 'Select Silver Bag'
  34. promptalias 'silver_bag'
  35. headmsg 'Select Tera bag'
  36. promptalias 'tera_bag'
  37. headmsg 'Select Junk bag'
  38. promptalias 'Junk_bag'
  39. // Open slayer_bag
  40. useobject 'slayer_bag'
  41. pause 200
  42. // Find a slayer_bag. Change weapon type to match your needs.
  43. while @findtype 0xf52 'any' 'slayer_bag'
  44. useskill 'item identification'
  45. pause 200
  46. waitfortarget 1500
  47. target 'found'
  48. pause 300
  49. @clearjournal
  50. // Move slayers into appropriate containers. Add additional elseif
  51. // statements for additional slayers
  52. if @injournal 'Silver' 'system'
  53. moveitem 'found' 'silver_bag'
  54. @clearjournal
  55. elseif @injournal 'Exorcism' 'system'
  56. moveitem 'found' 'exorcism_bag'
  57. @clearjournal
  58. elseif @injournal 'daemon' 'system'
  59. moveitem 'found' 'junk_bag'
  60. @clearjournal
  61. elseif @injournal 'gargoyles' 'system'
  62. moveitem 'found' 'junk_bag'
  63. @clearjournal
  64. elseif @injournal 'balron damnation' 'system'
  65. moveitem 'found' 'junk_bag'
  66. @clearjournal
  67. elseif @injournal 'elemental ban' 'system'
  68. moveitem 'found' 'elemental_bag'
  69. @clearjournal
  70. elseif @injournal 'Blood' 'system'
  71. moveitem 'found' 'junk_bag'
  72. @clearjournal
  73. elseif @injournal 'earth' 'system'
  74. moveitem 'found' 'junk_bag'
  75. @clearjournal
  76. elseif @injournal 'elemental health' 'system'
  77. moveitem 'found' 'junk_bag'
  78. @clearjournal
  79. elseif @injournal 'flame dousing' 'system'
  80. moveitem 'found' 'junk_bag'
  81. @clearjournal
  82. elseif @injournal 'summer wind' 'system'
  83. moveitem 'found' 'junk_bag'
  84. @clearjournal
  85. elseif @injournal 'vacuum' 'system'
  86. moveitem 'found' 'junk_bag'
  87. @clearjournal
  88. elseif @injournal 'water' 'system'
  89. moveitem 'found' 'junk_bag'
  90. @clearjournal
  91. elseif @injournal 'fey' 'system'
  92. moveitem 'found' 'fey_bag'
  93. @clearjournal
  94. elseif @injournal 'reptillian' 'system'
  95. moveitem 'found' 'reptillian_bag'
  96. @clearjournal
  97. elseif @injournal 'dragon' 'system'
  98. moveitem 'found' 'dragon_bag'
  99. @clearjournal
  100. elseif @injournal 'lizardman' 'system'
  101. moveitem 'found' 'junk_bag'
  102. @clearjournal
  103. elseif @injournal 'ophidian' 'system'
  104. moveitem 'found' 'junk_bag'
  105. @clearjournal
  106. elseif @injournal 'Snakes' 'system'
  107. moveitem 'found' 'junk_bag'
  108. @clearjournal
  109. elseif @injournal 'arachnid' 'system'
  110. moveitem 'found' 'arachnid_bag'
  111. @clearjournal
  112. elseif @injournal 'scorpions' 'system'
  113. moveitem 'found' 'junk_bag'
  114. @clearjournal
  115. elseif @injournal 'spiders' 'system'
  116. moveitem 'found' 'junk_bag'
  117. @clearjournal
  118. elseif @injournal 'terathan' 'system'
  119. moveitem 'found' 'Tera_bag'
  120. @clearjournal
  121. elseif @injournal 'Orc slaying' 'system'
  122. moveitem 'found' 'orc_bag'
  123. @clearjournal
  124. elseif @injournal 'repond' 'system'
  125. moveitem 'found' 'repond_bag'
  126. @clearjournal
  127. pause 800
  128. endif
  129. @unsetalias 'found'
  130. endwhile
  131. headmsg 'Slayer Bag is empty'
  132. headmsg 'Slayer Bag is empty'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement