Skip to content

Instantly share code, notes, and snippets.

@ARezaK
Created May 10, 2019 15:59
Show Gist options
  • Save ARezaK/24ab3ad5c5837b380fc5630d977e883d to your computer and use it in GitHub Desktop.
Save ARezaK/24ab3ad5c5837b380fc5630d977e883d to your computer and use it in GitHub Desktop.
Cheat at enter the gungeon by constantly entering slow-mo
import keyboard
import time
flag = False
def execute():
global flag
flag = not flag
keyboard.add_hotkey('shift+1', execute)
while 1:
if flag is True:
print('true')
keyboard.press('ctrl')
time.sleep(0.40)
keyboard.release('ctrl')
time.sleep(0.25)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment