ok so noone can do it ? I would think its very simple, I made a script that does it, but it doesnt work in CF game window, so I was hoping someone could do whatever they did to make the auto clickers work, to this
;
; 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