IbInputSimulator
IbInputSimulator copied to clipboard
awesome it bypass gameguard but how to controlsend?
im so amazed that it bypassed my gameguard for macro most of keystroke and clicks working 100% perfectly
but can i ask how to controlsend(send keystroke to background) like this? ControlSend, ahk_parent, {F2}, ahk_exe choboApp.exe
i tried this but i cant make it work IbSend("ControlSend, ahk_parent, {F2}, ahk_exe choboApp.exe")
please help me.. thank you for awesome library!
What ControlSend does is posting key messages (i.e. WM_KEY
) to the target window. A driver can do the same theoretically, but that doesn't make much sense because it will be as easy to detect as ControlSend. There are also other methods, for example, hooking DirectInput, but it's not as safe as using drivers. I suggest you to create a desktop or a virtual machine if you really need to send keystrokes in background.
BTW, could you tell me the game and the driver you are using? I'm going to make a test table of games.
What ControlSend does is posting key messages (i.e.
WM_KEY
) to the target window. A driver can do the same theoretically, but that doesn't make much sense because it will be as easy to detect as ControlSend. There are also other methods, for example, hooking DirectInput, but it's not as safe as using drivers. I suggest you to create a desktop or a virtual machine if you really need to send keystrokes in background.BTW, could you tell me the game and the driver you are using? I'm going to make a test table of games.
im using razer method 0, but im afraid i cannot tell you the game here because the dev might found it and i might patch it :( (but i can tell you the game via private message if you want) unfortunately game is also blocked inside vmware can you please help me the possible method to send keystroke in minimized background? i would gladly donate you via paypal thank you for your awesome work
You can contact me via Telegram https://t.me/Chaoses_Ib or Discord @Chaoses Ib#2060
.
There are also other methods, for example, hooking DirectInput, but it's not as safe as using drivers.
Honestly that would be really useful. To interact with a program (or game) to send keystrokes to in the background, without interrupting anything nor coming from the actual user. Don't think anyone made that kind of library for AHK before.