From 89a9b470ea9fbc1da6476b851875491e2881e4dd Mon Sep 17 00:00:00 2001 From: momo5502 Date: Mon, 1 May 2023 20:48:03 +0200 Subject: [PATCH] Print hexadecimal guids in chat gamelog command --- src/client/component/patches.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client/component/patches.cpp b/src/client/component/patches.cpp index 0bfbd46e..662ccf97 100644 --- a/src/client/component/patches.cpp +++ b/src/client/component/patches.cpp @@ -47,6 +47,9 @@ namespace patches // print hexadecimal xuids in status command utils::hook::copy_string(game::select(0x143050560, 0x140E85B00), "%12llx "); + // print hexadecimal xuids in chat game log command + utils::hook::set(game::select(0x142FD9362, 0x140E16FA2), 'x'); + // don't make script errors fatal error utils::hook::call(game::select(0x1412CAC4D, 0x140158EB2), script_errors_stub);