Results 1 to 4 of 4

Thread: how do i add break/rest time?

  1. #1
    Join Date
    Oct 2008
    Posts
    68
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default how do i add break/rest time?

    Well my question is how to add breaks and reast times, like the bot will logg off for 20 minutes then continue scripting from last point or from fresh?

    i want to add it to a script that has already been made, so it might be kind of complicated, since i really dont knwo anythign about scripting

    a code would be nice.

  2. #2
    Join Date
    Jul 2007
    Location
    Ottawa, Canada
    Posts
    930
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    procedure Sleep20Mins;
    begin
      Logout;
      wait(20*60000);
      LoginPlayer;
    end;
    ~ Metagen

  3. #3
    Join Date
    Dec 2007
    Location
    UK
    Posts
    479
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well, as you say, it all depends on what script your using whether it is even possible. However, Metagen's interesting example WILL get you banned because the wait has no randomness in it at all. (Apologies Metagen)

    This is what I have in my script:

    SCAR Code:
    Procedure Sleepy;
    Begin
      If Not LoggedIn then Exit;
      Logout;
      Sleep(20*60000+RandomRange(30000,90000)); // Random range makes it less detectable.
      LoginPlayer;
    end;
    I don't play runescape. I auto it

  4. #4
    Join Date
    Oct 2008
    Posts
    68
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by 0wn 4 skill View Post
    Well, as you say, it all depends on what script your using whether it is even possible. However, Metagen's interesting example WILL get you banned because the wait has no randomness in it at all. (Apologies Metagen)

    This is what I have in my script:

    SCAR Code:
    Procedure Sleepy;
    Begin
      If Not LoggedIn then Exit;
      Logout;
      Sleep(20*60000+RandomRange(30000,90000)); // Random range makes it less detectable.
      LoginPlayer;
    end;


    damn that makes sense, so i can put it anywhere in a script, say SRL 4 (quick powerminer) ?

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 67
    Last Post: 03-25-2009, 10:32 AM
  2. break?
    By faster789 in forum OSR Help
    Replies: 2
    Last Post: 03-31-2008, 03:11 AM
  3. break
    By jhildy in forum OSR Help
    Replies: 3
    Last Post: 08-10-2007, 05:47 PM
  4. Long time listener...first time caller
    By Ransom in forum Who Are You ? Who ? Who ?
    Replies: 0
    Last Post: 11-04-2006, 02:05 AM

Posting Permissions

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