View Full Version : 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.
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.
sausting
05-28-2015, 02:46 AM
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.
yompa93
05-28-2015, 07:52 AM
i've used this one, just set the lua to your manas, how many to buy etc..
http://forums.xenobot.net/showthread.php?35137-Randomized-Mana-Trainer
Its in ank depo walking around upstairs, most people wont see you (only when buying the pots and withdrawing cash)
Veela
05-28-2015, 08:12 AM
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
sausting
05-28-2015, 08:23 AM
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?
Veela
05-29-2015, 03:54 AM
you have script for using mana on another player?
No, I got my friends to do it manual. lol
Not Cat
05-29-2015, 05:00 AM
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.
Not Cat
06-02-2015, 05:17 AM
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
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)
sausting
06-02-2015, 11:21 AM
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
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
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
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)
This is perfect mate, much appreciated. And thanks to everyone else who helped me out too!
I am assuming with this I need a house out of the way of people who can see me to prevent being reported? Where did you train and use this?
Regards,
BnW
Not Cat
06-07-2015, 05:17 AM
This is perfect mate, much appreciated. And thanks to everyone else who helped me out too!
I am assuming with this I need a house out of the way of people who can see me to prevent being reported? Where did you train and use this?
Regards,
BnW
I owned a house with a basement that no one could see me in. At the very least, get a house with 2 floors so you can train upstairs. That way you can't be reported by people passing by even if they can still see you.
iMike
06-07-2015, 08:31 AM
Gl, let us know when you reach ml 80 :D
Buy a Kazordoon guildhall haha
Powered by vBulletin® Version 4.2.5 Copyright © 2025 vBulletin Solutions Inc. All rights reserved.