Hello! I am currently using the standard combat routine Kupo since Ultima didn't work properly for me after the latest RebornBuddy update. I am a Paladin in his late thirties who stubbornly refuses to use Sword Oath. When I try to manually activate it he turns it back off after a little while. Is there a way I can edit the combat routine files to add Sword Oath into the rotation? Thanks!
Hi there. I use the following on my routine. If you edit the CreateBasicPreCombatBuffs() method as follows: Code: [Behavior(BehaviorType.PreCombatBuffs)] public Composite CreateBasicPreCombatBuffs() { return new PrioritySelector( SummonChocobo(), //Spell.Apply("Sword Oath", r => !Core.Player.CurrentTarget.HasAura("Sword Oath"), r => Core.Player), Spell.Apply("Shield Oath", r => !Core.Player.CurrentTarget.HasAura("Shield Oath"), r => Core.Player), Spell.Apply("Protect", r => true, r => Core.Player) ); } This will appy shield oath, and protect. Similarly if you want to apply Sword Oath then remove the two backslashes from the "Sword Oath" line, and add them to the "Shield Oath" line. If you don't want protect then delete that line, and also the ',' (comma) at the end of the "Shield Oath" line.
Thank you, ZeeZee! Sorry for the late reply. My subscription ran out and I haven't gotten around to reactivating it again, hence I haven't been on this forum a lot.