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
Change Gold: Waypoint Action
#1
Hi All,

I am wondering if it is possible to have a script that can be used in the cavebot section under "action" that will convert gold coins, when that waypoint is reached.

Reason for this request, is due to my high ping, if I use the change gold function that is built into the options, while also looting, I end up with a large amount of items I do not wish to have looted. (High ping problems sigh....).

If you need any more information please let me know.

Thank you
Reply

#2
Hello.

local keepConverting = true
while keepConverting do
    keepConverting = false
    local containers = getcontainers()
    for _, container in ipairs(containers) do
        for i = #container.items, 1, -1 do
            local item = container.items[i]
            if (item.id == 3031 or item.id == 3035) and item.count == 100 then
                useitemslot(item.index, container.index)
                wait(200, 500)
                stackitems()
                keepConverting = true
                break
            end
        end
        if keepConverting then
            break
        end
    end
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016