Stelgar 0 Posted October 9, 2017 Share Posted October 9, 2017 I need to know if i can setup wrobot di dimsount before take taxi, because in my server i can't take flight if i'm on my mount Rellay tnx Link to comment https://wrobot.eu/forums/topic/7325-mountdismount/ Share on other sites More sharing options...
Droidz 2738 Posted October 10, 2017 Share Posted October 10, 2017 Use this plugin: Main.cs 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) { var o = ObjectManager.GetObjectByGuid(target) as WoWUnit; if (o != null && o.IsValid && o.Type == WoWObjectType.Unit && o.IsFlightMaster) MountTask.DismountMount(); } } catch { } }; } public void Dispose() { } public void Settings() { } } Link to comment https://wrobot.eu/forums/topic/7325-mountdismount/#findComment-33347 Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now