Results 1 to 3 of 3

Thread: Simple Anti-Log Out Script?

  1. #1
    Join Date
    Mar 2007
    Location
    En su casa de madre
    Posts
    43
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Simple Anti-Log Out Script?

    Can someone create a simple script that helps prevent log outs?

    Can someone make the script randomly click on tabs like stats and quests and etc.

    This script would be useful when you want play the game semi-legit and still do something else while you're playing (like paperwork).

  2. #2
    Join Date
    Jan 2007
    Location
    the middle of know-where
    Posts
    1,308
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    I think.. something like this....

    Set the page..

    Then play this:

    SCAR Code:
    Program nologoff;
    {.include srl/srl.scar}

    procedure randoming;
     begin
      if not LoggedIn then Exit;
       case(Random(25)) of
        1:HoverSkill('magic',False); //make it whatever you were just working on
        3:GameTab(1);
        5:RandomMovement;
        7:HoverSkill('Smithing',False); //make what you might work on
        9:RandomMovement;
        11:BoredHuman;
        13:GameTab(2);
        15:RandomMovement;
        17:BoredHuman;
        19:GameTab(3);
        21:RandomMovement;
        23:BoredHuman
        25:HoverSkill('Attack',False); //make another random one..
       end;
     end;

    Begin
     SetupSRL;
     Wait(3000);
     randoming;
    end.

    something like that might work.. don't know if it's what you want...
    On vacation in NeverLand,
    Code:
    typedef int bool;
    enum { false, true };

  3. #3
    Join Date
    Dec 2007
    Location
    Wizzup?'s boat
    Posts
    1,013
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    HoverSkill('random');

    also

    SCAR Code:
    gametab(random(15)+1);

    and ADD a wait between each

    SCAR Code:
    repeat
      NoLogOff;
      Wait(RandomRange(2000, 30000));
    until (not LoggedIn);

    and anomymity, if you want an option to be for more than 1 number of a case, add commas

    eg:

    SCAR Code:
    case(Race)of
      'chinese', 'indian': Hemisphere := 'North';
      'australian', 'kiwi': Hemisphere := 'South';
    end;
    Project: Welcome To Rainbow

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [Req] Simple Anti Logout
    By NightBlade in forum OSR Help
    Replies: 12
    Last Post: 02-13-2008, 07:56 AM
  2. I need a script with JUST Anti-Bans and Anti-Randoms.
    By Dipped_in_Pwn_Sauce in forum RS3 Outdated / Broken Scripts
    Replies: 2
    Last Post: 11-18-2007, 02:38 PM
  3. Anti-X question! (anti-ban, anti-randoms)
    By jvwarrior in forum OSR Help
    Replies: 9
    Last Post: 10-31-2007, 03:09 AM
  4. A simple anti-logout
    By Floor66 in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 10-20-2007, 11:31 AM
  5. Replies: 5
    Last Post: 03-26-2007, 07:57 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
  •