Advertisement
ereinion

Aftercore macro

Oct 22nd, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.40 KB | None | 0 0
  1. icon bsword; scrollwhendone
  2. abort hppercentbelow 20; abort haseffect "majorly poisoned"
  3. abort pastround 28; abort mppercentbelow 1
  4.  
  5. if monstername "watertight seal"
  6. skill lunging thrust-smack
  7. repeat
  8. endif
  9. # PICKPOCKET
  10. if gotjump && !pastround 2
  11. #if accordionthief || discobandit
  12. if !snarfblat 266 && !snarfblat 265
  13. pickpocket
  14. endif
  15. #endif
  16. endif
  17.  
  18. # RAVESTEAL
  19. #skill pop and lock it
  20. #skill break it on down
  21. #skill run like the wind
  22.  
  23. # BANISH UNWANTED
  24. if hascombatitem complimentary Dinsey refreshments
  25. if snarfblat 442 && !monstername horrible tourist family
  26. use complimentary Dinsey refreshments
  27. endif
  28. endif
  29. if monstername bottle of cheap whiskey && haseffect Nanobrawny
  30. skill unleash nanites
  31. endif
  32. if hasskill Talk About Politics && monstername "simple hobo"
  33. # skill talk about politics
  34. endif
  35. if hasskill snokebomb && monstername "simple hobo"
  36. # skill snokebomb
  37. endif
  38.  
  39. # TELEGRAPH MISSIONS
  40. if monstername "caugr" || monstername "moomy" || monstername "pyrobove" || monstername "spidercow"
  41. if hascombatitem cow poker
  42. use cow poker
  43. endif
  44. endif
  45. if monstername "caugr" || monstername "coal snake" || monstername "diamondback rattler" || monstername "frontwinder" || monstername "grizzled bear" || monstername "mountain lion"
  46. if hascombatitem 8913
  47. use 8913
  48. endif
  49. endif
  50.  
  51. # STOMP
  52. if hasskill release the boots
  53. skill release the boots
  54. endif
  55. # EXTRACT JELLY
  56. if hasskill Extract Jelly
  57. skill Extract Jelly
  58. endif
  59.  
  60. # WEAKSAUCE
  61. skill curse of weaksauce
  62. if snarfblat 445 || monstername "flashy pirate" || snarfblat 456
  63. # skill curse of weaksauce
  64. endif
  65.  
  66. # PHYLUM-SPECIFIC STUFF
  67. if snarfblat 338
  68. use great wolf's lice
  69. endif
  70.  
  71. # "PRE"-COMBAT WEAKENING
  72. if hasskill pocket crumbs
  73. skill pocket crumbs
  74. endif
  75. if hasskill micrometeorite
  76. skill micrometeorite
  77. endif
  78. #use sea lasso
  79. if hascombatitem blue balls
  80. use rain-doh blue balls
  81. endif
  82. if hascombatitem time-spinner
  83. use time-spinner
  84. endif
  85. if hascombatitem indigo cup
  86. use rain-doh indigo cup
  87. endif
  88. if hasskill summon mayfly swarm
  89. skill summon mayfly swarm
  90. endif
  91. if happymediumglow red && hasskill Siphon Spirits
  92. skill Siphon Spirits
  93. endif
  94.  
  95. #ABSTRACTIONS
  96. if monstername "Perceiver of Sensations" && hascombatitem 8709
  97. use 8709
  98. endif
  99. if monstername "Performer of Actions" && hascombatitem 8710
  100. use 8710
  101. endif
  102. if monstername "Thinker of Thoughts" && hascombatitem 8708
  103. use 8708
  104. endif
  105.  
  106. # OLFACT
  107. if monstername sloppy seconds burger || monstername flashy pirate || monstername black widow || monstername nasty bear || monstername garbage tourist || monstername sea cow || monstername ancestral spookyraven portrait || monstername gingerbread murderer || monstername ice skate || monstername mer-kin miner || monstername school of many || monstername bark scorpion || monstername angry viking warrior || monstername grizzled survivor || monstername unhinged survivor || monstername whiny survivor || monstername spooky vampire || monstername smoke monster
  108. if !haseffect on the trail
  109. skill olfaction
  110. endif
  111. endif
  112.  
  113. # BOOMBOX
  114. if hasskill sing along
  115. skill sing along
  116. endif
  117.  
  118. # LOVE BUGS
  119. if hasskill summon love stinkbug
  120. # skill summon love stinkbug
  121. endif
  122. if hasskill summon love mosquito && hppercentbelow 95
  123. skill summon love mosquito
  124. endif
  125.  
  126. # STUN
  127. if hasskill summon love gnat
  128. # skill summon love gnat
  129. endif
  130. if hasskill shell up && turtletamer
  131. # skill shell up
  132. endif
  133.  
  134. if pastamancer
  135. # skill stuffed mortar shell
  136. endif
  137.  
  138. # SOURCE ESSENCE
  139. if hasskill 7273
  140. skill 7273
  141. endif
  142.  
  143. # SCIENCE
  144. if hasskill 7270 && hppercentbelow 80
  145. skill Fight with Medicine
  146. endif
  147. if hasskill 7272
  148. skill Fight with Internet Debate
  149. endif
  150. if hasskill hugs and kisses
  151. skill hugs and kisses
  152. endif
  153. # KILL
  154. if hasskill shatterpunch
  155. # skill shatterpunch
  156. endif
  157. while !hppercentbelow 10 && !pastround 26
  158. if monstername "ghost"
  159. skill saucegeyser
  160. endif
  161. if !monstername "ghost"
  162. if snarfblat 505 || snarfblat 506 || monstername "rubber bat"
  163. use destroy-o, destroy-o
  164. endif
  165. if !snarfblat 506 || snarfblat 505 && !monstername "rubber bat"
  166. if sauceror
  167. if !snarfblat 511
  168. skill saucegeyser
  169. endif
  170. if snarfblat 511
  171. attack
  172. endif
  173. endif
  174. if !sauceror
  175. attack
  176. endif
  177. endif
  178. endif
  179. endwhile
  180. skill saucegeyser
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement