Global $Tiple = False
HotKeySet('{F1}', '_Start')
HotKeySet('{DELETE}', '_Exit')
Sleep(300)
$Pos = MouseGetPos()
MouseMove($Pos[0], $Pos[1] - 70, 50)
Sleep(200)
Send("{1}")
While 1
If $Tiple = True Then
$Pos1 = MouseGetPos()
;----------------------------------------------- 1
Sleep(200)
; $Pos1 = MouseGetPos()
MouseCLick("Left", $Pos1[0], $Pos1[1] - 70, 1, 30) ; $Pos1[0] + 20 Координата по оси Х $Pos1[1] - 70 Координата по оси y
;------------------------------------------------ 2
Sleep(100)
Send("{1}")
Sleep(200)
; $Pos2 = MouseGetPos() опционально
MouseCLick("Left", $Pos1[0] + 100, $Pos1[1] - 70, 1, 50)
;------------------------------------------------ 3
Sleep(100)
Send("{1}")
Sleep(200)
$Pos1 = MouseGetPos()
MouseCLick("Left", $Pos1[0] - 85, $Pos1[1] - 70, 1, 50)
;------------------------------------------------- 4
Sleep(100)
Send("{1}")
Sleep(200)
$Pos1 = MouseGetPos()
MouseCLick("Left", $Pos1[0] + 205, $Pos1[1] - 70, 1, 50)
;---------------------------------------------------- 5
Sleep(100)
Send("{1}")
Sleep(200)
$Pos1 = MouseGetPos()
MouseCLick("Left", $Pos1[0] + 100, $Pos1[1] - 70, 1, 50)
;-------------------------------------------------
ExitLoop
Else
Sleep(10)
Endif
WEnd
Func _Start()
$Tiple = True
EndFunc
;-------------- выход----------------
Func _Exit()
Exit
EndFunc