Autotyper bELl v.0.1
OK, so this is my first autotyper ever. Any suggestions on improvement would be greatly helpful to me! Thanks in advance!
Update - v.0.2
Please post comments
Ok, so this is my first autotyper! Come to think of it, my first script! Fairly straight forward, its got a 100 milisecond random on each word/sentance!
Please Enjoy!
Any ideas for improvements would be great aswell!
SCAR Code://////////////////////////////////////////////////////
////// First autotalker! //////
////// Created by Bell1313 //////
////// Credit to Bebemycat2 //////
////// for the great tutorial! //////
////// Ilove8it aswell! //////
//////////////////////////////////////////////////////
//Dont forget to drag the crosshair on at the beggining!
//Dont think it will ban! Ive used it and no bans so far!
//Read instuctions below. (in green) //
program Autotalker;
{.include SRL/SRL.scar}
const
w1='';//type what ever you want it to say between the ''!!
w2='';//Same here! If you dont want it to say anything, dont put anything!
w3='';//Same here!
w4='';//same here
procedure Autotlk;
begin
wait(1500+random(100))
TypeSend(w1);
wait(1500+random(100))
TypeSend(w2);
wait(1500+random(100))
TypeSend(w3);
wait(1500+random(100))
TypeSend(w4);
end;
begin
ActivateClient;
repeat
autotlk;
until(false)//change to true if you want it to say only one time.
end.




Reply With Quote







