Jump to content

Active traveler's tundra


Stelgar

Recommended Posts

Use plugin like 

using wManager;
using wManager.Wow.Enums;
using wManager.Wow.Helpers;
using wManager.Wow.ObjectManager;

public class Main : wManager.Plugin.IPlugin
{
    public void Initialize()
    {
        EventsLua.AttachEventLua(LuaEventsId.PLAYER_LEVEL_UP, delegate
        {
            if (ObjectManager.Me.Level >= 20 && !wManager.wManagerSetting.CurrentSetting.UseMammoth)
            {
                wManagerSetting.CurrentSetting.UseMammoth = true;
                wManagerSetting.CurrentSetting.Save();
            }
        });
    }

    public void Dispose()
    {
    }

    public void Settings()
    {
    }
}

 

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