PDA

View Full Version : How to setup backpacks to depot



Nightimarez
05-10-2013, 01:10 PM
Hey, how are you suppose to setup your backpacks inside depot so it could keep auto depositing without problems? I tried one backpack inside another, doesn't work. And I tried a bunch of backpacks up front, doesn't work either.

This is what the script I'm using looks like.


elseif (labelName == "deposit") then
Walker.Stop()
Self.ReachDepot()
Self.DepositItems({10290, 0}, {3079, 0}, {8027, 0}, {3434, 0}, {7456, 0}, {8073, 0}, {8043, 0}, {3324, 0}, {8092, 0}, {7430, 0}, {8045, 0}, {9304, 0}, {3574, 0}, {3067, 0}, {8093, 0}, {816, 0}, {3284, 0})
Self.DepositItems({3010, 1},{5914, 1},{9665, 1},{1149, 1},{3034, 1},{3028, 1},{3027, 1},{9685, 1},{236, 1},{5913, 1},{237, 1},{3052, 1},{2995, 1})
wait(1500,1900)
if (LogoutStamina) and (Self.Stamina() < 960) then
Walker.Stop()
else
Walker.Start()
end

Furpan
05-10-2013, 05:42 PM
Hey, how are you suppose to setup your backpacks inside depot so it could keep auto depositing without problems? I tried one backpack inside another, doesn't work. And I tried a bunch of backpacks up front, doesn't work either.

This is what the script I'm using looks like.


elseif (labelName == "deposit") then
Walker.Stop()
Self.ReachDepot()
Self.DepositItems({10290, 0}, {3079, 0}, {8027, 0}, {3434, 0}, {7456, 0}, {8073, 0}, {8043, 0}, {3324, 0}, {8092, 0}, {7430, 0}, {8045, 0}, {9304, 0}, {3574, 0}, {3067, 0}, {8093, 0}, {816, 0}, {3284, 0})
Self.DepositItems({3010, 1},{5914, 1},{9665, 1},{1149, 1},{3034, 1},{3028, 1},{3027, 1},{9685, 1},{236, 1},{5913, 1},{237, 1},{3052, 1},{2995, 1})
wait(1500,1900)
if (LogoutStamina) and (Self.Stamina() < 960) then
Walker.Stop()
else
Walker.Start()
end

Self.DepositItems({Item Id, Spot})
0 = first spot inside your depot.
1 = second spot inside your depot.

Nightimarez
05-10-2013, 07:20 PM
So what happens when the first spot is full?

Syntax
05-10-2013, 08:20 PM
It will go to the next backpack in the cascade? Just make sure the last item is a container.
Also, why are you using two deposit functions? Just combine them into one or it will probably mess up.