C + T + Space cheat modification

Completed patches for Keen1.
Post Reply
User avatar
XkyRauh
Posts: 1114
Joined: Sun Aug 31, 2003 9:14 pm
Location: San Diego, California

C + T + Space cheat modification

Post by XkyRauh »

As posted by LevelLord:

# When using c + t + space cheat in Keen 1, set Keen's ammo to 99. (Or any other values you want)
%patch $E03 $63 $00

#c t space cheat loses Keen his pogo
%patch $0DFD $00 $00
#Or gains it
%patch $0DFD $01 $00

#ctspace doesn't give keen any keycards
%patch $E11 $00


Edit by KeenRush: And before that posted by me originally, in this topic:
viewtopic.php?t=286 This is a problem with some patch stuff; someone may have done some patch earlier and the one that searches the patch later gets the credit. :|

Edit by Xky: Sorry, KR. I'm just screwing this up all over the place. :-( *depressed*
Last edited by XkyRauh on Wed Aug 24, 2005 2:16 am, edited 1 time in total.
User avatar
CommanderSpleen
Posts: 1017
Joined: Sun Aug 31, 2003 12:11 pm
Location: The Land of Sparkly Things
Contact:

Post by CommanderSpleen »

Code: Select all

# Don't add keycards
%patch $0E05 $90 $90 $90 $90 $90 $90 # Row 1
             $90 $90 $90 $90 $90 $90 # Row 2
             $90 $90 $90 $90 $90 $90 # Row 3
             $90 $90

# To add individual cards, replace any or all of Rows 1-3 with:
             $C7 $06 $9E $AA $01 $00 # yellow
             $C7 $06 $A0 $AA $01 $00 # red
             $C7 $06 $A2 $AA $01 $00 # green
             $C7 $06 $A4 $AA $01 $00 # blue

# Remove cards by changing $01 to $00
Example:

Code: Select all

#Add red, take blue:
%patch $0E05 $C7 $06 $A0 $AA $01 $00 # Row 1 - Add Red
             $C7 $06 $A4 $AA $00 $00 # Row 2 - Take Blue
             $90 $90 $90 $90 $90 $90 # Row 3 - Nothing
             $90 $90
Manifested in response to this topic.
Post Reply