
How to Get All Achievements without Pressing The Button (Yourself)
1) Install Python.
2) Use cmd to do:
- pip install keyboard
And:
- pip install pyautogui
3) Save a copy of this Python script changing the x and y values to the resolution of your monitor.
import pyautogui, time, keyboard
x = 3840
y = 2160
time.sleep(2)
while not keyboard.is_pressed("q"):
pyautogui.click(x//2, y//2)
Getting the Achievements
- Run the game.
- Alt+Tab out of the game.
- Run the Python script.
- Immediately Alt+Tab back into the game.
- Watch the script do all the clicking for you and get all the achievements.
- If you want to stop the clicking, press q key on the keyboard.
Be the first to comment