Results 1 to 2 of 2

Thread: Procedure LeaveEvery;

  1. #1
    Join Date
    Feb 2006
    Location
    Locked in RAM's closet !
    Posts
    2,001
    Mentioned
    0 Post(s)
    Quoted
    3 Post(s)

    Default Procedure LeaveEvery;

    This just waits (like you left or somthing).
    I noticed i do this a lot :\
    or turn to tv for like 45 secs

    well heres what you need :



    SCAR Code:
    var
    Leave : Integer;

    SCAR Code:
    MarkTime(Leave);

    SCAR Code:
    Procedure LeaveEvery( Mins, SleepLong : Integer );
    Begin
      If ( ( TimeFromMark ( Leave ) / 1000) / 60 >= Mins ) Then Begin

        If (SleepLong > 5) then
          SleepLong := 5;

        Case Random(SleepLong) of

          0 : Sleep( 30000 + Random ( 15000 ) );
          1 : Sleep( 75000 + Random ( 30000 ) );
          2 : Sleep( 120000 + Random ( 45000 ) );
          3 : Sleep( 200000 + Random ( 60000 ) );
          4 : Sleep( 500000 + Random ( 60000 ) );
          5 : Sleep( 1000000 + Random ( 60000 ) );

        End;

        If Not LoggedIn Then
          LoginPlayer;

      End;
    End;


    Works great for antiban;

    SCAR Code:
    procedure AntiBan;
    begin
      RandomChatEvery(10 + Random(5));
      RotateEvery(20 + Random(10));
      LeaveScreenEvery(5 + Random(5));
      HoverEvery(15 + Random(5), 'random');
      PickUpMouseEvery(5 + Random(10))
      RandomRClickEvery(15 + Random(5))
      LeaveEvery(35 + Random(15), 5);
        if (KillScriptTime > 0) then
        KillScript(KillScriptTime);
    end;

    I think that might help a bit.
    Darky has stopped by to say hello :).
    10-21-2010
    Updated-
    10-09-2012

  2. #2
    Join Date
    Jun 2006
    Posts
    250
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks! I thought this was already in SRL though...

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Procedure TypeSendRandom & Procedure AutoResponder!
    By Ultra in forum Research & Development Lounge
    Replies: 12
    Last Post: 01-08-2008, 07:04 PM
  2. Replies: 8
    Last Post: 05-24-2007, 11:57 PM
  3. Procedure that calls random procedure?
    By Secet in forum OSR Help
    Replies: 2
    Last Post: 03-03-2007, 03:56 PM

Posting Permissions

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