HotKeySet("{F6}","_Exit")
;-------гор клавиши
HotKeySet("{INSERT}", "startAutoshoot") ;старт
HotKeySet("{DELETE}", "offAutoshoot") ;стоп
Global $Autoshoot = 0
Func startAutoshoot() ; функция включения
$Autoshoot = 1
EndFunc ; конец функции
Func offAutoshoot() ; функция выключения
$Autoshoot = 0
EndFunc ; конец функции
While 1
If $Autoshoot = 1 then
$Variable = PixelSearch(614,575,1911,623,0xC7172B) ; 0xC7172B -цвет, 614,575,1911,623 - координаты где ведется поиск
If IsArray($Variable) = True Then
MouseMove($Variable[0],$Variable[1])
MouseClick ( "right" )
EndIf
EndIf
WEnd
Func _Exit()
Exit
EndFunc