Position yourself slightly behind a poke stop, best you zoom and see it is centered in in screen.
"PAUSE-Key" = Stop Script
Code:
HotKeySet("{PAUSE}", "Terminate")
AutoItSetOption('MouseClickDragDelay',20)
$win=WinGetHandle("Nox App Player")
winactivate($win)
winwaitactive($win)
WinMove($win,"",0,0)
sleep(500)
For $i = 50 To 0 Step -1
SplashTextOn("", $i, 200, 50,-1, -1, 3, "", 24)
MouseClick("left",262,626)
sleep(1700)
drag(260,470)
sleep(1000)
send("{ESC}")
sleep(1000)
next
func drag($x,$y)
sleep(50)
mousemove($x-20,$y,0)
sleep(50)
mousedown("left")
sleep(50)
mousemove($x+20,$y,0)
sleep(50)
mouseup("left")
sleep(50)
endfunc
Func Terminate()
Exit
EndFunc