-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathREADME.txt
31 lines (21 loc) · 855 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# IMPORTANT NOTE
If you came here from the YouTube video, keep in mind that using .locateOnScreen(..) == None does not work on newer versions of Pyautogui because the devs decided to change the syntax
# Image-Recognition-Botting-Tutorial
Hello! This is the code I use in the https://www.youtube.com/watch?v=YRAIUA-Oc1Y video
Install these libraries from an administrator terminal (windows):
pip install pywin32
pip install keyboard
pip install pyautogui
pip install opencv-python
Here are the libraries to paste at the start of the scripts:
from pyautogui import *
import pyautogui
import time
import keyboard
import random
import win32api, win32con
Here is the click function:
def click(x,y):
win32api.SetCursorPos((x,y))
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN,0,0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP,0,0)