Results 1 to 4 of 4

Thread: Pancakes' Autospammer

  1. #1
    Join Date
    Jun 2007
    Location
    NSW, Australia.
    Posts
    541
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Pancakes' Autospammer

    This is my second script... I just whipped it up while I was waiting for someone to reply to my first script, and help me out a little.

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

    var
      SpamMessage: Array[1..10] of String;

    procedure SetSpamMessages;
    begin
      SpamMessage[1]:= 'Welcome to the spammer!';
      SpamMessage[2]:= 'Spam Spam Spam';
      SpamMessage[3]:= 'Runescape sucks balls';
      SpamMessage[4]:= 'WoW is so much better than runescape';
      SpamMessage[5]:= 'Jagexs nickname is fagex';
      SpamMessage[6]:= 'Bananas are yellow, did you know that?';
      SpamMessage[7]:= 'Zezima macros every day!';
      SpamMessage[8]:= 'Andrew Gower is a homosexual';
      SpamMessage[9]:= 'I wonder why the black knights are so aggresive?';
      SpamMessage[10]:='I saw Andrew Gowers dad in a gay bar!';
    end;

    procedure Spam;
    var RandomSpam : Integer;
    begin
      repeat
        RandomSpam:= Random(9) + 1;
        Writeln(SpamMessage[RandomSpam]);
        Wait(200 + random(100));
      until(false);
    end;
    begin
      SetupSRL;
      SetSpamMessages;
      ClearDebug;
      Spam; //SPAM THEM!!
    end.

    It sends to the debug, but can easily be adapted to send to the Runescape client... (Typesend )

    Enjoy!

    Pancakes
    Quote Originally Posted by RAM View Post
    I sam sofa king wee todd did ! ~RAM
    My SRL Army Blog.


  2. #2
    Join Date
    Nov 2006
    Location
    NSW, Australia
    Posts
    3,487
    Mentioned
    1 Post(s)
    Quoted
    0 Post(s)

    Default

    Ooo you used arrays...nice! I don't even know how to use them
    [CENTER][img]http://signatures.mylivesignature.com/54486/113/4539C8FAAF3EAB109A3CC1811EF0941B.png[/img][/CENTER]
    [CENTER][BANANA]TSN ~ Vacation! ~ says :I Love Santy[/BANANA][/CENTER]

    [CENTER][BANANA]Raymond - Oh rilie? says :Your smart[/BANANA][/CENTER]

  3. #3
    Join Date
    Oct 2006
    Posts
    1,071
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Quote Originally Posted by SantaClause View Post
    Ooo you used arrays...nice! I don't even know how to use them
    I just looked at Nielsie's Type and Array Tut because I couldnt really understand arrays either, but this is a great example of how to use!

    And its hilarious. Nice job!

  4. #4
    Join Date
    Apr 2007
    Location
    Perth, Australia
    Posts
    3,926
    Mentioned
    3 Post(s)
    Quoted
    2 Post(s)

    Default

    It does a pretty good job of spamming even though its only in your debug. (Why are you making it do that anyway???)
    TypeSend will be better but since you are basically abusing the game, it would be better to use SendKeys cause its better for spamming and you'll get banned both ways.

    Zeph

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' PowerMiner!
    By Pancakes in forum First Scripts
    Replies: 2
    Last Post: 06-28-2007, 08:45 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
  5. AutoSpammer
    By Infantry001 in forum RS3 Outdated / Broken Scripts
    Replies: 4
    Last Post: 12-16-2006, 04:20 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
  •