走路器和對話器
對話器
import pydirectinput as gui
import time
import ctypes, sys
def is_admin():
??? try:
??????? return ctypes.windll.shell32.IsUserAnAdmin()
??? except:
??????? return False
if is_admin():
??? time.sleep(0.2)
??? for i in range(10000):
?????? ?
??????? gui.click(1250,800) # 點(diǎn)擊鼠標(biāo)左鍵
??????? time.sleep(0.1)
?? ?
else:
??? # Re-run the program with admin rights
??? ctypes.windll.shell32.ShellExecuteW(None,"runas", sys.executable, __file__, None, 1)
走路器
import pydirectinput as gui
import time
import ctypes, sys
def is_admin():
??? try:
??????? return ctypes.windll.shell32.IsUserAnAdmin()
??? except:
??????? return False
if is_admin():
??? gui.click(1230,750)
??? time.sleep(0.1)
??? gui.press('c')
??? time.sleep(0.1)
?? ?
?????? ?
??? gui.keyDown('w') # 點(diǎn)擊鼠標(biāo)左鍵
?? ?
else:
??? # Re-run the program with admin rights
??? ctypes.windll.shell32.ShellExecuteW(None,"runas", sys.executable, __file__, None, 1)