Log in

View Full Version : mana training /drop empty vials somewhere else



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

Oscagi
01-27-2016, 10:54 AM
Dont use Self.Position().x just writhe 2 sqm at north for drop, or just Self.Position().x+2 then u wont get the empty vials in the same sqm of u have the manas.


Self.DropFlasks(x, y, z)



/Oscagi

holos
01-27-2016, 02:49 PM
thanks for the answer soo how should I fix this script so it drops the empty vials to the north?

while (true) do
Self.DropFlasks(Self.Position().x, Self.Position().y, Self.Position().z)
wait(17000, 22000)
end

DerKingpintin
01-27-2016, 03:43 PM
maybe?


while (true) do
Self.DropFlasks(Self.Position().x+2, Self.Position().y, Self.Position().z)
wait(17000, 22000)
end

holos
01-27-2016, 05:10 PM
works fine thanks a lot for the help!