From e3352fe8af655f9c469864a234c680452635dd80 Mon Sep 17 00:00:00 2001 From: fyryNy Date: Tue, 9 Mar 2021 20:09:54 +0100 Subject: [PATCH] Fix III compatibility Just made it work with Dark Souls 3 --- Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Program.cs b/Program.cs index ebc0bf8..f134c34 100644 --- a/Program.cs +++ b/Program.cs @@ -90,7 +90,7 @@ static bool Peek2(IntPtr handle, IntPtr baseAddress, ref int value) static bool Peek3(IntPtr handle, IntPtr baseAddress, ref int value) { long address = 0; - if (GetLong(handle, (IntPtr)(baseAddress.ToInt64() + 0x4704268), ref address) && address != 0) + if (GetLong(handle, (IntPtr)(baseAddress.ToInt64() + 0x4740178), ref address) && address != 0) if (GetInt(handle, (IntPtr)(address + 0x98), ref value)) return true; return false;