matsamilla

Magery Skill

Oct 17th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. //This checks health to make sure you don't die
  2. while not dead
  3. if mana < 45
  4. useskill 'meditation'
  5. while not mana == maxmana
  6. endwhile
  7. endif
  8. while hits < 50
  9. endwhile
  10. //Set Goal
  11. if skill 'Magery' == 100
  12. stop
  13. endif
  14. if skill 'Magery' >= 30 and skill 'Magery' < 50
  15. cast 'Bless' 'self'
  16. endif
  17. if skill 'Magery' >= 50 and skill 'Magery' < 62.9
  18. cast 'Lightning' 'self'
  19. endif
  20. if skill 'Magery' >= 62.9 and skill 'Magery' < 82.9
  21. cast 'Energy Bolt' 'self'
  22. endif
  23. if skill 'Magery' >= 82.9 and skill 'Magery' < 100
  24. cast 'Flame Strike'
  25. endif
  26. pause '2700'
  27. endwhile
Advertisement
Add Comment
Please, Sign In to add comment