Created
April 24, 2022 17:14
-
-
Save Haaroon/b04eb618bb492bad2804487009390264 to your computer and use it in GitHub Desktop.
autohotkey script to automate clicking slow download on nexusmods when using wabbajack you just need to make a image of the button, save it and then replace the destination of the iamge on line 9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
F1:: | |
StopLoop := False | |
Loop, | |
{ | |
ImageSearch, FoundX, FoundY, 0, 0, A_ScreenWidth, A_ScreenHeight, *10 C:\Users\Haaroon\Documents\snip.png | |
MouseClick, left, %foundx%, %foundy% | |
Sleep, 4000 | |
if StopLoop | |
break | |
} | |
return | |
Esc:: | |
StopLoop := True | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment