I and some of my friends need a autotalker that advertises our fc. 6 hour timer and smart would be nice as well. If no one is up for the task, could you guys explain a easy way to make this super simple script?
This will be for 07
Printable View
I and some of my friends need a autotalker that advertises our fc. 6 hour timer and smart would be nice as well. If no one is up for the task, could you guys explain a easy way to make this super simple script?
This will be for 07
6 hour timer?
Here's my auto talker, might help you.
F1 Starts/Pauses typing, and ESC stops the script completely.PHP Code:program AutoTalk;
const
Color = 'purple';
Effect = 'wave';
Text = 'testing';
procedure TypeText;
begin
SendKeys(Color + ':' + Effect + ':' + Text ,30,10);
PressKey(13);
Wait(randomRange(2000, 2500));
end;
procedure Pause(NeedKey: Boolean);
begin
if not (NeedKey) then
repeat
Wait(1000);
until (IsKeyDown(112)) else
if (IsKeyDown(112)) then
repeat
Wait(1000);
until (IsKeyDown(112))
end;
begin
Pause(False);
repeat
TypeText;
Pause(True);
until (IsKeyDown(27))
end.
I know this and completely see where they are coming from. Still worth a try. I'll probably try making my own script.