Jump to content
NHL'94 Forums

magoo

Members
  • Posts

    5
  • Joined

  • Last visited

About magoo

  • Birthday 09/09/1976

Contact Methods

  • Website URL
    http://

Previous Fields

  • Preferred System
    Genesis
  • Favorite Way To Score
    Charging the goalie

magoo's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I'd certainly be interested in hacking NOSE features or/and submitting patchs if I could have access to the source code. This application is too great to let it die!
  2. I edited with NOSE a vanilla ROM of NHL95. Only thing I did is copy and pasting a couples of players (with two instance of NOSE running) and changing some player names. I activated the Free "Move Playoff Draw Data" hack to free some bytes and activated the "Auto Manage Free Bytes" feature. Problem is, the game "randomly" freeze on the startup menu (graphic is going wild) or on the "Ron Barr" presentation. I understand it may be linked with the Player Cards, I'm not sure what I can do to fix this. I'm not interested in having fancy Player Card, I just don't want my rom to freeze Thanks
  3. I couldn't download wboy's file from this thread, so he kindly sent the file by email. I'll post wboy's formulas for nhl94&95 here for whoever need 'em : for PLAYERS, use the rom's rating value (0-6 or 0x0-0xF) : total = (agility) + (speed * 1.5) + (offensive * 1.5) + (defensive) + (shot_power * 0.5) + (checking) + (stick_handling_value * 1.5) + (shot_accuracy) + (endurance * 0.5) + (pass * 0.5) base = 25 sum = total + base def_total = total - base if def_total bonus = 0 else bonus = def_total x = rounddown(sum + bonus) if x > 99 overall_player = 99 else overall_player = x NHL95 NOTE: for stick_handling, use this table to find the needed value : sth => sth_value 0 => 0 1 => 1 2 => 1 3 => 2 4 => 2 5 => 2 6 => 3 7 => 3 8 => 3 9 => 4 a => 4 b => 4 c => 5 d => 5 e => 5 f => 6 FOR GOALIES: total = ((agility * 2.25) - (0.25 * (agility % 2))) + ((defensive * 2.25) - (0.25 * (defensive % 2)))+ ((puck_ctl * 2.25) - (0.25 * (defensive % 2)))+ ((stick_r * 0.5) + ((stick_l * 0.5) + ((glove_r * 0.5) + ((glove_l * 0.5) ( "%" is the modulo operator) base = 25 sum = total + base def_total = total - base if def_total bonus = 0 else bonus = def_total x = rounddown(sum + bonus) if x > 99 overall_goalie = 99 else overall_goalie = x thanks to wboy for figuring this! (I hope I haven't scew up the formulas because wboy's formulas in the excel file are accurate)
×
×
  • Create New...