XenoBot Forums - Powered by vBulletin

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Magic Level Training (Mage)

  1. #1
    BnW's Avatar
    Join Date
    Jan 2014
    Location
    Essex, United Kingdom.
    Posts
    341
    Mentioned
    66 Post(s)
    Tagged
    0 Thread(s)

    Magic Level Training (Mage)

    Hello guys!

    I was wondering if anyone can help me or point me in the right direction.

    I want to use a voucher to ML waste on my 45 MS, use KK's to get ML 80 for example. What I need is my character to be stood in a PZ next to an NPC (Gray Island or Ankrahmun for example), to then continuously buy potions, drink them, cast spells, buy more (then loop).

    I will have money on my character at all times I just need the above. Does anyone know where I can get this or how to help?

    Kind regards,
    BnW.
    Last edited by BnW; 06-02-2015 at 10:44 AM.
    If the devil asks to dance with you, tell the devil "never".

    Because a dance with the devil might last you forever.

  2. #2
    Super Moderator Luls's Avatar
    Join Date
    Dec 2010
    Location
    Canadaaaa.
    Posts
    1,976
    Mentioned
    186 Post(s)
    Tagged
    0 Thread(s)
    It might be easier to just put some BPs of potions in a house and use them from there, so you don't need to worry about everyone seeing you/getting reported.

  3. #3
    Senior Member sausting's Avatar
    Join Date
    Aug 2012
    Location
    Ontario, Canada
    Posts
    1,018
    Mentioned
    39 Post(s)
    Tagged
    0 Thread(s)
    or make a script to buy the small manas and put them into your house for you, i dont want to think of how many small pots it takes to get ml 80.

  4. #4

    Join Date
    Nov 2014
    Location
    Sundsvall, Sweden
    Posts
    174
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    i've used this one, just set the lua to your manas, how many to buy etc..

    http://forums.xenobot.net/showthread...d-Mana-Trainer

    Its in ank depo walking around upstairs, most people wont see you (only when buying the pots and withdrawing cash)

  5. #5
    Senior Member Veela's Avatar
    Join Date
    Mar 2013
    Location
    Richmond, BC, Canada
    Posts
    569
    Mentioned
    31 Post(s)
    Tagged
    0 Thread(s)
    Did this with my ed the other week.

    Did 62-80 with people using on me in a day. now op AF level 105 druid with 89 ml in armor outhits even 200~ mages I see

    Sold 317 ED to El Don - MM by Uranas ~ Sold an 80 MS to Y2Quakepc2 ~ Bought 245 Rp from Mentoll
    Sold a world transfer code to Tibtrak
    Bought 18.5kk gold from PunktG ~ Bought 22kk gold from Ghazkyt ~ Bought 62kk gold from Pidek098 ~ Bought 60kk from Niyar - MM by Uranas

  6. #6
    Senior Member sausting's Avatar
    Join Date
    Aug 2012
    Location
    Ontario, Canada
    Posts
    1,018
    Mentioned
    39 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Veela View Post
    Did this with my ed the other week.

    Did 62-80 with people using on me in a day. now op AF level 105 druid with 89 ml in armor outhits even 200~ mages I see
    you have script for using mana on another player?

  7. #7
    Senior Member Veela's Avatar
    Join Date
    Mar 2013
    Location
    Richmond, BC, Canada
    Posts
    569
    Mentioned
    31 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by sausting View Post
    you have script for using mana on another player?
    No, I got my friends to do it manual. lol

    Sold 317 ED to El Don - MM by Uranas ~ Sold an 80 MS to Y2Quakepc2 ~ Bought 245 Rp from Mentoll
    Sold a world transfer code to Tibtrak
    Bought 18.5kk gold from PunktG ~ Bought 22kk gold from Ghazkyt ~ Bought 62kk gold from Pidek098 ~ Bought 60kk from Niyar - MM by Uranas

  8. #8

    Join Date
    Mar 2014
    Posts
    35
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    I got one if you need it. It only uses potions from a backpack on the ground though. You can put a backpack inside and it will open that when done with the one it's using.

  9. #9

    Join Date
    Mar 2014
    Posts
    35
    Mentioned
    2 Post(s)
    Tagged
    0 Thread(s)
    Since a few people were PMing me asking for it. This script uses potions on whatever player you choose. It uses potions from the first backpack you open and starts working its way through the backpacks until all the potions are used. You can change the player name and potion type really easy. I wish I could give credit to who made it, but I can't find the thread I found it in from forever ago.


    How to set up the backpacks: imgur.com/SmkUDVt.png

    Code:
    local drinkTarget = 'Player Name'
    local manaPot = 'Mana Potion'
     
    Module.New('mana drink helper', function(module)
        local drinkID = Creature.New(drinkTarget):ID()
        local cont = Container.GetFirst()
        local count = 0
        if cont:ItemCount() >= 1 then
            count = cont:ItemCount() - 1
        end
     
        if(cont:GetItemData(count).id == Item.GetItemIDFromDualInput(manaPot)) and drinkID ~= 0 then
            cont:UseItemWithCreature(count, drinkID)
        elseif (Item.isContainer(cont:GetItemData(count).id)) then
            cont:UseItem(count, true)
        end
        module:Delay(1000)
    end)

  10. #10
    Senior Member sausting's Avatar
    Join Date
    Aug 2012
    Location
    Ontario, Canada
    Posts
    1,018
    Mentioned
    39 Post(s)
    Tagged
    0 Thread(s)
    Quote Originally Posted by Not Cat View Post
    Since a few people were PMing me asking for it. This script uses potions on whatever player you choose. It uses potions from the first backpack you open and starts working its way through the backpacks until all the potions are used. You can change the player name and potion type really easy. I wish I could give credit to who made it, but I can't find the thread I found it in from forever ago.


    How to set up the backpacks: imgur.com/SmkUDVt.png

    Code:
    local drinkTarget = 'Player Name'
    local manaPot = 'Mana Potion'
     
    Module.New('mana drink helper', function(module)
        local drinkID = Creature.New(drinkTarget):ID()
        local cont = Container.GetFirst()
        local count = 0
        if cont:ItemCount() >= 1 then
            count = cont:ItemCount() - 1
        end
     
        if(cont:GetItemData(count).id == Item.GetItemIDFromDualInput(manaPot)) and drinkID ~= 0 then
            cont:UseItemWithCreature(count, drinkID)
        elseif (Item.isContainer(cont:GetItemData(count).id)) then
            cont:UseItem(count, true)
        end
        module:Delay(1000)
    end)
    tytytyt

Posting Permissions

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