SCAR Code:
program Madman94sAutoTalker;
{.include SRL/SRL.scar}
const
{--- SETUP ---}
Message1 = ('This is'); // Type your first message between the ''.
Message2 = ('the'); // Type your second message between the ''.
Message3 = ('default message'); // Type your third message between the ''.
TimeToWaitBetweenEachTalkInMS = 2500;
begin
SetupSRL;
ActivateClient;
repeat
TypeSend(Message1);
Wait(1000 + random(50));
TypeSend(Message2);
Wait(1000 + random(50));
TypeSend(Message3);
Wait(1000 + random(50));
until(false);
end.
is it good
bad
ALL comments will be helpful