Darth Nihilus
08-24-2007, 01:06 AM
I'm trying to make an auto-talking script. I guess. It just isn't working I keep getting errors. this is what I have.
--------------------------------------------------------------------------
program Spam;
procedure Spam;
begin;
case random (9) of
0: type('Random text' + char (13));
1: type('Random text' + char (13));
2: type('Random text' + char (13));
3: type('Random text' + char (13));
4: type('Random text' + char (13));
5: type('Random text' + char (13));
6: type('Random text' + char (13));
7: type('Random text' + char (13));
8: type('Random text' + char (13));
end;
end;
begin;
repeat;
SpamSpam;
wait(2000);
Until(false);
end;
end.
--------------------------------------------------------------------------
program Spam;
procedure Spam;
begin;
case random (9) of
0: type('Random text' + char (13));
1: type('Random text' + char (13));
2: type('Random text' + char (13));
3: type('Random text' + char (13));
4: type('Random text' + char (13));
5: type('Random text' + char (13));
6: type('Random text' + char (13));
7: type('Random text' + char (13));
8: type('Random text' + char (13));
end;
end;
begin;
repeat;
SpamSpam;
wait(2000);
Until(false);
end;
end.