Osiris: Menu thingy..

Created on 3 Aug 2019  路  3Comments  路  Source: danielkrupinski/Osiris

Sometimes when i press Insert the menu doesn't open.. is anyone experiencing the same thing rn?

Most helpful comment

Replace in hooks.cpp
This:
if (GetAsyncKeyState(config.misc.menuKey) & 1) {
with this:
if (msg == WM_KEYDOWN && LOWORD(wParam) == config.misc.menuKey) {

All 3 comments

It happens to me too. Sometimes I can't even close the cheat's interface.

never happened to me

Replace in hooks.cpp
This:
if (GetAsyncKeyState(config.misc.menuKey) & 1) {
with this:
if (msg == WM_KEYDOWN && LOWORD(wParam) == config.misc.menuKey) {

Was this page helpful?
0 / 5 - 0 ratings