holos
01-27-2016, 02:49 AM
So I use this script to boost my lev 14 mlev.
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)
I put a lot mana potions under me and start the script. After some time I run out of cap because of the empty flasks. However if I use a drop empty vial script the empty vials get on the stack of the mana potions and the script above does not work anymore. Any ideas?
thx
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)
I put a lot mana potions under me and start the script. After some time I run out of cap because of the empty flasks. However if I use a drop empty vial script the empty vials get on the stack of the mana potions and the script above does not work anymore. Any ideas?
thx