Lights action

Completed patches for Keen1.
Post Reply
User avatar
levellord
Crazy pAtChEr
Posts: 1401
Joined: Thu Nov 20, 2003 11:35 pm
Location: NewZealand
Contact:

Lights action

Post by levellord »

Here's a few patches on lights that people may find interesting:

Code: Select all

#Change lightswitch tile [New tile must have lightswitch propery]
%patch $36D6 $0F $01
I'm sure this is somewhere else, but though I'd include it anyway.

Code: Select all

#Make a new palette and use it for...
%patch $177C4 $1F $1F $1F $1F $1F $1F $1F $1F     #New Palette
              $00 $00 $00 $00 $00 $00 $00 $00 $00
%patch $640B  $44 $00                             #Lights off
%patch $63EB  $44 $00                             #Lights on


#Default Light palettes:
%patch $35C9 $3B $25 #Lights on
%patch $35C9 $19 $25 #Lights off
You can make two new palettes if you want, what the hey.

Code: Select all

#Speed of lightswitcing: (Level freezes for this long)
%patch $359C $01 $00 #Off
%patch $35BC $01 $00 #On
Could be interesting to give the switches more 'kick'

Code: Select all

#Stop lights...
%patch $3722 $8D $FE #Turning off
%patch $3728 $67 $FE #Turning on
Always useful, especially with this patch:

Code: Select all

#Levels start with lights off:
%patch $4C92 $E8 $B4 $1F $90 $90 $90
%patch $4CA1 $E8 $0E $E9
Post Reply