PDA

View Full Version : Question about depositer



Tryller
08-23-2016, 12:18 PM
How depositer works?
In the script have that two lines

Self.DepositItems({5882, 1}, {3028, 1}, {3029, 1}, {5948, 1}, {11457, 1}, {5920, 1}, {5877, 1}, {3061, 1})
Self.DepositItems({3386, 0}, {3392, 0}, {7402, 0}, {7399, 0}, {3428, 0}, {3416, 0}, {3280, 0}, {3071, 0}, {7430, 0}, {3322, 0})


What is the number "1" and "0" after item id?
Is possible to deposit insed a backpack in depot?
How?

mikjail
08-23-2016, 01:59 PM
How depositer works?
In the script have that two lines



What is the number "1" and "0" after item id?
Is possible to deposit insed a backpack in depot?
How?

The number 1 and 0 are the index of your depot box, which means that in your first box on depot (0) will be deposit this items:

Self.DepositItems({3386, 0}, {3392, 0}, {7402, 0}, {7399, 0}, {3428, 0}, {3416, 0}, {3280, 0}, {3071, 0}, {7430, 0}, {3322, 0})

and in your second box on depot will be deposit this items:
Self.DepositItems({5882, 1}, {3028, 1}, {3029, 1}, {5948, 1}, {11457, 1}, {5920, 1}, {5877, 1}, {3061, 1})

Note: Your boxes on depot start in 0, 1, 2, 3 (0 is your first box, 1 is your second one and so on)

Since XenoBot does this thing there is no need to add those lines of code to your lua, goto to the Walker and select Advanced Waypoints you'll find an option called Deposit Item it will create two label one called Reach Depot and Deposit Items, then you just have to set on the Looter which items do you want to deposit in depot slot 1, 2, 3....

Tryller
08-23-2016, 05:09 PM
Oh yea thank you very much
It help alot, very thanks man
Staff can close thread.

mikjail
08-23-2016, 06:46 PM
Oh yea thank you very much
It help alot, very thanks man
Staff can close thread.

You are welcome!