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
Relogger - Relog - Reconnect
#1
Star 
local LOGOUT_TIME = { Min = 600, Max = 1200 } -- In seconds. How long should stay online? After that amount of time, the character will be logged out.

n = 0
if connected() then
    setsettings('Tools/Reconnect/Enabled', false) -- put reconnect in seconds/miliseconds, dont logout where monsters are
end

if connected() then
    if NEXT_LOGOUT == nil then
        NEXT_LOGOUT = runningtime() + random(LOGOUT_TIME.Min, LOGOUT_TIME.Max)
    end

    if runningtime() >= NEXT_LOGOUT then
        while connected() do
            wait(1000, 2000)
            if not battlesigned() then
                n = 1
                logout()
            end
        end
        NEXT_LOGOUT = nil
    end
end

if n == 1 then
    if not connected() then
        setsettings('Tools/Reconnect/Enabled', true)
    end
end
Reply



Forum Jump:



Forum software by © MyBB Theme © iAndrew 2016