Artikash / Textractor

Extracts text from video games and visual novels. Highly extensible.
GNU General Public License v3.0
2k stars 201 forks source link

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

Open MegaSableye opened 6 months ago

MegaSableye commented 6 months ago

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

blacktide082 commented 4 months ago

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