Skip to content

Instantly share code, notes, and snippets.

View rgson's full-sized avatar
🐛

Robin Gustafsson rgson

🐛
View GitHub Profile
@rgson
rgson / golf_without_your_friends.py
Last active September 18, 2022 10:02 — forked from demus/golf_without_your_friends.py
Auto putt script for Golf With Your Friends (http://store.steampowered.com/app/431240/) Master Putter achievement
import ctypes
import time
user32 = ctypes.windll.user32
# https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-mouse_event
MOUSEEVENTF_MOVE = 0x0001
MOUSEEVENTF_LEFTDOWN = 0x0002
MOUSEEVENTF_LEFTUP = 0x0004