Solving the mystery of Need for Speed: Underground’s Magazine 22 with SilentPatch

March 12, 2025

6 min. to read

The mysterious Magazine 22

Theory – the current knowledge

The career mode in NFS Underground has a built-in achievements system in form of the Magazine covers. There are 27 magazines in the game, 4 tied to the Online reputation system, and the remaining 23 awarded for various feats in the career. The last four offline magazines are awarded for beating the best track times for Circuit, Sprint, Drag and Drift events on Hard difficulty. Three of those are reasonably easy to achieve – I am currently replaying Underground for the first time since 2003, and I beat the best times for Circuit, Sprint, and Drag without even trying; I just got them after certain Career races.

The Drift Track record magazine is a whole other story. Thanks to the official strategy guide, we knew this magazine tied to the Drift Track record so there was no mistake here. However, even though the unlock conditions were known, people were not getting the magazine regardless.

Turns out that the requirements for this magazine are much more difficult than originally assumed – to get the magazine in a Career event, the high score has to be obtained in a single lap. This has been documented online in old guides, people have been talking about the “one lap requirement” at least since 2005, and it’s also been the topic of investigative work on YouTube:

Recently, this issue saw a resurgence of attention because of the NFS Underground RetroAchievements set that tied one of the achievements to this magazine. Some of the comments are dire, showing just how much more difficult this magazine is compared to any other unlock in the game:

Damn finally got it, took me almost two days xD

This is the hardest thing I’ve ever done, it took probably 30 hours of attempts on Drift Track 8 to get for me, and I was already “decent” at drifting.

This was probably the worst experience I’ve had in a need for speed game and sooo unnecessary to have as an unlockable in-game. I’m not blaming the RA dev, but the NFS:U devs themselves.

Reality – sorry, you are all (partially) wrong

For my playthrough, I didn’t want to go through all this pain just because of what almost certainly is a bug in the game, so I dived into the code. I found out that the game unlocks the magazine if the following inequality passes:

\[\frac{player\_score}{laps} > \operatorname{RoundUp}(\frac{preset\_score}{4})\]

This check is not wrong per se. The magazines can also be obtained in Quick Race, where events up to 10 laps can be created. Comparing the scores directly would make the requirements easy to hit with high lap counts, as all the preset scores in the game were set for 4-lap events. Therefore, this formula makes it clear that the idea is to compare the average lap score, so the achievement is still challenging regardless of how many laps there are.

While the function is correct, the way it is used is not, as instead of the total player score, the best lap score is passed to the function as \(player\_score\)! This aligns with the existing community findings, as with \(laps = 4\), the best lap score effectively must be higher than the preset score (as both are divided by 4). This more or less means that to get this magazine in the Career, the player must be 4 times better than (most likely) originally intended.

There is one detail everyone missed, though. Contrary to popular belief, you do not need to necessarily run a 4-lap event while working towards this achievement! Everyone incorrectly assumed this since all Drift events in the Career are 4 laps long, but this is simply not true. Therefore, there is a way to outsmart this issue and nullify the effect of this coding mistake: if the player were to run a 1-lap event, the best lap score and the total score would be identical, and the value is not divided by laps, effectively reducing the check to:

\[total\_score > \operatorname{RoundUp}(\frac{preset\_score}{4})\]

See it now? It is relatively easy to get this magazine after all, despite this bug:

  1. Head to Quick Race and set up a 1-lap Drift event.
  2. Get at least 25% of the high score points within that single lap.
  3. Go to the Underground mode and win any event to unlock Magazine 22.

Fix it! Fix it! Fix it!

Before I move on to fix this issue myself, I wanted to find out if it was fixed officially in any of the many game versions released.

Looking at the code, I am certain the original intention was to compare the average lap score:

For SilentPatch, it’s an easy fix, with one caveat – this time, I needed this fixed not only in the PC version but also in the PS2 version, due to the RetroAchievements set. Who says it couldn’t be fixed for both platforms, though?

For this SilentPatch, I targeted multiple versions of the game:

With this bug fixed, I could finally resume my playthrough and at last, get the magazine without much trouble:

However, that’s not the only issue fixed in this SilentPatch.

Other fixes in SilentPatch, going cross-platform

Downloads

SilentPatch for the PC and PS2 versions of Need for Speed: Underground can be downloaded from Mods & Patches. Click here to head to the respective pages:

Download SilentPatch for the PC version Download SilentPatch for the PS2 version

Share
Categories Articles Releases