Results 1 to 6 of 6

Thread: Auto Talker Help

  1. #1
    Join Date
    Dec 2007
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Talker Help

    Hi,
    I started trying to program in SCAR today. This is probably a dumb question but how do you get it to work in runescape? It works in the screen below in SCAR. What do you put in the script to make it type in the runescape screen?

    Thanks a lot

    Kevin0095

    Here is my script:

    program AutoTyper;

    const

    message1='Selling Stuff!!!';

    procedure typer;
    begin
    wait(2500)
    writeln(message1)
    end;

    begin
    repeat
    autotalker;
    until(false)
    end.

  2. #2
    Join Date
    Mar 2007
    Posts
    3,116
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Instead of writeln(message1) you would put typesend(message1). And right under the line that says program put {.include srl/srl.scar}. So it would be:

    SCAR Code:
    program AutoTyper;
    {.include srl/srl.scar}
    const

    message1='Selling Stuff!!!';

    procedure typer;
    begin
    wait(2500)
    Typesend(message1)
    end;

    begin
    repeat
    autotalker;
    until(false)
    end.

  3. #3
    Join Date
    Dec 2007
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks a lot!

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

    Default

    SCAR Code:
    program AutoTyper;
    {.include srl/srl.scar}
    const
     
    message1='Selling Stuff!!!';
     
    procedure typer;
    begin
    wait(2500);
    Typesend(message1);
    end;
     
    begin
    repeat
    autotalker;
    until(false)
    end.

    Also try using semicolons after comands like how I put it. Standards!
    This is for Jagex!

    My Public Scripts
    Simple AutoTalker
    Face Maker

  5. #5
    Join Date
    Feb 2007
    Location
    PA, USA
    Posts
    5,240
    Mentioned
    36 Post(s)
    Quoted
    496 Post(s)

    Default

    SCAR Code:
    program AutoTyper;
    {.include srl/srl.scar}
    const
     
    message1='Selling Stuff!!!';
     
    procedure typer;
    begin
      wait(2500);
      Typesend(message1);
    end;
     
    begin
      repeat
        autotalker;
      until(false)
    end.
    there, standerized =o

  6. #6
    Join Date
    Dec 2007
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks, I have one more question. How do I make it press enter in runescape? I am trying to make an auto talker with 2 messages. The problem is that it types both messages into the same line and does not enter in between them. What do I put in between the 2 messages to make it press enter?

    Thanks!

    kevin0095

    EDIT: Nevermind I got it.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. My First Auto Talker
    By jacka scar MASTER in forum First Scripts
    Replies: 5
    Last Post: 05-08-2008, 10:59 PM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. Help with auto trade/ auto talker script
    By logik in forum OSR Help
    Replies: 5
    Last Post: 03-16-2007, 11:16 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
  •