From ff36ccda9e092fc28f6e61d5dd8236b9e3bedfe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Gim=C3=A9nez?= Date: Fri, 23 Aug 2024 08:51:09 +0900 Subject: [PATCH] fix kb address (again) --- pkg/memory/keybindings.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/memory/keybindings.go b/pkg/memory/keybindings.go index 24710ea..f5b4720 100644 --- a/pkg/memory/keybindings.go +++ b/pkg/memory/keybindings.go @@ -8,7 +8,7 @@ import ( ) func (gd *GameReader) GetKeyBindings() data.KeyBindings { - blob := gd.ReadBytesFromMemory(gd.moduleBaseAddressPtr+0x1DF9E94, 0x500) + blob := gd.ReadBytesFromMemory(gd.moduleBaseAddressPtr+0x1DFA914, 0x500) blobSkills := gd.ReadBytesFromMemory(gd.moduleBaseAddressPtr+0x21E29B0, 0x500) skillsKB := [16]data.SkillBinding{}