├── .github └── FUNDING.yml ├── .gitignore ├── Installer.bat ├── Launcher.bat ├── README.md ├── requirements.txt ├── resources ├── FullHD │ ├── buy.png │ ├── deathmatch.png │ ├── friends.png │ ├── game_launched.png │ ├── guns │ │ ├── awp.png │ │ ├── deagle.png │ │ ├── phantom.png │ │ ├── rewards.png │ │ ├── shorty.png │ │ ├── usp.png │ │ └── vandal.png │ ├── hundred_hp.png │ ├── in_queue.png │ ├── inactivity.png │ ├── inactivity_backup.png │ ├── match_end.png │ ├── match_found.png │ ├── match_found_again.png │ ├── party.png │ ├── party_restricted.png │ ├── play.png │ ├── play_again_1.png │ ├── play_again_2.png │ ├── play_again_3.png │ ├── quit.png │ ├── rewards.png │ ├── rewards_1.png │ ├── skip.png │ ├── small_start.png │ ├── small_start_1.png │ ├── update_play.png │ └── val51.png ├── QHD │ ├── buy.png │ ├── cheater_continue.png │ ├── deathmatch.png │ ├── friends.png │ ├── game_launched.png │ ├── guns │ │ ├── awp.png │ │ ├── deagle.png │ │ ├── phantom.png │ │ ├── shorty.png │ │ ├── usp.png │ │ └── vandal.png │ ├── hundred_hp.png │ ├── inactivity.png │ ├── legacy │ │ ├── close_lobby.png │ │ └── close_lobby_1.png │ ├── match_end.png │ ├── match_found.png │ ├── match_found_again.png │ ├── party.png │ ├── party_restricted.png │ ├── play.png │ ├── play_again_1.png │ ├── play_again_2.png │ ├── play_again_3.png │ ├── quit.png │ ├── rewards.png │ ├── rewards_1.png │ ├── skip.png │ ├── small_start.png │ ├── small_start_1.png │ ├── update_play.png │ └── val51.png ├── bot_pic.png └── temp │ └── control_picture_1.png └── scripts ├── __init__.py ├── bot.py ├── gameplay.py ├── helpers ├── __init__.py ├── colors.py ├── keyboard.py ├── mouse.py ├── ordinals.py └── screen.py ├── ingame_error.py ├── menu.py ├── settings.py ├── stats.py └── valorant.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/.gitignore -------------------------------------------------------------------------------- /Installer.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/Installer.bat -------------------------------------------------------------------------------- /Launcher.bat: -------------------------------------------------------------------------------- 1 | mode con: cols=55 lines=45 2 | cd scripts 3 | cls 4 | python bot.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/FullHD/buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/buy.png -------------------------------------------------------------------------------- /resources/FullHD/deathmatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/deathmatch.png -------------------------------------------------------------------------------- /resources/FullHD/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/friends.png -------------------------------------------------------------------------------- /resources/FullHD/game_launched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/game_launched.png -------------------------------------------------------------------------------- /resources/FullHD/guns/awp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/guns/awp.png -------------------------------------------------------------------------------- /resources/FullHD/guns/deagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/guns/deagle.png -------------------------------------------------------------------------------- /resources/FullHD/guns/phantom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/guns/phantom.png -------------------------------------------------------------------------------- /resources/FullHD/guns/rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/guns/rewards.png -------------------------------------------------------------------------------- /resources/FullHD/guns/shorty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/guns/shorty.png -------------------------------------------------------------------------------- /resources/FullHD/guns/usp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/guns/usp.png -------------------------------------------------------------------------------- /resources/FullHD/guns/vandal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/guns/vandal.png -------------------------------------------------------------------------------- /resources/FullHD/hundred_hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/hundred_hp.png -------------------------------------------------------------------------------- /resources/FullHD/in_queue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/in_queue.png -------------------------------------------------------------------------------- /resources/FullHD/inactivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/inactivity.png -------------------------------------------------------------------------------- /resources/FullHD/inactivity_backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/inactivity_backup.png -------------------------------------------------------------------------------- /resources/FullHD/match_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/match_end.png -------------------------------------------------------------------------------- /resources/FullHD/match_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/match_found.png -------------------------------------------------------------------------------- /resources/FullHD/match_found_again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/match_found_again.png -------------------------------------------------------------------------------- /resources/FullHD/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/party.png -------------------------------------------------------------------------------- /resources/FullHD/party_restricted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/party_restricted.png -------------------------------------------------------------------------------- /resources/FullHD/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/play.png -------------------------------------------------------------------------------- /resources/FullHD/play_again_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/play_again_1.png -------------------------------------------------------------------------------- /resources/FullHD/play_again_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/play_again_2.png -------------------------------------------------------------------------------- /resources/FullHD/play_again_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/play_again_3.png -------------------------------------------------------------------------------- /resources/FullHD/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/quit.png -------------------------------------------------------------------------------- /resources/FullHD/rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/rewards.png -------------------------------------------------------------------------------- /resources/FullHD/rewards_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/rewards_1.png -------------------------------------------------------------------------------- /resources/FullHD/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/skip.png -------------------------------------------------------------------------------- /resources/FullHD/small_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/small_start.png -------------------------------------------------------------------------------- /resources/FullHD/small_start_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/small_start_1.png -------------------------------------------------------------------------------- /resources/FullHD/update_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/update_play.png -------------------------------------------------------------------------------- /resources/FullHD/val51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/FullHD/val51.png -------------------------------------------------------------------------------- /resources/QHD/buy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/buy.png -------------------------------------------------------------------------------- /resources/QHD/cheater_continue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/cheater_continue.png -------------------------------------------------------------------------------- /resources/QHD/deathmatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/deathmatch.png -------------------------------------------------------------------------------- /resources/QHD/friends.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/friends.png -------------------------------------------------------------------------------- /resources/QHD/game_launched.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/game_launched.png -------------------------------------------------------------------------------- /resources/QHD/guns/awp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/guns/awp.png -------------------------------------------------------------------------------- /resources/QHD/guns/deagle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/guns/deagle.png -------------------------------------------------------------------------------- /resources/QHD/guns/phantom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/guns/phantom.png -------------------------------------------------------------------------------- /resources/QHD/guns/shorty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/guns/shorty.png -------------------------------------------------------------------------------- /resources/QHD/guns/usp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/guns/usp.png -------------------------------------------------------------------------------- /resources/QHD/guns/vandal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/guns/vandal.png -------------------------------------------------------------------------------- /resources/QHD/hundred_hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/hundred_hp.png -------------------------------------------------------------------------------- /resources/QHD/inactivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/inactivity.png -------------------------------------------------------------------------------- /resources/QHD/legacy/close_lobby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/legacy/close_lobby.png -------------------------------------------------------------------------------- /resources/QHD/legacy/close_lobby_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/legacy/close_lobby_1.png -------------------------------------------------------------------------------- /resources/QHD/match_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/match_end.png -------------------------------------------------------------------------------- /resources/QHD/match_found.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/match_found.png -------------------------------------------------------------------------------- /resources/QHD/match_found_again.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/match_found_again.png -------------------------------------------------------------------------------- /resources/QHD/party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/party.png -------------------------------------------------------------------------------- /resources/QHD/party_restricted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/party_restricted.png -------------------------------------------------------------------------------- /resources/QHD/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/play.png -------------------------------------------------------------------------------- /resources/QHD/play_again_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/play_again_1.png -------------------------------------------------------------------------------- /resources/QHD/play_again_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/play_again_2.png -------------------------------------------------------------------------------- /resources/QHD/play_again_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/play_again_3.png -------------------------------------------------------------------------------- /resources/QHD/quit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/quit.png -------------------------------------------------------------------------------- /resources/QHD/rewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/rewards.png -------------------------------------------------------------------------------- /resources/QHD/rewards_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/rewards_1.png -------------------------------------------------------------------------------- /resources/QHD/skip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/skip.png -------------------------------------------------------------------------------- /resources/QHD/small_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/small_start.png -------------------------------------------------------------------------------- /resources/QHD/small_start_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/small_start_1.png -------------------------------------------------------------------------------- /resources/QHD/update_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/update_play.png -------------------------------------------------------------------------------- /resources/QHD/val51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/QHD/val51.png -------------------------------------------------------------------------------- /resources/bot_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/bot_pic.png -------------------------------------------------------------------------------- /resources/temp/control_picture_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/resources/temp/control_picture_1.png -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/bot.py -------------------------------------------------------------------------------- /scripts/gameplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/gameplay.py -------------------------------------------------------------------------------- /scripts/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/helpers/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/helpers/colors.py -------------------------------------------------------------------------------- /scripts/helpers/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/helpers/keyboard.py -------------------------------------------------------------------------------- /scripts/helpers/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/helpers/mouse.py -------------------------------------------------------------------------------- /scripts/helpers/ordinals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/helpers/ordinals.py -------------------------------------------------------------------------------- /scripts/helpers/screen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/helpers/screen.py -------------------------------------------------------------------------------- /scripts/ingame_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/ingame_error.py -------------------------------------------------------------------------------- /scripts/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/menu.py -------------------------------------------------------------------------------- /scripts/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/settings.py -------------------------------------------------------------------------------- /scripts/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/stats.py -------------------------------------------------------------------------------- /scripts/valorant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sogoeslight/ValorantBot/HEAD/scripts/valorant.py --------------------------------------------------------------------------------