Skip to content

Instantly share code, notes, and snippets.

@thcrack
thcrack / FFXLightningDodger
Created March 9, 2020 04:09
because coding is more fun than getting epilepsy
import ctypes
import time
dc = ctypes.windll.user32.GetDC(0)
SendInput = ctypes.windll.user32.SendInput
# C struct redefinitions
PUL = ctypes.POINTER(ctypes.c_ulong)
class KeyBdInput(ctypes.Structure):
_fields_ = [("wVk", ctypes.c_ushort),