Results 1 to 16 of 16

Thread: My first Autotyper!

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

    Default My first Autotyper!

    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!

    Code:
    //////////////////////////////////////////////////////
    //////            First autotalker!                  //////
    //////           Created by Bell1313             //////
    //////           Credit to Bebemycat2           //////
    //////           for the great tutorial!           //////
    //////           Ilove8it aswell!                   //////
    /////////////////////////////////////////////////////
    v.0.1 - Could easily get banned
    v.0.2 - Added 0.2 of a second randoms, same as above really
    v.0.3 - Added the "f" keyes!!!!
    More coming soon!

  2. #2
    Join Date
    Dec 2006
    Posts
    3
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Look's good, good job

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

    Default

    If you are using SRL and typesend, there is a random type speed, human like. And for your next version, maybe make it so once you hit a specified key, it will type the message.

    Good job
    thanks the scar noob, for the avatar, it rocks!

    my sig owns

  4. #4
    Join Date
    Oct 2006
    Posts
    2,297
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    1.5 sec is a bit less for typing for example:
    "red:shake:buying 3 pray pots, 1 range pot and a bow string "
    Don't you think? And like Fourscape said, try to make it send when pressing for ex. F2

    procedure F2Message;
    begin
    if (IsFKeyDown(2)) then
    begin
    w1;
    end;
    end;

    with this, when you press F2, the script is going to send the 'w1' >>> your const with the message.
    Good luck!

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

    Default

    Thanks for the comments! Ill fix it up ill be back!

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

    Default

    Hey Ill make an auto talker just for you so you can learn from it... give me 20 minutes.
    thanks the scar noob, for the avatar, it rocks!

    my sig owns

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

    Default

    Ok, Thanks

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

    Default

    It's not very complicated...

    SCAR Code:
    program testautotalker;
    {.include SRL\SRL.SCAR}


    //---------------------------------------------------------------//
    Const
    Phrase1 = 'Replace'; //This would be phrase 1. Hit F5 to say.
    Phrase2 = 'Replace'; //This would be phrase 2. Hit F6 to say.
    //---------------------------------------------------------------//


    //---------------------------------------------------------------//

    Procedure AutoType;
    Begin
     If (IsFKeyDown(5)=True) then
      Begin
       TypeSend(Phrase1)
        Wait(2000+random(1000))
         end;
         Begin
        If (IsFKeyDown(6)=True) then
       Begin
      TypeSend(Phrase2)
     Wait(2000+Random(1000))
    end;
    end;
    end;
    //---------------------------------------------------------------//

    begin
    SetupSrl;
    //---------------//
    Repeat
    AutoType;      //This part will go on untill you stop script, so you can send as many messages as u want
    Until(False);
    //---------------//
    end.

    And, if you wanted to add simple colors to the text...
    SCAR Code:
    program testautotalker;
    {.include SRL\SRL.SCAR}


    //---------------------------------------------------------------//
    Const
    Phrase1 = 'Replace'; //This would be phrase 1. Hit F5 to say.
    Phrase2 = 'Replace'; //This would be phrase 2. Hit F6 to say.
    Color   = 'Cyan:'; //This is the color you will use, change or leave blank.

    //---------------------------------------------------------------//


    //---------------------------------------------------------------//

    Procedure AutoType;
    Begin
     If (IsFKeyDown(5)=True) then
      Begin
       TypeSend(Color+Phrase1)
        Wait(2000+random(1000))
         end;
         Begin
        If (IsFKeyDown(6)=True) then
       Begin
      TypeSend(Color+Phrase2)
     Wait(2000+Random(1000))
    end;
    end;
    end;
    //---------------------------------------------------------------//

    Begin
     SetupSrl;
      Repeat
      AutoType;
     Until(False);
    end.
    thanks the scar noob, for the avatar, it rocks!

    my sig owns

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

    Default

    Ok, ill put this sorta thing in my script and ill put it on in a few minutes! Thanks man!

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

    Default

    Np. You have to start learning somewhere, might as well be from me, but remember, "I" am still learning =D
    thanks the scar noob, for the avatar, it rocks!

    my sig owns

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

    Default

    yeah, got it mate, check it out, i change the link so it should be v.0.3

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

    Default

    What sort of thing do i need to qualify as a SRL member, the guide is quite vague.

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

    Default

    The guide is not vague... folow it and you will be an SRL member... An auto talker won't get you in though if THAT was the root of your question.
    thanks the scar noob, for the avatar, it rocks!

    my sig owns

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

    Default

    The guide is not vague... folow it and you will be an SRL member... An auto talker won't get you in though if THAT was the root of your question.

    SCAR Code:
    ///Change to true below if you want it to say it only once///
     begin
     ActivateClient;
     repeat
     autotlk;
     until(false)//change to true if you want it to say only one time.
    end.

    If you changed False to True, it wouldn't type anything. Just to clarify. And since I helped you so much im SOOOO glad you added me to credits =P

    Good luck on next version. What are your plans?
    thanks the scar noob, for the avatar, it rocks!

    my sig owns

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

    Default

    auto login and then autotype, it will log out on the f9 key, it needs help, its in the help section.

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

    Default

    Here ya go, just read instructions in green =D

    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) //
    //FILL IN PLAYER FORM!!!
    //F7 Logs in
    //F8 logs out


    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 DeclarePlayers;
    begin

         HowManyPlayers  := 2;
         NumberOfPlayers( HowManyPlayers );
         CurrentPlayer := 0;

         Players[0].Name      := 'UserName';
         Players[0].Pass      := 'Password';
         Players[0].Nick      := 'Nickname';
         Players[0].Active    := True;

     end;



    //////////////////////Don't Change After here//////////////////////
    procedure Autotlk;
    begin
    If (IsFkeyDown(1)=True) then
     Begin
      Typesend(w1)
       Wait(2000+random(1000))
        end;
      Begin
       If(IsfKeydown(2)=true) then
        begin
         Typesend(w2)
          Wait(2000+random(1000))
           end;
       Begin
        If(IsfKeydown(3)=true) then
          begin
           Typesend(w3)
            Wait(2000+random(1000))
             end;
         Begin
          If(IsfKeydown(4)=true) then
           begin
            Typesend(w4)
             Wait(2000+random(1000))
              end;
          Begin
           If(IsFKeyDown(7)) then
            Begin
    Wait(100+random(100))        
            LogInPlayer;
              end;
               end;
           Begin
            If(IsFKeyDown(8)) then
             Begin
    Wait(100+random(100))
              LogOut;
              end;
            end;
          end;
        end;
      end;
    end;

     begin
     ActivateClient;
     SetupSrl;
     DeclarePlayers;
     repeat
     autotlk;
     until(false)
    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. AutoTyper V1.1 [VB6]
    By CheetahNub in forum C#/Visual Basic Help and Tutorials
    Replies: 3
    Last Post: 01-31-2009, 01:26 PM
  2. Need some help with my autotyper
    By Krim0407 in forum OSR Help
    Replies: 2
    Last Post: 05-17-2008, 03:33 PM
  3. AutoTyper
    By KoKouKo in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 03-30-2008, 11:11 PM
  4. [SRL 4] AutoTyper!
    By RudeBoiAlex in forum RS3 Outdated / Broken Scripts
    Replies: 28
    Last Post: 11-04-2007, 01:41 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
  •