隐藏在两款1990年代PlayStation游戏中的求婚。
How many video games include a marriage proposal? At least one

原始链接: https://32bits.substack.com/p/under-the-microscope-ncaa-basketball

隐藏在PlayStation游戏《NCAA Basketball Final Four 97》(和《World League Basketball》)中的求婚彩蛋,是通过精密的逆向工程发现的。通过在第二个手柄上输入特定按键序列(选择,开始,三角,上,X,方块,上,X,左,上,X),会出现“?? PUZZLE ??”道具,随后“Scott”会向“Melissa”求婚。选择“是”会显示“从此过上幸福的生活”的信息。 同样的方法还会解锁一个带有“大头模式”和“滚动片尾”等选项的“SECRET”菜单。这一发现涉及分析游戏的内存,以识别手柄输入功能和相应的按键代码序列。 值得注意的是,程序员Scott Corley证实,这个求婚是为他的妻子Melissa准备的,并在多年后重新发现这段代码时感到高兴——证实他们确实过上了幸福的生活!文章还提到其他包含求婚彩蛋的游戏,例如《Mortal Kombat 1》。

Hacker News新版 | 过去 | 评论 | 提问 | 展示 | 招聘 | 提交登录 隐藏在两款1990年代PlayStation游戏中的求婚 (32bits.substack.com) 32点,由bbayles 2小时前发布 | 隐藏 | 过去 | 收藏 | 4条评论 pmarreck 12分钟前 | 下一个 [–] 看起来他们1997年结婚了 https://www.chicagotribune.com/1997/07/10/melissa-duffy-scot... 如果确实是“Scott Elson Corley”。回复 skrrtww 10分钟前 | 父评论 | 下一个 [–] 后一个链接指的是不同的人。回复 pmarreck 7分钟前 | 根评论 | 父评论 | 下一个 [–] 啊,谢谢你指出来,你说得对。删除了错误的离婚链接;)回复 cameron_b 1小时前 | 上一个 [–] 这太美了。谢谢分享。回复 指南 | 常见问题 | 列表 | API | 安全 | 法律 | 申请YC | 联系 搜索:
相关文章

原文

How many video games include a marriage proposal? At least one! Plug in a second controller and use it to enter this sequence at the main menu of NCAA Basketball Final Four 97:

Select, Start, Triangle, Up, 
X, Square, Up, X, 
Left, Up, X

A new PUZZLE item will appear:

If you select it, you’ll get a question:

Melissa, will you marry me? Love, Scott

If you answer Yes, I will, you’ll get this message:

And they lived happily ever after...

And if you answer No, I won’t, you’ll get this one:

Error, please try again

Heartwarming!

I found this by noticing this ?? PUZZLE ?? item in the list of strings for the main menu:

80068944 "?? PUZZLE ??"
80068954 "SECRET"
8006895c "EXHIBITION GAME"
8006896c "CONTINUE SEASON / TOURNAMENT"
8006898c "START NEW SEASON"
800689a0 "START NEW TOURNAMENT"
800689b8 "TEAM INFORMATION"
800689cc "OPTIONS"

Then I did my usual memory snapshot diff trick to figure out which memory addresses hold controller input. That led me to the function at 80076398, which reads button presses from controller 2. It compares your button presses to the sequence at 8009add4. This uses the standard PlayStation mapping for buttons:

8009add4 0001 0000  # Select
8009add8 0008 0000  # Start
8009addc 1000 0000  # Triangle
8009ade0 0010 0000  # Up

8009ade4 4000 0000  # X
8009ade8 8000 0000  # Square
8009adec 0010 0000  # Up
8009adf0 4000 0000  # X

8009adf4 0080 0000  # Left
8009adf8 0010 0000  # Up
8009adfc 4000 0000  # X

If you match it, the counter at 800d2000 increases. If that counter reaches 11, the new menu item is activated.

Hmm, but what about the SECRET string just below the ?? PUZZLE ?? one? The same function checks controller 2’s button presses against another sequence:

Select, Start, Square, Circle, 
Triangle, Triangle, Circle, Right, 
Left, X

If you enter that, a different new item pops up:

This SECRET menu has:

I’m not sure what the I-L-L / I-N-I thing does, but Big Head Mode sure does what you’d expect:

As does Roll Credits. The Scott from the marriage proposal above seems to be Scott Corley, lead programmer:

I hope it worked out for Scott and Melissa!

I said above that “at least one” video game has a marriage proposal in it. I should have said “at least two,” because the exact same one is in another game from the same development studio as NCAA Basketball Final Four 97.

World League Basketball uses the same button codes as above. Enter them to make the same ?? PUZZLE ?? and SECRET options appear.

The marriage proposal screen has the same options and text, as does the secret menu screen. Big Head mode works the same way:

The credits are different. Scott Corley isn’t listed in the staff roll, but the team behind NCAA Final Four ‘97 gets a special thanks:

I sent a note about these Easter eggs to Scott Corley. He said that he had recently pulled out the game to show the marriage proposal to his son. But he’d forgotten the code and couldn’t make it work! He and Melissa did indeed live happily ever after.

I found a few more video game marriage proposals: Mortal Kombat 1, Marvel’s Spider-Man, Klax. Are there others than I’m missing?

For many more adventures in reverse engineering retro game Easter eggs, see my archive. And to get the next article as soon as it comes out, subscribe to Rings of Saturn here on Substack. More soon!

联系我们 contact @ memedata.com