Signup Now
Results 1 to 5 of 5

Thread: Character Stuck

  1. #1
    Free User
    Join Date
    Mar 2014
    Posts
    68
    Reputation
    13
    Rep Power
    21

    Character Stuck

    Is there a way to enable the character stuck alarm only if cavebot engine is enabled.

    the alarm goes off if i disable the bot and stand in depot to sort my items.

  2. #2
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,101
    Reputation
    433
    Rep Power
    40
    Make a hotkey

    auto(100)
    if $cavebot and $standtime >= 30000 then
    beep()
    wait(500,800)
    end


    it should works
    Regards
    Last edited by Dworak; 03-31-2014 at 09:30 AM.

  3. #3
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,820
    Reputation
    220
    Rep Power
    27
    Put it in persistent and set how much seconds to do alarm:


    init start


    local stuckTime = 20 -- seconds


    init end


    auto(200, 400)


    if $standtime >= stuckTime*1000 and $cavebot then
    beep() wait(500, 1000)
    end
    Last edited by mistgun; 04-02-2014 at 08:48 AM.

  4. #4
    Banned
    Join Date
    Feb 2014
    Location
    Leetstreet
    Posts
    324
    Reputation
    38
    Rep Power
    0
    Quote Originally Posted by mistgun View Post
    Put it in persistent and set how much seconds to do alarm:


    init start


    local stuckTime = 20 -- seconds


    init end


    auto(200, 400)


    if $standtime >= stuckTime*60 and $cavebot then
    beep() wait(500, 1000)
    end
    It will beep after 1200ms though :P

    Should be stuckTime*1000

  5. #5
    Moderator mistgun's Avatar
    Join Date
    Dec 2013
    Location
    Lodz, Poland
    Posts
    1,820
    Reputation
    220
    Rep Power
    27
    yep my fail, edited

 

 

Posting Permissions

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