Making hotkeys to trainer...
Sorry about questions but I am going to be one of mpgh trainer makers
So...
I am making hotkeys to my trainer
I need numeric keypad hotkeys, you know... ctrl + 1 ctrl + 2

But How I make them??

I tried everything like:
If GetKeyPress(vbKeyNum2) Then
And so on...
But what is right...

If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeyNum2) Then
End If
I know that ctrl:
If GetKeyPress(vbKeyControl) Then
If GetKeyPress(vbKeyNum2) Then <<<----Is this "Num" Right?
I need it to work on keypad...
Hotkey Control + 1: If GetKeyPress(vbKeyControl) And GetKeyPress(vbKey1) Then
End If
Hotkey Control + Numpad 1: If GetKeyPress(vbKeyControl) And GetKeyPress(vbKeynumpad1) Then
No problem glad to help you.