Hi there, for my first post on this forum, I am posting two Typing Terror script.
The script are going to be posted in my post, and added as an attachment as well.
The first script (TT) continually presses the alphabet with a 10 millisecond wait in between each letter until you stop it.
Occasionally the script lags and therefore makes you lose. If this happens, you can just increase the wait.
Don't start the script until the wall has been blown down, otherwise it lags.
You have to press SPACE yourself at the end of each level; when I tried to implement it into the script, it just made the script lag, and the game crash. Well let's be honest, pressing one key isn't exactly that hard anyway.
Script (TT):
[scar]program TypingTerror;
//By R1ch4 of GzP, and SRL, Mopar, and now Freddy.
const
TTW = 10; //Time to wait in MS in between each letter gets pressed.
//1000MS = 1 second.
begin
repeat;
Sendkeys('A');
Wait(TTW);
Sendkeys('B');
Wait(TTW);
Sendkeys('C');
Wait(TTW);
Sendkeys('D');
Wait(TTW);
Sendkeys('E');
Wait(TTW);
Sendkeys('F');
Wait(TTW);
Sendkeys('G');
Wait(TTW);
Sendkeys('H');
Wait(TTW);
Sendkeys('I');
Wait(TTW);
Sendkeys('J');
Wait(TTW);
Sendkeys('K');
Wait(TTW);
Sendkeys('L');
Wait(TTW);
Sendkeys('M');
Wait(TTW);
Sendkeys('N');
Wait(TTW);
Sendkeys('O');
Wait(TTW);
Sendkeys('P');
Wait(TTW);
Sendkeys('Q');
Wait(TTW);
Sendkeys('R');
Wait(TTW);
Sendkeys('S');
Wait(TTW);
Sendkeys('T');
Wait(TTW);
Sendkeys('U');
Wait(TTW);
Sendkeys('V');
Wait(TTW);
Sendkeys('W');
Wait(TTW);
Sendkeys('X');
Wait(TTW);
Sendkeys('Y');
Wait(TTW);
Sendkeys('Z');
Wait(TTW);
until(false);
end.[/scar]
The second script (TT No Wait) is basically the same as TT, but has, yep you guessed it, no waits!
I only suggest using this script if you have an uber gaming PC, which can cope with what's being thrown at it.
Script (TT No Wait):
[scar]program TypingTerrorNoWait;
//By R1ch4 of GzP, SRL, Mopar and now Freddy.
begin
repeat;
Sendkeys('A');
Sendkeys('B');
Sendkeys('C');
Sendkeys('D');
Sendkeys('E');
Sendkeys('F');
Sendkeys('G');
Sendkeys('H');
Sendkeys('I');
Sendkeys('J');
Sendkeys('K');
Sendkeys('L');
Sendkeys('M');
Sendkeys('N');
Sendkeys('O');
Sendkeys('P');
Sendkeys('Q');
Sendkeys('R');
Sendkeys('S');
Sendkeys('T');
Sendkeys('U');
Sendkeys('V');
Sendkeys('W');
Sendkeys('X');
Sendkeys('Y');
Sendkeys('Z');
until(false);
end.[/scar]
Oh yeah, in my other scripts, I do stick to the standards, but I couldn't be bothered with these two. Anyway, whats so hard about reading the alphabet with 'SendKeys' in front of it?
Enjoy!