Signup Now
Results 1 to 4 of 4

Thread: Log in at xx h

  1. #1
    Banned
    Join Date
    Feb 2014
    Posts
    584
    Reputation
    23
    Rep Power
    0

    Log in at xx h

    Hi
    There is action that I can set hour when char log in and start bot? Example at 20:35 log in and start bot?

  2. #2
    Free User
    Join Date
    Dec 2015
    Posts
    24
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by frems View Post
    Hi
    There is action that I can set hour when char log in and start bot? Example at 20:35 log in and start bot?
    Ofc Yes. Take and enjoy

    -- Author: Adamsz
    -- Created: 2016-02-08
    -- Verison: 1.0.0
    init start
    local account = "acc" -- account
    local password = "pass" -- number
    local character = "name" -- name of your character

    init end

    auto(5000,6000)
    if(tonumber(os.date("%H")) == 20 and tonumber(os.date("%M")) == 35) and
    if not $connected then
    print("Trying to relog "..character)
    connect(account, password, character)
    if $connected then
    setsetting('Cavebot/Enabled', 'yes')
    print("Successfully logged in!")
    end
    end
    else

    end

  3. #3
    Banned
    Join Date
    Feb 2014
    Posts
    584
    Reputation
    23
    Rep Power
    0
    Quote Originally Posted by Adamszszsz View Post
    Ofc Yes. Take and enjoy

    -- Author: Adamsz
    -- Created: 2016-02-08
    -- Verison: 1.0.0
    init start
    local account = "acc" -- account
    local password = "pass" -- number
    local character = "name" -- name of your character

    init end

    auto(5000,6000)
    if(tonumber(os.date("%H")) == 20 and tonumber(os.date("%M")) == 35) and
    if not $connected then
    print("Trying to relog "..character)
    connect(account, password, character)
    if $connected then
    setsetting('Cavebot/Enabled', 'yes')
    print("Successfully logged in!")
    end
    end
    else

    end

    thanks. its action?
    what give: print("Trying to relog "..character)

  4. #4
    Free User
    Join Date
    Dec 2015
    Posts
    24
    Reputation
    10
    Rep Power
    0
    Quote Originally Posted by frems View Post
    thanks. its action?
    what give: print("Trying to relog "..character)
    It's persistent,
    Nothing special , it will show in console "Trying to relog " and your character name.

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •