November 8, 20178 yr Hello, I've been trying to create a grinder profile to grind mobs inside AV, but cannot get it to work. I've made a loop inside AV in the Grinder product, marking the mobs as usual. When I start the Grinder it gets stuck in "Battlegrounder Combination". Can I bypass this somehow?
November 9, 20178 yr Hello, try to use this plugin: Main.cs public class Main : wManager.Plugin.IPlugin { public void Initialize() { robotManager.Events.FiniteStateMachineEvents.OnBeforeCheckIfNeedToRunState += (engine, state, cancelable) => { if (state != null && state.DisplayName == "Battlegrounder Combination") { cancelable.Cancel = true; } }; } public void Dispose() { } public void Settings() { } }
November 10, 20178 yr Author Thanks, using that plugin I got it to work. It doesn't seem to loot mobs for some reason, though.
Create an account or sign in to comment