PDA

View Full Version : Mana trainer



wreck
11-17-2015, 11:21 PM
Hey is there a lua script for mlvling that will pick up pots from the Ground and would drop vials to BP. Joshwa534

Thanks For you help

Lilithwins
11-18-2015, 10:34 PM
Hey guys, I am also looking for this kind of script.
I would like to have script that uses manas from browse field(cascading backpack)and opens new backpacks when previous is empty.

I have bought 105backpacks of mana fluids aiming to get magic 85, it is inhuman to soak all those manas with my hands for 4 days.

nisselord2
11-28-2015, 08:33 PM
Bump me too this would be great

draadloos
11-28-2015, 09:16 PM
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.

nisselord2
11-29-2015, 12:10 AM
you rock dude!

smitty131
03-03-2017, 12:18 PM
I dont understand this
Can someone help me out.