Main Menu patching

Request patches for Keens 4-6.
Post Reply
User avatar
Bubzrulz
Posts: 208
Joined: Thu Dec 22, 2016 12:37 pm
Location: N.S.W AUSTRAILA

Main Menu patching

Post by Bubzrulz »

so i been patching stuff colours and names of things and i used this

Code: Select all

#RETURN text
%patch $33CCA "RETURN TO GAME" $00 
              "RETURN TO INTRO" $00
              
because i'm not using a demo it works BUT a side affect of this is that when you load up the game and just before the games goes to main menu the dialog box comes up but there is no dialog meant to say Control Panel same when u leave game to main menu from in game how do patch this dialog back and its only the above patch that affects it
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Re: Main Menu patching

Post by levellass »

Are you talking about the box that has THIS text?

Code: Select all

%patch $33CE8 "Control Panel" $00
User avatar
Bubzrulz
Posts: 208
Joined: Thu Dec 22, 2016 12:37 pm
Location: N.S.W AUSTRAILA

Re: Main Menu patching

Post by Bubzrulz »

Code: Select all

%patch $33CE8 " Return  To Control Panel" $00
5

yes that worked but makes this happen as well now but now this happens Image
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Re: Main Menu patching

Post by levellass »

Try this:

Code: Select all

%patch $1CC37  $4E86W
%patch $33CF6 " Return  To Control Panel" $00

The problem is that when your NEW text is longer than your OLD text it has to erase some other text or cause problems. Here I moved the text that was erased to it erases something unimportant.
Post Reply