Help menu yellow border removing

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

Help menu yellow border removing

Post by szemigi »

I saw that this patch exists for Keen 4.
Could you do it for Keen 5 and 6 as well?
User avatar
Nisaba
Posts: 320
Joined: Fri Jan 01, 2016 11:15 pm
Location: patch.pat
Contact:

Re: Help menu yellow border removing

Post by Nisaba »

FYI Keen 6 does not have a help menu...
User avatar
Nisaba
Posts: 320
Joined: Fri Jan 01, 2016 11:15 pm
Location: patch.pat
Contact:

Re: Help menu yellow border removing

Post by Nisaba »

...for Keen 4 and 5 you don't need a patch, really. Simply check the extracted images and redraw the respected six images to your liking. let's say you want the help screen menu to appear just in red (no borders whatsoever) then paint everything just red. easy as that.
User avatar
szemigi
Posts: 716
Joined: Fri Jan 23, 2009 8:06 pm
Location: Hungary
Contact:

Re: Help menu yellow border removing

Post by szemigi »

Yeah, sorry, Keen 6 doesn't have.

With patch, you can remove the border of help menu in Keen 4-5. ;)
User avatar
Nisaba
Posts: 320
Joined: Fri Jan 01, 2016 11:15 pm
Location: patch.pat
Contact:

Re: Help menu yellow border removing

Post by Nisaba »

Code: Select all

#Don't display main Computer Wrist bitmaps - Keen 4
%patch $995C $90 $90 $90 $90 $90 #Top of help screen
%patch $996F $90 $90 $90 $90 $90 #Left of help screen
%patch $9983 $90 $90 $90 $90 $90 #Right of help screen
%patch $9997 $90 $90 $90 $90 $90 #Bottom of help screen
User avatar
szemigi
Posts: 716
Joined: Fri Jan 23, 2009 8:06 pm
Location: Hungary
Contact:

Re: Help menu yellow border removing

Post by szemigi »

I already saw this on KeenWiki, but what I want is the Keen 5 version of the patch, which Levellass will make...


EDIT: Lass, answer the other topics below this topic.
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Re: Help menu yellow border removing

Post by levellass »

Redrawing images is inelegant though, it takes up space and you can't use them for other things.

Code: Select all

#Don't display main Computer Wrist bitmaps -Keen 5:
%patch $E8C4 $90 $90 $90 $90 $90 #Top of help screen
%patch $E8D7 $90 $90 $90 $90 $90 #Left of help screen
%patch $E8EB $90 $90 $90 $90 $90 #Right of help screen
%patch $E8FF $90 $90 $90 $90 $90 #Bottom of help screen
User avatar
Nisaba
Posts: 320
Joined: Fri Jan 01, 2016 11:15 pm
Location: patch.pat
Contact:

Re: Help menu yellow border removing

Post by Nisaba »

Oh c'mon. I was just about to post the exact same patch... seems like I'm still too slow when it comes to dig for new patches. At least I know that I did my job right.
User avatar
szemigi
Posts: 716
Joined: Fri Jan 23, 2009 8:06 pm
Location: Hungary
Contact:

Re: Help menu yellow border removing

Post by szemigi »

levellass wrote: Wed Aug 01, 2018 2:47 am Redrawing images is inelegant though, it takes up space and you can't use them for other things.

Code: Select all

#Don't display main Computer Wrist bitmaps -Keen 5:
%patch $E8C4 $90 $90 $90 $90 $90 #Top of help screen
%patch $E8D7 $90 $90 $90 $90 $90 #Left of help screen
%patch $E8EB $90 $90 $90 $90 $90 #Right of help screen
%patch $E8FF $90 $90 $90 $90 $90 #Bottom of help screen
I even wanna remove the border of the entire help menu, not only the ComputerWrist.
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Re: Help menu yellow border removing

Post by levellass »

Then you'll want this too:

Code: Select all

#Don't display main help page bitmaps -Keen 5:
%patch $E57A $EB $63 #All images
Post Reply