Jump to content

druid cancel flight form to herb(find out why,but dont know how to fix)


Recommended Posts

Hello, the problem is that you use grinder and you cannot use option to mount after all farm. try to use this plugin for force to use this option:

using System.ComponentModel;
using robotManager.FiniteStateMachine;
using wManager.Wow.Bot.States;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        robotManager.Events.FiniteStateMachineEvents.OnRunState +=
            delegate(Engine engine, State state, CancelEventArgs cancelable)
            {
                try
                {
                    if (state is Farming)
                        ((Farming)state).AutoMountIfSuccess = true;
                }
                catch { }
            };
    }

    public void Dispose() { }

    public void Settings() { }
}

 

Main.cs

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...