Donkomon 0 Posted April 4, 2018 Share Posted April 4, 2018 Hello, is it possible to remove wManager.Wow.Bot.States? like wManager.Wow.Bot.States.Resurrect wManager.Wow.Bot.States.Looting Link to comment Share on other sites More sharing options...
Avvi 98 Posted April 4, 2018 Share Posted April 4, 2018 (edited) 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, 2018 by Avvi Link to comment Share on other sites More sharing options...
Donkomon 0 Posted April 6, 2018 Author Share Posted April 6, 2018 just turn it off, its possible? without unnecessary code. Link to comment Share on other sites More sharing options...
Droidz 2682 Posted April 6, 2018 Share Posted April 6, 2018 7 hours ago, Donkomon said: just turn it off, its possible? without unnecessary code. No you need to use code for that Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now