Results 1 to 10 of 10

Thread: SnowCub AutoTyper

  1. #1
    Join Date
    Feb 2008
    Location
    Nerdville
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default SnowCub AutoTyper

    My First AutoTyper,
    Could you check it out and put any tips?
    (its meant for you to be watching the computer, thats why I didn't put
    any Random detectors)

    version 2 added
    If a dude says something and his girlfriend isn't there, is he still wrong?

  2. #2
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    No offence, but is that copied?

    Theres alot of explinations there... More like a tutorial then a script.
    Jus' Lurkin'

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

    Default

    why not add random *detectors*?

  4. #4
    Join Date
    Feb 2008
    Location
    Nerdville
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no it wasn't copied, i made it myself, I was gonna give it to some friends who had never used scar b4,
    If a dude says something and his girlfriend isn't there, is he still wrong?

  5. #5
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    Fair enough =]
    Jus' Lurkin'

  6. #6
    Join Date
    Dec 2007
    Location
    192.168.1.73
    Posts
    2,439
    Mentioned
    6 Post(s)
    Quoted
    119 Post(s)

    Default

    You should never use SendKeys as it is very detectable, use TypeSend as it types like a human

  7. #7
    Join Date
    Feb 2008
    Location
    Nerdville
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    EDIT: Changed
    If a dude says something and his girlfriend isn't there, is he still wrong?

  8. #8
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    If you write the script as such:

    SCAR Code:
    program AutoTyper;
    {.include SRL/SRL.scar}

    const
    TypingTimes = 20;

    var
    i: Integer;

    procedure Signature;
    begin
      ClearDebug;
      writeln(' Snowcub AutoTyper by yours truely: ');
      writeln('   ______________________           ');
      writeln('  |____   _________   ___|          ');
      writeln('      |  |        |  |              ');
      writeln('  ___ |  |        |  |              ');
      writeln('  \  \|  |        |  |              ');
      writeln('   \     |        |  |              ');
      writeln('    \____|        |__|              ');
      wait(3000 + random(750));
    end;


    begin  //made by Jacob Toms
     SetupSRL;
      Signature;
       i:= 0;
       repeat
         i:= i + 1;
         Wait(50+random(200));
         TypeSend('Write Sentance Here');
         if (i = TypingTimes) then
         begin
           Writeln('Script repeated the appropriate amount of times. Terminating...')
           Exit;
         end;
       until(false);
    end.

    Note I added

    SCAR Code:
    const
    TypingTimes = 20;

    and

    SCAR Code:
    if (i = TypingTimes) then
         begin
           Writeln('Script repeated the appropriate amount of times. Terminating...')
           Exit;
         end;

    The constant is something that is always the same, which I put as 20 in this case (explained later)

    Now i put if (i = TypingTimes) then which means that if the sentance is said the amount of times you set in TypingTimes, 20 in this case, it will move onto another part.

    Then i Put

    SCAR Code:
    begin
           Writeln('Script repeated the appropriate amount of times. Terminating...')
           Exit;
         end;

    Which means after it detects the script has types Message1 20 times, it will begin by writing "Script repeated.." in the debug box, then will exit the script.

    Just something to stop it typing endlessly. =]
    Jus' Lurkin'

  9. #9
    Join Date
    Feb 2008
    Location
    Nerdville
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks A bunch Flame!
    If a dude says something and his girlfriend isn't there, is he still wrong?

  10. #10
    Join Date
    Feb 2007
    Location
    South East England
    Posts
    2,906
    Mentioned
    2 Post(s)
    Quoted
    8 Post(s)

    Default

    No problems mate :]
    Jus' Lurkin'

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. AutoTyper V1.1 [VB6]
    By CheetahNub in forum C#/Visual Basic Help and Tutorials
    Replies: 3
    Last Post: 01-31-2009, 01:26 PM
  2. Need some help with my autotyper
    By Krim0407 in forum OSR Help
    Replies: 2
    Last Post: 05-17-2008, 03:33 PM
  3. AutoTyper
    By KoKouKo in forum RS3 Outdated / Broken Scripts
    Replies: 8
    Last Post: 03-30-2008, 11:11 PM
  4. [SRL 4] AutoTyper!
    By RudeBoiAlex in forum RS3 Outdated / Broken Scripts
    Replies: 28
    Last Post: 11-04-2007, 01:41 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
  •