uhhhh did u make this?
SCAR Code:
/////////Auto Talker Version 2.0//////////////////////
/////////by Mechancgod69//////////////////////////////
////////A basic script, but it gets the job done//////
//////////////////////////////////////////////////////
whats with the and also, if u did make it, it wont work well it will, but all it will do is say it in the debug box, only write in the debug box, change it to
SCAR Code:
TypeSend('blahblahblah');
and add right before the const. a couple other things, add more randoms to the waits like instead of
SCAR Code:
procedure autotype;
begin
wait(5000)
writeln(Message1);
wait(5000)
writeln(Message2);
end;
put
SCAR Code:
procedure AutoType;
begin
TypeSend(Message1);
Wait(5000+random(1000));
TypeSend(Message2);
Wait(5000+random(1000));
end;
but, personnaly i would pretty much change everything..
heres a "better" auto talker
SCAR Code:
program BasicAutoTalker;
//////////////////////////////////////////////////////
/// Auto Talker Version 2.0 ///
/// By Mechancgod69 ///
/// A basic script, but it gets the job done ///
/// Press F5 For Message One ///
/// And Press F6 For Message Two ///
//////////////////////////////////////////////////////
{.include SRL/SRL.scar}
const
Message1 = 'Hola';
Message2 = 'Sup???';
procedure AutoType;
begin
If(IsFKeyDown(5)) then
TypeSend(Message1);
If(IsFKeyDown(6)) then
TypeSend(Message2);
end;
begin
ActivateClient
repeat
AutoType;
until(IsFKeyDown(12));
end.
well, i hope that helps