WELCOME TO INFOCHEATS.NET

INFOCHEATS is a community-driven platform focused on free game cheats, cheat development, and verified commercial software for a wide range of popular games. We provide a large collection of free cheats shared by the community. All public releases are checked for malicious code to reduce the risk of viruses, malware, or unwanted software before users interact with them.

Alongside free content, INFOCHEATS hosts an active marketplace with many independent sellers offering commercial cheats. Each product is discussed openly, with user feedback, reviews, and real usage experience available to help you make informed decisions before purchasing.

Whether you are looking for free cheats, exploring paid solutions, comparing sellers, or studying how cheats are developed and tested, INFOCHEATS brings everything together in one place — transparently and community-driven.

AHK Autoclicker for many games. Download free autoclicker.

inspectortrapget

Member
Member

inspectortrapget

Member
Member
Status
Offline
Joined
Mar 25, 2020
Messages
263
Reaction score
60
AutoHotKey is a free script language that allows you to create simple and complex scripts.
Today I wanna share you one very simple autoclicker that was made using ahk.
It can be used with any game that's not detecting AHK process.

1618381893932.png

Code:
#MaxThreadsPerHotkey, 4
SetBatchLines, -1
Toggle := 0

J::
Toggle := !Toggle
While, (Toggle= 1)
{
    click
}
Return
H::
Toggle := !Toggle
While, (Toggle= 1)
{
    Send, {RButton}
}
Return
F3::
Toggle := 0
Instruction on how to use a script

1. First of all you need to download and install AutoHotKey;
2. Then hit the RMB on your Desktop;
3. Click the "AutoHotkey Script" button from dropdown menu;
4. Right click on it and hit the "Edit Script" button;
5. Copy and paste everything from spoiler above into that file;
6. Ctrl + S to save the file;
7. Run the script as AutoHotkey file;

Here you go! You can activate the autoclicking on LMB by pressing J and RMB by clicking H.
F3 is just a panic key that will turn the script off.

You cant view this link please login.
 
Top