Howdy this is my autotalker and it's preatty basic but it's also preatty good!
Ill put it in SCAR code and as an attachment!
SCAR Code:
program AutoTalker;
{.include SRL\SRL.scar}
{
/////////////////////////////////////////////////////////////////
// //
// Script Info //
// //
// Name: Basic Autotalker1000 //
// Author: 71runemaker //
// Version: 1.1 //
// Scar Version: 2.03 + //
// SRL version: Any //
// //
// //
// *UPDATE HISTORY* //
// //
// Version 1.0 //
// First release //
// //
// Version 1.1 //
// Used cont instead of var //
// Dont have to keep pushing start //
// //
// //
// *NOTE* //
// Do not edit, sell, or claim this script //
// please. If someone see's this on a website //
// for sale please tell me! //
// //
// //
// //
/////////////////////////////////////////////////////////////////}
/////////////////////////Setup///////////////////////////////////
const //
Write1 = 'Howdy'; //Write in '' what you want to say //
Wait1 = 1000; //Wait time between each time(1000 = 1 sec) //
/////////////////////////////////////////////////////////////////
begin
repeat
Wait(Wait1); + Random(1000))
TypeSend (Write1);
Wait(Wait1); + Random(1000))
until (false);
end.