A Chivalry Trainer for those who may need it

Share your guides, how-tos, FAQs, and so forth. This is not for support -- post questions in General Discussion.
Post Reply
TheOneOdy
Posts: 48

A Chivalry Trainer for those who may need it

Post by TheOneOdy »

Code: Select all

//Change First Skill value to where you want to stop training Chivalry at
//Author: Ody the Fighter
if skill 'Chivalry' >=  70.0
  headmsg 'Yippee Yahoo Its Done!'
  stop
elseif skill 'Chivalry' > 71.5 and skill 'Chivalry'< 100
  cast 'Noble Sacrifice'
  pause 5000
elseif skill 'Chivalry' > 55 and skill 'Chivalry' < 71.5
  cast 'Enemy of One'
  pause 2200
elseif skill 'Chivalry' > 33 and skill 'Chivalry' < 55
  cast 'Divine Fury'
  pause 4500
endif
Post Reply