Endacopia: How to Obtain the “Footwork Master” Achievement with Autohotkey

how to cheese this achievement with the use of a script/macro

 

1. Download Autohotkey[www.autohotkey.com]
Make a new .ahk file
Edit it and paste the following, then run the ahk file
#Requires AutoHotkey v2.0
#SingleInstance Force

toggled := false

F1:: {
    global toggled
    toggled := !toggled
    if toggled {
        Click()
        Sleep(1200)
        Click()
        Sleep(650)
        Click()
        SetTimer(ClickLoop, 650)
    } else {
        SetTimer(ClickLoop, 0)
    }
}

ClickLoop() {
    Click()
}
2. Click the ball to get right next to it

3. Once next to the ball press F1 to start the script

4. Watch him go.


ᶠᵒʳ ᵃˡˡ ᵒᶠ ᵉᵗᵉʳⁿᶦᵗʸ

Related Posts

Leave a Comment