Results 1 to 4 of 4

Thread: Basic Auto Talker (actual one)

  1. #1
    Join Date
    May 2007
    Posts
    127
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Basic Auto Talker (actual one)

    Hey, I was bored in class today so I decided to make an auto talker. It is not complicated so if you are a beginner (absolute beginner) then this should be a good script for you. If you are already a talented scripter, than you can probably make one better than this, or find one. but still it gets the job done =b
    you attempt to light a fire, you light the fire, you place the raw shrimp on the fire, you accidentally burn the shrimp. DAMMIT!

    Evil Walrus's will control the world someday...

  2. #2
    Join Date
    Feb 2007
    Posts
    433
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    uhhhh did u make this?
    SCAR Code:
    /////////Auto Talker Version 2.0//////////////////////
    /////////by Mechancgod69//////////////////////////////
    ////////A basic script, but it gets the job done//////
    //////////////////////////////////////////////////////
    whats with the
    SCAR Code:
    by Mechancgod69
    and also, if u did make it, it wont work well it will, but all it will do is say it in the debug box,
    SCAR Code:
    Writeln('blahblah');
    only write in the debug box, change it to
    SCAR Code:
    TypeSend('blahblahblah');
    and add
    SCAR Code:
    {include.SRL/SRL.scar}
    right before the const. a couple other things, add more randoms to the waits like instead of
    SCAR Code:
    procedure autotype;
    begin
     wait(5000)
     writeln(Message1);
     wait(5000)
     writeln(Message2);
    end;
    put
    SCAR Code:
    procedure AutoType;
     begin
      TypeSend(Message1);
      Wait(5000+random(1000));
      TypeSend(Message2);
      Wait(5000+random(1000));
     end;
    but, personnaly i would pretty much change everything..
    heres a "better" auto talker
    SCAR Code:
    program BasicAutoTalker;
    //////////////////////////////////////////////////////
    ///            Auto Talker Version 2.0             ///
    ///                By Mechancgod69                 ///
    ///    A basic script, but it gets the job done    ///
    ///           Press F5 For Message One             ///
    ///          And Press F6 For Message Two          ///
    //////////////////////////////////////////////////////

    {.include SRL/SRL.scar}

    const
    Message1 = 'Hola';
    Message2 = 'Sup???';

    procedure AutoType;
     begin
      If(IsFKeyDown(5)) then
      TypeSend(Message1);
      If(IsFKeyDown(6)) then
      TypeSend(Message2);
    end;

    begin
     ActivateClient
      repeat
       AutoType;
      until(IsFKeyDown(12));
    end.
    well, i hope that helps

  3. #3
    Join Date
    Jun 2007
    Location
    Varrock East bank,
    Posts
    87
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    LOl pwnt... you just completely pwnt him
    Evil, dont post work that isnt yours, its completely disrespectful!
    Shadows-Collide -
    http://i142.photobucket.com/albums/r...ollidesig1.jpg
    If I see you autoing with level 3/default clothes/crap name I WILL report you. Auto Correctly. - put this in your sig.
    - Shadows-collide -
    -

  4. #4
    Join Date
    Jun 2007
    Location
    Kentucky, United States of America
    Posts
    409
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you do, at least give the other person credit. . .

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Making a basic auto-talker
    By Richard in forum OSR Outdated Tutorials
    Replies: 17
    Last Post: 11-11-2008, 05:54 PM
  2. Replies: 5
    Last Post: 11-23-2007, 08:45 PM
  3. Auto talker
    By weequ in forum First Scripts
    Replies: 4
    Last Post: 10-17-2007, 01:51 PM
  4. Basic Auto Talker
    By evilwalrus in forum First Scripts
    Replies: 0
    Last Post: 06-05-2007, 01:46 AM
  5. 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
  •