Created
April 8, 2020 17:52
-
-
Save sergeevyi/0399940a1fe5cbf9fcc1fcdddc241121 to your computer and use it in GitHub Desktop.
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 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