Log in

View Full Version : [MAGES] Change wand when reach X Level



Werox
05-06-2016, 10:12 PM
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...



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.

dinmamma
05-07-2016, 10:11 PM
Werox

Seen couple of your scripts, looks good :D
Will definitely use this one now when I level up low lvl mage.

If you like scripting and want a little challenge, try to make this one to automatically recognize vocation, level and search for wand/rod to switch with :D I mean for every level and wand/rod -.^

Werox
05-07-2016, 11:03 PM
Werox
If you like scripting and want a little challenge, try to make this one to automatically recognize vocation, level and search for wand/rod to switch with :D I mean for every level and wand/rod -.^

Nice idea, Working on it :D