Keen 1 patches again

Request patches for Keens 1-3.
Post Reply
User avatar
szemigi
Posts: 716
Joined: Fri Jan 23, 2009 8:06 pm
Location: Hungary
Contact:

Keen 1 patches again

Post by szemigi »

1. After beating the Vorticon Commander + then leaving the level (Level 16) the game ends.

2. The vorticons always jump high + they never stop in the game (they walk automatically without stop)

3. I want a status screen like this:

Image

Levellass, did you make a programme for it or you make me patch for the status screen?

4. Garg doesn't run after you
5. The tank robot walks without stop(so it doesn't stop either)
Benvolio
Posts: 228
Joined: Sun Aug 29, 2004 4:44 pm
Location: Ireland
Contact:

Post by Benvolio »

1. ????

2. I don't know much about the vorticons but play around with their jump height (patches from KeenWiki):

Code: Select all

%patch $1C49 $012CW #Jump height
and their walking speeds (maybe if their slow speed is the same as their fast speed, they will not appear to stop):

Code: Select all

%patch $1C8C $FF88W #Quick left speed
%patch $1C94 $FFA6W #Slow left speed
%patch $1C9C $0078W #Quick right speed
%patch $1CA4 $005AW #Slow right speed
3. There's a very old patch which should hopefully set you in the right direction! Here's the original, almost 10-year-old topic!

viewtopic.php?t=135

4.

Code: Select all

#Gargs don't charge.
%patch $1B9B $90 $90 $90 $90 $90 $90 $90 $90
5. I don't know if you can get your Tank Robot to do what you want using the patches on the Keenwiki but try shortening the turning time:

Code: Select all

#Tank Robot turning time
%patch $1FB0 $32 $7E
And he won't stop so much if he doesn't shoot:

Code: Select all

#Tank does not shoot
%patch $1EDF $EB
Post Reply