├── PLUGIN ├── .gitignore ├── Bonuses │ ├── Bonuses.cs │ ├── FastReload.cs │ ├── InfiniteAmmo.cs │ ├── PlayerDeathEvent.cs │ └── SmokeColor.cs ├── Classes │ ├── Player.cs │ ├── PlayerSettings.cs │ └── Service.cs ├── Commands │ ├── AdminCommands │ │ ├── AddVipGroup.cs │ │ ├── AddVipGroupBySteamID.cs │ │ ├── ListAvailableGroups.cs │ │ ├── ListVipGroups.cs │ │ ├── ReloadVips.cs │ │ ├── RemoveVipGroup.cs │ │ └── RemoveVipGroupBySteamID.cs │ ├── PlayerCommands │ │ ├── ShowOnlineVips.cs │ │ ├── ShowVipBenefits.cs │ │ ├── ShowVipGroups.cs │ │ └── VipTest.cs │ ├── RegisterAdminCommands.cs │ └── RegisterPlayerCommands.cs ├── Config │ └── Configuration.toml ├── ConfigManager │ ├── ConfigInitialize.cs │ └── ConfigList.cs ├── Database │ ├── Core.cs │ └── Functions.cs ├── Events │ ├── EventsInitialize.cs │ ├── MapEvents.cs │ ├── PlayerEvents.cs │ ├── RoundEvents.cs │ └── SpawnEvents.cs ├── Folder.DotSettings ├── Folder.DotSettings.user ├── Globals │ ├── Globals.cs │ ├── Messages.cs │ └── OnTick.cs ├── Helpers │ ├── BenefitsRenderer.cs │ ├── ChatChelper.cs │ └── PlayerProcessing.cs ├── Manager │ ├── CommandManager.cs │ ├── NightVipManager.cs │ ├── ServiceManager.cs │ └── WeaponMenuManager.cs ├── Mesharsky_Vip.cs ├── Mesharsky_Vip.csproj ├── T3MenuSharedAPI.dll └── lang │ ├── en.json │ └── pl.json ├── README.md └── WEB ├── Config └── config.php ├── db_connection.php ├── edit_group.php ├── edit_player.php ├── groups_manager.php ├── index.php ├── login.php ├── logout.php ├── player_functions.php ├── steam_api.php ├── steamauth.php └── view_player.php /PLUGIN/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | obj/ 3 | *.sln 4 | .idea/ 5 | .vscode/ 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /PLUGIN/Bonuses/Bonuses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Bonuses/Bonuses.cs -------------------------------------------------------------------------------- /PLUGIN/Bonuses/FastReload.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Bonuses/FastReload.cs -------------------------------------------------------------------------------- /PLUGIN/Bonuses/InfiniteAmmo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Bonuses/InfiniteAmmo.cs -------------------------------------------------------------------------------- /PLUGIN/Bonuses/PlayerDeathEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Bonuses/PlayerDeathEvent.cs -------------------------------------------------------------------------------- /PLUGIN/Bonuses/SmokeColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Bonuses/SmokeColor.cs -------------------------------------------------------------------------------- /PLUGIN/Classes/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Classes/Player.cs -------------------------------------------------------------------------------- /PLUGIN/Classes/PlayerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Classes/PlayerSettings.cs -------------------------------------------------------------------------------- /PLUGIN/Classes/Service.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Classes/Service.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/AdminCommands/AddVipGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/AdminCommands/AddVipGroup.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/AdminCommands/AddVipGroupBySteamID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/AdminCommands/AddVipGroupBySteamID.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/AdminCommands/ListAvailableGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/AdminCommands/ListAvailableGroups.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/AdminCommands/ListVipGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/AdminCommands/ListVipGroups.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/AdminCommands/ReloadVips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/AdminCommands/ReloadVips.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/AdminCommands/RemoveVipGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/AdminCommands/RemoveVipGroup.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/AdminCommands/RemoveVipGroupBySteamID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/AdminCommands/RemoveVipGroupBySteamID.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/PlayerCommands/ShowOnlineVips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/PlayerCommands/ShowOnlineVips.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/PlayerCommands/ShowVipBenefits.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/PlayerCommands/ShowVipBenefits.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/PlayerCommands/ShowVipGroups.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/PlayerCommands/ShowVipGroups.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/PlayerCommands/VipTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/PlayerCommands/VipTest.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/RegisterAdminCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/RegisterAdminCommands.cs -------------------------------------------------------------------------------- /PLUGIN/Commands/RegisterPlayerCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Commands/RegisterPlayerCommands.cs -------------------------------------------------------------------------------- /PLUGIN/Config/Configuration.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Config/Configuration.toml -------------------------------------------------------------------------------- /PLUGIN/ConfigManager/ConfigInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/ConfigManager/ConfigInitialize.cs -------------------------------------------------------------------------------- /PLUGIN/ConfigManager/ConfigList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/ConfigManager/ConfigList.cs -------------------------------------------------------------------------------- /PLUGIN/Database/Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Database/Core.cs -------------------------------------------------------------------------------- /PLUGIN/Database/Functions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Database/Functions.cs -------------------------------------------------------------------------------- /PLUGIN/Events/EventsInitialize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Events/EventsInitialize.cs -------------------------------------------------------------------------------- /PLUGIN/Events/MapEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Events/MapEvents.cs -------------------------------------------------------------------------------- /PLUGIN/Events/PlayerEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Events/PlayerEvents.cs -------------------------------------------------------------------------------- /PLUGIN/Events/RoundEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Events/RoundEvents.cs -------------------------------------------------------------------------------- /PLUGIN/Events/SpawnEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Events/SpawnEvents.cs -------------------------------------------------------------------------------- /PLUGIN/Folder.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Folder.DotSettings -------------------------------------------------------------------------------- /PLUGIN/Folder.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Folder.DotSettings.user -------------------------------------------------------------------------------- /PLUGIN/Globals/Globals.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Globals/Globals.cs -------------------------------------------------------------------------------- /PLUGIN/Globals/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Globals/Messages.cs -------------------------------------------------------------------------------- /PLUGIN/Globals/OnTick.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Globals/OnTick.cs -------------------------------------------------------------------------------- /PLUGIN/Helpers/BenefitsRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Helpers/BenefitsRenderer.cs -------------------------------------------------------------------------------- /PLUGIN/Helpers/ChatChelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Helpers/ChatChelper.cs -------------------------------------------------------------------------------- /PLUGIN/Helpers/PlayerProcessing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Helpers/PlayerProcessing.cs -------------------------------------------------------------------------------- /PLUGIN/Manager/CommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Manager/CommandManager.cs -------------------------------------------------------------------------------- /PLUGIN/Manager/NightVipManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Manager/NightVipManager.cs -------------------------------------------------------------------------------- /PLUGIN/Manager/ServiceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Manager/ServiceManager.cs -------------------------------------------------------------------------------- /PLUGIN/Manager/WeaponMenuManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Manager/WeaponMenuManager.cs -------------------------------------------------------------------------------- /PLUGIN/Mesharsky_Vip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Mesharsky_Vip.cs -------------------------------------------------------------------------------- /PLUGIN/Mesharsky_Vip.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/Mesharsky_Vip.csproj -------------------------------------------------------------------------------- /PLUGIN/T3MenuSharedAPI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/T3MenuSharedAPI.dll -------------------------------------------------------------------------------- /PLUGIN/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/lang/en.json -------------------------------------------------------------------------------- /PLUGIN/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/PLUGIN/lang/pl.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/README.md -------------------------------------------------------------------------------- /WEB/Config/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/Config/config.php -------------------------------------------------------------------------------- /WEB/db_connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/db_connection.php -------------------------------------------------------------------------------- /WEB/edit_group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/edit_group.php -------------------------------------------------------------------------------- /WEB/edit_player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/edit_player.php -------------------------------------------------------------------------------- /WEB/groups_manager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/groups_manager.php -------------------------------------------------------------------------------- /WEB/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/index.php -------------------------------------------------------------------------------- /WEB/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/login.php -------------------------------------------------------------------------------- /WEB/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/logout.php -------------------------------------------------------------------------------- /WEB/player_functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/player_functions.php -------------------------------------------------------------------------------- /WEB/steam_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/steam_api.php -------------------------------------------------------------------------------- /WEB/steamauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/steamauth.php -------------------------------------------------------------------------------- /WEB/view_player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mesharsky/CS2-Vip-Manager/HEAD/WEB/view_player.php --------------------------------------------------------------------------------