from pyautogui import * import time # # Functions. # def locateClick(imgname, alt=None, t=0.1, button="left"): # Add pause to allow time for gui elements to appear. time.sleep(t) # Try to find image. box = locateOnScreen(imgname) print(imgname, "found at: ", box) # It not found, try to find alt image. if box is None: if alt is not None: locateClick(alt, button=button) return False # Get center of button and click. x, y = box.left + box.width/2, box.top + box.height/2 moveTo(x, y) longClick(button=button) return True # Longer click, so FFXIV registers it def longClick(t=0.100, button="left"): mouseDown(button=button) time.sleep(t) mouseUp(button=button) # # Main logic. # count = 1; while(True): # Option to pause every 5 iteratons to stop program #if count%5 == 0: time.sleep(5); # get center left third of of screen start_x, start_y = size() start_x /= 3; start_y /= 2; # move cursor to get focus, and click on sign moveTo(start_x, start_y) click(); longClick(button="right") # will attempt to find gui buttons. if not locateClick("PurchaseLand.png", t=0.3): press("esc"); continue if not locateClick("FreeCompanyAlt.png", "FreeCompany.png"): press("esc"); press("esc"); continue if not locateClick("Yes.png"): press("esc"); press("esc"); press("esc"); continue count += 1;