Results 1 to 10 of 10

Thread: I have a Request not hard but i can use it :)

  1. #1
    Join Date
    Oct 2007
    Posts
    106
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default I have a Request not hard but i can use it :)

    hi to all you scripters.. is it possible to make an anti-log out that wont get me banned or something like that.. so can put my character somewhere that i wont log out because of the script ??

    thx for you time to read this and i hope some1 can help me

  2. #2
    Join Date
    Feb 2009
    Location
    In my uni room with my bong shooting people on css and programming
    Posts
    144
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    there are a few go to the utilities section mate

  3. #3
    Join Date
    Oct 2007
    Posts
    106
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Z3r0Grav View Post
    there are a few go to the utilities section mate
    those are old.. so outdated... i need a new one from this age :P

  4. #4
    Join Date
    Feb 2009
    Location
    In my uni room with my bong shooting people on css and programming
    Posts
    144
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    oh sorry didnt realise lol

  5. #5
    Join Date
    Sep 2006
    Location
    include srl/srl.scar ( aussie)
    Posts
    2,875
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    program New;
    begin
      while LoggedIn do
      begin
        case random(40) of
          0..6: wait(5000);
          7..10: BoredHuman;
          11..14: GameTab(RandomRange(1,10));
          15..17: begin
                    RandomRClick;
                    wait(4000);
                  end;
          18..30: begin
                    RandomRClick;
                    Wait(5000+random(4000));
                    BoredHuman;
    a               GameTqn(random(10))
                  end;
        end;
    end.

    i wrote this in the post, it may work.

  6. #6
    Join Date
    Apr 2007
    Posts
    2,593
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Not a need for an anti-logout script ^.^

  7. #7
    Join Date
    Oct 2007
    Posts
    106
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nicbaz, this will perfent me from logging out? but does it support randoms? cause i need to stay logged in for like hours when im taking a shower or eating (A)

  8. #8
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    Honestly is this for PvP, drop potential gaining?
    Anyway, I've come up with this.
    SCAR Code:
    Program New;
    {.include SRL\SRL.scar}

    Var
      LastAnti : Integer;

    {*******************************************************************************
    Function TimePassed(TimeMarker, Passed): Boolean;
    By: Floor66
    Description: Returns wether the time "Passed" has passed since "TimeMarker" was
                 marked.
    *******************************************************************************}


    Function TimePassed(TimeMarker, Passed): Boolean;
    Begin
      Result := ((GetSystemTime - TimeMarker) >= Passed);
    End;

    Procedure AntiLogout;
    Begin
      MarkTime(LastAnti);
      Case Random(25) Of
        0..4: RandomMovement;
        5, 6: GameTab(1 + Random(10));
        7..10: HoverSkill('random', False);
        11..25: Wait(1000 + Random(555));
      End;
    End;

    Begin
      SetupSRL;
      ActivateClient;
      While LoggedIn Do
      Begin
        //This part does the AntiLogout, random, OR if no AntiLogout has been done in 2~4minutes,
        //it will do AntiLogout too (just a failsafe).
        If (Random(25) = RandomRange(1, 4)) Or TimePassed(LastAnti, RandomRange(120000, 240000)) Then
          AntiLogout;
        FindNormalRandoms;
      End;
    End.

    Couldn't compile it but I think it works.
    Ce ne sont que des gueux


  9. #9
    Join Date
    Oct 2007
    Posts
    106
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    so this i can stay in pvp world logged in for atleast the 30min?
    or much longer?

  10. #10
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    For as long as possible, you could all tele'ing if being attacked or something.
    Ce ne sont que des gueux


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. SRL Scripting = Hard? Indeed.
    By Torrent of Flame in forum News and General
    Replies: 27
    Last Post: 12-21-2008, 02:03 PM
  2. Easy and hard request.
    By ConneX in forum RS3 Outdated / Broken Scripts
    Replies: 5
    Last Post: 10-15-2008, 01:48 AM
  3. Need Hard Request
    By skilld u in forum RS3 Outdated / Broken Scripts
    Replies: 12
    Last Post: 06-30-2008, 05:18 PM
  4. Need help Hard :(
    By ZaSz in forum General
    Replies: 3
    Last Post: 02-18-2008, 07:07 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
  •