Cheating At My Own Game (Python Auto-Clicker + Image Recognition) 5 Minute Tutorial

Ойын-сауық

In this video you will learn how to make a simple auto clicker with image recognition that will click on an image on your screen in python. any questions or help comment down below and wait for the magic genie to help you!
PyCharm: www.jetbrains.com/
Python: www.python.org/
Code:
import time
import keyboard
import pyautogui
import win32api
import win32con
time.sleep(5)
def click():
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0)
time.sleep(0.1)
while not keyboard.is_pressed('q'):
start = pyautogui.locateCenterOnScreen('tMW.png', region=(0, 0, 1920, 1080), grayscale=True, confidence=0.70)
if start is not None:
pyautogui.moveTo(start) # Moves the mouse to the coordinates of the image
click()
Subscribe To Us: bit.ly/2AGRzFY
Enjoy and Thanks for Watching!
Social Media
Dragon & Pig Adventures Weibo Page: bit.ly/2XMrG0s
Dragon & Pig Adventures Facebook Page: bit.ly/2U2MvSW
Paypal Donate: bit.ly/2Tie1LP Patreon Coming Soon
Track: Stryer & Kelsey Ray - Waves (Royalty Free Music)
Music provided by Bify Music.
Label: Simplify.
Watch: • Stryer & Kelsey Ray - ... ​
Stream/Download: stryer.fanlink.to/waves

