Results 1 to 6 of 6

Thread: Old scar script that i need...

  1. #1
    Join Date
    May 2008
    Location
    Utah
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Old scar script that i need...

    Ok here is what i need, i remember finding a script that you can run that just keeps typing in just one button. it was the space bar to keep your guy logged in. i need that script but i can't find it. does any one know where i can get it?

  2. #2
    Join Date
    May 2008
    Location
    Utah
    Posts
    117
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  3. #3
    Join Date
    Dec 2006
    Location
    The Underground
    Posts
    134
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If all the script does is press the space bar, make it...It wouldnt be that hard of a script. Does it have any randomness to it?

  4. #4
    Join Date
    Aug 2007
    Posts
    984
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    just use...

    Ultimate antiban by lolislol

    Code:
    http://www.villavu.com/forum/showthread.php?t=31835
    SRL > Runescape

    Quote Originally Posted by brent8900 View Post
    when i download it its a FAWG.rar how to i get it to FAWG.exe

  5. #5
    Join Date
    Dec 2007
    Location
    Canada
    Posts
    187
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    why not make your own script to keep you logged in it would be so easy, in fact it is so easy that im just gonna write one right now

    SCAR Code:
    Program MaxEasyNoobScript;

    var
    x,y,times: integer;

    Const
    HowMAnyTimeShouldIKeepYouLoggedIn= 999;

    Procedure CrazyMadStayLoggedInProcedure;
    begin
      TypeSend('                    Im a ghost thats logged in wooooo');
      Times := times + 1
      Wait(120000);
    end;

    Procedure Proggy;
    begin
      WriteLn('----------------------------');
      WriteLn('--' + TimeRunning + '');
      WriteLn('-- Kept You Logged in ' + IntToStr(Times) + ' times !!');
      WriteLn('----------------------------');
    end;

    Begin
      repeat
       CrazyMadStayLoggedInProcedure;
      until(HowMAnyTimeShouldIKeepYouLoggedIn >= Times)
      Proggy;
    end;
    I'm baaaack

  6. #6
    Join Date
    Jun 2008
    Location
    new hampshire, U.S.A
    Posts
    32
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    in that script youwrote, rs2 trims so put a period before all the spaces on line 11

    heres the better version:

    Program MaxEasyNoobScript;

    var
    x,y,times: integer;

    Const
    timestorepeat= 999;

    Procedure main;
    begin
    i := random(15);
    case i
    1 : TypeSend('flash2:wave2:. Im a ghost thats logged in... wooooo');
    2 : TypeSend(''flash2:wave2:. ooooooohhh, im going to get you');
    3 : TypeSend(''flash2:wave2oohhh ... now im over here .');
    4 : TypeSend('flash2:wave2: ooooooohhh, mmmmm, taaaaaaastyy');
    5 : TypeSend('flash2:wave2:run away now!!! .');
    6 : TypeSend('flash2:wave2: aaaahhhhhhh, u should listen!!!');
    Times := times + 1
    Wait(150000 + random(25000));
    end;

    Procedure Proggy;
    begin
    WriteLn('----------------------------');
    WriteLn('-- Ran For ' + TimeRunning + '');
    WriteLn('-- Kept You Logged in ' + IntToStr(Times) + ' times !!');
    WriteLn('----------------------------');
    end;

    Begin
    repeat
    main;
    until(timestorepeat >= Times OR isfkeydown(1))
    Proggy;
    end;

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. My First Scar Script!
    By Vivoxity in forum First Scripts
    Replies: 16
    Last Post: 06-04-2008, 11:21 PM
  2. Replies: 2
    Last Post: 03-02-2008, 09:26 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
  •