Results 1 to 4 of 4

Thread: Pausing/Skipping for a little.

  1. #1
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default Pausing/Skipping for a little.

    So, My bot skips the steps:

    Code:
    begin
     ClearDebug;
     SetUpSRL;
     Prayers;
     Prayersmelee;
    
    repeat
    
    pickuphelm;//Skips this
    pickupbody;//Skips this
    pickuplegs;//Skips this
    pickupaxe;//Skips this
    Waitdharok;//Skips this
    Killdharok;//Skips this
    
    logoutnow;//does this
    login;//does this
    Clickonlogin;//does this
    ClickonSecondlogin;//does this
    
    until(stopitnow=true);
    end.
    I need it to do this:

    Code:
    begin
     ClearDebug;
     SetUpSRL;
     Prayers;
     Prayersmelee;
    
    repeat
    
    pickuphelm;//does this
    pickupbody;//does this
    pickuplegs;//does this
    pickupaxe;//does this
    Waitdharok;//does this
    Killdharok;//does this
    
    logoutnow;//Pauses this and the others below for 3mins.
    login;
    Clickonlogin;
    ClickonSecondlogin;
    
    until(stopitnow=true);
    end.
    Please help me.

  2. #2
    Join Date
    Sep 2010
    Posts
    5,762
    Mentioned
    136 Post(s)
    Quoted
    2739 Post(s)

    Default

    What do your

    pickuphelm
    pickupbody
    pickuplegs
    pickupaxe
    Waitdharok
    Killdharok

    Look like

  3. #3
    Join Date
    Mar 2008
    Posts
    426
    Mentioned
    1 Post(s)
    Quoted
    116 Post(s)

    Default

    Umm..

    Wait(1000) = Waits for 1 second.

    You can also use..

    Wait(RandomRange(100,300); Anywhere from 100-300

    OR

    Wait(500 + Random(500));

    Is that what you wanted to know?



  4. #4
    Join Date
    Feb 2012
    Posts
    26
    Mentioned
    0 Post(s)
    Quoted
    11 Post(s)

    Default

    add me on skype please: (il2pkn00bs) with zeros.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

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