I just noticed. This isn't an auto-spammer :P. What it does is sends the message to the debug box. Try using this if your going to make an auto talker.:
Your Version
Code:
{********Hello this is SQUEANCY'S SCRIPT
I made this with the help in the tutorial page.
as u see its a basic script for me to start with and soon I
will start makeing bigger and betters scripts..well enjoy!******}
program First;
const
Message1='Yay i made my first scriipt =)';
procedure hello;
begin
wait(1000)
Writeln(Message1);
end;
begin Repeat
hello;
until(false)
end.
The Actual Talker
Code:
{********Hello this is SQUEANCY'S SCRIPT
I made this with the help in the tutorial page.
as u see its a basic script for me to start with and soon I
will start makeing bigger and betters scripts..well enjoy!******}
program First;
{.include SRL/SRL.scar)
var
MessagesTyped: Integer;
const
Message1='Yay i made my first scriipt =)';
NumLoops=10
TimeToWait=1000
procedure hello;
begin
TypeSend(Message1);
end;
begin Repeat
hello;
sleep(TimeToWait+random(100)
until(MessagesTyped=NumLoops)
end.