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.



Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
item picker
#1
i need a script to move certain items to a certain bp i wanna use it for runes and mfs refill
Reply

#2
Hello.

moveitems(string item, string to, string from, optional in count) [boolean]Moves items based on its name or id.
|Only Registered members can see download links. | Click here to buy subscription or here to register.
Reply

#3
|Only Registered members can see download links. | Click here to buy subscription or here to register.
can u give an example if i where to move sds to main bp?
Reply

#4
moveitems('sudden death rune', 'main bp name, id or index', 'bp sds name, id or index', 100)
Reply

#5
|Only Registered members can see download links. | Click here to buy subscription or here to register.
what is the index?
Reply

#6
|Only Registered members can see download links. | Click here to buy subscription or here to register.

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

Blue backpack index = 0
Red backpack index = 2.
Reply

#7
|Only Registered members can see download links. | Click here to buy subscription or here to register.
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016