SkillAgentSearch skills...

IbInputSimulator

A library for simulating keyboard and mouse input with drivers

Install / Use

/learn @Chaoses-Ib/IbInputSimulator
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

IbInputSimulator

A library for simulating keyboard and mouse input with drivers.

Supported drivers

  • Logitech Gaming Software

    No Logitech hardware required. However, in the new versions of LGS, the mouse driver has been removed (#8). You can install v9.02.65 to make the mouse driver available.

    e.g. IbSendInit("Logitech")

  • Logitech G HUB

    No Logitech hardware required. However, in the new versions of G HUB (≥ 2022.3.2300), the mouse driver has been removed (#8). Unfortunately, there is currently no known way to install an old version.

    e.g. IbSendInit("Logitech")

  • Logitech G HUB new

    No Logitech hardware required. Works with new versions of the G HUB. Mouse input stops working after the first reboot following the installation of the G HUB. To restore mouse functionality, you may need to reinstall G HUB with "Transfer my current settings" turned off. (#8)

    e.g. IbSendInit("LogitechGHubNew")

  • Razer Synapse 3

    In the new versions of Razer Synapse, Razer hardware is required to make the driver available. The old versions do not require Razer hardware, but the online installer of Razer Synapse can only install the newest version. To install an old version manually, see #7 for details.

    e.g. IbSendInit("Razer")

  • MouClassInputInjection

    e.g. IbSendInit("MouClassInputInjection", 1, process_id)

  • DD Virtual Mouse & Virtual Keyboard

    May cause a blue screen; difficult to uninstall cleanly; need network.

    To use it, put the DLL (DD94687.64.dll/DD64.dll/DDHID64.dll) with your script file, and then:

    IbSendInit("DD")
    

    or specify the DLL path when call IbSendInit:

    IbSendInit("DD", 1, "C:\SomeDir\DD64.dll")
    
  • EDI (private, not for sale)

Software compatibility

Software | SendInput | Logitech | Razer | MCII | DD | EDI | DM | Other --- | --- | --- | --- | --- | --- | --- | --- | --- Blade & Soul (Korean) <!--220703--> | | ✔️ | | | ❗ | ✔️ | ✔️ | ❌ SendInput hook Genshin | High

For SendInput, software with High indicates that the target process usually has a high integrity level, which may block SendInput due to UIPI. To put it simply, this means that you need to run the input simulator with administrator privileges.

Supported languages

C++

Build

See InputSimulator.hpp for the API.

AutoHotkey

Download: Releases

Usage:

<table> <thead><tr> <th>AutoHotkey v2</th> <th>AutoHotkey v1</th> </tr></thead> <tbody> <tr> <td><pre lang="ahk">; Run Notepad, type "Hello world!" ; and then select all text by mouse. <br/> #Include "IbInputSimulator.ahk" <br/> IbSendInit() ; IbSendInit("AnyDriver", 1) <br/> Send("#r") WinWaitActive("ahk_class #32770") Send("notepad`n") <br/> WinWaitActive("ahk_exe notepad.exe") Send("Hello world{!}") Sleep(100) MouseClickDrag("Left", 5, 5, 150, 50)</pre></td> <td><pre lang="ahk">; Run Notepad, type "Hello world!" ; and then select all text by mouse. <br/> #Include %A_ScriptDir% #Include IbInputSimulator.ahk <br/> IbSendInit() ; IbSendInit("AnyDriver", 1) <br/> Send #r WinWaitActive, ahk_class #32770 Send notepad`n <br/> WinWaitActive, ahk_exe notepad.exe Send Hello world{!} Sleep 100 CoordMode, Mouse, Client MouseClickDrag, Left, 5, 5, 150, 50</pre></td> </tr> </tbody> </table>

Related projects

Credits

Sponsors:

Date | Sponsor | Comment --- | --- | --- 2025-09-15 | @16Hexa | HAP 网络授权保护系统:集成了强大安全防护与灵活授权管理的一站式解决方案 2022-04-03 | 任性 | MouClassInputInjection 2023-04-22 | 任性 | Logitech 2023-02-28 | - | 2021-08-28 | 任性 | Razer

View on GitHub
GitHub Stars487
CategoryDevelopment
Updated1d ago
Forks80

Languages

C++

Security Score

100/100

Audited on Mar 27, 2026

No findings