Jump to content

How to use mount with item ID in Mount options?


zhxwbr8

Recommended Posts

1 hour ago, Droidz said:

Hello, you play in Wotlk? put item name don't works?

 

Yes,Wotlk,i put id in there cant use,and i put item name there still cant use.There is no forced use of the flight mount option, in Grindr mode.

 

image.png.fedfa6aa88b6bfb4498746096bce83a3.pngimage.png.4690762204ae442012986db2d731d46d.png

Link to comment
Share on other sites

you have the wrong ID. and youre not using the english client which could cause problems.

the mount you have is one of those:

Swift Nether Drake - 30609

Merciless Nether Drake - 30609

Vengeful Nether Drake - 37676

Brutal Nether Drake - 43516

put the name in and it works

Link to comment
Share on other sites

If by name that don't works, in settings put buff name like his happer in game when you mouse is over (top/right), and use this plugin: Main.cs

using System.ComponentModel;
using wManager.Wow.Helpers;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        wManager.Events.OthersEvents.OnMount += delegate(string name, CancelEventArgs cancelable)
        {
            MovementManager.StopMoveTo(); // or MovementManager.StopMove();
            ItemsManager.UseItem(67009);
            Usefuls.WaitIsCasting();
            cancelable.Cancel = true;
        };
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

(this plugin will use item when WRobot will try to use mount spell)

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