THE BUTTON – How to Get All Achievements

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

  1. Run the game.
  2. Alt+Tab out of the game.
  3. Run the Python script.
  4. Immediately Alt+Tab back into the game.
  5. Watch the script do all the clicking for you and get all the achievements.
  6. If you want to stop the clicking, press q key on the keyboard.
Helena Stamatina
About Helena Stamatina 3153 Articles
I love two things in life, games and sports. Although sports were my earliest interest, it was video games that got me completely addicted (in a good way). My first game was Crash Bandicoot (PS1) from the legendary studio Naughty Dog back in 1996. I turned my passion for gaming into a job back in 2019 when I transformed my geek blog (Re-actor) into the gaming website it is today.

Be the first to comment

Leave a Reply

Your email address will not be published.


*