隐藏在两款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讨论,源于一篇文章(32bits.substack.com),探讨了令人惊讶地频繁出现在视频游戏中的求婚现象。原文详细描述了开发者斯科特·科利为他当时的(现在是)妻子在《NCAA篮球Final Four '97》中创建的一个隐藏求婚。 令人惊讶的是,科利多年后忘记了激活码,但确认了故事的真实性。 该讨论迅速扩展到许多例子:一个《超时空之轮》的ROM修改求婚,一个Valve协助的《传送门2》求婚,甚至一个隐藏在《Summoner》游戏结尾处的求婚。 其他用户分享了创建自定义游戏或利用游戏机制求婚的个人经历。 除了游戏之外,求婚还出现在科学文章中,甚至在一张由游戏创造者设计的《万智牌》卡牌上。 讨论强调了一种迷人的趋势,即开发者和玩家都在利用这种媒介创造独特、个人且令人难忘的时刻,但一位评论员指出一对夫妇的结局有些苦涩。
相关文章

原文

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