Jump to content

Grinder in AV


Recommended Posts

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?

Link to comment
Share on other sites

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()
    {
    }
}

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...