Jump to content
NHL'94 Forums

HOW TO: Fix Y Button Bug Allowing Checked Players to Instantly Stand Up [SNES]


Recommended Posts

Fix Y Button Bug Allowing Checked Players to Instantly Stand Up


Problem:
When a player is knocked down, pressing the Y button causes them to get up instantly. This behavior doesn't occur on GENS or the previous version, NHLPA 93.

The knocked down player should stay down for 3 seconds as intended.

Solution:

The Y button performs a 'Hook / Hold' animation when you don't have the puck. The existing code already prevents "Hook/Hold" if your player is "Speed Boosting"

  • To improve this, we add an additional check when the Y button is pressed to determine if the controlled player's animation is in the 'Knocked Down' position.
  • If the player is knocked down, exit the routine without performing the "Hook / Hold" animation similar to "Speed Boosting" code.

Technical Details:

The code below is executed when the Y button is pressed without the puck. 

Code:

  1. Load the selected player animation/action, 0 = Standing, 1 = Knocked Down or Passing, 8 = Slapshot, F342 = Speed Boost
  2. Check if the player is knocked down
  3. If the player is knocked down then branch to RTL (Exit).
  4. If the Player is NOT knocked down then continue back to the original code.

image.png

New Code:

Download the patch tool to create your own ROM or patch an existing ROM.

image.png

Hex Version:

image.png

1) Replace old hex value with new hex value.

Headerless ROM (.SFC)
  ROM Offsets: (hex) F2251
  Old: BD E3 14
  New: 4C C5 FB

  ROM Offsets: (hex) F7BC5
  Old: FF FF FF FF FF FF FF FF FF FF FF FF
  New: BD E3 14 C9 01 00 F0 03 4C 56 A2 6B

Headered ROM (.SMC)
  ROM Offsets: (hex) F2451
  Old: BD E3 14
  New: 4C C5 FB

  ROM Offsets: (hex) F7DC5
  Old: FF FF FF FF FF FF FF FF FF FF FF FF
  New: BD E3 14 C9 01 00 F0 03 4C 56 A2 6B

   

 

 

Edited by McMarkis
  • Love 2
  • Thanks 1
  • Like 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...