├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── pylint.yml ├── .gitignore ├── .pylintrc ├── LICENSE ├── README.md ├── arena.py ├── arena_functions.py ├── auto_comps.py ├── auto_queue.py ├── champion.py ├── comps.py ├── custom_comps.txt ├── game.py ├── game_assets.py ├── game_functions.py ├── install.py ├── main.py ├── mk_functions.py ├── ocr.py ├── requirements.txt ├── screen_coords.py ├── settings.py ├── ui.py ├── vec2.py └── vec4.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/pylint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/.github/workflows/pylint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/.pylintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/README.md -------------------------------------------------------------------------------- /arena.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/arena.py -------------------------------------------------------------------------------- /arena_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/arena_functions.py -------------------------------------------------------------------------------- /auto_comps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/auto_comps.py -------------------------------------------------------------------------------- /auto_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/auto_queue.py -------------------------------------------------------------------------------- /champion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/champion.py -------------------------------------------------------------------------------- /comps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/comps.py -------------------------------------------------------------------------------- /custom_comps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/custom_comps.txt -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/game.py -------------------------------------------------------------------------------- /game_assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/game_assets.py -------------------------------------------------------------------------------- /game_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/game_functions.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/install.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/main.py -------------------------------------------------------------------------------- /mk_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/mk_functions.py -------------------------------------------------------------------------------- /ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/ocr.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/requirements.txt -------------------------------------------------------------------------------- /screen_coords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/screen_coords.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/settings.py -------------------------------------------------------------------------------- /ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/ui.py -------------------------------------------------------------------------------- /vec2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/vec2.py -------------------------------------------------------------------------------- /vec4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sizzzles/TFT-OCR-BOT/HEAD/vec4.py --------------------------------------------------------------------------------