Help with sending keys
I need help with sending the space key to Combat Arms.
Apparently you can't do VKs anymore since Nexon patched them or something like that. So my bunny hop doesn't work. It's MSVC++ and Windows forms project...
I have tried :
SendKeys::Send();
SendKeys::SendWait();
GenerateKey(); (Person made function)
keybd_event( VK_SPACE, 0x45, KEYEVENTF_EXTENDEDKEY, 0 );
keybd_event( VK_SPACE, 0x45, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0 );
etc...
Nothing seems to work. Is there any way I can do this?