Initial Commit
This commit is contained in:
commit
ba90e903e2
27
anti-fatigue-nalcarya.py
Normal file
27
anti-fatigue-nalcarya.py
Normal file
@ -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()
|
31
auto-trainer.py
Normal file
31
auto-trainer.py
Normal file
@ -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)
|
14
caster.py
Normal file
14
caster.py
Normal file
@ -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)
|
14
jumper.py
Normal file
14
jumper.py
Normal file
@ -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)
|
5
mousetracker.py
Normal file
5
mousetracker.py
Normal file
@ -0,0 +1,5 @@
|
||||
import pyautogui
|
||||
|
||||
while True:
|
||||
currentMouseX, currentMouseY = pyautogui.position()
|
||||
print("{} x {}".format(currentMouseX,currentMouseY))
|
11
timelapse.py
Executable file
11
timelapse.py
Executable file
@ -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) )
|
Loading…
x
Reference in New Issue
Block a user