I was hoping that someone would be kind enough to set asside some time to teach a noob a little about SCAR, I really could use some help because most of the tutorials just bombard you with information that you don't understand.
Here is my first script, I tested it and it works
SCAR Code:
{
In_Jeopardy's Autospammer!!
}
program Autotalker;
const
Spam='buying mith wc axe'; // text goes betweek the quotes.
procedure Autospam;
begin
wait(5000+random(2500)) // will talk every 5 to 7.5 secconds
sendkeys(Spam + chr(13));
end;
begin
activateclient;
repeat
Autospam;
until(false)
end.
It's short, but I was strangely proud of it.
Well, If anyone can help, I'll be very greatful, I was hoping to add a part to the script that loggs you in if you aren't allready logged in...