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
This is a simple game made using pygame.

Ball breaker This is a simple game made using pygame game view The game view have been updated wait for the new view to be uploaded Game_show.mp4 Lear

Rishikesh Kumar 3 Nov 05, 2021
This is a python interactive story game that I made to show off what I've learnt in python coding for a month

Purpose The files in this repository are for that of a story game created with python version 3.8.5 The purpose of this project was to get familiar wi

0 Dec 30, 2021
MCTS (among other things) for 2048

2048 Created by Chad Palmer for CPSC 474, Fall 2021 Overview: This is an application which can play 2048 and simulate games of 2048 with a variety of

Chad Palmer 1 Dec 16, 2021
Un semplice Snake game , come negli anni 90!

Project-SnakeGame Un semplice Snake game , come negli anni 90! ITA VI porto un semplice giochino per i nostalgini degli anni 90 , ispirato al vecchio

Matt K Lawrence 1 Oct 17, 2021
A comprehensive, feature-rich, open source, and portable, collection of Solitaire games.

PySol Fan Club edition This is an open source and portable (Windows, Linux and Mac OS X) collection of Card Solitaire/Patience games written in Python

Shlomi Fish 368 Dec 28, 2022
Aftermath is an anti token grabber written in Python3.

🎈 Aftermath 🎈 Aftermath is an anti token grabber written in Python3. This tool with a GUI setup is checking the Downloads folder to search for token

Billy 39 Dec 16, 2022
Game of life, with python code.

Game of Life The Game of Life, also known simply as Life, is a cellular automaton. It is a zero-player game, meaning that its evolution is determined

Mohammad Dori 3 Jul 15, 2022
The main objective of the game is to destroy multiple waves of asteroids with the help of a blaster mounted on the spaceship.

Astronomia: let the exploration begin The main objective of the game is to destroy multiple waves of asteroids with the help of a blaster mounted on t

Aryan Nath 8 Nov 18, 2022
Ladder network is a deep learning algorithm that combines supervised and unsupervised learning

This repository contains source code for the experiments in a paper titled Semi-Supervised Learning with Ladder Networks by A Rasmus, H Valpola, M Hon

Curious AI 505 Nov 15, 2022
Minecraft.nix - Command line Minecraft launcher managed by nix

minecraft.nix Inspired by this thread, this flake contains derivations of both v

12 Sep 06, 2022
A python3 project for generating WorldEdit shematics for the MineClone2 game for Minetest from images.

MineClone2 MapArt This is a python3 project you can use with the MineClone2 game for Minetest. This project take an image and output a WorldEdit shema

3 Jan 06, 2023
This is the card game like HearthStone and Magic

Territory War How to use it use pip3 to install django and channels: pip3 install Django pip3 install channels go to CardGame/first/consumers.py and g

Caesar 3 Oct 24, 2022
This is a simple telegram bot for the game Pyal, a word guessing game inspired by Wordle

Pyal Telegram Bot This is a simple telegram bot for the game Pyal, a word guessing game inspired by Wordle. How does it work? Differently from the ori

Rafael Omiya 4 Oct 06, 2022
Python Program: Hilo Game

Python Program: Hilo Game 🂡 Description Hilo is a game in which the player gues

2 Jan 22, 2022
AI Mario challenges you to clear all stage of Super Mario game.

mario-ai-challenge Challenge AI Mario to clear all stages of Super Mario. GitHub Pages Site Rules Enjoy building AI Mario. Share information. Use Goog

karaage 48 Dec 10, 2022
It just a cli based snake game written in Python.

Snake Game in Python Things that I learned in this project: OOP in Python. Clean code. The curses library. How to run the game You need to clone this

Kevin Marques 7 Oct 01, 2022
Lint game data metafiles against GTA5.xsd for Rockstar's game engine (RAGE)

rage-lint Lint RAGE (only GTA5 at the moment) meta/XML files for validity based off of the GTA5.xsd generated from game code. This script accepts a se

GoatGeek 11 Sep 18, 2022
Pratice Project - Tic tac toe game

Hello! This tic-tac-toe game project and its notes are result from a course pratice milestone. The project itself is written in Python using the Jupyt

Rafael Nascimento 1 Jan 07, 2022
Python Interactive Mini Games

Python Interactive Mini Games Mini projects from Coursera's An Introduction to I

Ashish Choudhary 1 Jan 16, 2022
🍦 Cheat for cs:go written in Python.

Cs::Fuck 🍦 Cheat for cs:go written in Python. You can show a video here: https://vimeo.com/642730650 Feature. TriggerBot Glow Esp NoFlash Setup. 0. p

Ѵιcнч 10 Sep 23, 2022