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
Advanced Gold Changer
#1
@Arkilys

Hello, i need script to change my 100 gold coins in my backpack to 1 platinum coin and then move platinum coin to arrow slot and stack them with other platinum coins.

Or just something moving all platinum coins all the time to arrow slot, to have a change to don't lose them when character is dying.


Thank you in advance.
Reply

#2
Hello.

Convert and move to your belt slot.
if connected() then
    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(800, 1000)

                moveitems('platinum coin', 'belt', container.index)

                break
            end
        end
    end
end

or convert and move to your belt slot and also check for platinum on bp and move to belt.
if connected() then
    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(800, 1000)

                moveitems('platinum coin', 'belt', container.index)
                wait(800, 1000)
                break
            end
        end
    end

    if itemcount('platinum coin') > 0 then
        moveitems('platinum coin', 'belt', '', 100)
    end
end

Or this to just check for platinums and move to belt.
local BP = 'blue backpack'
if itemcount('platinum coin', BP) > 0 then
    moveitems('platinum coin', 'belt', BP, 100)
end
Reply

#3
@Arkilys

Thank you
|Only Registered members can see download links. | Click here to buy subscription or here to register.
|Only Registered members can see download links. | Click here to buy subscription or here to register.alt="Wink" title="Wink" class="smilie smilie_2" />

Can you also make script to stack platinum coins in backpack? (for paladins)
Because on realesta now, when u change 100gp to platinum, every time it takes next slot in bp instead of stack them.
Reply

#4
Options -> Change gold/platinum already changes gold to platinum AND platinum to crystal then STACK. But if you really wanna use a LUA script:
stackitems('', true, 'platinum coin')
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016