Advertisement
matsamilla

Vivify

Dec 28th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. //create timers
  2. if not timerexists 'Vivify'
  3. createtimer 'Vivify'
  4. settimer 'Vivify' 54000
  5. endif
  6. @clearjournal
  7. //meditate if mana low
  8. if mana < 10
  9. useskill 'meditation'
  10. while mana < 55
  11. pause 1000
  12. endwhile
  13. endif
  14. while timer 'Vivify' >= 54000
  15. clearjournal
  16. //meditate if < 50 mana
  17. if mana < 50
  18. useskill 'meditation'
  19. while mana < maxmana
  20. endwhile
  21. endif
  22. //use water elemental scrolls
  23. usetype 0x1f6c
  24. pause 3000
  25. //release the daemon if found
  26. msg 'A Water Elemental Release'
  27. //reset Vivify timer if it procs
  28. if @injournal 'Vivify: Activated.' 'system'
  29. settimer 'Vivify' 0
  30. @clearjournal
  31. endif
  32.  
  33. if not @findtype 0xf86 'any' 'backpack'
  34. break
  35. endif
  36. endwhile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement