Textractor
Textractor copied to clipboard
Mahoutsukai no Yoru/WITCH ON THE HOLY NIGHT (STEAM)
It gets hooked but I can't get a single line of dialogue. (STEAM)
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: