IbInputSimulator icon indicating copy to clipboard operation
IbInputSimulator copied to clipboard

awesome it bypass gameguard but how to controlsend?

Open kyloren23 opened this issue 2 years ago • 4 comments

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!

kyloren23 avatar Sep 16 '22 14:09 kyloren23

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.

Chaoses-Ib avatar Sep 16 '22 16:09 Chaoses-Ib

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

kyloren23 avatar Jan 14 '23 23:01 kyloren23

You can contact me via Telegram https://t.me/Chaoses_Ib or Discord @Chaoses Ib#2060.

Chaoses-Ib avatar Jan 15 '23 11:01 Chaoses-Ib

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.

Animan8000 avatar Feb 19 '23 15:02 Animan8000