Results 1 to 10 of 10

Thread: Auto Talker fixed and works great

  1. #1
    Join Date
    Feb 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Auto Talker fixed and works great

    Here is the new and improved auto-talker by diamondhero5!

    Scar script:

    //Directions
    //Set what u would like it to say(line 16)
    //Set how long you would like it to wait until it says again(line 17)
    //hit play
    program AutoTalk;

    procedure OpenRSWindow;//to open the rs window(it must be the one to left)
    begin
    MoveMouse(106,650);
    Wait(534);
    ClickMouse(169,751,true);
    end;

    procedure Talk;
    begin
    SendKeys('hello'+chr(13));// what you would like it to say for you
    wait(5000+random(147));//how long until said again 1000= 1 second
    end;

    procedure ThankYou;
    begin
    writeln('-------Auto-Talker-------')
    writeln('-----by Diamondhero5-----')
    writeln('- I know u will like it -')
    writeln('@@##$$ Thank you $$##@@')
    writeln(' ENJOY ')
    end;

    begin
    OpenRSWindow
    Thankyou
    repeat
    Talk;
    until(false)
    end.

  2. #2
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    looks pretty nice...to open the rs window you can just use ActivateClient; And sendkeys is pretty detectable, it would be alot better if you made it send one letter at a time - to find out how to do this, look at an autotalker like secet's on mopar.

    ps: Please use [code] [/code] when posting scripts, or attach them
    Interested in C# and Electrical Engineering? This might interest you.

  3. #3
    Join Date
    Feb 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    whats [code][code], and whats activate client?
    Can u give me a link to the page on mopars or whatever u were talking about?
    ty

  4. #4
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    put [code] and [/code] around scar scripts so it will look like this
    Code:
     script goes here
    and
    Code:
    ActivateClient;
    will switch to the client,put it in a script and try it.
    Interested in C# and Electrical Engineering? This might interest you.

  5. #5
    Join Date
    Feb 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    dude i made it type it one by one, test it out if u dont get what i mean it rox!!!

    Code:
    //Directions
    //Set what u would like it to say(line 16)
    //Set how long you would like it to wait until it says again(line 17)
    //hit play
    program AutoTalk;
    
    procedure OpenRSWindow;//this is to open the rs window(it must be the one to left)
    begin
    MoveMouse(106,650);
    Wait(534);
    ClickMouse(169,751,true);
    end;
    
    procedure Talk;
    begin
    SendKeys('H');// what you would like it to say letter by letter use spaces
    wait(284)
    SendKeys('e')
    wait(284)
    SendKeys('l')
    wait(284)
    SendKeys('l')
    wait(284)
    SendKeys('o')
    wait(284)
    SendKeys(',')
    wait(284)
    SendKeys('h')
    wait(284)
    SendKeys('o')
    wait(284)
    SendKeys('w')
    wait(284)
    SendKeys(' ')
    wait(284)
    SendKeys('r')
    wait(284)
    SendKeys(' ')
    wait(284)
    SendKeys('u')
    wait(284)
    SendKeys('?'+chr(13))
    wait(5000+random(147));//how long until typed again 1000= 1 second
    end;
    
    procedure ThankYou;
    begin
    writeln('-------Auto-Talker-------')
    writeln('-----by Diamondhero5-----')
    writeln('- I know u will like it -')
    writeln('@@##$$  Thank you  $$##@@')
    writeln('         ENJOY           ')
    end;
    
    begin
    OpenRSWindow
    Thankyou
    repeat
    Talk;
    until(false)
    end.

  6. #6
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Okay, It's a start, just It's kinda hard to enter stuff with it like that. Here, try this:

    PHP Code:
    procedure SendText(textstring);
    var  
    iInteger;
    begin
       
    for := 1 to Length(Text) do
       
    begin
         SendKeys
    (Text[i]);
         
    Wait(50+random(50));
       
    end;
       
    SendKeys(Chr(13));
    end
    also, instead of OpenRSWindow; you should use ActivateClient;
    Type it in, drag the crosshairs to the rs window, and run it
    then do sendtext('...');
    Interested in C# and Electrical Engineering? This might interest you.

  7. #7
    Join Date
    Feb 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i dont get what that does can u explain it step by step,
    how do u put in what u want it to say

  8. #8
    Join Date
    Sep 2006
    Location
    New Jersey, USA
    Posts
    5,347
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    you take that and put it in your script, so your script will look like this:

    PHP Code:
    //Directions
    //Set what u would like it to say(line 16)
    //Set how long you would like it to wait until it says again(line 17)
    //hit play
    program AutoTalk;

    procedure SendText(textstring);
    var  
    iInteger;
    begin
       
    for := 1 to Length(Text) do
       
    begin
         SendKeys
    (Text[i]);
         
    Wait(50+random(50));
       
    end;
       
    SendKeys(Chr(13));
    end;  

    procedure Talk;
    begin
    SendText
    ('Hi Wazz Up Man?');
    wait(5000+random(147));//how long until typed again 1000= 1 second
    end;

    procedure ThankYou;
    begin
    writeln
    ('-------Auto-Talker-------')
    writeln('-----by Diamondhero5-----')
    writeln('- I know u will like it -')
    writeln('@@##$$  Thank you  $$##@@')
    writeln('         ENJOY           ')
    end;

    begin
    ActivateClient
    Thankyou
    repeat
    Talk
    ;
    until(false)
    end
    Interested in C# and Electrical Engineering? This might interest you.

  9. #9
    Join Date
    Feb 2007
    Posts
    71
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Wow ty works way better

  10. #10
    Join Date
    Oct 2006
    Posts
    334
    Mentioned
    0 Post(s)
    Quoted
    18 Post(s)

    Default

    psst my auto-typer pwns this lol

    use typesend and it automatically types at a random human pace. Its really nice. My autotyper has the ability to do up to 4 messages and only types the first X, where X is # of messages which is set at the beginning of the script.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Auto Talker V 1.0!( Works Great)
    By RiSe AgAiNsT in forum RS3 Outdated / Broken Scripts
    Replies: 6
    Last Post: 09-18-2007, 12:38 PM
  2. Auto Talker V 1.0(Works Great)
    By RiSe AgAiNsT in forum First Scripts
    Replies: 5
    Last Post: 07-21-2007, 10:48 AM
  3. Great Auto Talker with Forms
    By Fourscape in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 01-23-2007, 07:57 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
  •