November 22, 20178 yr I have a problem with the server that I play on. When I right click mobs / objects, it says "you are mounted" There is no solution I did not try. I want a script or something that would dismount me on clicking the object and continue with clicking it for available profiles, so the object or mob would not have to be clicked twice. Thank you.
November 22, 20178 yr Hello, try plugin like: using wManager.Wow.Enums; using wManager.Wow.ObjectManager; using wManager.Wow.Bot.Tasks; public class Main : wManager.Plugin.IPlugin { public void Initialize() { wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (ObjectManager.Me.IsMounted) { MountTask.DismountMount(); } } catch { } }; } public void Dispose() { } public void Settings() { } }
June 19, 20196 yr @Droidz I tried to run it through RunCode (changing it a bit), but I don’t know how to turn off the event. Is it possible or only a plugin?
June 19, 20196 yr hey, robotManager.Helpful.Var.SetVar("DismountRightClick", true); wManager.Events.InteractEvents.OnInteractPulse += (target, cancelable) => { try { if (robotManager.Helpful.Var.GetVar<bool>("DismountRightClick") && ObjectManager.Me.IsMounted) { MountTask.DismountMount(); } } catch { } }; // .... disable robotManager.Helpful.Var.SetVar("DismountRightClick", false);
Create an account or sign in to comment