this is a simpel keyPressCheck in C++ and IDk it's not working so if somebody can help me to make it work or some other hotkey method
Code:
while(true)
{ if(GetAsyncKeyState(VK_NUMPAD1)&1)
{Beep(500,500);
//mycode here
}
and when i perss numpad 1 no efect no beep the hack si not activated ... littel help

---------- Post added at 10:39 PM ---------- Previous post was at 09:40 PM ----------
Solved use if(GetAsyncKeyState(VK_NUMPAD1)<0 ) working so fine