Author Topic: Typing Terror scripts  (Read 1834 times)

Offline R1ch4

  • Newbie
  • *
  • Posts: 28
  • Rep: 0
  • Scripter in the making.
    • View Profile
Typing Terror scripts
« on: July 20, 2008, 11:17:54 am »
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!
I did have the links to my scripts here, but I've released too many, and there's not enough space here to put all the links...

Yay! Found something to put in here! Below!

[img]http://www.fenjer.com/adnan/SRL//40/Becoming%20a%20decent%20scripter.png[/im

Freddy1990.com

Typing Terror scripts
« on: July 20, 2008, 11:17:54 am »

DaBomber

  • Guest
Re: Typing Terror scripts
« Reply #1 on: July 22, 2008, 09:17:35 am »
Code: [Select]
begin
  SendKeys('ABCDEFGHIJKLMNOPQRSTUVWXYZ);
end;

eh?

Freddy1990.com

Re: Typing Terror scripts
« Reply #1 on: July 22, 2008, 09:17:35 am »

Offline R1ch4

  • Newbie
  • *
  • Posts: 28
  • Rep: 0
  • Scripter in the making.
    • View Profile
Re: Typing Terror scripts
« Reply #2 on: July 24, 2008, 09:38:11 am »
I was going to do that, but doing it the way I did somehow made it lag less, and plus it looks better anyway.
I did have the links to my scripts here, but I've released too many, and there's not enough space here to put all the links...

Yay! Found something to put in here! Below!

[img]http://www.fenjer.com/adnan/SRL//40/Becoming%20a%20decent%20scripter.png[/im

Offline bart961

  • Leecher
  • Posts: 8
  • Rep: 0
    • View Profile
    • Email
Re: Typing Terror scripts
« Reply #3 on: August 27, 2008, 08:34:31 pm »
THANK YOU MILLIONS OF NP!! YAY!

Offline shawty3030

  • Leecher
  • Posts: 1
  • Rep: 0
    • View Profile
Re: Typing Terror scripts
« Reply #4 on: December 14, 2008, 12:04:55 am »
works well, but when lvl is finished it doesnt spress space for u, is there a way 2 fix this?

Freddy1990.com

Re: Typing Terror scripts
« Reply #4 on: December 14, 2008, 12:04:55 am »

Offline BanMagnet

  • Leecher
  • Posts: 1
  • Rep: 0
    • View Profile
    • Email
Re: Typing Terror scripts
« Reply #5 on: December 15, 2008, 05:08:09 am »
Unforunately the script doesn't work that well. It does easily hit every key so you never get however with Typing Terror your accuracy accounts for a nice chunk of points. (2 points per accuracy, so up to 200 points total per stage).

This means you end up with zero bonus and get much less NP. You won't end up getting the 1000 NP per score send because your accuracy is too low. However putting a simple wait so it doesn't do it quite so fast might help. Obviously the best script would actually find what words are being displayed.

Offline Pat24C

  • Leecher
  • Posts: 1
  • Rep: 0
    • View Profile
    • Email
Re: Typing Terror scripts
« Reply #6 on: March 18, 2009, 03:08:24 am »
I made a few changes, works well and goes to the next round for you.

[scar]program New;
begin

repeat;

  Sendkeys('ABCDEFGHIJKLMN');
  Wait(20);
  Sendkeys('OPQRSTUVWXYZ');
  Wait(20);
  ClickMouse(311, 273, True);
 
until(false);

end.[/scar]

Freddy1990.com

Re: Typing Terror scripts
« Reply #6 on: March 18, 2009, 03:08:24 am »

Offline script_owned4

  • Newbie
  • *
  • Posts: 23
  • Rep: 0
    • View Profile
    • Email
Re: Typing Terror scripts
« Reply #7 on: March 27, 2009, 03:15:50 pm »
Sorry to be rude but these scripts take 5 seconds to make =/.

Freddy1990.com

Re: Typing Terror scripts
« Reply #7 on: March 27, 2009, 03:15:50 pm »

 

deductible-aliform