Nice first script, here, but it doesn't work (wrong variables), and the standards were completely off, so I edited it a bit:
SCAR Code:
Program AutoTalker;
var
TimesToRepeat, i : Integer;
Text : String;
begin
TimesToRepeat := 0; //how often you want it to repeat, substitute the 0
Text :='Enter your text here';
i := 0 //because after typing it once, it will add one, otherwise it would already be two after typing it once.
begin
ActivateClient; //No need to do that over and over again
repeat
SendKeys((Text)+chr(13));
i := i + 1;
wait((3000)+random(500));
Until (i = TimesToRepeat);
end;
end.
If you have any question, just write me a personal message.