Jump to content

Random mount/ start mount via macro


0xbadbac0n

Recommended Posts

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

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