เนื่องจากบอทของเกม night crows ไม่สามารถเลือกฟาร์ม แบบเฉพาะเจาะจง หาของดรอปเป็น อย่างๆได้ ทำให้ต้องใช้บอทช่วยแสกนภาพ รายชื่อมอนเตอร์ ที่ต้องการตี จะทำให้ของมีโอกาสดรอปมากขึ้น
Code
import pyautogui
import time
while True:
try:
img_lo = pyautogui.locateOnScreen("image01.png",grayscale=True,confidence=0.7)
except:
img_lo = None
if img_lo != None:
pyautogui.click(img_lo[0], img_lo[1])
time.sleep(4)
0 ความคิดเห็น