Results 1 to 5 of 5

Thread: AutoSpammer

  1. #1
    Join Date
    Jun 2006
    Posts
    1,492
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default AutoSpammer

    Well, here it is! Thanks to Roberty Bob for helping me with how to work the main loop.

    Code:
    {Infantry001's AutoSpammer 2.0
    Just run and hit desired FKey. Simple as that.
    *WARNING* Use at own risk! Less detectable than last, but still can be
    detected.
    Have fun!}
    
    program autospammer;
    
    {.include SRL\SRL.scar}
    
    Var
    infinite: integer;
    
    Const
    F7='Write text here';
    F8='unless you are';
    F9='Incapable of';
    F10='Pushing buttons';
    F11='On a long piece';
    F12='Of Plastic';
    
    Procedure Start;
    begin
      ClearDebug;
      writeln ('Thank you for using Infantry001''s autospammer!')
      writeln ('Special thanks to Roberty Bob for helping me')
      writeln ('Get this script going!')
      writeln ('Enjoy, and keep on Auto-ing...')
    end;
    
    Procedure FKey7;
    begin
      if(isFKeyDown(7))then
      TypeSend(F7+chr(13));
    end;
    
    Procedure FKey8;
    begin
      if(isFKeyDown(8))then
      Typesend(F8+chr(13));
    end;
    
    Procedure FKey9;
    begin
      if(isFKeyDown(9))then
      Typesend(F9+chr(13));
    end;
    
    Procedure FKey10;
    begin
      if(isFKeyDown(10))then
      Typesend(F10+chr(13));
    end;
    
    Procedure FKey11;
    begin
      if(isFKeyDown(11))then
      Typesend(F11+chr(13));
    end;
    
    Procedure FKey12;
    begin
      if(isFKeyDown(12))then
      Typesend(F12+chr(13));
    end;
    
    begin
      SetupSRL;
      Start;
    repeat
      FKey7;
      FKey8;
      FKey9;
      FKey10;
      FKey11;
      FKey12;
      
      wait(50);
      
    until(infinite=1)
    end.
    tell me how u like it, and its good! also, tell me what i should try to do next.

  2. #2
    Join Date
    Feb 2006
    Location
    Amsterdam
    Posts
    13,692
    Mentioned
    146 Post(s)
    Quoted
    130 Post(s)

    Default

    You can change

    Until (infinite = 1) to Until(False)

    Nice first try though.



    The best way to contact me is by email, which you can find on my website: http://wizzup.org
    I also get email notifications of private messages, though.

    Simba (on Twitter | Group on Villavu | Website | Stable/Unstable releases
    Documentation | Source | Simba Bug Tracker on Github and Villavu )


    My (Blog | Website)

  3. #3
    Join Date
    Dec 2006
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Can you make it so it will type it super fast rather than normal human speed? That is all it is missing.

  4. #4
    Join Date
    Oct 2006
    Posts
    38
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    no, it is great at the speed it is at! It types at human speed to reduce the risk of bannage. Good Job Infintry001!
    http://www.fenjer.com/adnan/SRLStats/555.png
    Only just fugured out how to get this stat thing working.... wasted all that time...

  5. #5
    Join Date
    Dec 2006
    Posts
    33
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    =( I suppose.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Flyingkid101's AutoSpammer!!!!
    By flyingkid101 in forum First Scripts
    Replies: 13
    Last Post: 01-10-2008, 01:00 PM
  2. My protest autospammer
    By ElPolloFeo92 in forum News and General
    Replies: 5
    Last Post: 12-17-2007, 01:15 AM
  3. Pancakes' Autospammer
    By Pancakes in forum RS3 Outdated / Broken Scripts
    Replies: 3
    Last Post: 07-02-2007, 11:00 AM
  4. My first scripts (AutoLogIn and AutoSpammer)
    By Pwnt by Pwnt in forum RS3 Outdated / Broken Scripts
    Replies: 11
    Last Post: 03-06-2007, 03:38 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
  •