Jump to content

DeMount and jump


j9000

Recommended Posts

is there a way to make my toon demount and then jump when it lands on a mining node, i have a demount plugin just don't know how to edit it and i know there is a random jump thing in options but i need it to land, demount, jump, and then try to mine. here is the plugin i use to demount currently 

DeMountt.cs

Link to comment
Share on other sites

using System.ComponentModel;
using wManager.Events;
using wManager.Plugin;
using wManager.Wow.Helpers;

public class Main : IPlugin
{
    public void Initialize()
    {
       OthersEvents.OnDismount += delegate (CancelEventArgs cancelable)
        {
            Move.JumpOrAscend();
        };
    }

    public void Dispose()
    {

    }

    public void Settings()
    {

    }
}

 

Link to comment
Share on other sites

thx, it sort of works doing a sort of half jump while still mounted tho lol.

i need it to land, demount and do a full jump. maybe is there a way to add delay to what was posted?

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