PATCH: Disable Raygun

Completed patches for Keen1.
Post Reply
User avatar
adurdin
Site Founder
Posts: 549
Joined: Fri Aug 29, 2003 11:27 pm
Location: Edinburgh, Scotland
Contact:

Post by adurdin »

This one was easy -- a five minute job:

Code: Select all

%ext ck1
%version 1.31

# stop the sound
%patch $3E36  $90 $90 $90

# stop losing a shot
%patch $3E3B  $90 $90 $90 $90

# don't spawn a shot
%patch $3E4F  $90 $90 $90

# and don't play the 'click-out-of-ammo' sound either
%patch $3E5B  $90 $90 $90

%end
User avatar
MultiMania
Patch Master
Posts: 153
Joined: Mon Nov 24, 2003 3:09 am
Location: Deep in the heart of keen.
Contact:

Post by MultiMania »

Cool Patch!

Why not try a slimmed down version of Andy's Patch?

Code: Select all

%ext ck1 
%version 1.31 

#Make Keen act as if he has no shots.
%patch 0x3E30 $EB

# and don't play the 'click-out-of-ammo' sound either 
%patch $3E5B  $90 $90 $90 

%end 
User avatar
MultiMania
Patch Master
Posts: 153
Joined: Mon Nov 24, 2003 3:09 am
Location: Deep in the heart of keen.
Contact:

Post by MultiMania »

If shooting is disabled, why not make the amno act like Drops/Vitalin/Vivas and give you an extra life for every 100 of them that you get. Here is a beta of a patch to do such a thing.

Code: Select all

%ext ck1
%version 1.31
#Amno becomes Drops/Vitalin/Vivas
%patch 0x44A0 $E8 $17 $02 $90 $90
%patch 0x46BA $FF $06 $C8 $AA $83 $3E $C8 $AA $64 Change the $64 to change how many are needed to get a new life.
		  $74 $01 $C3 $FF $06 $C6 $AA $C7 $06
		  $C8 $AA $00 $00 $E8 $BA $25 $E8 $73
		  $25 $C3

%end 
User avatar
MultiMania
Patch Master
Posts: 153
Joined: Mon Nov 24, 2003 3:09 am
Location: Deep in the heart of keen.
Contact:

Post by MultiMania »

KeenRush wrote:Hey, I got another idea! The could be probably used that Keen gets a key card if he has [number] of some stuff collected and can only open door to exit door with that key! Or then that exit door only opens up if Keen has some amount of 'ammo' collected!
Here you go!

Code: Select all

%ext ck1 
%version 1.31 
#Get yellow keycard when you get 100 amno
%patch 0x44A0 $E8 $17 $02 $90 $90 
%patch 0x46BA $FF $06 $C8 $AA $83 $3E $C8 $AA $64 Change the $64 to change how many are needed to get the yellow keycard. 
        $74 $01 $C3 $FF $06 $C6 $AA $C7 $06 
        $9E $AA $00 $00 $E8 $BA $25 $E8 $73 
        $25 $C3 

%end
User avatar
Fleexy
Site Admin
Posts: 490
Joined: Fri Dec 12, 2008 1:33 am
Location: Bloogton Tower

Post by Fleexy »

Why does this topic show CommanderSpleen as the author even though he didn't even post here?
User avatar
shikadi
Posts: 147
Joined: Fri Feb 08, 2008 9:11 pm
Location: belgium

Post by shikadi »

Yet another 4 year bumb, but you are right, strange
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Post by levellass »

The topic was reposted when the forums were reorganized, I think. Or possibly over the years the original information has been garbled slightly. Either way, it doesn't matter much.
Post Reply