March 7, 20215 yr 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
March 8, 20215 yr 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() { } }
March 8, 20215 yr Author 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?
Create an account or sign in to comment