Results 1 to 13 of 13

Thread: Simple AutoTalker 1.0

  1. #1
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Simple AutoTalker 1.0

    Simple AutoTalker 1.0


    Its My First Script
    What do u guys think?

  2. #2
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    besides that standards it a regular old talker...keep improving...

    standards should be like this :

    SCAR Code:
    {________________________________________________________________________|
    |                     Simple AutoTalker 1.0                             |
    |                  Making Suckie Typers Type Fast                       |            |
    |                 Author: Gamer 5 aka Im not you 5                      |
    |                                                                       |
    |Instructions 1.Type your message below.            Line 14             |
    |             2.Set the time before typing again.   Line 29             |                                             |
    |_______________________________________________________________________|}

    program autotalker;
    {.include srl/srl.scar}

    const
      message1 ='Type Your message here';//Type your message here.
      message2 ='Typing Message';// Don't Touch!!!!!


    procedure talk;
    begin
      ActivateClient;
      Typesend(message1);//<--
      WriteLn(message2);//<--
    end;


    begin
      repeat
      talk;
      wait(1000);//<--//time till typing same message again milliseconds 1000=1sec.
      until(false)
    end.
    /////////////////////////////Happy Typing////////////////////////////////

    i also had to add semi colons to some place where the <-- are and also the program was green which meant it was part of your 'heading' not good

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  3. #3
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    HyperSecret, the standards you put in the mainloop are wrong.

    They should be:

    SCAR Code:
    begin
      repeat
        talk;
        wait(1000);//<--//time till typing same message again milliseconds 1000=1sec.
      until(false)
    end.
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  4. #4
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    ah crap...didnt even notice it was late and i was alittle tipsy so my bad...lol

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  5. #5
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can you guys make a basic Script of how to click the Button Existing Player in Runescape Starting Screen, or anybutton in Runescape I keep trying to make one it doesn't do anything. It even says script complied, but nothing!

  6. #6
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    on the mainscreen, ya its possible but i dont think anyone has made it...

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  7. #7
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    But can u make a basic script clicking something in runescape just to see, how its done.

  8. #8
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can you guys correct this i cant make it work!!!!!
    I dont know what to try anymore!!!!
    Its suppose to Auto Login!!!!!!
    SCAR Code:
    program AutoLogin;

    Procedure Existing;
    begin
      ClickMouse(460,293,true);
      Wait(3000+random(1700));
    end;

    Procedure ClickPassword;
      Begin
      ClickMouse(596,514,true);
      Wait(2000+random(1800));
      end;

    procedure Login;
       begin
       Clickmouse(548,561,true)
       wait(2000+random(2000));
       end;

    Procedure Continue;

      begin
      Clickmouse(641, 573,true)
      wait (2000+random(2000));
      end;

     Procedure username;
     begin
       SendKeys('Username')
       wait(2000)
       end;

     Procedure password;
     begin
       Sendkeys('Password')
       wait(2000)
       end;

    Procedure Begin1;
    begin
    repeat
     Existing;
      username;
       clickpassword;
        password;
         login;
           continue;
    until(false)
    end;
    begin
    end.

  9. #9
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    man there is a way easier way to do this, dont even both making your own for this:

    SCAR Code:
    procedure DeclarePlayers;
    begin
      HowManyPlayers  := 1;
      NumberOfPlayers(HowManyPlayers);
      CurrentPlayer := 0;

      Players[0].Name :=''; //Character name
      Players[0].Pass :=''; //Character PAss
      Players[0].Nick :=''; //Nickname 3 Letter of char name
      Players[0].Active:=True; //True if you want this player to be ran in the script, false if not


      LoadPlayerArray;

      WriteLn('Using '+ IntToStr(HowManyPlayers) +' Players');
    end;

    you can also make it use more than 1 player if you want

    in your script your mainloop is empty, main loop is this:

    SCAR Code:
    begin
    end.

    need thigns in there that you want to run, and sorry to say there are so many things wrong with that script that it wont work...give me a min or two and ill fix it just to show you

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  10. #10
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Line 4: [Error] (4:1): Unknown identifier 'HowManyPlayers' in script


    How do i fix that???

  11. #11
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    your have to have srl and you need to include srl, look at tuts for that stuff but here is how you were trying to do it:

    SCAR Code:
    program AutoLogin;

    const Username = 'usernamehere';
          Password = 'passwordhere';
    {---------------------}
    Procedure Existing;
    begin
      ClickMouse(460,293,true);
      Wait(3000+random(1700));
    end;
    {---------------------}
    Procedure TyperUserName;
    begin
      SendKeys((Username) + chr(13));
    end;
    {---------------------}
    Procedure TypePassword;
    Begin
      SendKeys(Password);
      Wait(500+random(100));
    end;
    {---------------------}
    procedure Login;
    begin
      Clickmouse(304,323,true);
      wait(2000+random(2000));
    end;
    {---------------------}
    Procedure HereToPlay;
    begin
      Clickmouse(378, 337,true);
      wait (2000+random(2000));
    end;
    {---------------------}
    begin
      Existing;
      TyperUserName;
      TypePassword;
      Login;
      HereToPlay;
    end.

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


  12. #12
    Join Date
    Aug 2007
    Location
    In Your Front Door!
    Posts
    371
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thank You,

    For all your help, sorry but im trying to learn how to script.

    Only one more question....
    How much time does it take for a good scripter to make a really good script, like a guildminer?

  13. #13
    Join Date
    Jun 2007
    Location
    La Mirada, CA
    Posts
    2,484
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    um well not to long if you read enough tuts, ive been doin it for about 1 month and ive created some decent things, umm but guildminers many people stay away from cuz its an ez way to get banned, with all the randoms that you get while in guidminer

    PS +rep would be nice(the checkmark in my post)

    if you need anymore help feel free to add me on msn derekmardian@hotmail.com

    "Failure is the opportunity to begin again more intelligently" (Henry Ford)


Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Simple Autotalker
    By FreakyMonkey in forum First Scripts
    Replies: 3
    Last Post: 03-07-2008, 12:25 PM
  2. Simple AutoTalker
    By gamer 5 in forum RS3 Outdated / Broken Scripts
    Replies: 13
    Last Post: 02-20-2008, 05:25 AM
  3. Simple AutoTalker
    By Bliss in forum First Scripts
    Replies: 7
    Last Post: 12-23-2007, 05:48 PM
  4. simple autotalker!!!
    By noahthepoo in forum First Scripts
    Replies: 10
    Last Post: 11-27-2007, 06:12 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
  •