Alright ill release it, 2 rules tho
1. I dont want to be selfish but i do want all credit since i did make it lol
2.No making fun of it since its jsut simple code :)
#include <GuiConstants.au3>
Opt("GUIOnEventMode",1)
HotKeySet("{F5}", "_Start")
HotKeySet("{F7}", "_NoClick")
HotKeySet("{ESC}","Terminate")
$ClickIt = 0
GUICreate("MyGUI", 392, 265)
GUISetOnEvent($GUI_EVENT_CLOSE,"Terminate")
$Checkbox_1 = GUICtrlCreateCheckbox("Checkbox1", 20, 40, 100, 20)
$Button_4 = GUICtrlCreateButton("Button4", 140, 180, 110, 30)
GUICtrlSetOnEvent($Button_4,"Terminate")
GUISetState()
While 1
Sleep( 10 )
WEnd
Exit
Func _Start()
$ClickIt = 1
While $ClickIt = 1
If BitAND(GUICtrlRead($Checkbox_1), $GUI_CHECKED) = $GUI_CHECKED Then
while 1
MouseClick("left", 459, 79)
WEnd
EndIf
WEnd
EndFunc ;==>_Start
Func _NoClick()
ToolTip("")
$ClickIt = 0
EndFunc ;==>_NoClick
Func Terminate()
Exit
EndFunc
.....There you go guys, if someone would kindly try it out and post results ty :)