PATCHES: Nifty Sprite Stuff

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:

PATCHES: Nifty Sprite Stuff

Post by CommanderSpleen »

Here are some fun patches I've put together for one of my mods, free for all to enjoy.

Code: Select all

#Set one-way guard bot bullet speed to $xxyy
#Positive = right, negative ($FFFF - value) = left
%patch $490F $C7 $44 $20 $yy $xx $90

Code: Select all

#Guard bot shoots up or down at speed xxyy(negative = up, positive = down)
#Positive = down, negative ($FFFF - value) = up
%patch $490F $C7 $44 $22 $yy $xx $90

Code: Select all

#Garg charges in random direction instead of toward Keen
%patch $1BA9 $E8 $22 $A5      # call $C0CE ($C0CE - $1BAC = $A522)
%patch $1BB0 $38 $06 $14 $5B  # cmp ax, [5B14]
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Post by levellass »

Oooh! That last one is exquisite!
Post Reply