Check that out thats a start
SCAR Code:
program Autotalker;
var T: Integer;// T integer so that this script doesnt just keep repeating
Const
NumberOfT = 5; // Continue to find out use
procedure OpenRSWindow;
begin
MoveMouse(106,650);
Wait(534);
ClickMouse(106,650,true);
end;
procedure Talk;
begin
SendKeys('Hello'+chr(13));//Here you had = between what you were saying and the Char(13) you also forgot a close round ' ) ' and ; //
Wait(5000+random(142));// How long until typed again 1000=1 sec 5000=5 sec//
T=T+1;// each loop will add one to the 'T' integer
end;
begin
OpenRSWindow
Wait(5000)
repeat
Talk;
until(T=NumberOfT)// Repeats until T = the const 'NumberOfT'
end.