SCAR Code:
{-----------------------------------|
| _______ |
| /\ /___ ___\ |
| / \ | | |
| / - \ | | |
| /__|_\UTO |_|YPER |
| by |
| scissormetimbers |
| |
| INFO: It randomly types 3 phrases |
| of your choosing |
|___________________________________}
program AutoTyper;
{.include SRL/SRL.scar}
const
//-----enter 3 variations of phrase-----\\
Text1 = 'ex: selling lobs'; //put words here ex. selling lobs
Text2 = 'ex: lobs for sale'; //if you dont want variations leave blank
Text3 = 'ex: selling lobs--zezima'; //if you dont want variaions leave blank
Times = 10; //how many times it says it
//--------Don't Touch Below Here--------\\
procedure SpeakPhrase;
var
X: Integer;
begin
repeat
case Random(3) of
0: TypeSend(Text1);
1: TypeSend(Text2);
2: TypeSend(Text3);
end;
X := X + 1;
Wait(2500 +random(750));
until(X >= Times);
WriteLn('Done, typed phrases ' + IntToStr(X) + ' times!');
TerminateScript;
end;
begin
ClearDebug;
SetupSRL;
ActivateClient;
SpeakPhrase;
end.
Fixed, enjoy. Use [SCAR] tags next time.