Results 1 to 6 of 6

Thread: Mager1R AutoTalker

  1. #1
    Join Date
    Feb 2008
    Location
    UnitedStates, Phx
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Mager1R AutoTalker

    THIS IS MY First Script So. . . any Kind of advice from others is welcomed i'm always up to learn from someone that has been in the game longer. . . This is a simple AutoTyper. . .

  2. #2
    Join Date
    Feb 2008
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    hello

    Hey, il give it a go in the nxt 1hr let u know how it goes looking nice cheers,

    love my auto's

  3. #3
    Join Date
    Feb 2007
    Location
    Access Violation at 0x00000000
    Posts
    2,865
    Mentioned
    3 Post(s)
    Quoted
    18 Post(s)

    Default

    Why is there an extra program begin end. at the end?

    And, why you have x, y : Integer;
    if you dont use them?

    And, do:
    SCAR Code:
    //============================================================================\\
    //++++++++++++++++++++++++++DESCRIPTION+++++++++++++++++++++++++++++++++++++++\\
    {  This is a simple autotalker/Multi talker...
      Multiple Talking lines are in this script even though they are not needed
     If only one line is needed erase lines 29-46 then only one line will be used
     Not Much to say basic autotalker nothing to crazy. . ..
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ===============================================================================}

         program MagerOnerAutoTalker; //Name of Program.

    {.include srl\srl.scar}
    //Include srl!
    var
    x,y:integer; //No use?
    begin
    activateclient;
    repeat
    wait(2000+ random(1000));   // Change Wait Time Depending On Message Size \\
    TypeSend('_____FUCK____'+chr(13)); //Type Message One here\\
    wait(2000+ random(1000));  //Change Wait Time Depending On Message Size \\
    TypeSend('_____THESE_____'+chr(13)); //Type Message Two here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('___RANDOMS___'+chr(13)); //Type Message Three Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('_____THIS____'+chr(13)); //Type Message Four Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('______IS_____'+chr(13)); //Type Message Five Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('_____SOME_____'+chr(13)); //Type Message Six Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('__MAGERONER__'+chr(13)); //Type Message Seven Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('______SHIT__'+chr(13)); //Type Message Eight Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('============='+chr(13));//Type Message Nine Here\\
    wait(2000+ random(1000));
    until(false)
    end.
    {=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=^.^+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+

    Use TypeSend! SendKeys is so bannable :P

    Work on standards, and read more tuts! they really help!
    Ce ne sont que des gueux


  4. #4
    Join Date
    Feb 2008
    Location
    UnitedStates, Phx
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)
    Thanks for the help i will work on these things, dont want anyone getting banned. . . i noticed you said include srl. . .I dont know how to do this could you show me?
    Quote Originally Posted by floor66 View Post
    Why is there an extra program begin end. at the end?

    And, why you have x, y : Integer;
    if you dont use them?

    And, do:
    SCAR Code:
    //============================================================================\\
    //++++++++++++++++++++++++++DESCRIPTION+++++++++++++++++++++++++++++++++++++++\\
    {  This is a simple autotalker/Multi talker...
      Multiple Talking lines are in this script even though they are not needed
     If only one line is needed erase lines 29-46 then only one line will be used
     Not Much to say basic autotalker nothing to crazy. . ..
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ===============================================================================}

         program MagerOnerAutoTalker; //Name of Program.

    {.include srl\srl.scar}
    //Include srl!
    var
    x,y:integer; //No use?
    begin
    activateclient;
    repeat
    wait(2000+ random(1000));   // Change Wait Time Depending On Message Size \\
    TypeSend('_____FUCK____'+chr(13)); //Type Message One here\\
    wait(2000+ random(1000));  //Change Wait Time Depending On Message Size \\
    TypeSend('_____THESE_____'+chr(13)); //Type Message Two here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('___RANDOMS___'+chr(13)); //Type Message Three Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('_____THIS____'+chr(13)); //Type Message Four Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('______IS_____'+chr(13)); //Type Message Five Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('_____SOME_____'+chr(13)); //Type Message Six Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('__MAGERONER__'+chr(13)); //Type Message Seven Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('______SHIT__'+chr(13)); //Type Message Eight Here\\
    wait(2000+ random(1000)); // Change Wait Time Depending On Message Size\\
    TypeSend('============='+chr(13));//Type Message Nine Here\\
    wait(2000+ random(1000));
    until(false)
    end.
    {=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=^.^+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+

    Use TypeSend! SendKeys is so bannable :P

    Work on standards, and read more tuts! they really help!

  5. #5
    Join Date
    Dec 2006
    Location
    Program TEXAS home of AUTOERS
    Posts
    7,934
    Mentioned
    26 Post(s)
    Quoted
    237 Post(s)

    Default

    use typesend !

    and make it as a diffrent procedure

    btw why do you have to cuss ? (in your script)

    thats not cool.

  6. #6
    Join Date
    Feb 2008
    Location
    UnitedStates, Phx
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by p1nky View Post
    use typesend !

    and make it as a diffrent procedure

    btw why do you have to cuss ? (in your script)

    thats not cool.
    Sorry about the language i will tone it down I wasn't going to put it up in the forum at first and forgot to take it out... Again my bad if i offended you in any way

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Mager1R AutoTyper *improved*
    By mageroner in forum First Scripts
    Replies: 7
    Last Post: 02-29-2008, 04:42 AM
  2. My First AutoTalker
    By eurostylz in forum First Scripts
    Replies: 13
    Last Post: 02-10-2008, 11:11 AM
  3. autotalker that needs help
    By Da Grim Raper in forum First Scripts
    Replies: 2
    Last Post: 12-24-2007, 10:42 AM
  4. My AutoTalker
    By RudeBoiAlex in forum RS3 Outdated / Broken Scripts
    Replies: 10
    Last Post: 03-05-2007, 03:34 PM
  5. need autotalker help
    By Dadeer in forum OSR Help
    Replies: 1
    Last Post: 12-01-2006, 12:12 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
  •