UOsteam macro chivalry trainer
Posted: Thu Feb 25, 2016 7:48 pm
Here's a simple macro for training chiv, I wrote it myself. Im by no means an adept but this worked for me flawlessly
you can edit the pause but this works for no fc fcr... If you can figure out how to make steam equip your weapon after casting meditation you could tweak this to use med instead of waiting for mana.
you can edit the pause but this works for no fc fcr... If you can figure out how to make steam equip your weapon after casting meditation you could tweak this to use med instead of waiting for mana.
Code: Select all
if mana < 50
pause for mana
while mana < maxmana
endwhile
else
if skill 'chivalry' < 30
headmsg 'Buy more skill!'
stop
elseif skill 'chivalry' < 40
cast 'Consecrate weapon'
pause 3000
elseif skill 'chivalry' < 55
cast 'divine fury'
pause 3000
elseif skill 'chivalry' < 69
cast 'enemy of one'
pause 3000
elseif skill 'chivalry' < 88
cast 'holy light'
pause 3000
elseif skill 'chivalry' < 115
cast 'noble sacrifice'
pause 3000
else
headmsg 'chivalry complete!'
stop
endif
endif