April 4, 20188 yr Hello, is it possible to remove wManager.Wow.Bot.States? like wManager.Wow.Bot.States.Resurrect wManager.Wow.Bot.States.Looting
April 4, 20188 yr 3 hours ago, Donkomon said: Hello, is it possible to remove wManager.Wow.Bot.States? like wManager.Wow.Bot.States.Resurrect wManager.Wow.Bot.States.Looting If you would like to ignore states, you can do so. Below is an example of ignoring/cancelling the To Town State. robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "To Town") { Logging.Write("We have cancelled the To Town State"); cancelable.Cancel = true; } }; Edited April 4, 20188 yr by Avvi
April 6, 20188 yr 7 hours ago, Donkomon said: just turn it off, its possible? without unnecessary code. No you need to use code for that
Create an account or sign in to comment