Log in

View Full Version : halp! mana training, new to xeno



yoshilicious
11-25-2015, 02:38 PM
Hi!

Iv never used bot before so this will be my first time and im in need of some help.

I wanna train my magic level on my sorcerer, i wanna do it in my house with the pots on the floor, is it possible to make the character refill from the floor meanwhile im boosting?

im willing to pay for it.

Cheers!

draadloos
11-27-2015, 09:03 PM
Hi!

Iv never used bot before so this will be my first time and im in need of some help.

I wanna train my magic level on my sorcerer, i wanna do it in my house with the pots on the floor, is it possible to make the character refill from the floor meanwhile im boosting?

im willing to pay for it.

Cheers!

Use this lua to pick up mana potions:


PotionId = 268
MinPotions = 10


Module.New('pickup potions', function(module)
if (Self.ItemCount(PotionId) <= MinPotions) then
Map.PickupItem(Self.Position().x, Self.Position().y, Self.Position().z, 0, 0, 50)
module:Delay(2500)
end
end)

PotionId is the id of the mana potion, currently set on normal mana potions.
MinPotions is the amount where it will pick up.
It will pickup 50 potions at a time.