09-20-2022, 03:06 PM
Hello, im trying to use this script but it doens't move to belt
local containers = getcontainers()
for _, container in ipairs(containers) do
for __, item in ipairs(container.items) do
if item.id == 3031 and item.count == 100 then
useitemslot(item.index, container.index)
wait(300, 500)
stackitems()
wait(500, 700)
moveitems('platinum coin', 'belt', container.index, 100)
wait(500, 700)
break
end
end
end
from:
can you help me fix it?
local containers = getcontainers()
for _, container in ipairs(containers) do
for __, item in ipairs(container.items) do
if item.id == 3031 and item.count == 100 then
useitemslot(item.index, container.index)
wait(300, 500)
stackitems()
wait(500, 700)
moveitems('platinum coin', 'belt', container.index, 100)
wait(500, 700)
break
end
end
end
from:
can you help me fix it?