├── .gitignore ├── Custom Modes Examples ├── Only_AK47.md ├── Only_awp.md ├── Only_pistols.md ├── Only_rifles.md └── Only_shotguns.md ├── Lang ├── en.json ├── uz.json └── zh-Hans.json ├── README.md ├── Spawns Locations ├── de_dust2.json ├── de_inferno.json ├── de_mirage.json ├── de_thera.json └── de_vertigo.json └── source ├── Deathmatch ├── API.cs ├── Common │ ├── Classes.cs │ ├── Collections.cs │ ├── Enums.cs │ └── Globals.cs ├── Configs.cs ├── Deathmatch.cs ├── Deathmatch.csproj ├── Events.cs ├── Extensions │ └── PawnExtension.cs ├── Functions │ ├── Commands.cs │ ├── Database.cs │ ├── Entities.cs │ ├── Menus.cs │ ├── Players.cs │ ├── Spawns.cs │ └── Weapons.cs └── RayTrace │ ├── LineofSight.cs │ └── RayTrace.cs └── DeathmatchAPI ├── DeathmatchAPI.cs ├── DeathmatchAPI.csproj ├── Events.cs ├── Helpers.cs └── Preferences.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/.gitignore -------------------------------------------------------------------------------- /Custom Modes Examples/Only_AK47.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Custom Modes Examples/Only_AK47.md -------------------------------------------------------------------------------- /Custom Modes Examples/Only_awp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Custom Modes Examples/Only_awp.md -------------------------------------------------------------------------------- /Custom Modes Examples/Only_pistols.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Custom Modes Examples/Only_pistols.md -------------------------------------------------------------------------------- /Custom Modes Examples/Only_rifles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Custom Modes Examples/Only_rifles.md -------------------------------------------------------------------------------- /Custom Modes Examples/Only_shotguns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Custom Modes Examples/Only_shotguns.md -------------------------------------------------------------------------------- /Lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Lang/en.json -------------------------------------------------------------------------------- /Lang/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Lang/uz.json -------------------------------------------------------------------------------- /Lang/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Lang/zh-Hans.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/README.md -------------------------------------------------------------------------------- /Spawns Locations/de_dust2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Spawns Locations/de_dust2.json -------------------------------------------------------------------------------- /Spawns Locations/de_inferno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Spawns Locations/de_inferno.json -------------------------------------------------------------------------------- /Spawns Locations/de_mirage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Spawns Locations/de_mirage.json -------------------------------------------------------------------------------- /Spawns Locations/de_thera.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Spawns Locations/de_thera.json -------------------------------------------------------------------------------- /Spawns Locations/de_vertigo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/Spawns Locations/de_vertigo.json -------------------------------------------------------------------------------- /source/Deathmatch/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/API.cs -------------------------------------------------------------------------------- /source/Deathmatch/Common/Classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Common/Classes.cs -------------------------------------------------------------------------------- /source/Deathmatch/Common/Collections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Common/Collections.cs -------------------------------------------------------------------------------- /source/Deathmatch/Common/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Common/Enums.cs -------------------------------------------------------------------------------- /source/Deathmatch/Common/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Common/Globals.cs -------------------------------------------------------------------------------- /source/Deathmatch/Configs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Configs.cs -------------------------------------------------------------------------------- /source/Deathmatch/Deathmatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Deathmatch.cs -------------------------------------------------------------------------------- /source/Deathmatch/Deathmatch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Deathmatch.csproj -------------------------------------------------------------------------------- /source/Deathmatch/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Events.cs -------------------------------------------------------------------------------- /source/Deathmatch/Extensions/PawnExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Extensions/PawnExtension.cs -------------------------------------------------------------------------------- /source/Deathmatch/Functions/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Functions/Commands.cs -------------------------------------------------------------------------------- /source/Deathmatch/Functions/Database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Functions/Database.cs -------------------------------------------------------------------------------- /source/Deathmatch/Functions/Entities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Functions/Entities.cs -------------------------------------------------------------------------------- /source/Deathmatch/Functions/Menus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Functions/Menus.cs -------------------------------------------------------------------------------- /source/Deathmatch/Functions/Players.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Functions/Players.cs -------------------------------------------------------------------------------- /source/Deathmatch/Functions/Spawns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Functions/Spawns.cs -------------------------------------------------------------------------------- /source/Deathmatch/Functions/Weapons.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/Functions/Weapons.cs -------------------------------------------------------------------------------- /source/Deathmatch/RayTrace/LineofSight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/RayTrace/LineofSight.cs -------------------------------------------------------------------------------- /source/Deathmatch/RayTrace/RayTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/Deathmatch/RayTrace/RayTrace.cs -------------------------------------------------------------------------------- /source/DeathmatchAPI/DeathmatchAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/DeathmatchAPI/DeathmatchAPI.cs -------------------------------------------------------------------------------- /source/DeathmatchAPI/DeathmatchAPI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/DeathmatchAPI/DeathmatchAPI.csproj -------------------------------------------------------------------------------- /source/DeathmatchAPI/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/DeathmatchAPI/Events.cs -------------------------------------------------------------------------------- /source/DeathmatchAPI/Helpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/DeathmatchAPI/Helpers.cs -------------------------------------------------------------------------------- /source/DeathmatchAPI/Preferences.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NockyCZ/CS2-Deathmatch/HEAD/source/DeathmatchAPI/Preferences.cs --------------------------------------------------------------------------------