├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ └── ci.yml ├── .gitignore ├── BackupManagement.cs ├── CHANGELOG.md ├── Coach.cs ├── ConfigConvars.cs ├── ConsoleCommands.cs ├── Constants.cs ├── DamageInfo.cs ├── DatabaseStats.cs ├── DemoManagement.cs ├── EventHandlers.cs ├── Events.cs ├── G5API.cs ├── GrenadeProjectiles.cs ├── GrenadeThrownData.cs ├── LICENSE ├── MapVeto.cs ├── MatchConfig.cs ├── MatchData.cs ├── MatchManagement.cs ├── MatchZy.cs ├── MatchZy.csproj ├── Pausing.cs ├── PlayerLocationData.cs ├── PlayerPracticeTimer.cs ├── PracticeMode.cs ├── PublishEvents.cs ├── README.md ├── ReadySystem.cs ├── RemoteLogConfig.cs ├── SleepMode.cs ├── SynchronizationContextManagement.cs ├── Teams.cs ├── Utility.cs ├── cfg └── MatchZy │ ├── admins.json │ ├── config.cfg │ ├── database.json │ ├── dryrun.cfg │ ├── knife.cfg │ ├── live.cfg │ ├── live_override.cfg │ ├── live_wingman.cfg │ ├── live_wingman_override.cfg │ ├── prac.cfg │ ├── savednades.json │ ├── sleep.cfg │ ├── warmup.cfg │ └── whitelist.cfg ├── documentation ├── docs │ ├── commands.md │ ├── configuration.md │ ├── credits.md │ ├── database_stats.md │ ├── developers.md │ ├── donation.md │ ├── event_schema.yml │ ├── events.html │ ├── events_and_forwards.md │ ├── get5.md │ ├── getting_started.md │ ├── gotv.md │ ├── index.md │ ├── installation.md │ └── match_setup.md └── mkdocs.yml ├── lang ├── de.json ├── en.json ├── es-ES.json ├── fr.json ├── hu.json ├── ja.json ├── pt-BR.json ├── pt-PT.json ├── ru.json ├── uz.json ├── zh-Hans.json └── zh-Hant.json └── spawns └── coach ├── de_ancient.json ├── de_anubis.json ├── de_dust2.json ├── de_inferno.json ├── de_mirage.json ├── de_nuke.json ├── de_overpass.json └── de_vertigo.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | obj/* 2 | bin/* 3 | /.vs 4 | MatchZy.sln -------------------------------------------------------------------------------- /BackupManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/BackupManagement.cs -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Coach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/Coach.cs -------------------------------------------------------------------------------- /ConfigConvars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/ConfigConvars.cs -------------------------------------------------------------------------------- /ConsoleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/ConsoleCommands.cs -------------------------------------------------------------------------------- /Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/Constants.cs -------------------------------------------------------------------------------- /DamageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/DamageInfo.cs -------------------------------------------------------------------------------- /DatabaseStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/DatabaseStats.cs -------------------------------------------------------------------------------- /DemoManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/DemoManagement.cs -------------------------------------------------------------------------------- /EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/EventHandlers.cs -------------------------------------------------------------------------------- /Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/Events.cs -------------------------------------------------------------------------------- /G5API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/G5API.cs -------------------------------------------------------------------------------- /GrenadeProjectiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/GrenadeProjectiles.cs -------------------------------------------------------------------------------- /GrenadeThrownData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/GrenadeThrownData.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/LICENSE -------------------------------------------------------------------------------- /MapVeto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/MapVeto.cs -------------------------------------------------------------------------------- /MatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/MatchConfig.cs -------------------------------------------------------------------------------- /MatchData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/MatchData.cs -------------------------------------------------------------------------------- /MatchManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/MatchManagement.cs -------------------------------------------------------------------------------- /MatchZy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/MatchZy.cs -------------------------------------------------------------------------------- /MatchZy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/MatchZy.csproj -------------------------------------------------------------------------------- /Pausing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/Pausing.cs -------------------------------------------------------------------------------- /PlayerLocationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/PlayerLocationData.cs -------------------------------------------------------------------------------- /PlayerPracticeTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/PlayerPracticeTimer.cs -------------------------------------------------------------------------------- /PracticeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/PracticeMode.cs -------------------------------------------------------------------------------- /PublishEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/PublishEvents.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/README.md -------------------------------------------------------------------------------- /ReadySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/ReadySystem.cs -------------------------------------------------------------------------------- /RemoteLogConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/RemoteLogConfig.cs -------------------------------------------------------------------------------- /SleepMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/SleepMode.cs -------------------------------------------------------------------------------- /SynchronizationContextManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/SynchronizationContextManagement.cs -------------------------------------------------------------------------------- /Teams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/Teams.cs -------------------------------------------------------------------------------- /Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/Utility.cs -------------------------------------------------------------------------------- /cfg/MatchZy/admins.json: -------------------------------------------------------------------------------- 1 | { 2 | "76561198154367261": "" 3 | } 4 | -------------------------------------------------------------------------------- /cfg/MatchZy/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/config.cfg -------------------------------------------------------------------------------- /cfg/MatchZy/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/database.json -------------------------------------------------------------------------------- /cfg/MatchZy/dryrun.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/dryrun.cfg -------------------------------------------------------------------------------- /cfg/MatchZy/knife.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/knife.cfg -------------------------------------------------------------------------------- /cfg/MatchZy/live.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/live.cfg -------------------------------------------------------------------------------- /cfg/MatchZy/live_override.cfg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cfg/MatchZy/live_wingman.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/live_wingman.cfg -------------------------------------------------------------------------------- /cfg/MatchZy/live_wingman_override.cfg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /cfg/MatchZy/prac.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/prac.cfg -------------------------------------------------------------------------------- /cfg/MatchZy/savednades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/savednades.json -------------------------------------------------------------------------------- /cfg/MatchZy/sleep.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/sleep.cfg -------------------------------------------------------------------------------- /cfg/MatchZy/warmup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/cfg/MatchZy/warmup.cfg -------------------------------------------------------------------------------- /cfg/MatchZy/whitelist.cfg: -------------------------------------------------------------------------------- 1 | 76561198154367261 2 | steamid2 3 | -------------------------------------------------------------------------------- /documentation/docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/commands.md -------------------------------------------------------------------------------- /documentation/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/configuration.md -------------------------------------------------------------------------------- /documentation/docs/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/credits.md -------------------------------------------------------------------------------- /documentation/docs/database_stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/database_stats.md -------------------------------------------------------------------------------- /documentation/docs/developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/developers.md -------------------------------------------------------------------------------- /documentation/docs/donation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/donation.md -------------------------------------------------------------------------------- /documentation/docs/event_schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/event_schema.yml -------------------------------------------------------------------------------- /documentation/docs/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/events.html -------------------------------------------------------------------------------- /documentation/docs/events_and_forwards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/events_and_forwards.md -------------------------------------------------------------------------------- /documentation/docs/get5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/get5.md -------------------------------------------------------------------------------- /documentation/docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/getting_started.md -------------------------------------------------------------------------------- /documentation/docs/gotv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/gotv.md -------------------------------------------------------------------------------- /documentation/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/index.md -------------------------------------------------------------------------------- /documentation/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/installation.md -------------------------------------------------------------------------------- /documentation/docs/match_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/docs/match_setup.md -------------------------------------------------------------------------------- /documentation/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/documentation/mkdocs.yml -------------------------------------------------------------------------------- /lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/de.json -------------------------------------------------------------------------------- /lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/en.json -------------------------------------------------------------------------------- /lang/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/es-ES.json -------------------------------------------------------------------------------- /lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/fr.json -------------------------------------------------------------------------------- /lang/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/hu.json -------------------------------------------------------------------------------- /lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/ja.json -------------------------------------------------------------------------------- /lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/pt-BR.json -------------------------------------------------------------------------------- /lang/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/pt-PT.json -------------------------------------------------------------------------------- /lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/ru.json -------------------------------------------------------------------------------- /lang/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/uz.json -------------------------------------------------------------------------------- /lang/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/zh-Hans.json -------------------------------------------------------------------------------- /lang/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/lang/zh-Hant.json -------------------------------------------------------------------------------- /spawns/coach/de_ancient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/spawns/coach/de_ancient.json -------------------------------------------------------------------------------- /spawns/coach/de_anubis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/spawns/coach/de_anubis.json -------------------------------------------------------------------------------- /spawns/coach/de_dust2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/spawns/coach/de_dust2.json -------------------------------------------------------------------------------- /spawns/coach/de_inferno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/spawns/coach/de_inferno.json -------------------------------------------------------------------------------- /spawns/coach/de_mirage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/spawns/coach/de_mirage.json -------------------------------------------------------------------------------- /spawns/coach/de_nuke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/spawns/coach/de_nuke.json -------------------------------------------------------------------------------- /spawns/coach/de_overpass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/spawns/coach/de_overpass.json -------------------------------------------------------------------------------- /spawns/coach/de_vertigo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shobhit-pathak/MatchZy/HEAD/spawns/coach/de_vertigo.json --------------------------------------------------------------------------------