Results 1 to 13 of 13

Thread: Auto Typer

  1. #1
    Join Date
    Apr 2008
    Posts
    223
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Typer

    heres my first script auto typer.
    what it does
    -types in phrase(s) of your choosing X amount of times

    thanks EvilChicken for the help with this one.

    SCAR Code:
    {-----------------------------------|
    |                 _______           |
    |     /\         /___ ___\          |
    |    /  \           | |             |
    |   / -  \          | |             |
    |  /__|___\UTO      |_|YPER         |
    |  by                               |
    |  scissormetimbers                 |
    |                                   |
    | INFO: It randomly types 3 phrases |
    |         of your choosing          |
    |___________________________________}



    program AutoTyper;
    {.include SRL/SRL.scar}

    const

    //-----enter 3 variations of phrase-----\\
     Text1 = 'Ex: selling lobs'; //put phrase here
     Text2 = 'Ex: lobs for sale'; //if you dont want variations leave blank
     Text3 = 'Ex: selling lobs--zezima';  //if you dont want variaions leave blank
     Times = 10; //how many times the script says it

    //--------Don't Touch Below Here--------\\
    procedure SpeakPhrase;

    var
     X: Integer;
     

     begin
      repeat
        case Random(3) of
          0: TypeSend(Text1);
          1: TypeSend(Text2);
          3: TypeSend(Text3);
        end;
        X := X + 1;
        Wait(2500 +random(750));
      until(X >= Times);
      Writeln('Finished, typed phrases' + IntToStr(X) + 'times')
      TerminateScript;
    end;

    begin
      ClearDebug;
      SetupSRL;
      ActivateClient;
      SpeakPhrase;
    end.

  2. #2
    Join Date
    Aug 2007
    Posts
    259
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    This is your first script?

    Awesome!

    Your 1337 man keep up the 1337 scriptage!

  3. #3
    Join Date
    Apr 2008
    Posts
    223
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by metalanca View Post
    This is your first script?

    Awesome!

    Your 1337 man keep up the 1337 scriptage!
    will do!

  4. #4
    Join Date
    Aug 2007
    Posts
    259
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    It ran for about 5 mins perfectly.

    Lol i'm gonna use this for teh spamzors

  5. #5
    Join Date
    Apr 2008
    Posts
    223
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by metalanca View Post
    It ran for about 5 mins perfectly.

    Lol i'm gonna use this for teh spamzors
    whatever you like ;p

  6. #6
    Join Date
    Aug 2007
    Posts
    259
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by scissormetimbers View Post
    i'm 1337 at making scripts

    Agreed

  7. #7
    Join Date
    Apr 2008
    Posts
    223
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  8. #8
    Join Date
    Aug 2007
    Posts
    259
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by scissormetimbers View Post
    I like making scripts

    Well that's just wonderful

  9. #9
    Join Date
    Aug 2007
    Posts
    6
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thats a good idea to have different variations of the phrase

  10. #10
    Join Date
    May 2008
    Posts
    0
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    nice bro gj!

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

    Default

    ha this is an awesome first script, coouldve been simpler prob but rlly nice man.
    I'm baaaack

  12. #12
    Join Date
    Aug 2012
    Posts
    1
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i like this one

  13. #13
    Join Date
    Mar 2007
    Posts
    5,125
    Mentioned
    275 Post(s)
    Quoted
    901 Post(s)

    Default

    Quote Originally Posted by lifes a poem View Post
    i like this one
    You have to be joking.... ~4 years grave-dig...

    Forum account issues? Please send me a PM

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto Typer
    By kevin0095 in forum First Scripts
    Replies: 4
    Last Post: 12-31-2007, 06:38 PM
  2. My First Auto Typer
    By otoole123 in forum First Scripts
    Replies: 12
    Last Post: 12-07-2007, 11:12 PM
  3. VERY VERY VERY x4 auto typer
    By rs cheata in forum First Scripts
    Replies: 14
    Last Post: 11-25-2007, 04:43 AM
  4. i need help again (not an auto typer)
    By corl455 in forum First Scripts
    Replies: 5
    Last Post: 09-18-2007, 09:08 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
  •