patch help one patch cancels out other

Anything related to Keen Modding.
Post Reply
User avatar
Bubzrulz
Posts: 208
Joined: Thu Dec 22, 2016 12:37 pm
Location: N.S.W AUSTRAILA

patch help one patch cancels out other

Post by Bubzrulz »

i got these 2 patches

Code: Select all

#Reset Keen's score to 0 on dying (But not game over.)
%patch $66BB $C7 $06 $7A50W  $0000W  $90 $90 $90 $90 $90
%patch $672D $BF $0001W $C7 $06 $7A52W  $0000W  $90

#Auto restart level, decrements lives
%patch $668C $9A $146008A8RL    $5F $5E $8B $E5 $5D $CB
the 2nd patch makes the 1st one not work is there anyway to fix this problem
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Re: patch help one patch cancels out other

Post by levellass »

Here the problem is that one patch appears in the 'retry level' box, but the second patch SKIPS that, skipping the other patch. This patch here combines both of them; delete the other two:

Code: Select all

#Auto restart level, decrements lives and resets score to 0
%patch $668C $C7 $06 $7A50W  $0000W  $C7 $06 $7A52W  $0000W  $9A $146008A8RL
                 $5F $5E $8B $E5 $5D $CB
Post Reply