From 3f559332fc2123a24623b9c7688b1d53542ed80c Mon Sep 17 00:00:00 2001 From: guiyomu-dev <22749537+guiyomu-dev@users.noreply.github.com> Date: Wed, 17 Dec 2025 11:50:26 +0100 Subject: [PATCH] add new key bindings --- pkg/data/keybindings.go | 3 +++ pkg/memory/keybindings.go | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/pkg/data/keybindings.go b/pkg/data/keybindings.go index 1a77555..cb77d67 100644 --- a/pkg/data/keybindings.go +++ b/pkg/data/keybindings.go @@ -50,6 +50,9 @@ type KeyBindings struct { ClearMessages KeyBinding Zoom KeyBinding LegacyToggle KeyBinding + + PreviousStashPage KeyBinding + NextStashPage KeyBinding } type KeyBinding struct { diff --git a/pkg/memory/keybindings.go b/pkg/memory/keybindings.go index 7236bfb..24e9f9d 100644 --- a/pkg/memory/keybindings.go +++ b/pkg/memory/keybindings.go @@ -199,5 +199,13 @@ func (gd *GameReader) GetKeyBindings() data.KeyBindings { Key1: [2]byte{blob[0x488], blob[0x489]}, Key2: [2]byte{blob[0x492], blob[0x493]}, }, + PreviousStashPage: data.KeyBinding{ + Key1: [2]byte{blob[0x4c4], blob[0x4c5]}, + Key2: [2]byte{blob[0x4ce], blob[0x4cf]}, + }, + NextStashPage: data.KeyBinding{ + Key1: [2]byte{blob[0x4d8], blob[0x4d9]}, + Key2: [2]byte{blob[0x4e2], blob[0x4e3]}, + }, } }