0xbadbac0n 0 Posted September 18, 2020 Share Posted September 18, 2020 Hi, I play on a server where often the pvp is cross raced and you have 2 mounts (Horde, Ally). Is there an option to define2 mounts? Or mount via makro? Link to comment https://wrobot.eu/forums/topic/12522-random-mount-start-mount-via-macro/ Share on other sites More sharing options...
Droidz 2738 Posted September 19, 2020 Share Posted September 19, 2020 Hello, try plugin like: using System.Threading; using robotManager.Products; using wManager; using wManager.Wow.Helpers; using wManager.Wow.ObjectManager; public class Main : wManager.Plugin.IPlugin { public void Initialize() { while (Products.IsStarted) { if (Conditions.InGameAndConnectedAndAliveAndProductStartedNotInPause) { try { if (ObjectManager.Me.IsHorde) wManagerSetting.CurrentSetting.GroundMountName = "Horde mount name"; else wManagerSetting.CurrentSetting.GroundMountName = "Ally mount name"; } catch { } } Thread.Sleep(500); } } public void Dispose() { } public void Settings() { } } replace Horde mount name and Ally mount name by you mounts names 0xbadbac0n 1 Link to comment https://wrobot.eu/forums/topic/12522-random-mount-start-mount-via-macro/#findComment-59988 Share on other sites More sharing options...
0xbadbac0n 0 Posted September 23, 2020 Author Share Posted September 23, 2020 Works, thanks :)) Link to comment https://wrobot.eu/forums/topic/12522-random-mount-start-mount-via-macro/#findComment-60053 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