Ok, I am still trying to make this work, I wanna make it to where, its not auto- its only repeating mouse clicks , while you hold down the mouse, since these autoclickers work in game, and my macro wont, how could I add this to make , for instance a fully auto pistol,
;
; AutoHotkey Version: 1.x
; Language: English
; Platform: Win9x/NT
; Author: A.N.Other <myemail@nowhere.com>
;
; Script Function:
; Template script (you can customize this template by editing "ShellNew\Template.ahk" in your Windows folder)
;
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
$Lbutton::
Loop
{
Sleep, 10 ; adjust delay by changing this value.
; approximately 10 is the minimum to be used to
; reliably detect change button release
GetKeyState, state, Lbutton, P
if state = U ; The key has been released, so break out of the loop.
break
; tested by sending a character
; send z
Click
}
return