Skip to content

Instantly share code, notes, and snippets.

@Haaroon
Created April 24, 2022 17:14
Show Gist options
  • Save Haaroon/b04eb618bb492bad2804487009390264 to your computer and use it in GitHub Desktop.
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
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