• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Honorbuddy stopped moving

    Discussion in 'Honorbuddy Support' started by Tilapia, Oct 14, 2016.

    1. Tilapia

      Tilapia New Member

      Joined:
      Nov 23, 2014
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
    2. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
      have you tried a fresh Hb installation?
       
    3. Tilapia

      Tilapia New Member

      Joined:
      Nov 23, 2014
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0
    4. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
      Combat bot was changed to not perform any movement (it is mostly intended to be used as a rotation-bot).
      That's not ideal for you. Here is a workaround:
      1. Start combat bot
      2. Open Developer Tools -> Console
      3. Run the following code in the window
      Code:
      RoutineManager.SetCapabilityState(CapabilityFlags.Movement, CapabilityState.DontCare);
      RoutineManager.SetCapabilityState(CapabilityFlags.MoveBehind, CapabilityState.DontCare);
      RoutineManager.SetCapabilityState(CapabilityFlags.Kiting, CapabilityState.DontCare);
      
      That should reenable the movement. You will have to do this every time you start the combat bot.

      An alternative, more permanent solution is to open <Honorbuddy root>\Bots\Combat\CombatBot.cs. Then remove line 49 to 51:
      Code:
      RoutineManager.SetCapabilityState(CapabilityFlags.Movement, CapabilityState.Disallowed, "Combat bot starting");
      RoutineManager.SetCapabilityState(CapabilityFlags.MoveBehind, CapabilityState.Disallowed, "Combat bot starting");
      RoutineManager.SetCapabilityState(CapabilityFlags.Kiting, CapabilityState.Disallowed, "Combat bot starting");
      
       
    5. Tilapia

      Tilapia New Member

      Joined:
      Nov 23, 2014
      Messages:
      3
      Likes Received:
      0
      Trophy Points:
      0

      Thank you
       
    6. Tony

      Tony "The Bee" Staff Member Moderator

      Joined:
      Jan 15, 2010
      Messages:
      128,834
      Likes Received:
      571
      Trophy Points:
      113
      you're welcome :)
       

    Share This Page