Everyone who has never used our Bots before, can test each one for 2 days without any limitation. The trial is given automatically when you login on the Bot, but in some cases it wouldn't work (security reasons). If this happens, send me a private message and i will be checking the failed trials manually and adding it for those who didn't get it.
We are looking for resellers who may accept payment methods different from ours, including classictibia's cash, realesta's cash, mastercores' cash, etc. Interested? Click here at anytime.
The container index is a number given based on order you open the backpacks. It starts from zero. If you have hard time to find out what's the index of each container, I recommend you to run this code, it will print on console the containers index, name and how many slots are being used. So you can leave the backpacks with different items count and run the code then you will know what's the index of each one.
local containers = getcontainers()
for _, cont in ipairs(containers) do
print('[' .. cont.index .. '] ' .. cont.name .. ' -> used slots: ' .. cont.usedslots)
end
Example:
[0] blue backpack -> used slots: 1
[2] red backpack -> used slots: 6