Skip to content

Instantly share code, notes, and snippets.

@sergeevyi
Created April 8, 2020 17:52
Show Gist options
  • Save sergeevyi/0399940a1fe5cbf9fcc1fcdddc241121 to your computer and use it in GitHub Desktop.
Save sergeevyi/0399940a1fe5cbf9fcc1fcdddc241121 to your computer and use it in GitHub Desktop.
import pyautogui as p
from time import sleep
def program():
a = p.pixel(747,281)[0]
b = p.pixel(982,185)[0]
p.hotkey('altleft','tab')
sleep(1)
p.press('space')
while 1:
b = p.pixel(982,185)[0]
a = p.pixel(747,281)[0]
if b == 207:
return 0
if a != 255:
p.press('space')
program()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment