Results 1 to 3 of 3

Thread: My First Scar Script - AutoTalker

  1. #1
    Join Date
    Mar 2007
    Location
    Derka Derka Land
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default My First Scar Script - AutoTalker

    Okay, this is the first script I have ever made. So please be nice and give constructive advice and not destructive advice!

    Code:
     //AutoTalker//
    
           // ~~~ Made By Jarlaxe ~~~ //
    
    // Please leave your feedback on this script //
    
    program AutoTalker;
    {.include SRL\SRL.SCAR}
    
    const
    Message1='Hello!'; // Type what you want the first message to be //
    Message2='Noob Scar Scripter'; // Type what you want the second message to be //
    Message3='My First Script Ever!'; // Type what you want the third message to be //
    Message4='Please Leave Comments'; // Type what you want the fourth message to be //
    
    procedure typewhatyoulike;
    begin
    wait(2000+Random(790)) // Time to wait before posting message (in milliseconds)
    TypeSend(Message1+chr(13));
    end;
    
    procedure typewhatyoulike2;
    begin
    wait(1300+Random(350)) // Time to wait before posting message (in milliseconds)
    TypeSend(Message2+chr(13));
    end;
    
    procedure typewhatyoulike3;
    begin
    wait (2600+Random(1700)) // Time to wait before posting message (in milliseconds)
    TypeSend(Message3+chr(13));
    end;
    
    procedure typewhatyoulike4;
    begin
    wait (600+Random(1700)) // Time to wait before posting message (in milliseconds)
    TypeSend(Message4+chr(13));
    end;
    
    begin
    repeat
    typewhatyoulike;
    Wait(130);
    typewhatyoulike2;
    Wait(101);
    typewhatyoulike3;
    Wait(198);
    typewhatyoulike4;
    Wait(100);
    until(false)
    
    begin
    
    end;
    
    end.
    Thanks

  2. #2
    Join Date
    Dec 2006
    Location
    Australia
    Posts
    698
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Writeln is to write reports, from memory its sendkeys

    At the moment your script is useless

  3. #3
    Join Date
    Mar 2007
    Location
    Derka Derka Land
    Posts
    52
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Yes

    Just fixed the problem

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. my first script, an autotalker
    By cocodog13 in forum First Scripts
    Replies: 6
    Last Post: 10-22-2007, 08:34 PM
  2. My first script (Autotalker)
    By kooldude in forum First Scripts
    Replies: 2
    Last Post: 04-27-2007, 08:02 AM
  3. My First Script :D ( AutoTalker)
    By holiday105 in forum First Scripts
    Replies: 9
    Last Post: 04-07-2007, 03:32 AM
  4. [Rs2] My first script (autotalker)
    By k1ll3r in forum First Scripts
    Replies: 4
    Last Post: 04-01-2007, 02:04 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
  •