Hi, I'm sharing this script I made, for those who level up mages and it's annoying when you need another wand and you need to go and to buy one, just bring your wands into your backpack and wait till you reach level, it'll auto switch wand...
Code:
local WandID = 3075 -- Wand of DragonBreath
local DesiredLevel = 13 -- Level required for Wand of Dragon Breath
------------------------------------------------------- --
print([[Wand Switcher by Werox, Enjoy!]])
wait(5000)
----------------------------------------------------------
Module('WeroWand Switcher', function(mod)
if (Self.Level() >= DesiredLevel) then
Self.Equip(WandID, "weapon")
end
end)
Hope you like it.