#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Compression=4
#AutoIt3Wrapper_Run_Obfuscator=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.5.6 (beta)
Author: myName
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
; First challange
;MouseMove(720, 400, 0)
;MouseDown("Left")
;MouseClick("Right")
;MouseMove(1075, 400, 0)
;MouseClick("Left")
;Enter next Challange
;MouseClick("Left", 1825, 737, 1, 0)
;Top left 659, 494
;Bottom right 1161, 708
$i = 659
$x = 494
While $i < 1161
While $x < 708
MouseClick("Left", $i, $x, 1, 1)
$x = $x +1
WEnd
$i = $i + 1
$x = 494
WEnd