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
Turn gold into plat
#1
The bot on retrocores has an option to turn gold coins into plat but I cant find it on Realesta's 
Also if there's a way for it to stack them on the arrow slot as in Realesta once you turn them they dont stack automatically like in Retros.
TYVM! !!

#2
Hello.

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

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

hey!
it turns the gold into plat but is not stacking them in the arrow slot. in this server unlike retrocores once you turn the gold they dont stack automatically but takes the whole slot meaning once you turned 20 you dont have any more slots in that backpack

#4
This is to use gold or platinum coins and stack.
local containers = getcontainers()
for _, container in ipairs(containers) do
    for __, item in ipairs(container.items) do
        if (item.id == 3031 or item.id == 3035) and item.count == 100 then
            useitemslot(item.index, container.index)
            wait(300, 500)
            stackitems()
            wait(300, 500)
            break
        end
    end
end

This is to use gold coin, stack and move platinum coin to arrow slot.
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

This is to use platinum coin, stack and move crystal coin to arrow slot.
local containers = getcontainers()
for _, container in ipairs(containers) do
    for __, item in ipairs(container.items) do
        if item.id == 3035 and item.count == 100 then
            useitemslot(item.index, container.index)
            wait(300, 500)
            stackitems()
            wait(500, 700)
            moveitems('crystal coin', 'belt', container.index, 100)
            wait(500, 700)
            break
        end
    end
end

This is to use gold/platinum coins, stack and move only crystal coin to arrow slot.
local containers = getcontainers()
for _, container in ipairs(containers) do
    for __, item in ipairs(container.items) do
        if (item.id == 3031 or item.id == 3035) and item.count == 100 then
            useitemslot(item.index, container.index)
            wait(300, 500)
            stackitems()
            wait(500, 700)
            if item.id == 3035 then
                moveitems('crystal coin', 'belt', container.index, 100)
                wait(500, 700)
            end
            break
        end
    end
end

#5
works perfectly thanks !!

#6
I enter this in "console" and it only works for the first stack of gold and then i have to enter it again.
What am i doing wrong?

#7
You should use it on Persistents, not console.

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

Thank you =)

#9
if belt().name == 'platinum coin' and item.count == 100 then
moveitems('platinum coin', 'Red Backpack', 'belt')
end


This doesnt work and I cant find this anywhere.
If you have 100 plat on arrowslot then move them to bp, to avoid pkers to get even plat coins.
Thanks!



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016