PDA

View Full Version : Popc0rn's Auto-Spammer Tutorial!



PoPC0rN
01-15-2009, 08:26 PM
Hay guys, Popc0rn here.
Today im going to show you how to make a simple spam script using SCAR.
You can use this to flood AIM's, MSN's, IRC (NOT OURS!), or anything else! Runescape is kinda slow for this method tho :<

Open up a new Scar,

Space it out a bit, you need room to work :)

Okay, now add this under your program New; line:

const
WTF2SPAM = ''; //WUT TO SPAM?!


Obviously, we will call that later.

Now for the main procedure. Its not too complicated, quite simple actually.



procedure Spam;
begin;
Wait(25);
Sendkeys(WTF2SPAM + Chr(13));
end;


What this does is it calls the Sendkeys function and has it say what ever you put for the const up at the top,
and pushes enter. Now we could have used Typesend but thats not as fast or fun :)

For your main loop just put something like
begin
activateclient;
repeat
Spam;
until(false);
end.
which makes your specified client active and repeats the Spam procedure until you stop it.
It would be very simple to add on an Array and randomly call out what to spam, but that is not
covered in this tutorial.

Have fun! And dont get in trouble! >.>

NCDS
01-15-2009, 08:42 PM
Probably should have your standards right on a TUT :p

Basic, Simple, but something to get people started.

Dervish
01-15-2009, 09:21 PM
Standards in a TuT :).

Quite useless, well good for beginners I guess.

Colluci
01-15-2009, 10:10 PM
If someone using this for rs:

Sendkeys(WTF2SPAM + Chr(13));

Arent sendkeys detectabled in rs? Use TypeSend instead

NCDS
01-15-2009, 10:58 PM
"You can use this to flood AIM's, MSN's, IRC (NOT OURS!), or anything else! Runescape is kinda slow for this method tho :<"

he kinda says not to use it in RuneScape.

PoPC0rN
01-16-2009, 01:28 AM
If someone using this for rs:

Sendkeys(WTF2SPAM + Chr(13));

Arent sendkeys detectabled in rs? Use TypeSend instead

"What this does is it calls the Sendkeys function and has it say what ever you put for the const up at the top,
and pushes enter. Now we could have used Typesend but thats not as fast or fun."

lol. read the post?

anyways I wasnt really worrying about standards, and I made that tut in like 5 minutes.

>.>