My honorbuddy stopped moving on any character and any bot, it used to move to the target even on combat bot, but it doesn't anymore. can anybody help me? View attachment 9060 2016-10-14 11.11.txt
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");