nuxx 0 Posted April 6, 2018 Share Posted April 6, 2018 Bot never Drinks/Eats in Bg's, is there any fix or a way to get it in? Link to comment https://wrobot.eu/forums/topic/9069-eatdrink-dont-work/ Share on other sites More sharing options...
retrostalgic 7 Posted April 28, 2018 Share Posted April 28, 2018 anyone? Link to comment https://wrobot.eu/forums/topic/9069-eatdrink-dont-work/#findComment-42900 Share on other sites More sharing options...
Droidz 2738 Posted April 28, 2018 Share Posted April 28, 2018 Hello, you cannot eat/drink in bg with default features. You can try to use this plugin (not tested): Main.cs using robotManager.Products; using System.Windows.Forms; public class Main : wManager.Plugin.IPlugin { public void Initialize() { if (Products.ProductName != "Battlegrounder") return; robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (robotManager.FiniteStateMachine.Engine engine, robotManager.FiniteStateMachine.State state, System.ComponentModel.CancelEventArgs cancelable) => { try { if (state.DisplayName == "Resurrect Battleground") { if (state.BeforeStates.Count == 0) state.BeforeStates.Add(new wManager.Wow.Bot.States.Regeneration()); } } catch { } }; } public void Dispose() { } public void Settings() { MessageBox.Show("No settings for this plugin."); } } Link to comment https://wrobot.eu/forums/topic/9069-eatdrink-dont-work/#findComment-42906 Share on other sites More sharing options...
nuxx 0 Posted May 1, 2018 Author Share Posted May 1, 2018 Not working. ? E: Is there maybe a way to start regen with the fightclass? Link to comment https://wrobot.eu/forums/topic/9069-eatdrink-dont-work/#findComment-43026 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