Freezing

Request patches for Keens 1-3.
Post Reply
User avatar
Flyingmouse
Posts: 104
Joined: Wed Aug 05, 2009 8:33 pm
Location: Procrastination

Freezing

Post by Flyingmouse »

Any way I can get the Vortimom to freeze in her shooting frame for about a second before she actually shoots?
Stealthy71088
Posts: 583
Joined: Thu Mar 17, 2005 11:54 pm
Location: NY

Post by Stealthy71088 »

If you're willing to sacrifice a sprite, you could patch the line that calls shooting to the behavior of another sprite. You could then patch the next line of that sprite back to the original's shooting sprite.
levellass
Posts: 3001
Joined: Wed Oct 11, 2006 12:03 pm
Location: Ngaruawahia New Zealand

Post by levellass »

Better would be to use some spare space in the screenshot area.

Here $7F is the pause (Second line.) It can't get any longer, but you CAN make it shorter. This uses the zapzot-like behavior.

Code: Select all

#Shooting mom uses pause behavior
#SIDE EFFECT: Turns whenever shooting!
%patch $4469 $0B5FW

#This is the pause behavior:
%patch $0B5F $55 $8B $EC $C7 $06 $10 $99 $13 $00 $A1 $3A $99 $03 $06 $40 $5D
             $A3 $3A $99 $83 $3E $3A $99 $7F $7E $08 $C7 $06 $42 $99 $44B9W
             $EB $00 $5D $C3
Post Reply