Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. mark start
  2.  
  3. if hpbelow 100
  4. use new age healing crystal
  5. endif
  6.  
  7. mark punch
  8.  
  9. if (match "solid gold" && match "ticking" && (match "phase-shifting" || match "annoying")) && hasskill shattering punch
  10. skill shattering punch
  11. goto punch
  12. endif
  13.  
  14. if (match "solid gold" && match "ticking" && (match "phase-shifting" || match "annoying")) && !hasskill shattering punch
  15. call runaway
  16. endif
  17.  
  18.  
  19. #####################################################
  20.  
  21. sub runaway
  22.  
  23. mark flee
  24.  
  25. if hascombatitem glob of Blank-Out
  26. use glob of Blank-Out
  27. goto flee
  28. endif
  29.  
  30. mark tatter
  31.  
  32. if hascombatitem scrap of tattered paper
  33. use scrap of tattered paper
  34. goto tatter
  35. endif
  36.  
  37. end sub
  38.  
  39. #####################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement