├── .DS_Store ├── .env.example ├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md ├── assets └── bombie.gif ├── requirements.txt ├── src ├── config.rs ├── emulation.rs ├── errors.rs ├── lib.rs ├── main.rs ├── platform_specific.rs ├── py_automation.rs ├── py_modules │ ├── mod.rs │ ├── py_imports.rs │ └── py_setup.rs ├── python │ ├── __init__.py │ ├── action.py │ ├── bombie │ │ ├── bombie_objects.py │ │ ├── bot_logic.py │ │ ├── chest_action.py │ │ ├── cordination_module.py │ │ ├── cv_manager.py │ │ ├── data_class.py │ │ ├── module_manager.py │ │ ├── ocr_manager.py │ │ └── task_action.py │ ├── bot_handle.py │ ├── device_emulation.py │ ├── login.py │ ├── tracer.py │ ├── utils.py │ └── web_modules.py └── utils.rs └── templates ├── buttons ├── false_auto_skill_button.png └── true_auto_skill_button.png ├── chest ├── false_autosell_set.jpeg ├── false_power_chest.jpeg ├── incorrect_equip_choice.png ├── true_autosell_set.jpeg └── true_power_chest.png ├── git └── github_logo.webp └── task ├── false_task_action.png ├── github_logo.webp ├── true_task_action.png └── true_task_button_dayli_task.png /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/.DS_Store -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/README.md -------------------------------------------------------------------------------- /assets/bombie.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/assets/bombie.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/emulation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/emulation.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/platform_specific.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/platform_specific.rs -------------------------------------------------------------------------------- /src/py_automation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/py_automation.rs -------------------------------------------------------------------------------- /src/py_modules/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/py_modules/mod.rs -------------------------------------------------------------------------------- /src/py_modules/py_imports.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/py_modules/py_imports.rs -------------------------------------------------------------------------------- /src/py_modules/py_setup.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/py_modules/py_setup.rs -------------------------------------------------------------------------------- /src/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/python/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/action.py -------------------------------------------------------------------------------- /src/python/bombie/bombie_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/bombie_objects.py -------------------------------------------------------------------------------- /src/python/bombie/bot_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/bot_logic.py -------------------------------------------------------------------------------- /src/python/bombie/chest_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/chest_action.py -------------------------------------------------------------------------------- /src/python/bombie/cordination_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/cordination_module.py -------------------------------------------------------------------------------- /src/python/bombie/cv_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/cv_manager.py -------------------------------------------------------------------------------- /src/python/bombie/data_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/data_class.py -------------------------------------------------------------------------------- /src/python/bombie/module_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/module_manager.py -------------------------------------------------------------------------------- /src/python/bombie/ocr_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/ocr_manager.py -------------------------------------------------------------------------------- /src/python/bombie/task_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bombie/task_action.py -------------------------------------------------------------------------------- /src/python/bot_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/bot_handle.py -------------------------------------------------------------------------------- /src/python/device_emulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/device_emulation.py -------------------------------------------------------------------------------- /src/python/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/login.py -------------------------------------------------------------------------------- /src/python/tracer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/tracer.py -------------------------------------------------------------------------------- /src/python/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/utils.py -------------------------------------------------------------------------------- /src/python/web_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/python/web_modules.py -------------------------------------------------------------------------------- /src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/src/utils.rs -------------------------------------------------------------------------------- /templates/buttons/false_auto_skill_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/buttons/false_auto_skill_button.png -------------------------------------------------------------------------------- /templates/buttons/true_auto_skill_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/buttons/true_auto_skill_button.png -------------------------------------------------------------------------------- /templates/chest/false_autosell_set.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/chest/false_autosell_set.jpeg -------------------------------------------------------------------------------- /templates/chest/false_power_chest.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/chest/false_power_chest.jpeg -------------------------------------------------------------------------------- /templates/chest/incorrect_equip_choice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/chest/incorrect_equip_choice.png -------------------------------------------------------------------------------- /templates/chest/true_autosell_set.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/chest/true_autosell_set.jpeg -------------------------------------------------------------------------------- /templates/chest/true_power_chest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/chest/true_power_chest.png -------------------------------------------------------------------------------- /templates/git/github_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/git/github_logo.webp -------------------------------------------------------------------------------- /templates/task/false_task_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/task/false_task_action.png -------------------------------------------------------------------------------- /templates/task/github_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/task/github_logo.webp -------------------------------------------------------------------------------- /templates/task/true_task_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/task/true_task_action.png -------------------------------------------------------------------------------- /templates/task/true_task_button_dayli_task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Panda404NotFound/bombie_bot/HEAD/templates/task/true_task_button_dayli_task.png --------------------------------------------------------------------------------