• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Not using Sword Oath

    Discussion in 'Archives' started by Labb, Mar 21, 2015.

    1. Labb

      Labb New Member

      Joined:
      Jan 15, 2010
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
      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! :)
       
    2. ZeeZee

      ZeeZee Member

      Joined:
      Nov 6, 2014
      Messages:
      61
      Likes Received:
      3
      Trophy Points:
      8
      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.
       
    3. Labb

      Labb New Member

      Joined:
      Jan 15, 2010
      Messages:
      19
      Likes Received:
      0
      Trophy Points:
      0
      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.
       
    4. ZeeZee

      ZeeZee Member

      Joined:
      Nov 6, 2014
      Messages:
      61
      Likes Received:
      3
      Trophy Points:
      8
      Not a problem mate :)
       

    Share This Page