From 24491e1bc3e68341cd87c080cde72cda4a9d192d Mon Sep 17 00:00:00 2001 From: Akash Mozumdar Date: Tue, 1 Jan 2019 23:52:26 -0500 Subject: [PATCH] update artemis2 hook --- vnrhook/engine/engine.cc | 7 +++++++ 1 file changed, 7 insertions(+) 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; }