• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Combat Assit (Kupo) Automatically Face Target

    Discussion in 'Rebornbuddy Support' started by dataruman, Apr 9, 2015.

    1. dataruman

      dataruman New Member

      Joined:
      Apr 9, 2015
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      0
      Whenever I start Kupo it lose the settings Automatically Face Target When Performing an Action. It says enabled in game but it does not work even when I stop the bot. If I disable and enable it starts working again. I'm just looking ffor something to handle my GCD when I want to play manually. Any thoughts? Is this by design or a limitation?

      Edit: I stripped down the CS for Paladin so its not doing any target checks but it didnt work. Also I can pause the bot and disable enable auto face target and it starts working again so long as I don't stop the bot. It only happens when I start it.
      Code:
      namespace Kupo.Rotations
      {
          public class GladiatorPaladin : KupoRoutine
          {
              //DEVELOPERS REPLACE GetType().Name WITH YOUR CR'S NAME.
              public override string Name
              {
                  get { return "Kupo [" + GetType().Name + "]"; }
              }
      
              public override ClassJobType[] Class
              {
                  get { return new ClassJobType[] {ClassJobType.Gladiator, ClassJobType.Paladin,}; }
              }
      
              [Behavior(BehaviorType.Combat)]
              public Composite CreateBasicCombat()
              {
                  return new PrioritySelector(ctx => Core.Player.CurrentTarget as BattleCharacter,
                      new Decorator(ctx => ctx != null,
                          new PrioritySelector(
                              Spell.Cast("Rage of Halone", r => Actionmanager.LastSpell.Name == "Savage Blade"),
                              Spell.Cast("Savage Blade", r => Actionmanager.LastSpell.Name == "Fast Blade"),
                              Spell.Cast("Fast Blade", r => true)
                              
                              )));
              }
          }
      }
       
      Last edited: Apr 9, 2015
    2. exaccuss

      exaccuss Active Member

      Joined:
      Nov 10, 2013
      Messages:
      1,021
      Likes Received:
      6
      Trophy Points:
      38
      If i read your question properly, you are having an auto face problem?

       
    3. dataruman

      dataruman New Member

      Joined:
      Apr 9, 2015
      Messages:
      9
      Likes Received:
      0
      Trophy Points:
      0
      Thanks. I guess I need to improve me search skillz.
       

    Share This Page