Advertisement
Cappelle

Magery/resist Training

Mar 18th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. ////////////////////////////////////
  2. // This macro is designed for //
  3. // training both magery and //
  4. // resist from 30. It is intended //
  5. // for characters with 40+ //
  6. // intelligence. //
  7. // //
  8. // Turn on loop and click play! //
  9. // //
  10. // ~~Made by kdivers~~ //
  11. ////////////////////////////////////
  12. if skill 'magery' < 100
  13. if mana <= 11
  14. clearjournal
  15. useskill 'meditation'
  16. while mana < maxmana
  17. endwhile
  18. else
  19. if skill 'magery' < 30
  20. headmsg 'Buy more skill!'
  21. stop
  22. elseif skill 'magery' < 45
  23. cast 'bless' 'self'
  24. pause 1000
  25. elseif skill 'magery' < 55
  26. cast 'mana drain' 'self'
  27. pause 1000
  28. elseif skill 'magery' < 75
  29. cast 'invisibility' 'self'
  30. pause 1000
  31. elseif skill 'magery' < 100
  32. cast 'mana vampire' 'self'
  33. pause 1000
  34. else
  35. headmsg 'Magery complete!'
  36. stop
  37. endif
  38. endif
  39. elseif skill 'resisting spells' < 100
  40. if mana <= 40
  41. clearjournal
  42. useskill 'meditation'
  43. while mana < maxmana
  44. endwhile
  45. else
  46. cast 'mana vampire' 'self'
  47. pause 1000
  48. endif
  49. else
  50. headmsg 'Magery and resisting spells complete!'
  51. stop
  52. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement