Dragon Quest IV (NDS) English + Party Chat Script Patcher for Japan ROM

Overview

Dragon Quest IV (NDS) English + Party Chat Script Patcher for Japan ROM

Patches English script files from the US version of Dragon Quest IV for Nintendo DS and Android so they are rendered nicely when used with the Japan ROM. Addresses various issues caused by the Japan game code being not fully compatible with English script files.

Party Chat

Why?

The US version of Dragon Quest IV for the Nintendo DS did not have party chat (https://dragon-quest.org/wiki/Party_Chat) and seems to completely disable party chat in the game code, so it is not normally possible to play DQIV on DS with party chat in English. The Android version has English party chat script files that are compatible with the Japan ROM, but using English script files are not handled well by the Japan ROM code - among other things, control characters meant to be evaluated to switch between gendered pronouns and singular/plural words are not supported, so they render as literals instead of being evaluated. While it is technically possible to simply place the raw English script files as-is into the Japan ROM, these issues make it a subpar experience.

This patcher attempts to address those issues by replacing control character blocks with normal text, reflowing text so words are not split at the edge of the text box, and other tweaks to improve the overall experience. It is intended to allow a version of DQIV on DS with party chat, with a minimum of jank caused by the Japan ROM code not being meant for English text.

One potential approach that could provide an even better experience would be to alter the US version's code to re-enable party chat. In theory this would allow using the party chat files from the Android version as-is, without any script patching. Making this change is beyond my abilities and seems to require a nontrivial amount of code changes. If someone is able to do that it would make this script completely obsolete and me very happy.

Prerequisites

Tools:

Files:

  • Nintendo DS Japan DQIV ROM
  • From Nintendo DS US DQIV ROM: English .mpt. files located in data/data/MESS/en (153 files total)
    • Load the NDS US ROM in dslazy and unpack it. The unpacked files are in the NDS_UNPACK directory where your dslazy executable is.
    • An alternative is to use the same files from the Japan ROM. The US ROM contains updated script files that fixes some formatting issues (menu options are better named) and is preferred, but the Japan ROM files should work fine.
  • From Android DQIV OBB: English Party Chat .mpt files - b0500000.mpt to b0552000.mpt (46 files total), located in com.square_enix.android_googleplay.dq4/main.11100.com.square_enix.android_googleplay.dq4.obb/assets/msg/en
    • After installing the Android DQIV app, you should be able to find the OBB by mounting your phone as a USB storage device and navigating to Android/obb. .obb files are basically zip files and can be extracted with any zip utility. You can rename the .obb file and change the extension to .zip to make extraction easier.
    • The Android OBB also includes the other non-party-chat en script files that may work instead of the US ROM files. However I ran into blackscreen issues when using these files on the JA ROM, so prefer using the NDS ones. YMMV

Quick Start

  1. Make sure there is an empty folder named en in the same directory as the dqiv_patch.py script file. If you cloned this repo/downloaded as a zip it should already be present, but if not create it.
  2. Copy NDS US ROM .mpt files from the unpacked folder to the en directory.
  3. Copy Android OBB party chat .mpt files to the en directory
  4. Run python dqiv_patch.py
  5. Find output files in out directory.
  6. Load the JA ROM in dslazy and unpack it. Copy the contents of out to /NDS_UNPACK/data/data/mess, replacing the folder of the same name (en if you ran with default settings).
  7. Pack the ROM in dslazy.

You have now generated a JA ROM with patched English script which includes party chat. This ROM will still use Japanese text by default, but can be switched to English with the Action Replay code 02106404 00000001.

Alternatively, you can run python dqiv_patch.py --lang ja to generate a ja output folder. Copy this to the /NDS_UNPACK/data/data/mess directory, replacing the ja folder, and pack the ROM is dslazy. This ROM will show the English script without requiring an Action Replay code. This version adds speaker names to the actual text - this is because the ja language mode does not show speaker names floating above the text box, instead expecting them to be in the actual text.

en language mode:
Party Chat

ja language mode:
Party Chat

There are several command line arguments available, run python dqiv_patch.py -h to see documentation. For example you can run the script with --gender m to generate a script with male gender pronouns, --gender f for female pronouns, or --gender b to include both.

Comparison Screenshots

Before

Using the raw English script files on a JA ROM:

Chapter Before Battle Before Reflow Before Control Before Item Before

After

With patched script files:

Chapter After Battle After Reflow After Control After Item After

Approach

For each file:

  • Seek until we find a @a start boundary. Write all bytes until the start boundary to the output file as-is.
  • Next, seek until we find a @b nametag end boundary. Everything between @a and @b is the speaker name of the dialogue segment.
  • Seek to @c2@ end boundary. Determine length of segment.
  • Remove each %0 and add equal number of empty spaces at end of segment.
    • These appear to be used to selectively capitalize or add prefixes like "A " where appropriate. Guess is that the JA ROM does not have code that supports this, so if not stripped the %0 appears as-is in text.
  • Find control segments and reduce them based on the following rules. Control segments can be nested so are recursively reduced.
    • Change each plural-variable block e.g. %H***%Xyou%Yyouse%Z to plural equivalent, padding end with spaces.
      • These cases appear to be handling player character events.
      • Always pick the latter of the two options, since often there is more than one party member.
    • Change each plural-variable block e.g. %M***%Xthem%Yit%Z to singular equivalent, padding end with spaces.
      • These cases appear to be handling item-related events, e.g. "you can't use them/it".
      • Always pick the latter of the two options (singular) because it sounds OK even when there is more than one item.
    • Change each context-specific block e.g. %O***%Xthe girls'%Yyour%Z to the first option.
      • These seem to be handling different cases when certain party members are present(?).
      • Use the second option since it seems to read fine in practice.
    • Change each context-specific block e.g. %L***%X%Y%Z to the second option.
      • These cases appear in dialogue where one or both sisters (Meena and Maya) can be present.
      • Pick the second case since it reads OK if both sisters are present.
    • Change each gender-variable block e.g. %A***%Xsir%Z%B090%Xlady%Z to gender-neutral equivalent, padding end with spaces.
      • If no matching rule is found or only one option, warn and default to first item.
      • Rules:
        • his/her/its to their
        • he/she/* to they
        • man/woman to person
        • him/her/it to them
        • feen/wan to person
        • laddie/lassie to child
        • gent/wench to one
        • himself/herself/itself to themself
        • son/girl to young one
        • *sir/*lady to friend
        • *boy/*lady to young one
        • *ero/*eroine to warrior
        • *guy/*girl to person
        • monsieur/mademoiselle to friend
  • Fix grammar issues caused by replacements, special case substitutions
    • Rules:
      • they's to they are
      • What luck! to Found - this makes the standard item discovery text flow better since we cannot use the %0 control character to add the proper prefix.
  • Re-layout line by first converting all newlines into spaces. Then split segments into lines with a max limit (usually 43) on space boundaries, changing spaces to newlines. There is a strange issue where the game auto-advances text boxes under certain conditions which can make the text box auto-advance to an empty screen. Because of this I remove newlines from end of each line, which seems to fix this issue without causing any other problems.
  • Pad the segment to match the original segment's length.
  • Repeat

Each resulting file should be the same size as the original. Each text segment should also be the exact same size as the original. The game expects text segments to start and end at specific places and resizing the text segments causes errors when the game tries to display text.

The file b0801000.mpt contains text used in battles. Battle text is rendered in a smaller font, so the normal 43-char line limit causes strange line splits in some places. Instead I reflow with line limit of 45 (this causes the enemy death text to flow better).

Additionally, we apply a special patch to shorten chapter names in b1007000.mpt. The en chapter titles overflow the JA ROM chapter heading text boxes so are shortened.

Known issues

  • Sometimes garbage characters like % may appear, which don't belong to control character segments. This can be caused by certain special characters that aren't handled correctly on the JA ROM.
  • Since we are forced to pick a single plural/singular substitution, sometimes the text will not have the correct plural/singular word choice.
  • Since the max line size is fixed for the reflow logic, sometimes when item or monster names are substituted into text it will cause the line to exceed the max line size. This will cause the words to be split at the edge of the text box. I have added line-specific fixes to address this when I notice issues, and can do so for any reported cases.
  • Enemy critical hits show ACTOR instead of the enemy name, probably because of some difference in the JA vs. EN ROM code causing the name substitution to break.
  • Some text may overflow since the English script doesn't fix into text boxes expected for the JA ROM. Most obvious example is the chapter names on the save/load screen.
  • When ROM language is changed to English, the name selection screen is still in Japanese, but the main character is always referred to as "Solo"/"Sophia" in game. This appears to be hardcoded in the JA ROM and I don't know how to fix this.
  • When ROM language is set to Japanese (default), the game will still use the Japanese name selection screen and save/display the main character name in Japanese. Changing this seems to require changing the ROM code which I don't know how to do.
  • Most item and enemy names are lowercased. The actual item strings are in lowercase, and the code to handle uppercasing them when appropriate doesn't seem to work in the JA ROM.
    Item Text Issue
  • The map screen shows "Map Info" and other strings showing shop info in Japanese. Although the "Map Info" string is present in the en script files, the JA ROM seems to be hardcoded to show this string in Japanese. Replacing the corresponding file in the ja folder doesn't help. A few other strings are also affected in inventory screens, may be others I haven't found.
    Map Text Issue
  • When there is more than one monster type in a battle, all monster names after the first one have %0 prepended to them. This appears to be getting added in code, so is not possible to strip out by modifying the script data.
  • When using en language mode, if there are multiple named speakers in one dialogue, the speaker nametag won't update correctly. For example if Maya is the first speaker and Meena responds in the same dialogue, the nametag will say Maya the whole time. This doesn't occur in ja language mode and this patch script is not altering the speaker names during patching, so this appears to be a code bug in the Japan ROM.
Comments
  • "ja" mode rom will have "en" mode formatting if action replay code is used

    So i was fiddling with this trying to make a rom that will be both:

    1. English by Default.
    2. Have English formatting (names above).

    And i realized that if i use a "--lang ja" rom + action replay code 02106404 00000001 i get exactly that.

    Am i insane or that just works and was stated and i didn't get it. (again)

    opened by MediaMaquina 2
  • Untranslated Japanese text

    Untranslated Japanese text

    I'm playing through Chapter 1 and some text when I press party chat is untranslated by either the patch or the AR code. Healie is also only saying elipses, but I assume that's just all he says right now. I'm unfamiliar with the game so if this isn't part of the party chat fix my apologies. https://imgur.com/a/NaHRZlP unknown (5)

    opened by iongammarays 1
  • Torneko Appraise

    Torneko Appraise

    Minor issue but I got to ch3 and the menu text for Torneko's appraise is still in Japanese, though you can click on it as usual and the actual appraisal is in english. don't know if you've noticed.

    image

    opened by Ditogalaxy 1
  • Ch5, Parthenia, Kiryl has party chat line when he's incapacitated

    Ch5, Parthenia, Kiryl has party chat line when he's incapacitated

    When entering Parthenia the first time, when using party chat, Kiryl has a line even though he is not a useable party member by that point.

    2022051712452300-0A347E222F9DAE29C9514AB6C262481F

    Also uploaded a save file, just enter Parthenia and use party chat to see the erroneous line. Dragon Quest IV - Michibikareshi Monotachi (Party Chat).zip

    opened by ugoplatamia 3
  • Broken conversation with Princess Veronica in Chapter 2

    Broken conversation with Princess Veronica in Chapter 2

    After completing the tournament, the dialog with Princess Veronica (from interacting with her, not the cutscene dialog) is broken, at least in JP locale. What I get is (>= I press A to continue): "Princess Veronica*Thanks to Tsarevna Alena, I will no longer have to go through a marriage not of my choosing. [Large blank space - complete text box]

    Princess Veronica*young one [small blank space - previous line still visible, but there's blank lines before the next dialog]

    Princess Veronica*Oops! Listen to me saying silly things! Please just forget I said anything." In addition, several other conversations in this section (such as with King Norman, and the maid upstairs, although not seeming to be missing dialog like the conversation with Veronica, have the large blank space behavior, where even though all the dialog has been written out, the dialog scrolls out of the box as if more dialog was being written, leaving a completely blank text box until you press a. From what I can tell, only (and, so far, all) the dialogs that are triggered after completing the tournament experience this issue (e.g. the guard saying "This is King Norman's throne room" does not have it happen), though party talk does not seem to have the issue.

    opened by NikoofDeath 0
  • Dialog has wrong amount of blips

    Dialog has wrong amount of blips

    Playing through the game, I notice a lot of the times dialog will have blips continue well after the text has finished, and sometimes (its far less noticeable) the blips stop before the text has finished. My assumption is this due to the blips being set based off the Japanese text instead of the English text, or maybe (but I doubt it) being based on the proper english text, rather than the edited ones.

    opened by NikoofDeath 2
  • Text automatically overflows into new box

    Text automatically overflows into new box

    It seems that some single text boxes are getting too much text in them in the script, as an example:

    When there is a box with a lot of text once the first box is done

    it overflows into a new one

    So if you don't read all of "When there is a box with a lot of text once the first box is done" by the time the word "done" is typed out, you miss out on whatever you didn't read, since it automatically goes to a second box that just says "it overflows into a new one". My guess is this could be avoided by automatically splitting the text boxes if there are too many characters?

    opened by NikoofDeath 1
  • Tiny issue: Class name of male Hero is Heroine

    Tiny issue: Class name of male Hero is Heroine

    Thank you for making this patch I didn't know I needed this until I saw it. But I just have a tiny issue. The class name of the male hero is Heroine and I don't know if and how I messed up.

    opened by FFRyu 2
Releases(v1.0.0)
Owner
Aric Huang
Aric Huang
XPlaneROS is a ROS wrapper for the XPlane-11 flight simulator.

XPlaneROS XPlaneROS is a ROS wrapper for the XPlane-11 flight simulator. The wrapper provides functionality for extracting aircraft data from the simu

AirLab Stacks 26 Dec 04, 2022
Frets on Fire X: a fork of Frets on Fire with many added features and capabilities

Frets on Fire X - FoFiX This is Frets on Fire X, a highly customizable rhythm game supporting many modes of guitar, bass, drum, and vocal gameplay for

FoFiX 377 Jan 02, 2023
This is simple minesweeper-like Telegram game

This is simple minesweeper-like Telegram game. You need to open all "free" squares and put flags on squares with bombs on them. If you open a cell with a bomb, the game is over.

Aleksandr 32 Dec 31, 2022
Wordle-prophecy - The comprehensive list of all Wordle answers, past and future

About This repo contains the comprehensive list of all Wordle answers, past and

Hayden Moritz 2 Dec 15, 2022
Space Invaders x Asteroid Game

Retro Journey 1: Space Invaders A simple implementation of a retro style video game where users compete against asteroids and the goal is to destroy a

Sandesh Lamsal 2 Aug 05, 2022
Simple game where you try to survive as long as you can on screen.

Survival Game Simple game where you try to survive as long as you can on screen. Play To run, download the code and run the survival_game.py file. Fro

Logan Morris 1 Feb 10, 2022
Overview: copain, your friendly AI framework to learn and play games

Overview: copain, your friendly AI framework to learn and play games Interface fceux with python and run reinforcement learning. Compatibility Current

fcharras 1 Dec 16, 2021
A small fun project to simulate Conway's Game of Life, created in Python.

A small fun project to simulate Conway's Game of Life, created in Python. Conway's Game of Life simulates a grid of cells, where the state of each cell consists of whether the cell is alive or dead.

Harrison Verrios 1 Jun 19, 2022
CTF (Capture The Flag) started from DEFCON CTF, a competitive game among computer security enthusiasts

CTF Wiki 中文 English Welcome to CTF Wiki! CTF (Capture The Flag) started from DEFCON CTF, a competitive game among computer security enthusiasts, origi

CTF Wiki 6.4k Jan 03, 2023
A Frogger game in Python with pygame

CrockiCrocki A personal project of a simple "game" in Python to learn Pygame and Python. Requires: pygame: In Linux: pip3 install pygame In MacOS: pip

Jorge Abreu 1 Nov 07, 2021
Game-of-life - A simple python program to simulate and visualise the Conway's Game of life

Conway's game of life A simple python program to simulate and visualise the Conw

Dhravya Shah 3 Feb 20, 2022
A use of the python MCPI to enhance the multiplayer and singleplayer gameplay.

Morpheus 2.0 A use of the python MCPI to enhance the multiplayer and singleplayer gameplay. To Use: You will need to install the keyboard, pysimplegui

11 Oct 11, 2022
source codes for my(small indie game developer) games

My repository for most of my finished && unfinished games Table of Contents Getting Started Prerequisites Installation Usage License Contact Prerequis

Gustavs Jākobsons 1 Jan 30, 2022
Snake (PyGame-based) port for Minecraft:Bedrock Edition using PEWSAPI

Snake_PEWSAPI Snake (PyGame-based) port for Minecraft:Bedrock Edition using PEWSAPI And we are not going to make any change to the original Snake sour

Azuki 1 Mar 17, 2022
Simple Game created using Python & PyGame, as my Beginner Python Project!

Space Invaders This is a simple SPACE INVADER game create using PYGAME whihc have sound and lot's of keyboard functions. Prerequisites More Experience

Gaurav Pandey 2 Jan 08, 2022
Email guesser - Guessing BF email based on emailGuesser by WhiteHatInspector

email_guesser Guessing BF email based on emailGuesser by WhiteHatInspector (http

4 Dec 25, 2022
Magic: The Gathering Arena draft tool that utilizes 17Lands data

MTGA_Draft_17Lands Magic: The Gathering Arena draft tool that utilizes 17Lands data. Steps for Windows Step 1: Download and unzip the MTGA_Draft_17Lan

41 Dec 31, 2022
DOTD - A murder mystery game made in Python

DOTD This repo holds the files for my video game project from ENG101, Disaster o

Ben Bruzewski 1 Jan 13, 2022
Pyvidplayer - An extremely easy to use module that plays videos on Pygame

pyvidplayer An extremely easy to use module that plays videos on Pygame Example

17 Dec 05, 2022
Tool for Path of Exile game to automatically scan Archemesis inventory and display related information

poe-archnemesis-scanner Tool for Path of Exile game to automatically scan Archemesis inventory and display related information Features Controls When

70 Nov 10, 2022