PATCH: No DONE Markers

Completed patches for Keen1.
Post Reply
User avatar
CommanderSpleen
Posts: 1017
Joined: Sun Aug 31, 2003 12:11 pm
Location: The Land of Sparkly Things
Contact:

PATCH: No DONE Markers

Post by CommanderSpleen »

Remember Andy's flag patch? Now we can complete the Keen 4 style by leaving the level tiles on the map intact and using flags as the only indication a level is completed.

Firstly, this one can be used if you're not actually using the flags patch:

Code: Select all

#Do not spawn DONE markers (Non-Flags version)
# Will not work with flags patch
# Single Marker:
%patch $7D85 $90 $90 $90 $90 $90

# 2x2 Markers:
%patch $7DF5 $90 $90 $90 $90 $90
%patch $7E11 $90 $90 $90 $90 $90
%patch $7E27 $90 $90 $90 $90 $90
%patch $7E40 $90 $90 $90 $90 $90
And here's the flag compatible version:

Code: Select all

# Do not spawn DONE markers (Flags version)
# Place this AFTER the flags patch
# Single Marker:
%patch $7DCD  $90 $90 $90 $90 $90

# 2x2 Marker:
%patch $7D9F  $90 $90 $90 $90 $90
%patch $7DA6  $90 $90 $90 $90 $90
%patch $7DB4  $90 $90 $90 $90 $90
%patch $7DBA  $90 $90 $90 $90 $90
Post Reply