Skip to content

Latest commit

History

History
33 lines (20 loc) 路 1.07 KB

README.md

File metadata and controls

33 lines (20 loc) 路 1.07 KB

winautoclicker

Simple Auto-Clicker CLI application for Windows, written in C++.

Usage

To use this program, you just have to download the pre-compiled exe file and run it on your PC.

The first CLI parameter is the interval (in milliseconds) between each click (default 1000).

clicker.exe 3000

鈿狅笍 Warning: do not set the interval parameter to extremely low values, as it can freeze your PC and you may not be able to close the application anymore.

Compiling

Note: this procedure has been tested on a fresh Windows 10 installation.

If you want to compile the application yourself, you must have MinGW installed on your system. I suggest installing it via the Chocolatey package manager:

choco install -y mingw

Then compile the main.cpp file with the G++ compiler:

g++ main.cpp -static -o clicker.exe

The result of the compilation is the clicker.exe executable file.