ibing27
New member
- Joined
- Oct 31, 2025
- Messages
- 3
- Reaction score
- 2
I've looked everywhere but I can't find it
how to activate it?
extern LRESULT ImGui_ImplWin32_WndProcHandler(HWND wnd, UINT umsg, WPARAM wparam, LPARAM lparam);
LRESULT APIENTRY CKeyHook::hkWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
if (FrontEndMenuManager.m_bMenuActive)
return pKeyHook->oWndProc(hWnd, msg, wParam, lParam);
//wndproc stuff
if (pMenu->bOpen)
ImGui_ImplWin32_WndProcHandler(hWnd, msg, wParam, lParam);
if (isKeyPressed(VK_INSERT))
{
pMenu->bOpen = !pMenu->bOpen;
pMenu->iToggle = 0;
}
//wndproc stuff
}
thank you bro, i appreciate itC++:extern LRESULT ImGui_ImplWin32_WndProcHandler(HWND wnd, UINT umsg, WPARAM wparam, LPARAM lparam); LRESULT APIENTRY CKeyHook::hkWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { if (FrontEndMenuManager.m_bMenuActive) return pKeyHook->oWndProc(hWnd, msg, wParam, lParam); //wndproc stuff if (pMenu->bOpen) ImGui_ImplWin32_WndProcHandler(hWnd, msg, wParam, lParam); if (isKeyPressed(VK_INSERT)) { pMenu->bOpen = !pMenu->bOpen; pMenu->iToggle = 0; } //wndproc stuff }
It says key INSERT on the source code, if you are talking about how to install it just drag the asi to your GTA file.