Textractor icon indicating copy to clipboard operation
Textractor copied to clipboard

Mahoutsukai no Yoru/WITCH ON THE HOLY NIGHT (STEAM)

Open MegaSableye opened this issue 1 year ago • 1 comments

It gets hooked but I can't get a single line of dialogue. (STEAM)

MegaSableye avatar Dec 14 '23 18:12 MegaSableye

This hook seems to be working for me:

HQ-4C@B4A0:WoH.exe

Also use the Regex Replacer extension and add the following lines to SavedRegexReplacements.txt:

|REGEX|<r(.+?)>(.+?)</r>|BECOMES|$2($1)|MODIFIER|g|END|
|REGEX|^[ ]+|BECOMES||MODIFIER|g|END|

The first line fixes the furigana (e.g. changes <rしんぼう>辛抱</r> into 辛抱(しんぼう)), the second removes leading whitespaces.

If you want to remove the furigana altogether you can replace the first line with this one instead:

|REGEX|<r.+?>(.+?)</r>|BECOMES|$1|MODIFIER|g|END|

Result:

Screenshot 2024-02-11 at 1 57 20 AM

blacktide082 avatar Feb 11 '24 06:02 blacktide082