diff --git a/vnrhook/engine/engine.cc b/vnrhook/engine/engine.cc index a15936e..70673ec 100644 --- a/vnrhook/engine/engine.cc +++ b/vnrhook/engine/engine.cc @@ -10459,6 +10459,13 @@ bool InsertArtemis2Hook() ConsoleOutput("vnreng: INSERT Artemis2"); NewHook(hp, "Artemis2"); + + // Artikash 1/1/2019: Recent games seem to use utf8 encoding instead, other than that the hook is identical. + // Not sure how to differentiate which games are sjis/utf8 so insert both + hp.address = addr + 6; + hp.offset = 8; // ebp was also pushed + hp.type = USING_UTF8 | USING_STRING | NO_CONTEXT; + NewHook(hp, "Artemis2"); //ConsoleOutput("Artemis2"); return true; }