April 28, 20187 yr 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."); } }
Create an account or sign in to comment