Пікірлер: 138

  • @ibnucharisya442
    @ibnucharisya4422 жыл бұрын

    One thing i wanna ask, anyway that's also my problem i have. So here is the questions : "Can the pyautogui detect the object that was setted up on .png file at the same time when those things were poped up ? in every tutorial videos the pyautogui for aimclick just show the object that one by one show up, thing i wanna ask is. can py autogui detect 3 same object at the same time ?" thank you

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    With this code no but you could change this code by using a threads to deal with it. Or you could do the approach of having autogui making a list of entries of the objects that appear then a separate method to click on the objects in the list then delete it from the list? I can work on one if there is 15 likes on your comment XD

  • @rons96

    @rons96

    2 жыл бұрын

    You can use HAAR Cascade with openCV to detect multiple objects mainly if the objects have some characteristics different from each other, because HAAR Cascade detect patterns instead same image. But if all the same, a thread method solve your problem, and if I'm not wrong, pyautogui have a function to detect multiple objects/images at same time.

  • @itsmykaimusic
    @itsmykaimusic Жыл бұрын

    this is amazing! cool project sir

  • @AHMADISMAILIBNUSINA-df4nv
    @AHMADISMAILIBNUSINA-df4nv2 жыл бұрын

    Thanks a lot bro, i went there and there, and get your tutorial video thats easier for me to understand , thank you so much , auto subs

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Thanks a lot, I appreciate the support

  • @LowJackAP
    @LowJackAP2 жыл бұрын

    HA!! I got it to work, Thanks man!

  • @lichtran1143
    @lichtran1143 Жыл бұрын

    Hi.Wonderful video for real. Wish you make more about this so me and everybody can make a tool in android. Thanks a lot!

  • @DragonPigAdventures

    @DragonPigAdventures

    Жыл бұрын

    Thank you, I will, just working some IRL stuff out but should be back to making more videos later this year

  • @Justarandom0001
    @Justarandom00012 жыл бұрын

    la tengo un problema cuando le doy en descargar paquetes dice Invalid Python SDK que hago? gracias

  • @ff_0xx266
    @ff_0xx2665 ай бұрын

    Hey I have this problem, where it does click the image. Tho, if it doesnt find the image; it immeditally aborts and spews out errors.

  • @kingkiller4630
    @kingkiller463010 ай бұрын

    Hey, does the scale of the image matter? great video btw

  • @denyel2968
    @denyel2968 Жыл бұрын

    Hello if i want to change instead of click to press space when image is detected what do i need to do?

  • @tf6017
    @tf60172 жыл бұрын

    thank you man ur a life saver

  • @Tehguy1
    @Tehguy1 Жыл бұрын

    Hey thanks for the video. I had a question, lets's say you have 10 images of random aliens from space invaders you had to cycle through. Only 1 image will be present at a time. How would you cycle through the folder of images to see which image comes up? And do that for the next 10 or 20 iterations?

  • @DragonPigAdventures

    @DragonPigAdventures

    Жыл бұрын

    Well it all depends on speed, you can just have a for loop (for picture in alien pictures) and do it that way but it might be slow and not find them if you have many photos or you can try with threads and make a thread for each image so it will be checking for all the images at the same time. But I would start with just a for loop and experiment from there

  • @hoangphuongpc
    @hoangphuongpc2 жыл бұрын

    Thank you so much for what you have to offer. Do you have any instructions when it recognizes an image present, it will click to a fixed position on that image, not necessarily clicking on the center of the image.

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Change the mouse location with an offset of pixels, instead of the center

  • @user-qk8si4rf1j
    @user-qk8si4rf1j2 жыл бұрын

    Thanks for the tutorial, one question: What can I do if I use MAC and unable to install win32api and win32con?

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    do to the download page and there are 3 tabs at the top of it which say "windows" "mac" etc and click on the "mac" one and you can download the DMG file to instal PyCharm for Mac os. if you cannot find that they google "PyCharm.DMG Download" hope this helps!

  • @rons96

    @rons96

    2 жыл бұрын

    Use pynput to mouse and keyboard control, or standard click function from pyautogui. Those are cross-platform

  • @meerlux1174
    @meerlux1174 Жыл бұрын

    If i need it to detect an image and then click once after a 10 second delay. Then wait 85 seconds before beggining to search again how would I go about that? I do not need the mouse to move at all.

  • @DragonPigAdventures

    @DragonPigAdventures

    Жыл бұрын

    Find the image, move mouse to image, wait 10 then just wait 85 and repeat you’ll just have to move the mouse to the image and add waits

  • @amer6229
    @amer622910 ай бұрын

    Hola disculpe para que sea mas rápido seria -1 o 0 cierto ?

  • @giani7398
    @giani7398 Жыл бұрын

    Great Video. I have no experience with programming but I understood everything. However I got a few questions. Would it be possible that I give more than 1 image that can be used for recognition. To follow this up. If one of (multiple) images found press buttons X,Y,Z (Whatever I want as explained in 9:05). If no imagine found in X amount of time press button X(whatever I choose) and search again. and then repeat that. So if nothing found again press X again and search again. That would be awesome if possible. Another thing I wonder. Is it possible to specify what to do if Image 1 is recognised and do other stuff if Image 2 is recognised. I hope this isn´t an obvious question but I have no idea of programming but this is really interesting and I really wanna get into all of this

  • @DragonPigAdventures

    @DragonPigAdventures

    Жыл бұрын

    Yeah you can do that. 1) you could have all the images in a folder with certain names, give a time limit to find them (while statements) then if you are searching for each image you can do it in threads (one for each image) or just give X amount of seconds for each one (try until statement) as for deciding what to do when each image is found there are multiple ways you can do it but for the sake of ease you can name the files (images) and then have an (if statement) or a clause that is like if filename equals X do Y etc, I hope that helps I can explain more maybe in a video

  • @rons96
    @rons962 жыл бұрын

    Good, but, if you use pynput instead winAPI to clicks, would be cross-platform, also pyautogui have click function too, what could be used to cross-platform too. Moreover, an imagem of center of the monster would be more effective, because would no consider different borders

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Yeah, there are many options to make it better, this is aimed at beginners just wanting to try it out

  • @1xCorr

    @1xCorr

    2 жыл бұрын

    could you give me specific instructions on what to change to use pynput? Thanks,

  • @twelven6802
    @twelven6802 Жыл бұрын

    Hi, amazing video! i have 1 question: if i need to ''read'' data inside the game and based on it make a decision how could it be done? Example: a character in a game that has health (HP). To obtain good health, the game's algorithm ramdomly adds up points of HP per level and if you are lucky, you get good health at first levels which means that its feasible to keep leveling up. Now well, if you get bad health, you have the posibility to "RESET" the character to level 1 by pressing ENTER key and the word "/RESET" and the process is the same as i mentioned before. How could this be done? How can i make the bot read how much HP i have at a certain moment and based on that result, decide to keep leveling the character or reset it?

  • @DragonPigAdventures

    @DragonPigAdventures

    Жыл бұрын

    You could just monitor the health bar with a screen section and then monitor the number or length of the health bar

  • @AryanGupta-py8td
    @AryanGupta-py8td Жыл бұрын

    what if u have an external monitor, it dosent work for me then??

  • @hypoplays477
    @hypoplays477 Жыл бұрын

    What changes do i have make in this code so if the object is falling from upper side of the window and there are multiple same objects falling as well we want to collect them one by one but fast and they are going downwards as well The code in this video works but until it makes its first click the object is fallen downwards and it couldn't click it it clicks the position where the object first appered same with other objects how can i do that please help

  • @DragonPigAdventures

    @DragonPigAdventures

    Жыл бұрын

    So for that you could have multiple instances of the scanner but I think your problem is that they are falling too fast so you could try and use a sample of pixels and reduce the waits in the loop and make it more efficient or but a delay on when to scan? Without seeing what you are trying to achieve it’s a bit hard to give advice, does it not click them as soon as they appear? Or are they unclickable for x amount of seconds?

  • @hypoplays477

    @hypoplays477

    Жыл бұрын

    @@DragonPigAdventures they just fall too fast asa soon as the 1st one appears it has to get clicked

  • @hypoplays477

    @hypoplays477

    Жыл бұрын

    @@DragonPigAdventures where can i send you the video so that u could understand

  • @zachsbattlefield
    @zachsbattlefield21 күн бұрын

    You amazing man, thank you

  • @deniskornja762
    @deniskornja7622 жыл бұрын

    Yea thanks but i need something more like click the image/chest wait until is destroyed then click another image/chest, that's what i need and no python knowledge at all, i did c language, java and Android. Python not at all, so I don't know to create a bot from scratch 😅.

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Follow the tutorial then when you get it click method you can add a for loop to click more. If the chest a certain number of clicks or random? I’ve recently come back to the UK so just setting up job etc so will be back at the videos once that’s sorted I’ll make one for this as it has many uses.

  • @Mango102.
    @Mango102. Жыл бұрын

    how do i download the keyboard, win32con and win32api?

  • @eduardolz12
    @eduardolz122 жыл бұрын

    I made it, thanks bro!!

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Glad to hear

  • @justcallmeluke7254
    @justcallmeluke72548 ай бұрын

    Is there a way to make it return to an origin point? For reference Im making one for cookie clicker and I want it to click the gold cookie then return to the big cookie.

  • @ff_0xx266

    @ff_0xx266

    5 ай бұрын

    if gold_cookie: bla bla bla elif cookie: bla bla bla What it does is check the gold cookie always first, if it doesnt find it, then it proceeds to check the normal cookie.

  • @mankopooh67778
    @mankopooh677785 ай бұрын

    hi mr dragon are you still active in here ? can i ask you or favor?

  • @kolotheegg69
    @kolotheegg692 жыл бұрын

    Is there any way of only letting the code run when a button is pressed?

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    You can add a while look or other logic to wrap it all in which is triggered when the button is pressed it’s true and you can run it once one button press or until it’s found or you can say after x searches you can stop looking

  • @jasonbegai2783
    @jasonbegai27832 жыл бұрын

    Hello, your video is very simple and usefull. However i have a problem installing the libraries(im a noob xd). when i type import pyautogui for example, the line is red and it says "Install package pyautogui". When i press that button it says "installing packages failed" in the bottom left, and when i press details it says "ERROR: Could not install packages due to an OSError: Missing dependencies for SOCKS support." (im using win10) Do you know what do i have to do to fix this? Thank you!

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Which operating system are you using? For MacOS it’s a bit difference and for Mac M1 chipsets it’s a whole other ball game let me know which and I’ll go from there.

  • @VKURDR
    @VKURDR Жыл бұрын

    the otto gooey

  • @flmarizo
    @flmarizo2 жыл бұрын

    Dont you have it con github? i have problems with the imports, nice video

  • @dreamcatcherthebestgg1728

    @dreamcatcherthebestgg1728

    2 жыл бұрын

    what's your problem?

  • @flmarizo

    @flmarizo

    2 жыл бұрын

    @@dreamcatcherthebestgg1728 the Pythongui does not throw anything on the console, even not errors, i thought It has because I have two monitors, but It seems that doesnt detect the imáge, i dont know im too noob

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Im currently working on a mobile game that is 80% complete and will take maybe another 2 weeks to complete then ill be spending a while uploading all my projects onto Github and a portfolio website for you to see. sorry about the Delay super busy managing work and hobbies haha. for the imports you can follow the video and use the same versions or try messing around with the versions in the package manager in software. Thanks for the support and patience

  • @djhinrg
    @djhinrg2 жыл бұрын

    got error, x and y are not defined if move mouse manually

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Are you running the bot which moving your mouse abs remember… if you are moving your mouse how is the ai going to click? You moving the mouse is interrupting it. You can change it to a virtual mouse but things become a lot more complicated

  • @mcbeepo
    @mcbeepo Жыл бұрын

    Help line 2, in import keyboard ModuleNotFoundError: No module named 'keyboard' how i can fix it im new

  • @candowe4926

    @candowe4926

    Жыл бұрын

    pip install keyboard

  • @candowe4926

    @candowe4926

    Жыл бұрын

    in terminal

  • @mcbeepo

    @mcbeepo

    Жыл бұрын

    @@candowe4926 thx mate, now i have a new error, win32 api and win32con, and i can't install "pip install time"

  • @candowe4926

    @candowe4926

    Жыл бұрын

    @@mcbeepo have you already installed time?

  • @mcbeepo

    @mcbeepo

    Жыл бұрын

    @@candowe4926 not found

  • @justcallmeluke7254
    @justcallmeluke72548 ай бұрын

    This is my first time dealing with this so Im confused. Its saying it dosnt recognize import keyboard, import pyautogui, import win32api, import win32con

  • @ectosnache3970

    @ectosnache3970

    2 ай бұрын

    you gotta do in console pip install keyboard and same for rest

  • @UKReconGamerz
    @UKReconGamerz2 жыл бұрын

    Is it possible to do something different?, so what I’m looking to do is have it detect any colour that isn’t the back ground image?

  • @UKReconGamerz

    @UKReconGamerz

    2 жыл бұрын

    So if possible I would like to use a picture of my background, then on the page I’m using random colours pop up so I would like them to click it, I can’t tell you colours as it’s random every time, thanks if you read this

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    You can change the condition if you know the image that is being shown which isn’t the background so you can click anything that isn’t that image. Is one step

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Secondly if you know the background is a set array of colors? You can run it through a loop or use a nested if statement to check each of you backgrounds etc. idea 2

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    I think the best option is that if you KNOW THE BACKGROUND. You can invert the condition to clicking the thing that isn’t a match

  • @Bob-cq7qf
    @Bob-cq7qf2 жыл бұрын

    Can I change the click to a key press (e)

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Yes, where the code clicks you can change it to do anything. Look at the python keyboard module

  • @AzeerMe
    @AzeerMe Жыл бұрын

    How can you make it click more than one picture in order + make it a loop ???

  • @techhero2393

    @techhero2393

    9 ай бұрын

    I think you can think opposite.

  • @Wavyrezzz
    @Wavyrezzz Жыл бұрын

    can u make a tutorial on how to turn the script into a program please

  • @takanumi339
    @takanumi3392 жыл бұрын

    hello there can a game actually detect you are using autoclick + image reco , if Yes . what do you think how can we outsmart them ?

  • @rons96

    @rons96

    2 жыл бұрын

    Look reCaptchas from google, they are not a simple: click the images to prove you are human. Sometimes it approves with simple click on the checkbox. It occurs because before you click there, the reCaptcha detect previously the movement of your mouse pointer and some additional info about your navigation on web browser. Macros normally go into the point and click instantly, but humans have a variation of movement, the pointer has tiny shakes and the path to a button or something else is not a perfect line neither teleport. If you simulate a human behavior, you should have not problems.

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    You can try changing the time depend clicks, having an offset in click position with a random pixel size etc

  • @ViewMaster-ig4oj

    @ViewMaster-ig4oj

    4 ай бұрын

    Hello @@DragonPigAdventures. How would this be written in the code? Sorry if the questions is silly but I am not a programmer yet and I found your code very usefull.

  • @rduck9097
    @rduck90972 жыл бұрын

    win are dosen't work for me, how to fix it says "no module named" so what file i missing ? anyone can help me?

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    I would check where and quick python version you are using on the system, are you using mac? and have you imported the pacakges?

  • @rduck9097

    @rduck9097

    2 жыл бұрын

    @@DragonPigAdventures im using windows, its my firts time doing this so alot to make me confuse 😂

  • @rduck9097

    @rduck9097

    2 жыл бұрын

    @@DragonPigAdventures im using python 3.10.4

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    @@rduck9097 change to 3.8 python

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    @@rduck9097 look up installing packages and which IDE do you use?

  • @whufy3809
    @whufy38092 жыл бұрын

    From where i can install the packages?

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    inside pycharms package manager

  • @bilalelhaddadi9496
    @bilalelhaddadi94962 жыл бұрын

    Can is use multiple images to search for?

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    yes but add more checks into the loop

  • @ethanpaylor4161
    @ethanpaylor41612 жыл бұрын

    I’ve been trying to do this for the golden cookie in cookie clicker but I can’t get it to work. Anyone have a working code ?

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Give me more details and I’ll give it a go

  • @GarryJonesGaming
    @GarryJonesGaming2 жыл бұрын

    Hi mate, i have a question about this and wondering if u could help me? i would pay you for your time as i know nobody time is free please let me know

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    What’s the problem?

  • @yeawgamingcolnies1231
    @yeawgamingcolnies12312 жыл бұрын

    ModuleNotFoundError: No module named 'pyautogui' help please i need help

  • @yeawgamingcolnies1231

    @yeawgamingcolnies1231

    2 жыл бұрын

    heres the code i i dont know what I did but here it is import time import keyboard import pyautogui import win32api import win32con time.sleep(7) def click(): win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0) win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0) time.sleep(0.1) while not keyboard.is_pressed('q'): start = pyautogui.locateCenterOnScreen('tMW.png', region=(0, 0, 1766, 768), grayscale=True, confidence=0.70) if start is not None: pyautogui.moveTo(start) # Moves the mouse to the coordinates of the image click()

  • @yeawgamingcolnies1231

    @yeawgamingcolnies1231

    2 жыл бұрын

    i only change the time and the length for my monitor and first it says the keyboard cant be found so I download it I don't still anther stand please help

  • @yeawgamingcolnies1231

    @yeawgamingcolnies1231

    2 жыл бұрын

    nvm i fix it lol sorry buthering you

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    No problem sorry I didn’t reply in time. What what your problem? Importing the package into pip?

  • @yeawgamingcolnies1231

    @yeawgamingcolnies1231

    2 жыл бұрын

    @@DragonPigAdventures no there was a minor problem all i need to do was to downoad the require installation sorry to bother and thank you for sharing your code

  • @kevinajid
    @kevinajid10 ай бұрын

    Is it work on pydroid?

  • @mecitaksahin662
    @mecitaksahin6622 жыл бұрын

    hi tnx for video, so how can we do this with multiple image elements?

  • @rons96

    @rons96

    2 жыл бұрын

    threads

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Threads and arrays, my suggestion would be use recursion to find more but sort the values for X and Y in an array and check of the next value are the same or to ignore them within the code then you can close it.

  • @franklinminello1930
    @franklinminello19302 жыл бұрын

    How do i stop The bot and do antother fuction?

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    When the code prints found, you can add in a function call to do what you want.

  • @jurre9366
    @jurre9366 Жыл бұрын

    I have created another line for a second picture and only changed the name infront of the .png is that good? and i get this ModuleNotFoundError: No module named 'keyboard' How can i fix this?

  • @jurre9366

    @jurre9366

    Жыл бұрын

    i fixed that but now this: Process finished with exit code 139 (interrupted by signal 11: SIGSEGV) and my macbook says keeps crashing, open pycharm again

  • @DragonPigAdventures

    @DragonPigAdventures

    Жыл бұрын

    Shutdown and start again? Maybe it’s running in background or something or the imports are causing problems

  • @armyofmahdi9886
    @armyofmahdi98862 жыл бұрын

    Can we do it on android

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Use an emulator on your computer and then yes you can

  • @tecklay5166
    @tecklay51662 жыл бұрын

    How do I import the image into pycharm

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    You have two options, find the folder your project is in and copy and paste. Or the easier way. Drag and drop your image into Pycharm into the folder you want. Then you can copy the path from source to use as the file url

  • @bilalelhaddadi9496
    @bilalelhaddadi94962 жыл бұрын

    Is it traceable if i use this methode

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    What do you mean traceable? How many detected? Where it was detected?

  • @clzywyd
    @clzywyd2 жыл бұрын

    i copied all of the code and this is what i get line 2, in import keyboard ModuleNotFoundError: No module named 'keyboard'

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    In the terminal use : pip install keyboard

  • @trader4lifee613
    @trader4lifee6132 жыл бұрын

    Hey bro, how can i make it faster?

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    There is a time delay that you can change if it is too fast it will find the same object twice, you can also use grayscale, make the search area smaller, make the image you are searching for smaller too.

  • @rons96

    @rons96

    2 жыл бұрын

    To fix the click on same object when faster, you can add the x and y from function return to a list. Then you add a condition like this: if not (x,y) in list: click() Then you will need delete the 0 index from your list everytime you click, because if the list have all the positions possible, it will stop clicking.

  • @tmarshrnj
    @tmarshrnj2 жыл бұрын

    so i get a keyboard error

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Using a Mac by any chance? Can you post the exact error message please ?

  • @yieufjfneifjcjwisjfjdja
    @yieufjfneifjcjwisjfjdja Жыл бұрын

    Multiple images Tutorial?

  • @DragonPigAdventures

    @DragonPigAdventures

    Жыл бұрын

    On its way, just a bit busy with work and moving

  • @camilleestrada9040
    @camilleestrada90402 жыл бұрын

    How about android phone

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    I’ll make a video later this month on how to use it with android phones but my suggestion now would be use an emulator and the code will would just fine

  • @camilleestrada9040

    @camilleestrada9040

    2 жыл бұрын

    @@DragonPigAdventures thank you sir Im your new suporter from Asia

  • @homiebears
    @homiebears2 жыл бұрын

    try opencv

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    I have looked into it but this was meant to be a very simple way to do it in the fastest time possible for an intro into python. Ill post an updated version at a later date

  • @camilleestrada9040
    @camilleestrada90402 жыл бұрын

    Can

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    Can

  • @deep_crypto
    @deep_crypto2 жыл бұрын

    I sear I wanted to do something similar. Do you have telegram that we could talk? thx

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    I don’t but will sort it out in the new year you can message on FB or here

  • @1xCorr
    @1xCorr2 жыл бұрын

    how do I add multiple images for it and what do I change for macOS

  • @DragonPigAdventures

    @DragonPigAdventures

    2 жыл бұрын

    You can make the image into an array of images and then use a for loop to check for each one (easiest) but performance would be slower, you can think about using threads. For make OS you need to change the packages for using the mouse I believe I have recently moved to using macOS and i know that the apis are slightly different. Also the file paths.

  • @1xCorr

    @1xCorr

    2 жыл бұрын

    @@DragonPigAdventures would you consider making an updated version of this in the future?

Келесі