├── .DS_Store ├── .gitattributes ├── .idea ├── .gitignore ├── .name ├── FTNAIMZ.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── Arduino Sketch ├── FTN-Arduino │ └── FTN-Arduino.ino ├── ImprovedMouse.cpp ├── ImprovedMouse.h └── hidcustom.h ├── README.md ├── __pycache__ ├── capture.cpython-39.pyc ├── fov_window.cpython-39.pyc ├── ftnaimz.cpython-39.pyc └── mouse.cpython-39.pyc ├── capture.py ├── fov_window.py ├── ftnaimz.py ├── main.py └── mouse.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | main.py -------------------------------------------------------------------------------- /.idea/FTNAIMZ.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/.idea/FTNAIMZ.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Arduino Sketch/FTN-Arduino/FTN-Arduino.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/Arduino Sketch/FTN-Arduino/FTN-Arduino.ino -------------------------------------------------------------------------------- /Arduino Sketch/ImprovedMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/Arduino Sketch/ImprovedMouse.cpp -------------------------------------------------------------------------------- /Arduino Sketch/ImprovedMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/Arduino Sketch/ImprovedMouse.h -------------------------------------------------------------------------------- /Arduino Sketch/hidcustom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/Arduino Sketch/hidcustom.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/capture.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/__pycache__/capture.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/fov_window.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/__pycache__/fov_window.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/ftnaimz.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/__pycache__/ftnaimz.cpython-39.pyc -------------------------------------------------------------------------------- /__pycache__/mouse.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/__pycache__/mouse.cpython-39.pyc -------------------------------------------------------------------------------- /capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/capture.py -------------------------------------------------------------------------------- /fov_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/fov_window.py -------------------------------------------------------------------------------- /ftnaimz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/ftnaimz.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/main.py -------------------------------------------------------------------------------- /mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostspaceship/ColorBasedAimbot/HEAD/mouse.py --------------------------------------------------------------------------------