Added infinate arch glacor script.
This commit is contained in:
parent
315fbddd0d
commit
8744d5b538
35
infinate_archglacor.py
Normal file
35
infinate_archglacor.py
Normal file
|
|
@ -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)
|
||||
|
||||
Loading…
Reference in a new issue