🖱️ FlyClicker is a simple application that automates mouse clicks at specified intervals with jitter and settings saving. It also allows you to set hotkeys to start and stop clicking.
⏱️ Adjustable clicking interval with random jitter to simulate human-like clicks.
🔥 Set custom hotkeys to start and stop clicking.
- Windows OS
- .NET Framework
- Download the latest release from the Releases page.
- Extract the ZIP file to your desired location.
- Run
FlyClicker.exe
. - Adjust the Interval and Jitter sliders to your desired values.
- Set Start and Stop hotkeys by clicking the "Set" button next to each textbox and pressing the desired keys.
- Click the "Start" button or use the hotkey to start clicking.
- Click the "Stop" button or use the hotkey to stop clicking.
- Cannot assign hotkeys using mouse buttons: Due to limitations in the current implementation, assigning hotkeys to mouse buttons (e.g., XButton1, XButton2) is not supported. (FIXED)
If you want to build from source:
- Clone this repository.
- Open the solution file (
FlyClicker.sln
) in JetBrains Rider for example. - Build the solution (
Ctrl + Shift + F9
).
This project is licensed under the MIT License - see the LICENSE file for details.
- Mouse and Keyboard hook implementations: MouseHook.cs, KeyHook.cs based on examples from MSDN.
- Input simulation: Clicker.cs using WindowsInput library.