Results 1 to 4 of 4

Thread: Runningun01's Auto Talker

  1. #1
    Join Date
    May 2007
    Location
    Tennessee
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Runningun01's Auto Talker

    Hi. I'm Runningun01 If You Haven't Already Noticed. I've Just Recently Been Introuduced To S.C.A.R., I Have Past Experience In Other Coding Languages, And Became Immediately Interested. I Read A Few Scripts, And Figured Out Procedures, Variables, And Constants. I'm Very Open To Any Positive, Negative, Constructive Feedback. Also, If Theres A Tutorial On S.C.A.R., I'd Appreciate A Link.
    Thanks.


    Code:
    Program AutoTalker;
    
    Var
    I: Integer;
    
    Const
    Say1=('Your Message Here'); {Just Constants You Have To Set Up.}
    Say2=('Your Message Here'); {Just Constants You Have To Set Up.}
    Say3=('Your Message Here'); {Just Constants You Have To Set Up.}
    
    
    Procedure talk;
    Begin
     sendkeys(Say1) {This Is Whats In Your Constant Say1}
      sendkeys(chr(13)); {This Is The Enter Key.}
       wait(2000+random(45)); {Waits 2 Seconds With A Random 45 Miliseconds Added}
     sendkeys(Say2) {This Is Whats In Your Constant Say2}
      sendkeys(chr(13)); {This Is The Enter Key.}
       wait(2000+random(45)); {Waits 2 Seconds With A Random 45 Miliseconds Added}
     sendkeys(Say3) {This Is Whats In Your Constant Say3}
      sendkeys(chr(13)); {This Is The Enter Key.}
       wait(2000+random(45)); {Waits 2 Seconds With A Random 45 Miliseconds Added}
    End;
    
    Begin
     I:=0;
    Repeat
     I:= I + 1;
      Talk;
    Until(I >= 5); {5 Is The Amount Of Time To Say It.}
    End.
    {If You Want To Keep It Going On Forever, Without A Set Amount Of Times To Repeat The Process
    Replace:
    
    Begin
     I:=0
    Repeat
     I:= I + 1
      Talk;
    Until(I >= 5);
    End.
    
    With
    
    Begin
    Repeat
     Talk;
    Until(False);
    End.
    
    }

  2. #2
    Join Date
    Oct 2006
    Posts
    517
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  3. #3
    Join Date
    May 2007
    Location
    Tennessee
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks. Ill Go Check That Out.

  4. #4
    Join Date
    Dec 2006
    Location
    Banville
    Posts
    3,914
    Mentioned
    12 Post(s)
    Quoted
    98 Post(s)

    Default

    Why are you capitalising every word? Oh, and sendkeys is detectable.
    The jealous temper of mankind, ever more disposed to censure than
    to praise the work of others, has constantly made the pursuit of new
    methods and systems no less perilous than the search after unknown
    lands and seas.

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
  •