Created
July 15, 2021 21:53
-
-
Save SubhrajitPrusty/3a09e066351acfe1cd41eb9e65d0c0c7 to your computer and use it in GitHub Desktop.
Destiny2-Auto-Vanguard-token-turn-in
This file contains 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
; F4 to start, F5 to pause in between | |
; runs 100 times, ie 100 engrams | |
; clear postmaster, or turn on farming mode on DIM | |
; Adjust coordinates according to your resolution - this is for 1920x1080p | |
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases. | |
; #Warn ; Enable warnings to assist with detecting common errors. | |
SendMode Input ; Recommended for new scripts due to its superior speed and reliability. | |
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory. | |
F4:: | |
loop, 100 | |
{ | |
MouseMove, 1330, 260, 100 | |
Sleep, 500 | |
Click d | |
Sleep, 200 | |
Click u | |
Sleep, 1000 | |
;SoundBeep | |
Click d | |
Sleep, 200 | |
Click u | |
Sleep, 1000 | |
;SoundBeep | |
; Goto engram | |
MouseMove, 1790, 120, 100 | |
Sleep, 1000 | |
Click d | |
Sleep, 200 | |
Click u | |
;SoundBeep, 750, 500 | |
Sleep, 2000 | |
} | |
F5::Pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment