Advertisement
Guest User

UOS Magery/Chivalry/Necromancy/Spiritspeak/Resists

a guest
Jan 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. while skill 'chivalry' < 100
  2. if mana 'self' < 20
  3. useskill 'meditation'
  4. while mana < maxmana
  5. endwhile
  6. else
  7. if skill 'Chivalry' < 30
  8. headmsg 'Buy more skill!'
  9. stop
  10. elseif skill 'Chivalry' < 45
  11. cast "Consecrate Weapon"
  12. pause 2100
  13. elseif skill 'Chivalry' < 60
  14. cast "Divine Fury"
  15. pause 2100
  16. elseif skill 'Chivalry' < 70
  17. cast "Enemy of One"
  18. pause 2100
  19. elseif skill 'Chivalry' < 90
  20. cast "Holy Light"
  21. pause 2100
  22. elseif skill 'Chivalry' < 100
  23. cast "Noble Sacrifice"
  24. pause 3000
  25. endif
  26. endif
  27. endwhile
  28. while skill 'magery' < 100
  29. if mana 'self' < 45
  30. useskill 'meditation'
  31. while mana < maxmana
  32. endwhile
  33. else
  34. if skill 'magery' < 30
  35. headmsg 'Buy more skill!'
  36. stop
  37. elseif skill 'magery' < 45
  38. cast 'bless' 'self'
  39. pause 2000
  40. elseif skill 'magery' < 55
  41. cast 'mana drain' 'self'
  42. pause 2000
  43. elseif skill 'magery' < 75
  44. cast 'invisibility' 'self'
  45. while waitingfortarget
  46. endwhile
  47. pause 2000
  48. elseif skill 'magery' < 100
  49. cast 'mana vampire' 'self'
  50. pause 2000
  51. endif
  52. endif
  53. endwhile
  54. while skill 'Resisting Spells' < 100
  55. if mana 'self' < 40
  56. useskill 'meditation'
  57. while mana < maxmana
  58. endwhile
  59. else
  60. cast 'mana vampire' 'self'
  61. pause 1000
  62. endif
  63. endwhile
  64. while skill 'Necromancy' < 1000
  65. if mana < 25
  66. useskill 'meditation'
  67. while mana < maxmana
  68. endwhile
  69. endif
  70. if skill 'Necromancy' < 30
  71. cast "Curse Weapon"
  72. waitfortarget 1600
  73. elseif skill 'Necromancy' < 50
  74. cast "Wraith Form"
  75. waitfortarget 1600
  76. elseif skill 'Necromancy' < 71
  77. cast "Horrific Beast"
  78. waitfortarget 1600
  79. elseif skill 'Necromancy' < 81
  80. if @injournal 'You cannot cast that spell in this form' 'system'
  81. clearjournal
  82. cast "Horrific Beast"
  83. endif
  84. cast "Wither"
  85. waitfortarget 1600
  86. elseif skill 'Necromancy' < 105
  87. cast "Lich Form"
  88. waitfortarget 1600
  89. elseif skill 'Necromancy' < 120
  90. cast "Vampiric Embrace"
  91. waitfortarget 1600
  92. endif
  93. endwhile
  94. while skill 'Spirit Speak' < 100
  95. if mana 'self' > 30
  96. useskill 'Spirit Speak'
  97. pause 13000
  98. elseif mana 'self' <= 30
  99. useskill 'Meditation'
  100. while mana < maxmana
  101. endwhile
  102. endif
  103. endwhile
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement