May 11, 20178 yr Any idea to solve this error of "Unable to do while moving" or perhaps using other method? that causing infinite loop of pos and object position. if ( wManager.Wow.Bot.Tasks.GoToTask.ToPosition(pos, distance) && o.IsValid) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress); }
May 11, 20178 yr if ( wManager.Wow.Bot.Tasks.GoToTask.ToPosition(pos, distance) && o.IsValid) { if (!MovementManager.InMovement) { wManager.Wow.Helpers.Interact.InteractGameObject(o.GetBaseAddress); } } or if you want to stop the movement since you reached the target // Still moving? if (MovementManager.InMovement) { // Stop MovementManager.StopMove(); }
Create an account or sign in to comment