Haven't tryed since servers are offline, but seems to be a yay for me.
By the way, this will be easier with auto-setup for user
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.2.8.1
Author: revmeup
Script Function:
Template AutoIt script.
#ce ----------------------------------------------------------------------------
; Script Start - Add your code below here
#include <misc>
;Don't forget to add .au3 after misc
#include <GuiConstants>
;Don't forget to add .au3 after GuiConstants
Global $Paused
HotKeySet("{ESC}", "Terminate")
Opt("MouseClickDragDelay", 100)
Sleep (500)
SplashTextOn("SETUP", "Please click once on the 3rd Option location. ", 400, 100, -1, -1, 0, "Ariel", 17)
While 1
Sleep ( 100 )
If _IsPressed("01") Then
$pos = MouseGetPos()
ExitLoop
EndIf
WEnd
SplashOff()
$mainx = $pos[0]
$mainy = $pos[1]
Sleep ( 1000 )
While 1
MouseClick ( "left" , $mainx, $mainy )
Sleep (500)
WEnd
Func Terminate()
Exit 0
EndFunc