PDA

View Full Version : Help plox! Brows Field mana training



nisselord2
11-28-2015, 12:58 PM
I am manatraining with voucher an the basment of my house, is there any way to drag manas from browsfield to inventory? or to use manas from brows field?

thanks :)

draadloos
11-28-2015, 09:22 PM
If you put youre manas on the ground under you,

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.