Help
I can create a bot that can send basic keys such as alt,ctl,a,bc,etc. But I just can't send up/left/right/down arrow keys with my bot in game. Can someone please help me by giving me a full code for sending any arrow key? Thanks!

thats why there's google..WINUSERAPI
VOID
WINAPI
keybd_event(
__in BYTE bVk,
__in BYTE bScan,
__in DWORD dwFlags,
__in ULONG_PTR dwExtraInfo);
keybd_event(TheKeyHere, 0, 0, 0);