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
FREE Useful Scripts for Cavebotting
#11
Restart BPs (Close -> Open main bp -> Open last bp inside main bp) on Reconnect
This script will close all open containers, open main backpack (backpack slot) and open the last container located inside main backpack if your character goes offline and online again.

local characterOnline = connected()
if not characterOnline then
    LOGGED_OFF = true
elseif characterOnline and LOGGED_OFF then
    closewindows()
    wait(300, 500)

    local back_item = back()
    if back_item.id > 0 then
        openitem(back_item.id, 'back')
        wait(800, 1200)
        resizewindows()
        wait(100, 300)
        
        local containers = getcontainers()
        for i = #containers, 1, -1 do
            local cont = containers[i]
            if cont ~= nil and cont.open then
                for __, item in ipairs(cont.items) do
                    if itemhasflags(item.id, 4) then
                        openitemslot(item.index, cont.index, true)
                        wait(800, 1200)
                        resizewindows()
                        break
                    end
                end
                break
            end
        end
    end
    LOGGED_OFF = false
end



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016