UOsteam macro chivalry trainer

If you make a Client-side script you can publish it here for other players to use
Locked
User avatar
Dyēus Phater
Expert Scribe
Posts: 37
Joined: Thu Feb 18, 2016 3:31 am

UOsteam macro chivalry trainer

Post by Dyēus Phater »

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.

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
"I am the Keymaster! Are you the Gatekeeper?" "It's hard being the Sky Father"
Locked