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![]()




)

~RAM
Reply With Quote







