diff --git a/infinate_archglacor.py b/infinate_archglacor.py new file mode 100644 index 0000000..4cff1d1 --- /dev/null +++ b/infinate_archglacor.py @@ -0,0 +1,35 @@ +from time import sleep +import pynput.mouse as mouse +import pynput.keyboard as keyboard + +k = keyboard.Controller() +m = mouse.Controller() + +key_teleport="." +key_surge="f" +location_hub_portal=(1031,353) +location_aqueduct_portal=(835,808) +location_start_button=(1064,500) +compass=(1567,101) + +sleep(5) + +def click_at(coordinates: tuple[int,int]): + m.position = coordinates + m.click(mouse.Button.left) + +while True: + k.tap(key_teleport) + sleep(10) + click_at(compass) + k.tap(key_surge) + sleep(2) + click_at(location_hub_portal) + sleep(12) + click_at(location_aqueduct_portal) + sleep(6) + click_at(location_start_button) + sleep(5) + k.tap(key_surge) + sleep(3500) + \ No newline at end of file