Войти
  • 25617Просмотров
  • 4 года назадОпубликованоKian Brose

Making a Simon Says Bot with Python

In this video I'll show you how I made a Simon Says color tile memory game bot using python. Simon says is an old game where there are 4 tiles with different colors, the tiles will begin flashing in a specific order, and your goal is to click on them in the same order they flashed. The game gets harder and harder as more and more tiles start flashing and normal humans will eventually run out of memory. To create a bot for this game I will be using the knowledge I demonstrated in previous videos, notably the "How to make advanced image recognition bots using python" and the "How I make bots using python (educational)" The libraries I used in this video are pyautogui, keyboard, pywin32 and time. If you don't have them installed and want to try this make sure to install them from a CMD with pip install pyautogui pip install keyboard pip install time pip install pywin32 Note that I am using python 64 bit which is compatible with pyautogui without any major issues, if you attempt this in any newer version of python make sure to fix the pillow and numpy issues with pip install pillow pip uninstall numpy pip install numpy== If you have any questions feel free to comment, I reply to every singe one. Thanks for reading ^^