commit ba90e903e203434fbb85a481f4cf4b75e8218ad2 Author: Sacha Ligthert Date: Mon Oct 17 19:24:54 2022 +0200 Initial Commit diff --git a/anti-fatigue-nalcarya.py b/anti-fatigue-nalcarya.py new file mode 100644 index 0000000..a141cab --- /dev/null +++ b/anti-fatigue-nalcarya.py @@ -0,0 +1,27 @@ +import pyautogui +import time + +time.sleep(5) + +for i in range(0,50): + # Barter + pyautogui.moveTo(3395, 630) + pyautogui.click() + + time.sleep(0.2) + + # Deadra Skin + pyautogui.moveTo(3319, 760) + pyautogui.click() + + time.sleep(0.2) + + # Vampire Dust + pyautogui.moveTo(3406, 760) + pyautogui.click() + + time.sleep(0.2) + + # Offer + pyautogui.moveTo(3675, 925) + pyautogui.click() diff --git a/auto-trainer.py b/auto-trainer.py new file mode 100644 index 0000000..656b091 --- /dev/null +++ b/auto-trainer.py @@ -0,0 +1,31 @@ +import pyautogui +import time + +time.sleep(5) + +for i in range(0,40): + + # Talk + pyautogui.press('e') + time.sleep(0.2) + + # Training + pyautogui.moveTo(3390, 620) + time.sleep(0.2) + pyautogui.click() + + # Load screen + time.sleep(1) + + # 1st option + #pyautogui.moveTo(2752, 510) + # 2st option + #pyautogui.moveTo(2752, 530) + # 3rd option + pyautogui.moveTo(2752, 550) + + pyautogui.move(10, 0, 0.2) + #time.sleep(0.5) + pyautogui.click() + + time.sleep(0.2) diff --git a/caster.py b/caster.py new file mode 100644 index 0000000..dd8d7bf --- /dev/null +++ b/caster.py @@ -0,0 +1,14 @@ +import pyautogui +import time + +time.sleep(5) + +print("Starting loop!") +#for i in range(0,50): +while True: + #pyautogui.keyDown('space') + pyautogui.mouseDown() + time.sleep(1) + pyautogui.mouseUp() + #pyautogui.keyUp('space') + time.sleep(1) diff --git a/jumper.py b/jumper.py new file mode 100644 index 0000000..afa3174 --- /dev/null +++ b/jumper.py @@ -0,0 +1,14 @@ +import pyautogui +import time + +time.sleep(5) + +print("Starting loop!") +#for i in range(0,50): +while True: + pyautogui.keyDown('space') + #pyautogui.mouseDown() + time.sleep(1) + #pyautogui.mouseUp() + pyautogui.keyUp('space') + #time.sleep(1) diff --git a/mousetracker.py b/mousetracker.py new file mode 100644 index 0000000..48adeca --- /dev/null +++ b/mousetracker.py @@ -0,0 +1,5 @@ +import pyautogui + +while True: + currentMouseX, currentMouseY = pyautogui.position() + print("{} x {}".format(currentMouseX,currentMouseY)) diff --git a/timelapse.py b/timelapse.py new file mode 100755 index 0000000..17bc5e9 --- /dev/null +++ b/timelapse.py @@ -0,0 +1,11 @@ +import pyautogui +import time + +time.sleep(15) + +print("Starting loop!") +for i in range(0,1440): +#while True: + pyautogui.keyDown( 'w' ) + pyautogui.keyUp( 'w' ) + im1 = pyautogui.screenshot( str(int(time.time()))+".png", region=(1920,0,1920,1080) )