Stelgar 0 Posted November 12, 2017 Share Posted November 12, 2017 Hi all i need to active to use traveler's tundra to sell and repair, when my character are 20, someone know the code to do it? Really thx Link to comment https://wrobot.eu/forums/topic/7637-active-travelers-tundra/ Share on other sites More sharing options...
Droidz 2738 Posted November 13, 2017 Share Posted November 13, 2017 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 https://wrobot.eu/forums/topic/7637-active-travelers-tundra/#findComment-34903 Share on other sites More sharing options...
Stelgar 0 Posted November 13, 2017 Author Share Posted November 13, 2017 Thx Droidz :) Link to comment https://wrobot.eu/forums/topic/7637-active-travelers-tundra/#findComment-34931 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