XenoBot Forums - Powered by vBulletin

User Tag List

Results 1 to 3 of 3

Thread: [MAGES] Change wand when reach X Level

  1. #1

    Join Date
    Mar 2016
    Posts
    36
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)

    Lightbulb [MAGES] Change wand when reach X Level

    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.

  2. #2
    Senior Member
    Join Date
    Sep 2012
    Posts
    1,070
    Mentioned
    18 Post(s)
    Tagged
    0 Thread(s)
    @Werox

    Seen couple of your scripts, looks good
    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 I mean for every level and wand/rod -.^

  3. #3

    Join Date
    Mar 2016
    Posts
    36
    Mentioned
    3 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by dinmamma View Post
    @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 I mean for every level and wand/rod -.^
    Nice idea, Working on it

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •