Created
May 10, 2019 15:59
-
-
Save ARezaK/24ab3ad5c5837b380fc5630d977e883d to your computer and use it in GitHub Desktop.
Cheat at enter the gungeon by constantly entering slow-mo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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