Page 1 of 1

[UOsteam] Bushido trainer

Posted: Sat Feb 27, 2016 1:31 am
by Dyēus Phater
This trainer will take you from 27.5 or whatever the guy at exhalls will train you to and goes to 97.5. from there on you have to use momentum strike on an enemy. For this I suggest you use devlin's weapon ability script for easyuo or some script for that in uosteam.. I may write one later.

Code: Select all

if mana < 50
  pause for mana
  while mana < maxmana
  endwhile
else
  if skill 'bushido' < 25
    headmsg 'Buy more skill!'
    stop
  elseif skill 'bushido' < 60
    cast 'Confidence'
    pause 3000
  elseif skill 'bushido' < 75
    cast 'Counter Attack'
    pause 3000
  elseif skill 'bushido' < 97.5
    cast 'Evasion'
    pause 3000
  else
    headmsg 'Start momentum strike now!'
    stop
  endif
endif