I'm sending keys 0-9 to my local machine and using tcp client/server to replicate the string to my laptop as commands.
Here's a basic example of the issue I'm getting.
HotKeySet("1", "One")
While 1
sleep(100)
WEnd
Func One()
Send("1")
EndFunc
The return on my local machine is either nothing or 1111111111111111111111etc...
I've tried Send("{NUMPAD1}") as a solution, but my game doesn't support the NumPad.
Any suggestions on how to use the '1' key to trigger the nu