Code:
; Specify the coordinates where you want to click
x1 := 1087
y1 := 1001
x2 := 678
y2 := 840
Loop 100
{
; Click at the first coordinate using the right mouse button
Click right %x1%, %y1%
Sleep 5
; Click at the second coordinate using the left mouse button
Click %x2%, %y2%
Sleep 5
}
Enjoy






