lolz i know its not much but i just started scripting today
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
SendKeys(TextToType);
SendKeys(+Chr(13))
until(false)
end.



Reply With Quote