this is my first script which is an autotyper, is there anything wrong with it
SCAR Code:program AutoTyper;
Const
TextToType = 'hello'; //What You Want Your Message To Say
begin
ClearDebug;
WriteLn('AutoTyper');
WriteLn('MADE BY SNATCH');
repeat
Wait(3000+random(500)); //Edit If You Want To Change The Time Between Messages
TypeSend(TextToType);
TypeSend(+Chr(13));
until(false);
end.


Reply With Quote







