You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
K1Pressedint8`mem:"[Base + 0x8] + 0x1C"`//Pressed usually works with <20 update rate. It's recommended to create a buffer and predict presses by count to save CPU overhead
K1Countint32`mem:"[Base + 0x8] + 0x14"`
K2Pressedint8`mem:"[Base + 0xC] + 0x1C"`
K2Countint32`mem:"[Base + 0xC] + 0x14"`
M1Pressedint8`mem:"[Base + 0x10] + 0x1C"`
M1Countint32`mem:"[Base + 0x10] + 0x14"`
M2Pressedint8`mem:"[Base + 0x14] + 0x1C"`
M2Countint32`mem:"[Base + 0x14] + 0x14"`
}
I'd write a PR if I were good enough at Go, but unfortunately I couldn't come up with a good solution, so I am just writing an issue.
The text was updated successfully, but these errors were encountered:
It's not the same thing. It just pointers to start of array with values. LeaderStart is needed to calculate current value pointer in array (NOT START OF ARRAY)
Hi, I've been writing memory reader of mine in another language, and I just found out that
gosumemory/memory/functions.go
Lines 51 to 55 in f80a655
applies the same to these lines. (0xC instead of 0x8)
gosumemory/memory/functions.go
Lines 433 to 442 in f80a655
I'd write a PR if I were good enough at Go, but unfortunately I couldn't come up with a good solution, so I am just writing an issue.
The text was updated successfully, but these errors were encountered: