Quote (rotti @ Jan 3 2024 09:21am)
I'm all for it if I can make it work a 100%
The problem is I need to make sure that in-game (no window size available, just fullscreen) that I can press the NUM-keys
To activate a certain map you need to press and hold left shift, left ctrl, left alt + type in 4 numbers on the numeric key pad.
The shift, ctrl and alt is no problem on my keyboard but the numeric keypad is what screws me over.
I tried doing shift,ctrl,alt plus normal numbers on my keyboard but it just doesn't work.. it has to be the NUM-keys for some reason..
If the game you're playing allows AutoHotKey, you can use that program and run a script that will let you press a button to toggle your numbers 0-9 to simulate you pressing the numpad.
Here's the script:
Code
#If GetKeyState("CapsLock", "T")
1::Numpad1
2::Numpad2
3::Numpad3
4::Numpad4
5::Numpad5
6::Numpad6
7::Numpad7
8::Numpad8
9::Numpad9
0::Numpad0
If you aren't comfortable with that, or the game you're playing doesn't allow AHK, I definitely recommend buying the external num pad like the others in the thread are suggesting.