I want to make a program to save some server IP addresses and use one of them whenever the user want to use it.
And the game does not support to the copy paste command. So player have to waste time by typing IP addresses if he wants to join to another server.
I want to make my program to type the address in the IP address box in the game when user pressed the F12 button. F12 keydown is captured using a keyhook class without any problem.
The problem is game does not respond to either the SendKeys or CodePlex InputSimulator class. (I've tried to send each number using SendKey class, and tried to send TextEnry using InputSimulator). How can I do this ? The only thing game capture is keyboard keys. Is there anyway to make signals the keyboard sends to the computer when user pressed a button ?
By the way the game is Microsoft Halo CE (Custom Edition)
Thank you !