├── .gitignore ├── README.md ├── SECURITY.md ├── api ├── keybinds.py ├── movement.py ├── user.py └── windows.py ├── errors.py ├── main.py ├── requirements.txt └── screen ├── colors.py ├── functions.py └── metrics.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api/keybinds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/api/keybinds.py -------------------------------------------------------------------------------- /api/movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/api/movement.py -------------------------------------------------------------------------------- /api/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/api/user.py -------------------------------------------------------------------------------- /api/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/api/windows.py -------------------------------------------------------------------------------- /errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/errors.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pygame 2 | pygetwindow 3 | -------------------------------------------------------------------------------- /screen/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/screen/colors.py -------------------------------------------------------------------------------- /screen/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/screen/functions.py -------------------------------------------------------------------------------- /screen/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iiPythonx/RoBot/HEAD/screen/metrics.py --------------------------------------------------------------------------------