├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── ccpp.yml │ ├── download_and_compile.yml │ └── validate.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakeSettings.json ├── LICENSE ├── README.md ├── cmake ├── Findglad2.cmake ├── init-postproject.cmake ├── init-preproject.cmake └── warning_level.cmake ├── msix └── package_staging │ ├── AppxManifest.xml │ ├── logo.png │ ├── logo_150.png │ └── logo_44.png ├── schemas └── v3 │ ├── account_ages.schema.json │ ├── discord_rich_presence.schema.json │ ├── playerlist.schema.json │ ├── rules.schema.json │ ├── settings.schema.json │ ├── shared.schema.json │ ├── sponsors.schema.json │ └── whitelist.schema.json ├── smartscreen ├── sign_exes.bat ├── x64 │ └── tf2_bot_detector.exe └── x86 │ └── tf2_bot_detector.exe ├── staging ├── cfg │ ├── discord_rich_presence.json │ ├── playerlist.official.json │ ├── rules.official.json │ ├── sponsors.json │ └── untrusted_groups.official.json ├── fonts │ ├── ProggyClean.ttf │ └── ProggyTiny.ttf ├── images │ ├── game_ban_icon_16.png │ ├── heart_16.png │ └── vac_icon_16.png ├── licenses │ ├── SDL2.txt │ ├── ValveFileVDF.txt │ ├── bzip2.txt │ ├── catch2.txt │ ├── cpp-httplib.txt │ ├── cppcoro.txt │ ├── cpprestsdk.txt │ ├── cryptopp.txt │ ├── glad2.txt │ ├── imgui.txt │ ├── imgui_desktop.txt │ ├── implot.txt │ ├── libzip.txt │ ├── libzippp.txt │ ├── mh_stuff.txt │ ├── nlohmann_json.txt │ ├── proggyfonts.txt │ ├── tf2_bot_detector.txt │ └── zlib.txt └── tf2_addons │ └── aaaaaaaaaa_votefailed_eraser_v2 │ ├── LICENSE │ ├── README │ ├── info.vdf │ ├── resource │ └── ui │ │ ├── botdetector_tf_hud_base │ │ └── votehud.res │ │ └── votehud.res │ └── sound │ └── ui │ └── vote_failure.wav ├── submodules └── glad2 │ ├── CMakeLists.txt │ ├── include │ ├── KHR │ │ └── khrplatform.h │ └── glad │ │ └── gl.h │ └── src │ └── gl.c ├── tf2_bot_detector ├── Actions │ ├── ActionGenerators.cpp │ ├── ActionGenerators.h │ ├── Actions.cpp │ ├── Actions.h │ ├── HijackActionManager.cpp │ ├── HijackActionManager.h │ ├── IActionManager.h │ ├── ICommandSource.h │ ├── RCONActionManager.cpp │ └── RCONActionManager.h ├── Application.cpp ├── Application.h ├── Art │ ├── TF2BotDetector.ico │ ├── game_ban_icon.svg │ ├── heart.svg │ └── vac_icon.svg ├── BaseTextures.cpp ├── BaseTextures.h ├── BatchedAction.h ├── Bitmap.cpp ├── Bitmap.h ├── CMakeLists.txt ├── Clock.cpp ├── Clock.h ├── CompensatedTS.cpp ├── CompensatedTS.h ├── Config │ ├── AccountAges.cpp │ ├── AccountAges.h │ ├── ChatWrappers.cpp │ ├── ChatWrappers.h │ ├── ConfigHelpers.cpp │ ├── ConfigHelpers.h │ ├── DRPInfo.cpp │ ├── DRPInfo.h │ ├── PlayerListJSON.cpp │ ├── PlayerListJSON.h │ ├── Rules.cpp │ ├── Rules.h │ ├── Settings.cpp │ ├── Settings.h │ ├── SponsorsList.cpp │ └── SponsorsList.h ├── ConsoleLog │ ├── ConsoleLineListener.cpp │ ├── ConsoleLineListener.h │ ├── ConsoleLines.cpp │ ├── ConsoleLines.h │ ├── ConsoleLogParser.cpp │ ├── ConsoleLogParser.h │ ├── IConsoleLine.h │ ├── NetworkStatus.cpp │ └── NetworkStatus.h ├── DB │ ├── DBHelpers.cpp │ ├── DBHelpers.h │ ├── TempDB.cpp │ └── TempDB.h ├── DLLMain.cpp ├── DLLMain.h ├── DiscordRichPresence.cpp ├── DiscordRichPresence.h ├── Filesystem.cpp ├── Filesystem.h ├── GameData │ ├── MatchmakingQueue.h │ ├── TFClassType.h │ ├── TFParty.h │ └── UserMessageType.h ├── GenericErrors.cpp ├── GenericErrors.h ├── GlobalDispatcher.h ├── IPlayer.cpp ├── IPlayer.h ├── Launcher │ ├── Resources.rc │ └── main.cpp ├── LobbyMember.h ├── Log.cpp ├── Log.h ├── ModeratorLogic.cpp ├── ModeratorLogic.h ├── Networking │ ├── GithubAPI.cpp │ ├── GithubAPI.h │ ├── HTTPClient.cpp │ ├── HTTPClient.h │ ├── HTTPHelpers.cpp │ ├── HTTPHelpers.h │ ├── LogsTFAPI.cpp │ ├── LogsTFAPI.h │ ├── NetworkHelpers.cpp │ ├── NetworkHelpers.h │ ├── SteamAPI.cpp │ └── SteamAPI.h ├── Platform │ ├── Platform.h │ └── Windows │ │ ├── CrashHandler.cpp │ │ ├── Platform.cpp │ │ ├── PlatformInstall.cpp │ │ ├── Processes.cpp │ │ ├── Shell.cpp │ │ ├── Steam.cpp │ │ ├── Windows.cpp │ │ └── WindowsHelpers.h ├── PlayerStatus.h ├── Resources.base.rc ├── SetupFlow │ ├── AddonManagerPage.cpp │ ├── AddonManagerPage.h │ ├── BasicSettingsPage.cpp │ ├── BasicSettingsPage.h │ ├── ChatWrappersGeneratorPage.cpp │ ├── ChatWrappersGeneratorPage.h │ ├── ChatWrappersVerifyPage.cpp │ ├── ChatWrappersVerifyPage.h │ ├── CheckFaceitClosedPage.cpp │ ├── CheckSteamOpenPage.cpp │ ├── ISetupFlowPage.h │ ├── NetworkSettingsPage.cpp │ ├── NetworkSettingsPage.h │ ├── PermissionsCheckPage.cpp │ ├── SetupFlow.cpp │ ├── SetupFlow.h │ ├── TF2CommandLinePage.cpp │ ├── TF2CommandLinePage.h │ └── UpdateCheckPage.cpp ├── SteamID.cpp ├── SteamID.h ├── TFConstants.h ├── Tests │ ├── Catch2.cpp │ ├── ConsoleLineTests.cpp │ ├── FormattingTests.cpp │ ├── HumanDurationTests.cpp │ ├── PlayerRuleTests.cpp │ └── Tests.h ├── TextureManager.cpp ├── TextureManager.h ├── UI │ ├── ImGui_TF2BotDetector.cpp │ ├── ImGui_TF2BotDetector.h │ ├── MainWindow.Scoreboard.cpp │ ├── MainWindow.cpp │ ├── MainWindow.h │ ├── SettingsWindow.cpp │ └── SettingsWindow.h ├── UpdateManager.cpp ├── UpdateManager.h ├── Util │ ├── JSONUtils.h │ ├── PathUtils.cpp │ ├── PathUtils.h │ ├── RegexUtils.h │ ├── TextUtils.cpp │ └── TextUtils.h ├── Version.base.h ├── Version.cpp ├── WorldEventListener.cpp ├── WorldEventListener.h ├── WorldState.cpp ├── WorldState.h └── packages.config ├── tf2_bot_detector_common ├── CMakeLists.txt ├── include │ ├── Platform │ │ └── PlatformCommon.h │ └── ReleaseChannel.h └── src │ └── Platform │ └── Windows │ └── PlatformCommon.cpp ├── tf2_bot_detector_updater ├── CMakeLists.txt ├── CMakeSettings.json ├── Common.h ├── Platform │ ├── Platform.h │ └── Windows │ │ └── Platform_Windows.cpp ├── Resources.base.rc ├── Update_MSIX.cpp ├── Update_MSIX.h ├── Update_Portable.cpp ├── Update_Portable.h ├── main.cpp └── vcpkg.json ├── tf2_bot_detector_winrt ├── CMakeLists.txt ├── empty.cpp ├── setup_winrt.bat ├── tf2_bot_detector_winrt.cpp └── tf2_bot_detector_winrt.h ├── util └── download_and_compile.bat └── vcpkg.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.github/workflows/download_and_compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.github/workflows/download_and_compile.yml -------------------------------------------------------------------------------- /.github/workflows/validate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.github/workflows/validate.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/README.md -------------------------------------------------------------------------------- /cmake/Findglad2.cmake: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cmake/init-postproject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/cmake/init-postproject.cmake -------------------------------------------------------------------------------- /cmake/init-preproject.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/cmake/init-preproject.cmake -------------------------------------------------------------------------------- /cmake/warning_level.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/cmake/warning_level.cmake -------------------------------------------------------------------------------- /msix/package_staging/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/msix/package_staging/AppxManifest.xml -------------------------------------------------------------------------------- /msix/package_staging/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/msix/package_staging/logo.png -------------------------------------------------------------------------------- /msix/package_staging/logo_150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/msix/package_staging/logo_150.png -------------------------------------------------------------------------------- /msix/package_staging/logo_44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/msix/package_staging/logo_44.png -------------------------------------------------------------------------------- /schemas/v3/account_ages.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/schemas/v3/account_ages.schema.json -------------------------------------------------------------------------------- /schemas/v3/discord_rich_presence.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/schemas/v3/discord_rich_presence.schema.json -------------------------------------------------------------------------------- /schemas/v3/playerlist.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/schemas/v3/playerlist.schema.json -------------------------------------------------------------------------------- /schemas/v3/rules.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/schemas/v3/rules.schema.json -------------------------------------------------------------------------------- /schemas/v3/settings.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/schemas/v3/settings.schema.json -------------------------------------------------------------------------------- /schemas/v3/shared.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/schemas/v3/shared.schema.json -------------------------------------------------------------------------------- /schemas/v3/sponsors.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/schemas/v3/sponsors.schema.json -------------------------------------------------------------------------------- /schemas/v3/whitelist.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/schemas/v3/whitelist.schema.json -------------------------------------------------------------------------------- /smartscreen/sign_exes.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/smartscreen/sign_exes.bat -------------------------------------------------------------------------------- /smartscreen/x64/tf2_bot_detector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/smartscreen/x64/tf2_bot_detector.exe -------------------------------------------------------------------------------- /smartscreen/x86/tf2_bot_detector.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/smartscreen/x86/tf2_bot_detector.exe -------------------------------------------------------------------------------- /staging/cfg/discord_rich_presence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/cfg/discord_rich_presence.json -------------------------------------------------------------------------------- /staging/cfg/playerlist.official.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/cfg/playerlist.official.json -------------------------------------------------------------------------------- /staging/cfg/rules.official.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/cfg/rules.official.json -------------------------------------------------------------------------------- /staging/cfg/sponsors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/cfg/sponsors.json -------------------------------------------------------------------------------- /staging/cfg/untrusted_groups.official.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/cfg/untrusted_groups.official.json -------------------------------------------------------------------------------- /staging/fonts/ProggyClean.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/fonts/ProggyClean.ttf -------------------------------------------------------------------------------- /staging/fonts/ProggyTiny.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/fonts/ProggyTiny.ttf -------------------------------------------------------------------------------- /staging/images/game_ban_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/images/game_ban_icon_16.png -------------------------------------------------------------------------------- /staging/images/heart_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/images/heart_16.png -------------------------------------------------------------------------------- /staging/images/vac_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/images/vac_icon_16.png -------------------------------------------------------------------------------- /staging/licenses/SDL2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/SDL2.txt -------------------------------------------------------------------------------- /staging/licenses/ValveFileVDF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/ValveFileVDF.txt -------------------------------------------------------------------------------- /staging/licenses/bzip2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/bzip2.txt -------------------------------------------------------------------------------- /staging/licenses/catch2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/catch2.txt -------------------------------------------------------------------------------- /staging/licenses/cpp-httplib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/cpp-httplib.txt -------------------------------------------------------------------------------- /staging/licenses/cppcoro.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/cppcoro.txt -------------------------------------------------------------------------------- /staging/licenses/cpprestsdk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/cpprestsdk.txt -------------------------------------------------------------------------------- /staging/licenses/cryptopp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/cryptopp.txt -------------------------------------------------------------------------------- /staging/licenses/glad2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/glad2.txt -------------------------------------------------------------------------------- /staging/licenses/imgui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/imgui.txt -------------------------------------------------------------------------------- /staging/licenses/imgui_desktop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/imgui_desktop.txt -------------------------------------------------------------------------------- /staging/licenses/implot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/implot.txt -------------------------------------------------------------------------------- /staging/licenses/libzip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/libzip.txt -------------------------------------------------------------------------------- /staging/licenses/libzippp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/libzippp.txt -------------------------------------------------------------------------------- /staging/licenses/mh_stuff.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/mh_stuff.txt -------------------------------------------------------------------------------- /staging/licenses/nlohmann_json.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/nlohmann_json.txt -------------------------------------------------------------------------------- /staging/licenses/proggyfonts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/proggyfonts.txt -------------------------------------------------------------------------------- /staging/licenses/tf2_bot_detector.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/tf2_bot_detector.txt -------------------------------------------------------------------------------- /staging/licenses/zlib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/licenses/zlib.txt -------------------------------------------------------------------------------- /staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/LICENSE -------------------------------------------------------------------------------- /staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/README -------------------------------------------------------------------------------- /staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/info.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/info.vdf -------------------------------------------------------------------------------- /staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/resource/ui/botdetector_tf_hud_base/votehud.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/resource/ui/botdetector_tf_hud_base/votehud.res -------------------------------------------------------------------------------- /staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/resource/ui/votehud.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/resource/ui/votehud.res -------------------------------------------------------------------------------- /staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/sound/ui/vote_failure.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/staging/tf2_addons/aaaaaaaaaa_votefailed_eraser_v2/sound/ui/vote_failure.wav -------------------------------------------------------------------------------- /submodules/glad2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/submodules/glad2/CMakeLists.txt -------------------------------------------------------------------------------- /submodules/glad2/include/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/submodules/glad2/include/KHR/khrplatform.h -------------------------------------------------------------------------------- /submodules/glad2/include/glad/gl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/submodules/glad2/include/glad/gl.h -------------------------------------------------------------------------------- /submodules/glad2/src/gl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/submodules/glad2/src/gl.c -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/ActionGenerators.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/ActionGenerators.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/ActionGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/ActionGenerators.h -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/Actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/Actions.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/Actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/Actions.h -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/HijackActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/HijackActionManager.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/HijackActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/HijackActionManager.h -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/IActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/IActionManager.h -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/ICommandSource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/ICommandSource.h -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/RCONActionManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/RCONActionManager.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Actions/RCONActionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Actions/RCONActionManager.h -------------------------------------------------------------------------------- /tf2_bot_detector/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Application.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Application.h -------------------------------------------------------------------------------- /tf2_bot_detector/Art/TF2BotDetector.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Art/TF2BotDetector.ico -------------------------------------------------------------------------------- /tf2_bot_detector/Art/game_ban_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Art/game_ban_icon.svg -------------------------------------------------------------------------------- /tf2_bot_detector/Art/heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Art/heart.svg -------------------------------------------------------------------------------- /tf2_bot_detector/Art/vac_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Art/vac_icon.svg -------------------------------------------------------------------------------- /tf2_bot_detector/BaseTextures.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/BaseTextures.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/BaseTextures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/BaseTextures.h -------------------------------------------------------------------------------- /tf2_bot_detector/BatchedAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/BatchedAction.h -------------------------------------------------------------------------------- /tf2_bot_detector/Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Bitmap.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Bitmap.h -------------------------------------------------------------------------------- /tf2_bot_detector/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/CMakeLists.txt -------------------------------------------------------------------------------- /tf2_bot_detector/Clock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Clock.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Clock.h -------------------------------------------------------------------------------- /tf2_bot_detector/CompensatedTS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/CompensatedTS.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/CompensatedTS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/CompensatedTS.h -------------------------------------------------------------------------------- /tf2_bot_detector/Config/AccountAges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/AccountAges.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Config/AccountAges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/AccountAges.h -------------------------------------------------------------------------------- /tf2_bot_detector/Config/ChatWrappers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/ChatWrappers.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Config/ChatWrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/ChatWrappers.h -------------------------------------------------------------------------------- /tf2_bot_detector/Config/ConfigHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/ConfigHelpers.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Config/ConfigHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/ConfigHelpers.h -------------------------------------------------------------------------------- /tf2_bot_detector/Config/DRPInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/DRPInfo.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Config/DRPInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/DRPInfo.h -------------------------------------------------------------------------------- /tf2_bot_detector/Config/PlayerListJSON.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/PlayerListJSON.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Config/PlayerListJSON.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/PlayerListJSON.h -------------------------------------------------------------------------------- /tf2_bot_detector/Config/Rules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/Rules.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Config/Rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/Rules.h -------------------------------------------------------------------------------- /tf2_bot_detector/Config/Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/Settings.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Config/Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/Settings.h -------------------------------------------------------------------------------- /tf2_bot_detector/Config/SponsorsList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/SponsorsList.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Config/SponsorsList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Config/SponsorsList.h -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/ConsoleLineListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/ConsoleLineListener.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/ConsoleLineListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/ConsoleLineListener.h -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/ConsoleLines.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/ConsoleLines.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/ConsoleLines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/ConsoleLines.h -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/ConsoleLogParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/ConsoleLogParser.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/ConsoleLogParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/ConsoleLogParser.h -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/IConsoleLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/IConsoleLine.h -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/NetworkStatus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/NetworkStatus.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/ConsoleLog/NetworkStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ConsoleLog/NetworkStatus.h -------------------------------------------------------------------------------- /tf2_bot_detector/DB/DBHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/DB/DBHelpers.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/DB/DBHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/DB/DBHelpers.h -------------------------------------------------------------------------------- /tf2_bot_detector/DB/TempDB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/DB/TempDB.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/DB/TempDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/DB/TempDB.h -------------------------------------------------------------------------------- /tf2_bot_detector/DLLMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/DLLMain.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/DLLMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/DLLMain.h -------------------------------------------------------------------------------- /tf2_bot_detector/DiscordRichPresence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/DiscordRichPresence.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/DiscordRichPresence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/DiscordRichPresence.h -------------------------------------------------------------------------------- /tf2_bot_detector/Filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Filesystem.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Filesystem.h -------------------------------------------------------------------------------- /tf2_bot_detector/GameData/MatchmakingQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/GameData/MatchmakingQueue.h -------------------------------------------------------------------------------- /tf2_bot_detector/GameData/TFClassType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/GameData/TFClassType.h -------------------------------------------------------------------------------- /tf2_bot_detector/GameData/TFParty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/GameData/TFParty.h -------------------------------------------------------------------------------- /tf2_bot_detector/GameData/UserMessageType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/GameData/UserMessageType.h -------------------------------------------------------------------------------- /tf2_bot_detector/GenericErrors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/GenericErrors.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/GenericErrors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/GenericErrors.h -------------------------------------------------------------------------------- /tf2_bot_detector/GlobalDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/GlobalDispatcher.h -------------------------------------------------------------------------------- /tf2_bot_detector/IPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/IPlayer.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/IPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/IPlayer.h -------------------------------------------------------------------------------- /tf2_bot_detector/Launcher/Resources.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Launcher/Resources.rc -------------------------------------------------------------------------------- /tf2_bot_detector/Launcher/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Launcher/main.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/LobbyMember.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/LobbyMember.h -------------------------------------------------------------------------------- /tf2_bot_detector/Log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Log.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Log.h -------------------------------------------------------------------------------- /tf2_bot_detector/ModeratorLogic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ModeratorLogic.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/ModeratorLogic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/ModeratorLogic.h -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/GithubAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/GithubAPI.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/GithubAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/GithubAPI.h -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/HTTPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/HTTPClient.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/HTTPClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/HTTPClient.h -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/HTTPHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/HTTPHelpers.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/HTTPHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/HTTPHelpers.h -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/LogsTFAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/LogsTFAPI.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/LogsTFAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/LogsTFAPI.h -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/NetworkHelpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/NetworkHelpers.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/NetworkHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/NetworkHelpers.h -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/SteamAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/SteamAPI.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Networking/SteamAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Networking/SteamAPI.h -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Platform.h -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Windows/CrashHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Windows/CrashHandler.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Windows/Platform.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Windows/Platform.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Windows/PlatformInstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Windows/PlatformInstall.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Windows/Processes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Windows/Processes.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Windows/Shell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Windows/Shell.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Windows/Steam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Windows/Steam.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Windows/Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Windows/Windows.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Platform/Windows/WindowsHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Platform/Windows/WindowsHelpers.h -------------------------------------------------------------------------------- /tf2_bot_detector/PlayerStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/PlayerStatus.h -------------------------------------------------------------------------------- /tf2_bot_detector/Resources.base.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Resources.base.rc -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/AddonManagerPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/AddonManagerPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/AddonManagerPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/AddonManagerPage.h -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/BasicSettingsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/BasicSettingsPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/BasicSettingsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/BasicSettingsPage.h -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/ChatWrappersGeneratorPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/ChatWrappersGeneratorPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/ChatWrappersGeneratorPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/ChatWrappersGeneratorPage.h -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/ChatWrappersVerifyPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/ChatWrappersVerifyPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/ChatWrappersVerifyPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/ChatWrappersVerifyPage.h -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/CheckFaceitClosedPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/CheckFaceitClosedPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/CheckSteamOpenPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/CheckSteamOpenPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/ISetupFlowPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/ISetupFlowPage.h -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/NetworkSettingsPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/NetworkSettingsPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/NetworkSettingsPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/NetworkSettingsPage.h -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/PermissionsCheckPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/PermissionsCheckPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/SetupFlow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/SetupFlow.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/SetupFlow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/SetupFlow.h -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/TF2CommandLinePage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/TF2CommandLinePage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/TF2CommandLinePage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/TF2CommandLinePage.h -------------------------------------------------------------------------------- /tf2_bot_detector/SetupFlow/UpdateCheckPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SetupFlow/UpdateCheckPage.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SteamID.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SteamID.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/SteamID.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/SteamID.h -------------------------------------------------------------------------------- /tf2_bot_detector/TFConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/TFConstants.h -------------------------------------------------------------------------------- /tf2_bot_detector/Tests/Catch2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Tests/Catch2.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Tests/ConsoleLineTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Tests/ConsoleLineTests.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Tests/FormattingTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Tests/FormattingTests.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Tests/HumanDurationTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Tests/HumanDurationTests.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Tests/PlayerRuleTests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Tests/PlayerRuleTests.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Tests/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Tests/Tests.h -------------------------------------------------------------------------------- /tf2_bot_detector/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/TextureManager.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/TextureManager.h -------------------------------------------------------------------------------- /tf2_bot_detector/UI/ImGui_TF2BotDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UI/ImGui_TF2BotDetector.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/UI/ImGui_TF2BotDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UI/ImGui_TF2BotDetector.h -------------------------------------------------------------------------------- /tf2_bot_detector/UI/MainWindow.Scoreboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UI/MainWindow.Scoreboard.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/UI/MainWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UI/MainWindow.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/UI/MainWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UI/MainWindow.h -------------------------------------------------------------------------------- /tf2_bot_detector/UI/SettingsWindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UI/SettingsWindow.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/UI/SettingsWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UI/SettingsWindow.h -------------------------------------------------------------------------------- /tf2_bot_detector/UpdateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UpdateManager.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/UpdateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/UpdateManager.h -------------------------------------------------------------------------------- /tf2_bot_detector/Util/JSONUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Util/JSONUtils.h -------------------------------------------------------------------------------- /tf2_bot_detector/Util/PathUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Util/PathUtils.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Util/PathUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Util/PathUtils.h -------------------------------------------------------------------------------- /tf2_bot_detector/Util/RegexUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Util/RegexUtils.h -------------------------------------------------------------------------------- /tf2_bot_detector/Util/TextUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Util/TextUtils.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/Util/TextUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Util/TextUtils.h -------------------------------------------------------------------------------- /tf2_bot_detector/Version.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Version.base.h -------------------------------------------------------------------------------- /tf2_bot_detector/Version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/Version.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/WorldEventListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/WorldEventListener.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/WorldEventListener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/WorldEventListener.h -------------------------------------------------------------------------------- /tf2_bot_detector/WorldState.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/WorldState.cpp -------------------------------------------------------------------------------- /tf2_bot_detector/WorldState.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/WorldState.h -------------------------------------------------------------------------------- /tf2_bot_detector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector/packages.config -------------------------------------------------------------------------------- /tf2_bot_detector_common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_common/CMakeLists.txt -------------------------------------------------------------------------------- /tf2_bot_detector_common/include/Platform/PlatformCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_common/include/Platform/PlatformCommon.h -------------------------------------------------------------------------------- /tf2_bot_detector_common/include/ReleaseChannel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_common/include/ReleaseChannel.h -------------------------------------------------------------------------------- /tf2_bot_detector_common/src/Platform/Windows/PlatformCommon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_common/src/Platform/Windows/PlatformCommon.cpp -------------------------------------------------------------------------------- /tf2_bot_detector_updater/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/CMakeLists.txt -------------------------------------------------------------------------------- /tf2_bot_detector_updater/CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/CMakeSettings.json -------------------------------------------------------------------------------- /tf2_bot_detector_updater/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/Common.h -------------------------------------------------------------------------------- /tf2_bot_detector_updater/Platform/Platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/Platform/Platform.h -------------------------------------------------------------------------------- /tf2_bot_detector_updater/Platform/Windows/Platform_Windows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/Platform/Windows/Platform_Windows.cpp -------------------------------------------------------------------------------- /tf2_bot_detector_updater/Resources.base.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/Resources.base.rc -------------------------------------------------------------------------------- /tf2_bot_detector_updater/Update_MSIX.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/Update_MSIX.cpp -------------------------------------------------------------------------------- /tf2_bot_detector_updater/Update_MSIX.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/Update_MSIX.h -------------------------------------------------------------------------------- /tf2_bot_detector_updater/Update_Portable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/Update_Portable.cpp -------------------------------------------------------------------------------- /tf2_bot_detector_updater/Update_Portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/Update_Portable.h -------------------------------------------------------------------------------- /tf2_bot_detector_updater/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/main.cpp -------------------------------------------------------------------------------- /tf2_bot_detector_updater/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_updater/vcpkg.json -------------------------------------------------------------------------------- /tf2_bot_detector_winrt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_winrt/CMakeLists.txt -------------------------------------------------------------------------------- /tf2_bot_detector_winrt/empty.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tf2_bot_detector_winrt/setup_winrt.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_winrt/setup_winrt.bat -------------------------------------------------------------------------------- /tf2_bot_detector_winrt/tf2_bot_detector_winrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_winrt/tf2_bot_detector_winrt.cpp -------------------------------------------------------------------------------- /tf2_bot_detector_winrt/tf2_bot_detector_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/tf2_bot_detector_winrt/tf2_bot_detector_winrt.h -------------------------------------------------------------------------------- /util/download_and_compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/util/download_and_compile.bat -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PazerOP/tf2_bot_detector/HEAD/vcpkg.json --------------------------------------------------------------------------------