TL;DR - if you are not interested in a brief explanation of how was this possible, scroll down to the Download section for a download link.


Every modern Yakuza game has arcade machines with real games from SEGA. In the case of Yakuza 6 and Yakuza: Like a Dragon, one of the games the player can play is a full arcade version of Virtua Fighter 5: Final Showdown.

There is more to it, however. While working on a different project (mentioned below) and looking around the Yakuza 6 version of the game’s code, I noticed a… single flag that was named rather promising. Thanks to Yakuza: Like a Dragon briefly shipping on Steam with debug symbols, I knew exactly what this flag was named:

g_is_arcade_mode = g_game_config.game_mode != 0;

According to the game’s code, Yakuza 6 (and Yakuza: LAD) usually uses mode 1 when booting games from within Club SEGA and mode 2 when booting a 2p game from the main menu. Mode 0 is inaccessible from the vanilla game, but what does it do when activated?

Turns out it does more than anyone had expected – it activates a complete, nearly fully working console version of the game!

A few interesting insights:

  • The game appears to be based upon the Xbox 360 port, with references to Xbox LIVE left in the menus.
  • Unlike the console ports, this version of the game has a fully functional Exit Game option.
  • The game does not contain any DLC data, attempting to force unlock them softlocks the game.

This discovery got people hyped (as evidenced by the amount of engagement on the tweet), so I couldn’t leave it at the mercy of another project of mine that might or might not work. Since it’s a single byte change, I went ahead and created a small plugin for Yakuza 6 and Yakuza: LAD, changing the mode used by arcade machines from 1 to 0. With a single flag change, you now can play the full console version from inside Club SEGA!

Now, bear in mind that the sole purpose of this plugin is to unlock the game as-is for everyone. At the moment I have no plans to address any of the issues and shortcomings there are. Those include, but are not limited to:

  • Saving doesn’t work
  • To start the game, coins must be inserted twice (Y/Triangle on the gamepad)
  • English texts are cut off, as this build of VF5FS seems to be a Japanese SKU with English texts
  • Pause menu is tricky to access and resuming the game does not unfreeze gameplay

Download

The modification can be downloaded from Mods & Patches. Click here to head to the game’s page directly (the same download works for Yakuza 6 and Yakuza: Like a Dragon):

Download VF5FS Unlocker
After downloading, all you need to do is to extract the archive to the game’s directory, and that’s it! Not sure how to proceed? Check the Setup Instructions. This plugin only works with the Steam version of the games!

What’s next?

As those arcade games are DLL files separate from the game executable, for the past week I’ve been experimenting with running Virtua Fighter 5 standalone; in fact, that’s how I found this unused “console mode” in the first place! At the moment, my standalone game reaches the title screen only, so it’s too early to say whether it’s going to be doable or not.

I plan to continue looking into that though, and if I manage to progress it further I will be publishing the results!


For those interested, the full source code of the mod has been published on GitHub, so it can be freely used as a point of reference:
See source on GitHub