├── .gitignore ├── CS2-Admin ├── LICENSE ├── README.md ├── cs2-admin.csproj ├── lang │ ├── en.json │ ├── tr.json │ └── zh-Hans.json └── src │ ├── commands │ ├── admin.cs │ ├── baseban.cs │ ├── basechat.cs │ ├── basecomm.cs │ ├── basecommands.cs │ ├── basevotes.cs │ ├── funcommands.cs │ └── playercommands.cs │ ├── cs2-admin.cs │ └── utils │ ├── classes.cs │ ├── config.cs │ ├── database.cs │ ├── discord.cs │ ├── events.cs │ ├── findtargets.cs │ ├── globalvariables.cs │ ├── library.cs │ └── player.cs ├── CS2-BypassTeamLimit ├── Mesharsky_TeamLimitBypass.cs ├── Mesharsky_TeamLimitBypass.csproj ├── Mesharsky_TeamLimitBypass.sln └── README.md ├── CS2-Tags ├── .gitattributes ├── .github │ ├── FUNDING.yml │ └── workflows │ │ └── build.yml ├── .gitignore ├── CS2-Tags.cs ├── CS2-Tags.csproj ├── CS2-Tags.sln ├── LICENSE └── README.md ├── CashPaySteal ├── CashPay.cs ├── CashPay.csproj └── README.md ├── Cheer ├── Cheer.cs └── Cheer.csproj ├── ConnectInfo ├── ConnectInfo.cs ├── ConnectInfo.csproj └── README.md ├── CustomWeaponSkin ├── CustomWeaponSkin.cs ├── CustomWeaponSkin.csproj ├── CustomWeaponSkin.csproj.user ├── CustomWeaponSkin.sln ├── README.md ├── Storage.cs └── storage │ ├── MySQL.cs │ └── Sqlite.cs ├── FuckValveMemoryLeak ├── FuckValveMemoryLeak.cs └── FuckValveMemoryLeak.csproj ├── InventorySimulator ├── .gitignore ├── InventorySimulator.csproj ├── InventorySimulator.sln ├── License.txt ├── README.md ├── gamedata │ └── inventory-simulator.json └── source │ └── InventorySimulator │ ├── InventorySimulator.Utilities.cs │ ├── InventorySimulator.api.cs │ ├── InventorySimulator.cs │ ├── InventorySimulator.entity.cs │ ├── InventorySimulator.give.cs │ ├── InventorySimulator.hacks.cs │ ├── InventorySimulator.signatures.cs │ ├── PlayerInventory.cs │ └── lang │ ├── en.json │ └── pt-BR.json ├── MapNadeSwitchFix ├── MapNadeSwitchFix.cs └── MapNadeSwitchFix.csproj ├── MatchZy ├── BackupManagement.cs ├── CHANGELOG.md ├── Coach.cs ├── ConfigConvars.cs ├── ConsoleCommands.cs ├── Constants.cs ├── DamageInfo.cs ├── DatabaseStats.cs ├── DemoManagement.cs ├── EventHandlers.cs ├── Events.cs ├── G5API.cs ├── GrenadeThrownData.cs ├── LICENSE ├── MapVeto.cs ├── MatchConfig.cs ├── MatchData.cs ├── MatchManagement.cs ├── MatchZy.cs ├── MatchZy.csproj ├── Pausing.cs ├── PlayerPracticeTimer.cs ├── PracticeMode.cs ├── PublishEvents.cs ├── README.md ├── ReadySystem.cs ├── RemoteLogConfig.cs ├── SleepMode.cs ├── SmokeGrenadeProjectile.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 ├── Minigames ├── Minigames.cs └── Minigames.csproj ├── NoBlock ├── NoBlock.cs └── NoBlock.csproj ├── README.md └── game └── csgo ├── addons └── counterstrikesharp │ ├── configs │ ├── admins.json │ ├── core.json │ └── plugins │ │ ├── ConnectInfo │ │ └── ConnectInfo.json │ │ ├── CustomWeaponSkin │ │ └── CustomWeaponSkin.json │ │ ├── PlayerModelChanger │ │ └── PlayerModelChanger.json │ │ ├── README.txt │ │ └── cs2-admin │ │ └── cs2-admin.json │ └── plugins │ └── CS2-Tags │ └── tags.json └── cfg ├── MatchZy ├── admins.json ├── config.cfg ├── database.json ├── dryrun.cfg ├── knife.cfg ├── live.cfg ├── prac.cfg ├── savednades.json ├── sleep.cfg ├── warmup.cfg └── whitelist.cfg └── multiaddonmanager └── multiaddonmanager.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /CS2-Admin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/LICENSE -------------------------------------------------------------------------------- /CS2-Admin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/README.md -------------------------------------------------------------------------------- /CS2-Admin/cs2-admin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/cs2-admin.csproj -------------------------------------------------------------------------------- /CS2-Admin/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/lang/en.json -------------------------------------------------------------------------------- /CS2-Admin/lang/tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/lang/tr.json -------------------------------------------------------------------------------- /CS2-Admin/lang/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/lang/zh-Hans.json -------------------------------------------------------------------------------- /CS2-Admin/src/commands/admin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/commands/admin.cs -------------------------------------------------------------------------------- /CS2-Admin/src/commands/baseban.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/commands/baseban.cs -------------------------------------------------------------------------------- /CS2-Admin/src/commands/basechat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/commands/basechat.cs -------------------------------------------------------------------------------- /CS2-Admin/src/commands/basecomm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/commands/basecomm.cs -------------------------------------------------------------------------------- /CS2-Admin/src/commands/basecommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/commands/basecommands.cs -------------------------------------------------------------------------------- /CS2-Admin/src/commands/basevotes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/commands/basevotes.cs -------------------------------------------------------------------------------- /CS2-Admin/src/commands/funcommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/commands/funcommands.cs -------------------------------------------------------------------------------- /CS2-Admin/src/commands/playercommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/commands/playercommands.cs -------------------------------------------------------------------------------- /CS2-Admin/src/cs2-admin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/cs2-admin.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/classes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/classes.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/config.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/database.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/database.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/discord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/discord.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/events.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/findtargets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/findtargets.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/globalvariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/globalvariables.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/library.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/library.cs -------------------------------------------------------------------------------- /CS2-Admin/src/utils/player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Admin/src/utils/player.cs -------------------------------------------------------------------------------- /CS2-BypassTeamLimit/Mesharsky_TeamLimitBypass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-BypassTeamLimit/Mesharsky_TeamLimitBypass.cs -------------------------------------------------------------------------------- /CS2-BypassTeamLimit/Mesharsky_TeamLimitBypass.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-BypassTeamLimit/Mesharsky_TeamLimitBypass.csproj -------------------------------------------------------------------------------- /CS2-BypassTeamLimit/Mesharsky_TeamLimitBypass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-BypassTeamLimit/Mesharsky_TeamLimitBypass.sln -------------------------------------------------------------------------------- /CS2-BypassTeamLimit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-BypassTeamLimit/README.md -------------------------------------------------------------------------------- /CS2-Tags/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Tags/.gitattributes -------------------------------------------------------------------------------- /CS2-Tags/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: daffyy 2 | -------------------------------------------------------------------------------- /CS2-Tags/.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Tags/.github/workflows/build.yml -------------------------------------------------------------------------------- /CS2-Tags/.gitignore: -------------------------------------------------------------------------------- 1 | .git 2 | .vs 3 | obj/ 4 | bin/ -------------------------------------------------------------------------------- /CS2-Tags/CS2-Tags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Tags/CS2-Tags.cs -------------------------------------------------------------------------------- /CS2-Tags/CS2-Tags.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Tags/CS2-Tags.csproj -------------------------------------------------------------------------------- /CS2-Tags/CS2-Tags.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Tags/CS2-Tags.sln -------------------------------------------------------------------------------- /CS2-Tags/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Tags/LICENSE -------------------------------------------------------------------------------- /CS2-Tags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CS2-Tags/README.md -------------------------------------------------------------------------------- /CashPaySteal/CashPay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CashPaySteal/CashPay.cs -------------------------------------------------------------------------------- /CashPaySteal/CashPay.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CashPaySteal/CashPay.csproj -------------------------------------------------------------------------------- /CashPaySteal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CashPaySteal/README.md -------------------------------------------------------------------------------- /Cheer/Cheer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/Cheer/Cheer.cs -------------------------------------------------------------------------------- /Cheer/Cheer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/Cheer/Cheer.csproj -------------------------------------------------------------------------------- /ConnectInfo/ConnectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/ConnectInfo/ConnectInfo.cs -------------------------------------------------------------------------------- /ConnectInfo/ConnectInfo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/ConnectInfo/ConnectInfo.csproj -------------------------------------------------------------------------------- /ConnectInfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/ConnectInfo/README.md -------------------------------------------------------------------------------- /CustomWeaponSkin/CustomWeaponSkin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CustomWeaponSkin/CustomWeaponSkin.cs -------------------------------------------------------------------------------- /CustomWeaponSkin/CustomWeaponSkin.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CustomWeaponSkin/CustomWeaponSkin.csproj -------------------------------------------------------------------------------- /CustomWeaponSkin/CustomWeaponSkin.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CustomWeaponSkin/CustomWeaponSkin.csproj.user -------------------------------------------------------------------------------- /CustomWeaponSkin/CustomWeaponSkin.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CustomWeaponSkin/CustomWeaponSkin.sln -------------------------------------------------------------------------------- /CustomWeaponSkin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CustomWeaponSkin/README.md -------------------------------------------------------------------------------- /CustomWeaponSkin/Storage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CustomWeaponSkin/Storage.cs -------------------------------------------------------------------------------- /CustomWeaponSkin/storage/MySQL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CustomWeaponSkin/storage/MySQL.cs -------------------------------------------------------------------------------- /CustomWeaponSkin/storage/Sqlite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/CustomWeaponSkin/storage/Sqlite.cs -------------------------------------------------------------------------------- /FuckValveMemoryLeak/FuckValveMemoryLeak.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/FuckValveMemoryLeak/FuckValveMemoryLeak.cs -------------------------------------------------------------------------------- /FuckValveMemoryLeak/FuckValveMemoryLeak.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/FuckValveMemoryLeak/FuckValveMemoryLeak.csproj -------------------------------------------------------------------------------- /InventorySimulator/.gitignore: -------------------------------------------------------------------------------- 1 | /.vs 2 | /bin 3 | /obj -------------------------------------------------------------------------------- /InventorySimulator/InventorySimulator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/InventorySimulator.csproj -------------------------------------------------------------------------------- /InventorySimulator/InventorySimulator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/InventorySimulator.sln -------------------------------------------------------------------------------- /InventorySimulator/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/License.txt -------------------------------------------------------------------------------- /InventorySimulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/README.md -------------------------------------------------------------------------------- /InventorySimulator/gamedata/inventory-simulator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/gamedata/inventory-simulator.json -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/InventorySimulator.Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/InventorySimulator.Utilities.cs -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/InventorySimulator.api.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/InventorySimulator.api.cs -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/InventorySimulator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/InventorySimulator.cs -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/InventorySimulator.entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/InventorySimulator.entity.cs -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/InventorySimulator.give.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/InventorySimulator.give.cs -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/InventorySimulator.hacks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/InventorySimulator.hacks.cs -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/InventorySimulator.signatures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/InventorySimulator.signatures.cs -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/PlayerInventory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/PlayerInventory.cs -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/lang/en.json -------------------------------------------------------------------------------- /InventorySimulator/source/InventorySimulator/lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/InventorySimulator/source/InventorySimulator/lang/pt-BR.json -------------------------------------------------------------------------------- /MapNadeSwitchFix/MapNadeSwitchFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MapNadeSwitchFix/MapNadeSwitchFix.cs -------------------------------------------------------------------------------- /MapNadeSwitchFix/MapNadeSwitchFix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MapNadeSwitchFix/MapNadeSwitchFix.csproj -------------------------------------------------------------------------------- /MatchZy/BackupManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/BackupManagement.cs -------------------------------------------------------------------------------- /MatchZy/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/CHANGELOG.md -------------------------------------------------------------------------------- /MatchZy/Coach.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/Coach.cs -------------------------------------------------------------------------------- /MatchZy/ConfigConvars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/ConfigConvars.cs -------------------------------------------------------------------------------- /MatchZy/ConsoleCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/ConsoleCommands.cs -------------------------------------------------------------------------------- /MatchZy/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/Constants.cs -------------------------------------------------------------------------------- /MatchZy/DamageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/DamageInfo.cs -------------------------------------------------------------------------------- /MatchZy/DatabaseStats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/DatabaseStats.cs -------------------------------------------------------------------------------- /MatchZy/DemoManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/DemoManagement.cs -------------------------------------------------------------------------------- /MatchZy/EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/EventHandlers.cs -------------------------------------------------------------------------------- /MatchZy/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/Events.cs -------------------------------------------------------------------------------- /MatchZy/G5API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/G5API.cs -------------------------------------------------------------------------------- /MatchZy/GrenadeThrownData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/GrenadeThrownData.cs -------------------------------------------------------------------------------- /MatchZy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/LICENSE -------------------------------------------------------------------------------- /MatchZy/MapVeto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/MapVeto.cs -------------------------------------------------------------------------------- /MatchZy/MatchConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/MatchConfig.cs -------------------------------------------------------------------------------- /MatchZy/MatchData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/MatchData.cs -------------------------------------------------------------------------------- /MatchZy/MatchManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/MatchManagement.cs -------------------------------------------------------------------------------- /MatchZy/MatchZy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/MatchZy.cs -------------------------------------------------------------------------------- /MatchZy/MatchZy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/MatchZy.csproj -------------------------------------------------------------------------------- /MatchZy/Pausing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/Pausing.cs -------------------------------------------------------------------------------- /MatchZy/PlayerPracticeTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/PlayerPracticeTimer.cs -------------------------------------------------------------------------------- /MatchZy/PracticeMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/PracticeMode.cs -------------------------------------------------------------------------------- /MatchZy/PublishEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/PublishEvents.cs -------------------------------------------------------------------------------- /MatchZy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/README.md -------------------------------------------------------------------------------- /MatchZy/ReadySystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/ReadySystem.cs -------------------------------------------------------------------------------- /MatchZy/RemoteLogConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/RemoteLogConfig.cs -------------------------------------------------------------------------------- /MatchZy/SleepMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/SleepMode.cs -------------------------------------------------------------------------------- /MatchZy/SmokeGrenadeProjectile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/SmokeGrenadeProjectile.cs -------------------------------------------------------------------------------- /MatchZy/SynchronizationContextManagement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/SynchronizationContextManagement.cs -------------------------------------------------------------------------------- /MatchZy/Teams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/Teams.cs -------------------------------------------------------------------------------- /MatchZy/Utility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/Utility.cs -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/admins.json: -------------------------------------------------------------------------------- 1 | { 2 | "76561198154367261": "" 3 | } 4 | -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/config.cfg -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/database.json -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/dryrun.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/dryrun.cfg -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/knife.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/knife.cfg -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/live.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/live.cfg -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/live_override.cfg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/live_wingman.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/live_wingman.cfg -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/live_wingman_override.cfg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/prac.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/prac.cfg -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/savednades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/savednades.json -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/sleep.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/sleep.cfg -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/warmup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/cfg/MatchZy/warmup.cfg -------------------------------------------------------------------------------- /MatchZy/cfg/MatchZy/whitelist.cfg: -------------------------------------------------------------------------------- 1 | 76561198154367261 2 | steamid2 3 | -------------------------------------------------------------------------------- /MatchZy/documentation/docs/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/commands.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/configuration.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/credits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/credits.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/database_stats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/database_stats.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/developers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/developers.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/donation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/donation.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/event_schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/event_schema.yml -------------------------------------------------------------------------------- /MatchZy/documentation/docs/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/events.html -------------------------------------------------------------------------------- /MatchZy/documentation/docs/events_and_forwards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/events_and_forwards.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/get5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/get5.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/getting_started.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/gotv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/gotv.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/index.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/installation.md -------------------------------------------------------------------------------- /MatchZy/documentation/docs/match_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/docs/match_setup.md -------------------------------------------------------------------------------- /MatchZy/documentation/mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/documentation/mkdocs.yml -------------------------------------------------------------------------------- /MatchZy/lang/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/de.json -------------------------------------------------------------------------------- /MatchZy/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/en.json -------------------------------------------------------------------------------- /MatchZy/lang/es-ES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/es-ES.json -------------------------------------------------------------------------------- /MatchZy/lang/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/fr.json -------------------------------------------------------------------------------- /MatchZy/lang/hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/hu.json -------------------------------------------------------------------------------- /MatchZy/lang/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/ja.json -------------------------------------------------------------------------------- /MatchZy/lang/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/pt-BR.json -------------------------------------------------------------------------------- /MatchZy/lang/pt-PT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/pt-PT.json -------------------------------------------------------------------------------- /MatchZy/lang/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/ru.json -------------------------------------------------------------------------------- /MatchZy/lang/uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/uz.json -------------------------------------------------------------------------------- /MatchZy/lang/zh-Hans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/zh-Hans.json -------------------------------------------------------------------------------- /MatchZy/lang/zh-Hant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/lang/zh-Hant.json -------------------------------------------------------------------------------- /MatchZy/spawns/coach/de_ancient.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/spawns/coach/de_ancient.json -------------------------------------------------------------------------------- /MatchZy/spawns/coach/de_anubis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/spawns/coach/de_anubis.json -------------------------------------------------------------------------------- /MatchZy/spawns/coach/de_dust2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/spawns/coach/de_dust2.json -------------------------------------------------------------------------------- /MatchZy/spawns/coach/de_inferno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/spawns/coach/de_inferno.json -------------------------------------------------------------------------------- /MatchZy/spawns/coach/de_mirage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/spawns/coach/de_mirage.json -------------------------------------------------------------------------------- /MatchZy/spawns/coach/de_nuke.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/spawns/coach/de_nuke.json -------------------------------------------------------------------------------- /MatchZy/spawns/coach/de_overpass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/spawns/coach/de_overpass.json -------------------------------------------------------------------------------- /MatchZy/spawns/coach/de_vertigo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/MatchZy/spawns/coach/de_vertigo.json -------------------------------------------------------------------------------- /Minigames/Minigames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/Minigames/Minigames.cs -------------------------------------------------------------------------------- /Minigames/Minigames.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/Minigames/Minigames.csproj -------------------------------------------------------------------------------- /NoBlock/NoBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/NoBlock/NoBlock.cs -------------------------------------------------------------------------------- /NoBlock/NoBlock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/NoBlock/NoBlock.csproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/README.md -------------------------------------------------------------------------------- /game/csgo/addons/counterstrikesharp/configs/admins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/addons/counterstrikesharp/configs/admins.json -------------------------------------------------------------------------------- /game/csgo/addons/counterstrikesharp/configs/core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/addons/counterstrikesharp/configs/core.json -------------------------------------------------------------------------------- /game/csgo/addons/counterstrikesharp/configs/plugins/ConnectInfo/ConnectInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/addons/counterstrikesharp/configs/plugins/ConnectInfo/ConnectInfo.json -------------------------------------------------------------------------------- /game/csgo/addons/counterstrikesharp/configs/plugins/CustomWeaponSkin/CustomWeaponSkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/addons/counterstrikesharp/configs/plugins/CustomWeaponSkin/CustomWeaponSkin.json -------------------------------------------------------------------------------- /game/csgo/addons/counterstrikesharp/configs/plugins/PlayerModelChanger/PlayerModelChanger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/addons/counterstrikesharp/configs/plugins/PlayerModelChanger/PlayerModelChanger.json -------------------------------------------------------------------------------- /game/csgo/addons/counterstrikesharp/configs/plugins/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/addons/counterstrikesharp/configs/plugins/README.txt -------------------------------------------------------------------------------- /game/csgo/addons/counterstrikesharp/configs/plugins/cs2-admin/cs2-admin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/addons/counterstrikesharp/configs/plugins/cs2-admin/cs2-admin.json -------------------------------------------------------------------------------- /game/csgo/addons/counterstrikesharp/plugins/CS2-Tags/tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/addons/counterstrikesharp/plugins/CS2-Tags/tags.json -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/admins.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/config.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/config.cfg -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/database.json -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/dryrun.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/dryrun.cfg -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/knife.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/knife.cfg -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/live.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/live.cfg -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/prac.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/prac.cfg -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/savednades.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/savednades.json -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/sleep.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/sleep.cfg -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/warmup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/MatchZy/warmup.cfg -------------------------------------------------------------------------------- /game/csgo/cfg/MatchZy/whitelist.cfg: -------------------------------------------------------------------------------- 1 | 76561198154367261 2 | steamid2 3 | -------------------------------------------------------------------------------- /game/csgo/cfg/multiaddonmanager/multiaddonmanager.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kroytz/A-Soul-CS2-Server-Plugins/HEAD/game/csgo/cfg/multiaddonmanager/multiaddonmanager.cfg --------------------------------------------------------------------------------