Background/Foreground Keyboard Open Source
I've been writing hacks/bots for games for a long time...
One of the primary needs is to do key-input which then normally leads to the desire to do background key press/mouse click..
The library below is one I've been working on for a while. I need to refactor it pretty badly, but before doing so I just wanted to drop it out onto the net and see if it would be useful to anyone.
This uses PostMessage/SendMessage to do it's background key press/mouse click. I have lately been thinking it might be smarter of me to do a hook and inject the dll into the process in question.
Anyways, i'll be working on this library more to make it easier to use. Let me know if you have a feature request.
Written in C# using DllImports when needed
Source Code: https://github.com/EasyAsABC123/Keyboard
One of the primary needs is to do key-input which then normally leads to the desire to do background key press/mouse click..
The library below is one I've been working on for a while. I need to refactor it pretty badly, but before doing so I just wanted to drop it out onto the net and see if it would be useful to anyone.
This uses PostMessage/SendMessage to do it's background key press/mouse click. I have lately been thinking it might be smarter of me to do a hook and inject the dll into the process in question.
Anyways, i'll be working on this library more to make it easier to use. Let me know if you have a feature request.
Written in C# using DllImports when needed
Source Code: https://github.com/EasyAsABC123/Keyboard
Good job.