Results 1 to 9 of 9

Thread: My first ever script! (autotyper)

  1. #1
    Join Date
    Jan 2007
    Location
    Somewhere....
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My first ever script! (autotyper)

    Autotyper bELl v.0.1

    OK, so this is my first autotyper ever. Any suggestions on improvement would be greatly helpful to me! Thanks in advance!

    Update - v.0.2

    Please post comments

    Ok, so this is my first autotyper! Come to think of it, my first script! Fairly straight forward, its got a 100 milisecond random on each word/sentance!
    Please Enjoy!
    Any ideas for improvements would be great aswell!

    SCAR Code:
    //////////////////////////////////////////////////////
    //////            First autotalker!             //////
    //////           Created by Bell1313            //////
    //////           Credit to Bebemycat2           //////
    //////           for the great tutorial!        //////
    //////           Ilove8it aswell!               //////
    //////////////////////////////////////////////////////
    //Dont forget to drag the crosshair on at the beggining!
    //Dont think it will ban! Ive used it and no bans so far!
    //Read instuctions below. (in green) //

    program Autotalker;
    {.include SRL/SRL.scar}
    const
    w1='';//type what ever you want it to say between the ''!!
    w2='';//Same here! If you dont want it to say anything, dont put anything!
    w3='';//Same here!
    w4='';//same here

    procedure Autotlk;
    begin
     wait(1500+random(100))
     TypeSend(w1);
     wait(1500+random(100))
     TypeSend(w2);
     wait(1500+random(100))
     TypeSend(w3);
     wait(1500+random(100))
     TypeSend(w4);
     end;

     begin
     ActivateClient;
     repeat
     autotlk;
     until(false)//change to true if you want it to say only one time.
    end.

  2. #2
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Well it works... there's not much more I can say, other than maybe standards.

    Next step is to try something you can learn more from. For that, get the massive scar learning package, see my tutorial for a link. There's games you can write simple scripts for, without getting banned, and allowing you to focus on 1 technique at a time.

  3. #3
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    Well it works... there's not much more I can say, other than maybe standards.

    Next step is to try something you can learn more from. For that, get the massive scar learning package, see my tutorial for a link. There's games you can write simple scripts for, without getting banned, and allowing you to focus on 1 technique at a time.

  4. #4
    Join Date
    Jan 2007
    Location
    Somewhere....
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    kk kool, where is you tutorial thing? lol

  5. #5
    Join Date
    Sep 2006
    Posts
    5,219
    Mentioned
    4 Post(s)
    Quoted
    1 Post(s)

    Default

    FAQ in sig

  6. #6
    Join Date
    Nov 2006
    Posts
    1,103
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    i told you to put SetupSRL and ActivateClient in it
    Infractions, reputation, reflection, the dark side of scripting, they are.

  7. #7
    Join Date
    Jan 2007
    Location
    Somewhere....
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    K, done that

  8. #8
    Join Date
    Jan 2007
    Location
    Somewhere....
    Posts
    77
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Ok

    So i created a new one on with all ure feedback, ill be putting it on now! Please give feedback on this one aswell

  9. #9
    Join Date
    Oct 2006
    Posts
    189
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    This is more how I would have done it.


    SCAR Code:
    //////////////////////////////////////////////////////
    //////            First autotalker!             //////
    //////           Created by Bell1313            //////
    //////           Credit to Bebemycat2           //////
    //////           for the great tutorial!        //////
    //////           Ilove8it aswell!               //////
    //////////////////////////////////////////////////////
    //Dont forget to drag the crosshair on at the beggining!
    //Dont think it will ban! Ive used it and no bans so far!
    //Read instuctions below. (in green) //

    program Autotalker;
    {.include SRL/SRL.scar}
    const
    w1=''; //F5
    w2=''; //F6
    w3=''; //F0
    w4=''; //F11

    procedure Autotlk;
    begin
    If (IsFKeyDown(5)) then
    Begin
     wait(1500+random(100))
     TypeSend(w1);
     end;
    If (IsFKeyDown(6)) then
    Begin
     wait(1500+random(100))
     TypeSend(w2);
     end;
    If (IsFKeyDown(10)) then
    Begin
     wait(1500+random(100))
     TypeSend(w3);
     end;
     Begin
     If (IsFKeyDown(11)) then
     Begin
     wait(1500+random(100))
     TypeSend(w4);
     end;
     end;
     end;

     begin
     setupSRL;
     ActivateClient;
     repeat
     autotlk;
     until(false)//change to true if you want it to say only one time.
    end.
    thanks the scar noob, for the avatar, it rocks!

    my sig owns

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. 1st Script! Not an autotyper!
    By Tim0suprem0 in forum First Scripts
    Replies: 15
    Last Post: 03-25-2008, 04:56 AM
  2. First Script Autotyper
    By Xemnas in forum First Scripts
    Replies: 6
    Last Post: 01-05-2008, 12:33 AM
  3. AutoTyper My first script :P
    By scanjet92 in forum First Scripts
    Replies: 2
    Last Post: 12-24-2007, 10:48 AM
  4. Autotyper ( My First Script )
    By Hasslarn in forum First Scripts
    Replies: 19
    Last Post: 11-03-2007, 06:00 PM
  5. first script autotyper
    By snatch in forum First Scripts
    Replies: 11
    Last Post: 08-19-2007, 06:33 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
  •