SCAR Code:
Program Bother;
Begin
MoveToTray;
ActivateClient;
Repeat
SendKeysWait('1m a n00b and 1m Annoying',100,50);
SendKeys(chr(13));
Wait(1000);
Until(False);
End.
nice first script we all start somewhere dont we. 
first of all make it readable by adding in something called indents or standars.
Program Bother;
Begin
--MoveToTray;
--ActivateClient;
--Repeat
----SendKeysWait('1m a n00b and 1m Annoying',100,50);
----SendKeys(chr(13));
----Wait(1000);
--Until(False);
End.
so in scar that would be like
SCAR Code:
Program Bother;
Begin
MoveToTray;
ActivateClient;
Repeat
SendKeysWait('1m a n00b and 1m Annoying',100,50);
SendKeys(chr(13));
Wait(1000);
Until(False);
End.
as said before use TypeSend unstead of SendKeys wait. and mabby make it type some other things by useing a case statement.
a case statementet with a random will just return a random numer and case that number off... its easy to give an example then type..
SCAR Code:
begin
I:= Random(5);
case I of
1:
2:
3:
4:
5:
end;
end;
you could use the same system so it wouldnt allways type the same thing and you could have 5 different things and it would randomly choose one out of all them.