An open API service indexing awesome lists of open source software.

https://github.com/samyycx/awesome-cs2

An awesome list for all available cs2 development information, including modding frameworks, development resources, plugins and etc.
https://github.com/samyycx/awesome-cs2

List: awesome-cs2

awesome awesome-list awesome-lists counter-strike counter-strike-2 counterstrike cs2

Last synced: about 2 months ago
JSON representation

An awesome list for all available cs2 development information, including modding frameworks, development resources, plugins and etc.

Awesome Lists containing this project

README

          


Awesome CS2



An awesome list for all available cs2 development information, including modding frameworks, development resources, plugins and etc.



Last Sync: 2025/08/31 02:02:09



Project Uptime: 5 days

# Contents
- [General](#general)
- [Tools](#tools)
- [Status Trackers](#status-trackers)
- [Modding Frameworks](#modding-frameworks)
- [Development Resources](#development-resources)
- [Communities](#communities)
- [Plugins](#plugins)
- [Metamod Plugins](#metamod-plugins)
- [CounterStrikeSharp Plugins](#counterstrikesharp-plugins)
- [Swiftly Plugins](#swiftly-plugins)
- [Contributors](#contributors)
- [Contributing](#contributing)

# General
- **[Source2 Wiki](https://source2.wiki)**\
*An actively maintained source2 wiki, where you can learn information about workshop tools and entities.*

- **[cs2browser.net](https://cs2browser.net)**\
*A clean and live cs2 community server browser without fake servers and advertisements.*

- **[Valve Official Documentation](https://developer.valvesoftware.com/)**\
*Valve's official documentation for cs2 and other source games.*\
***Not recommended for checking cs2 information, most of them are outdated or absent.***

- **[gamebanana.com](https://gamebanana.com/games/18134)**\
*A workshop resource website that contains cs2 models, maps and etc.*

# Tools
- **[Source2Viewer](https://s2v.app/)**\
*A powerful tool to unpack and decompile resources from vpk files.*

- **[VPulse Editor](https://github.com/LionDoge/vpulse-editor)**\
*A visual programming tool to write the vpulse script, which is a new unreleased visualized script system for source2 to replace vscript.*

- **[Schema Dumper](https://github.com/GAMMACASE/Source2SchemaDumper)**\
*A metamod plugin for dumping schemas from game binary, and also able to generate a header file that can be imported in IDA for reverse engineering.*

- **[DepotDownloader](https://github.com/SteamRE/DepotDownloader)**\
*A tool to download game files of a specific version.*

- **[PltPatcher](https://github.com/GAMMACASE/PltPatcher)**\
*A IDA python plugin to patch plt sections when IDA fails to do so automatically, you might encounter such problem when decompiling linux binaries, made by GAMMACASE.*

# Status Trackers

- **[SteamDB](https://steamdb.info/app/730/charts/)**\
*A website tracking steam games information.*

- **[cs2-signatures](https://github.com/ianlucas/cs2-signatures)**\
*A github repo for tracking gamedata status after a game update.*

# Modding Frameworks
- **[Metamod](https://github.com/alliedmodders/metamod-source)** [[Website](https://www.sourcemm.net/downloads.php?branch=dev)] [[Discord](https://discord.com/invite/HUc67zN)]\
*The cobblestone of all of the current open source framework since source1, written in C++, hard to develop but have access to fundamental things.*\
***Please notice that it's the dev branch that support cs2, make sure you download the right version.***

- **[CounterStrikeSharp](https://github.com/roflmuffin/CounterStrikeSharp)** [[Website](https://docs.cssharp.dev/)] [[Discord](https://discord.com/invite/eAZU3guKWU)]\
*The most popular modding framework for cs2, the plugins are written in c#.*\
*Alias: CS#, cssharp*

- **[Swiftly](https://github.com/swiftly-solution/swiftly)** [[Website](https://swiftlys2.net)] [[Discord](https://discord.com/invite/Yv7hAM6erd)]\
*A modding framework that support c#, cpp and lua as scripting language with more feature than counterstrikesharp.*

- **[Plugify](https://github.com/untrustedmodders/plugify)** [[Website](https://plugify.net)] [[Discord](https://discord.gg/untrustedmodders)]\
*A modding framework that support tons of programming languages, more information can be found in there discord channel and website.*

# Development Resources
These are the websites with resources that you might need to check during development.

- **[ConVars](https://github.com/SteamDatabase/GameTracking-CS2/blob/master/DumpSource2/convars.txt)**\
*A list of all cs2 convars, directly dumped from latest cs2 binary.*

- **[Commands](https://github.com/SteamDatabase/GameTracking-CS2/blob/master/DumpSource2/commands.txt)**\
*A list of all cs2 commands, directly dumped from latest cs2 binary.*

- **[Game Events](https://cs2.poggu.me/dumped-data/game-events)**\
*A list of all cs2 game events.*\
*The data might be outdated, if so, you can find the latest ones here:*\
*[core.gameevents](https://github.com/SteamDatabase/GameTracking-CS2/blob/master/game/core/pak01_dir/resource/core.gameevents)*
*[game.gameevents](https://github.com/SteamDatabase/GameTracking-CS2/blob/master/game/csgo/pak01_dir/resource/game.gameevents)*
*[mod.gameevents](https://github.com/SteamDatabase/GameTracking-CS2/blob/master/game/csgo/pak01_dir/resource/mod.gameevents)*

- **[Schemas](https://github.com/SteamDatabase/GameTracking-CS2/tree/master/DumpSource2/schemas)**\
*A list of all cs2 schema classes and fields, directly dumped from latest cs2 binary.*

- **[Entities](https://source2.wiki)**\
*A list of all cs2 entities.*

- **[Protobufs](https://github.com/SteamDatabase/GameTracking-CS2/blob/master/Protobufs)**\
*A list of all cs2 protobuf definitions.*

- **[gdc.eternar.dev](https://gdc.eternar.dev)**\
*A online gamedata tracker and validator, maintaining an active list for function signatures and offsets. If there's an game update that break your server, you might find the new gamedata here.*

- **[wiki.alliedmods.net](https://wiki.alliedmods.net/)**\
*Alliedmodders' wiki. You can find documentation about metamod, ambuild and sourcehook development here.*

- **[HL2SDK](https://github.com/alliedmodders/hl2sdk/tree/cs2)**\
*Actively maintained SDK for cs2.*

- **[HL2SDK Wend4r's fork](https://github.com/Wend4r/sourcesdk)**\
*A fork of hl2sdk, if there's a game update, you might find what have changed in here or in pull requests.*

- **[cstrike15_src](https://github.com/perilouswithadollarsign/cstrike15_src)**\
*CSGO Leaked source code in 2020, cs2 is still using some codes from it.*

- **[cs2.poggu.me](https://cs2.poggu.me/)**\
*A general information website made by poggu.*

- **[Source2ZE Map Porting Guide](https://docs.google.com/document/d/1buKzjP-2com9GcXVxCfyRBi6sDiKmzMoVy9RNbYQqIo)**\
*A guide about porting map from csgo, written by s2ze community.*

# Communities
- **[Alliedmodders Discord](https://discord.com/invite/HUc67zN)**\
*Official discord for alliedmodders, you can find discussions about metamod and sdk here.*

- **[Source2ZE Discord](https://discord.gg/QsSGf9ZEVs)**\
*Official discord for source2ze community, mainly targeting workshop developers, you can find discussions including maps, models and cs2fixes here.*

- **[CounterStrikeSharp Discord](https://discord.com/invite/eAZU3guKWU)**\
*Official discord for counterstrikesharp, you can find plugins, code snippets and development discussion here.*

- **[ModSharp Discord](https://discord.gg/wKarAjHm2G)**\
*Official discord for modsharp, which is a currently unreleased modding framework.*

- **[Swiftly Discord](https://discord.com/invite/Yv7hAM6erd)**\
*Official discord for swiftly, you can find swiftly plugins, code snippets, and discuss about swiftly modding framework here.*

- **[Plugify Discord](https://discord.gg/untrustedmodders)**\
*Official discord for plugify, you can find plugify plugins, code snippets, and discuss about plugify modding framework here.*

- **[bbs.csgocn.net](https://bbs.csgocn.net/)**\
*A Chinese forum for cs2 server development.*

- **[hlmod.net](https://hlmod.net/)**\
*A Russian forum for source games development.*

# Plugins

## Metamod Plugins

- **[Source2ZE/CS2Fixes](https://github.com/Source2ZE/CS2Fixes)**

⭐ 318

⏱️ updated 7 hours ago

*A plugin with tons of fixes and features aimed but not limited to zombie escape.*

- **[KZGlobalTeam/cs2kz-metamod](https://github.com/KZGlobalTeam/cs2kz-metamod)**

⭐ 157

⏱️ updated 3 days ago

*KZ plugin for cs2. WIP, not ready for release.*

- **[Source2ZE/MultiAddonManager](https://github.com/Source2ZE/MultiAddonManager)**

⭐ 105

⏱️ updated 1 week ago

*A plugin that allows you to use multiple workshop addons at once and have clients download them.*

- **[Salvatore-Als/cs2-fake-rcon](https://github.com/Salvatore-Als/cs2-fake-rcon)**

⭐ 54

⏱️ updated 1 week ago

*Fakercon adds the fake_rcon_password and fake_rcon commands because Valve has not integrated the original command into the game (or it is broken).*

- **[Source2ZE/CleanerCS2](https://github.com/Source2ZE/CleanerCS2)**

⭐ 53

⏱️ updated 2 weeks ago

*A simple plugin that allows you to filter out console prints with regular expressions.*

- **[Source2ZE/MovementUnlocker](https://github.com/Source2ZE/MovementUnlocker)**

⭐ 52

⏱️ updated 1 month ago

*A plugin that removes the max speed limitation from players on the ground, feels like CS:S. Useful for zombie knockback, several movement gamemodes, or just easier bhop.*

- **[Source2ZE/ServerListPlayersFix](https://github.com/Source2ZE/ServerListPlayersFix)**

⭐ 52

⏱️ updated 2 weeks ago

*Populates the user information inside the steam api, as a result this fixes the players not showing up in the server browser.*

- **[Source2ZE/CS2ServerGUI](https://github.com/Source2ZE/CS2ServerGUI)**

⭐ 48

⏱️ updated 2 weeks ago

*A plugin that shows entities, net messages, events and etc with a GUI.*

- **[Source2ZE/StripperCS2](https://github.com/Source2ZE/StripperCS2)**

⭐ 45

⏱️ updated 2 weeks ago

*A plugin that allows server operators to manage map lump data similarly to how Stripper:Source worked.*

- **[Cruze03/FakeRanks-RevealAll](https://github.com/Cruze03/FakeRanks-RevealAll)**

⭐ 42

⏱️ updated 3 weeks ago

*A metamod plugin that reveals ranks of all players in server for player who presses tab.*

- **[Interesting-exe/CS2Fixes-RampbugFix](https://github.com/Interesting-exe/CS2Fixes-RampbugFix)**

⭐ 29

⏱️ updated 1 day ago

*Minimizes rampbugs. This plugin isn't perfect and rampbugs will continue to occur until Valve decides to finally fix them.*

- **[Source2ZE/AcceleratorCS2](https://github.com/Source2ZE/AcceleratorCS2)**

⭐ 27

⏱️ updated 3 weeks ago

*A plugin that generate a crash dump when there's a crash.*

- **[samyycX/Audio](https://github.com/samyycX/Audio)**

⭐ 13

⏱️ updated 1 week ago

*A demo and a metamod lib to provide similar functions to the previous SM-Ext-Audio extension in csgo, that is, sending custom audio streams such as a song through a bot's voice chat.*

- **[GAMMACASE/Source2SchemaDumper](https://github.com/GAMMACASE/Source2SchemaDumper)**

⭐ 12

⏱️ updated 1 week ago

*A plugin that can dump the schemas and generate a header file.*

- **[Cruze03/GameBanFix](https://github.com/Cruze03/GameBanFix)**

⭐ 10

⏱️ updated 2 weeks ago

*Fixes issue where if a player with game ban joins, other players even without a ban are then unable to join.*

## CounterStrikeSharp Plugins

- **[shobhit-pathak/MatchZy](https://github.com/shobhit-pathak/MatchZy)**

⭐ 366

⏱️ updated 6 days ago

*MatchZy is a plugin for CS2 (Counter Strike 2) for running and managing practice/pugs/scrims/matches with easy configuration!*

- **[Nereziel/cs2-WeaponPaints](https://github.com/Nereziel/cs2-WeaponPaints)**

⭐ 313

⏱️ updated 2 weeks ago

*A plugin to change weapon paints, gloves, agents and etc.*

- **[B3none/cs2-retakes](https://github.com/B3none/cs2-retakes)**

⭐ 279

⏱️ updated 1 week ago

*CS2 implementation of retakes written in C# for CounterStrikeSharp. Based on the version for CS:GO by Splewis.*

- **[daffyyyy/CS2-SimpleAdmin](https://github.com/daffyyyy/CS2-SimpleAdmin)**

⭐ 149

⏱️ updated 1 week ago

*Manage your Counter-Strike 2 server with simple commands!*

- **[counterstrikesharp-panel/css-bans](https://github.com/counterstrikesharp-panel/css-bans)**

⭐ 128

⏱️ updated 2 months ago

*CSS-BANS is an admin web panel for Counter-Strike 2, powered by CounterStrikeSharp.*

- **[samyycX/CS2-PlayerModelChanger](https://github.com/samyycX/CS2-PlayerModelChanger)**

⭐ 106

⏱️ updated 1 day ago

*A cssharp plugin to change player models.*

- **[NockyCZ/CS2-Deathmatch](https://github.com/NockyCZ/CS2-Deathmatch)**

⭐ 102

⏱️ updated 3 weeks ago

*A plugin to implement deathmatch gamemode.*

- **[NiGHT757/AFKManager](https://github.com/NiGHT757/AFKManager)**

⭐ 71

⏱️ updated 5 days ago

*AFK Manager plugin for CS2 based on player-checker by sazonische from CS:GO.*

- **[partiusfabaa/cs2-VIPCore](https://github.com/partiusfabaa/cs2-VIPCore)**

⭐ 69

⏱️ updated 6 days ago

*A vip plugin for cs2.*

- **[schwarper/cs2-store](https://github.com/schwarper/cs2-store)**

⭐ 66

⏱️ updated 50 seconds ago

*A store plugin designed to enhance your gameplay by providing a dynamic credit system that allows players to purchase essential items directly from the store.*

- **[oqyh/cs2-Game-Manager-GoldKingZ](https://github.com/oqyh/cs2-Game-Manager-GoldKingZ)**

⭐ 60

⏱️ updated 3 months ago

*Block/Hide unnecessaries in game.*

- **[partiusfabaa/cs2-ranks](https://github.com/partiusfabaa/cs2-ranks)**

⭐ 59

⏱️ updated 3 weeks ago

*Each player is assigned a rank based on their accumulated experience points. Ranks range from "None" to the prestigious "The Global Elite."*

- **[B3none/cs2-instadefuse](https://github.com/B3none/cs2-instadefuse)**

⭐ 55

⏱️ updated 12 months ago

*A plugin that allows players to instantly defuse the bomb.*

- **[Lan2Play/PugSharp](https://github.com/Lan2Play/PugSharp)**

⭐ 54

⏱️ updated 1 week ago

*Pugsharp is a PUG System Plugin for CS2 based on the awesome CounterStrikeSharp by roflmuffin.*

- **[daffyyyy/CS2-Tags](https://github.com/daffyyyy/CS2-Tags)**

⭐ 53

⏱️ updated 1 year ago

*Adds tags to the server that can be easily edited, tags can be assigned via permission or steamid64.*

- **[Cruze03/FortniteEmotesNDances](https://github.com/Cruze03/FortniteEmotesNDances)**

⭐ 51

⏱️ updated 1 week ago

*This plugin allows players to use Emotes & Dances just like Fortnite.*

- **[KillStr3aK/ResourcePrecacher](https://github.com/KillStr3aK/ResourcePrecacher)**

⭐ 45

⏱️ updated 2 months ago

*This plugin can precache custom resources.*

- **[Oz-Lin/cs2-rockthevote](https://github.com/Oz-Lin/cs2-rockthevote)**

⭐ 43

⏱️ updated 2 weeks ago

*General purpose map voting plugin, started as a simple RTV and now has more features.*

- **[schwarper/cs2-tags](https://github.com/schwarper/cs2-tags)**

⭐ 41

⏱️ updated 3 weeks ago

*A tag plugin designed to enhance your CS2 experience with a dynamic tagging system. Customise and manage player tags effortlessly for a more interactive and engaging game environment.*

- **[schwarper/CS2MenuManager](https://github.com/schwarper/CS2MenuManager)**

⭐ 35

⏱️ updated 4 weeks ago

*CS2MenuManager is a modern, extensible and easy to use menu system for Counter-Strike 2 based on the CounterStrikeSharp library.*

- **[zwolof/cs2-executes](https://github.com/zwolof/cs2-executes)**

⭐ 32

⏱️ updated 2 days ago

*CS2 implementation of executes written in C# for CounterStrikeSharp. Based on the version for CS:GO by Splewis.*

- **[HvH-gg/CS2-Essentials](https://github.com/HvH-gg/CS2-Essentials)**

⭐ 29

⏱️ updated 2 weeks ago

*It includes basic features like reset score and rage quit as well as optional restrictions for weapons, friendly fire, rapid fire and other exploit/crash fixes.*

- **[ssypchenko/cs2-gungame](https://github.com/ssypchenko/cs2-gungame)**

⭐ 27

⏱️ updated 1 week ago

*GunGame is a gameplay plugin inspired by the SourceMode GunGame plugin.*

- **[oqyh/cs2-Connect-Disconnect-Sound-GoldKingZ](https://github.com/oqyh/cs2-Connect-Disconnect-Sound-GoldKingZ)**

⭐ 27

⏱️ updated 3 months ago

*Emit a sound when a player connects or disconnects.*

- **[R0mz1k/css-C4-Timer](https://github.com/R0mz1k/css-C4-Timer)**

⭐ 27

⏱️ updated 8 months ago

*This plugin adds countdown to c4 bomb explosion to your server.*

- **[darkerz7/EntWatchSharp](https://github.com/darkerz7/EntWatchSharp)**

⭐ 26

⏱️ updated 3 weeks ago

*Notify players about entity interactions.*

- **[oqyh/cs2-Chat-Logger-GoldKingZ](https://github.com/oqyh/cs2-Chat-Logger-GoldKingZ)**

⭐ 26

⏱️ updated 3 months ago

*Log chat to local/discord webhook/mysql/web server.*

- **[grrhn/ThirdPerson-WIP](https://github.com/grrhn/ThirdPerson-WIP)**

⭐ 23

⏱️ updated 7 months ago

*WIP ThirdPerson plugin for CS2 expect bugs.*

- **[schwarper/CS2TraceRay](https://github.com/schwarper/CS2TraceRay)**

⭐ 21

⏱️ updated 6 days ago

*A trace ray library developed for use in Counter Strike 2, in conjunction with the CounterStrikeSharp API. This enables the use of trace ray with TraceMask, Contents and skip enums.*

- **[qstage/CS2-HidePlayers](https://github.com/qstage/CS2-HidePlayers)**

⭐ 20

⏱️ updated 1 week ago

*Allows you to hide player models.*

- **[Cruze03/Clientprefs](https://github.com/Cruze03/Clientprefs)**

⭐ 19

⏱️ updated 2 weeks ago

*This plugin exposes some natives for developers to save player data to SQLite / MySQL without actually adding sql code to your plugin giving developers easy access to save player cookie to database.*

- **[KillStr3aK/CS2-AntiDLL](https://github.com/KillStr3aK/CS2-AntiDLL)**

⭐ 18

⏱️ updated 5 months ago

*This plugin is similar to the CS:GO version.*

- **[samyycX/CS2-SkyboxChanger](https://github.com/samyycX/CS2-SkyboxChanger)**

⭐ 17

⏱️ updated 3 weeks ago

*A plugin allow player to change their own skybox material, color and brightness on every map dynamically and seamlessly.*

- **[zakriamansoor47/SLAYER_Duel](https://github.com/zakriamansoor47/SLAYER_Duel)**

⭐ 16

⏱️ updated 3 days ago

*This plugin allows players to do 1vs1 duel.*

- **[phara1/advanced-ff-cs2](https://github.com/phara1/advanced-ff-cs2)**

⭐ 16

⏱️ updated 4 days ago

*This plugin implements advanced control of friendly fire.*

- **[qstage/CS2-FixRandomSpawn](https://github.com/qstage/CS2-FixRandomSpawn)**

⭐ 16

⏱️ updated 1 week ago

*Fixes convar `mp_randomspawn` for any game mode.*

- **[wiruwiru/AutomaticAds-CS2](https://github.com/wiruwiru/AutomaticAds-CS2)**

⭐ 16

⏱️ updated 1 week ago

*This plugin allows you to schedule and display announcements in the chat at customizable intervals. Each announcement is accompanied by a brief sound effect to capture players' attention seamlessly.*

- **[PhantomYopta/CS2_Speedometer](https://github.com/PhantomYopta/CS2_Speedometer)**

⭐ 16

⏱️ updated 1 year ago

*Just a speedometer for CS2.*

- **[schwarper/cs2-anticheat](https://github.com/schwarper/cs2-anticheat)**

⭐ 15

⏱️ updated 3 days ago

*cs2-anticheat is an anti-cheat system in development for CounterStrike 2.*

- **[HvH-gg/TeleportFix](https://github.com/HvH-gg/TeleportFix)**

⭐ 15

⏱️ updated 2 weeks ago

*CounterStrikeSharp plugin to fix the teleport/airstuck/crash exploit.*

- **[Cruze03/cs2_blockradiocommands](https://github.com/Cruze03/cs2_blockradiocommands)**

⭐ 15

⏱️ updated 1 year ago

*A CSSharp plugin to block all radio commands.*

- **[Quantor97/CS2-Kill-Plugin](https://github.com/Quantor97/CS2-Kill-Plugin)**

⭐ 14

⏱️ updated 1 year ago

*A simple kill plugin that allows players to suicide via chat by entering '!suicide' or '/suicide'.*

- **[K4ryuu/K4-AlwaysWeaponSkins](https://github.com/K4ryuu/K4-AlwaysWeaponSkins)**

⭐ 12

⏱️ updated 1 week ago

*This plugin enhances weapon skin visibility by ensuring your equipped Steam inventory skins are displayed consistently across both teams.*

- **[Kandru/cs2-update-manager](https://github.com/Kandru/cs2-update-manager)**

⭐ 12

⏱️ updated 3 weeks ago

*The Plugin Update Manager is a plugin for Counter-Strike 2 designed to automatically update all your other plugins.*

- **[T3Marius/T3Menu-API](https://github.com/T3Marius/T3Menu-API)**

⭐ 11

⏱️ updated 4 days ago

*T3Menu-API is a plugin created on counterstrikesharp with purpose of creating a better, refined menu controlled with player buttons.*

- **[HvH-gg/RapidFireFix](https://github.com/HvH-gg/RapidFireFix)**

⭐ 11

⏱️ updated 11 months ago

*CounterStrikeSharp plugin to handle rapid fire in CS2.*

- **[asapverneri/CS2-Playervotes](https://github.com/asapverneri/CS2-Playervotes)**

⭐ 11

⏱️ updated 3 weeks ago

*Lightweight and efficient voting system for CS2 without anything pointless, allowing players to initiate votes for kicking, banning, and muting players.*

- **[B3none/cs2-instaplant](https://github.com/B3none/cs2-instaplant)**

⭐ 11

⏱️ updated 1 year ago

*Plant the bomb instantly as a terrorist.*

- **[KKNecmi/ThirdPerson-Revamped](https://github.com/KKNecmi/ThirdPerson-Revamped)**

⭐ 10

⏱️ updated 1 week ago

*A modern, improved third-person camera plugin for Counter-Strike 2.*

- **[zakriamansoor47/SLAYER_AntiCamp](https://github.com/zakriamansoor47/SLAYER_AntiCamp)**

⭐ 9

⏱️ updated 4 months ago

*This plugin detect player who is camping for a specific time.*

- **[samyycX/CSSharpPatcher](https://github.com/samyycX/CSSharpPatcher)**

⭐ 9

⏱️ updated 2 weeks ago

*A plugin with various patches for cs2.*

- **[T3Marius/MVP-Anthem](https://github.com/T3Marius/MVP-Anthem)**

⭐ 9

⏱️ updated 1 week ago

*A plugin that add custom mvp sound to the game.*

- **[Kandru/cs2-roll-the-dice](https://github.com/Kandru/cs2-roll-the-dice)**

⭐ 9

⏱️ updated 2 weeks ago

*This plugin lets your players roll the dice each round (at any time during an round) to get either a positive or negative effect for the current round.*

- **[darkerz7/CS2-HideTeammates](https://github.com/darkerz7/CS2-HideTeammates)**

⭐ 8

⏱️ updated 1 week ago

*Hides Teammates on the entire map or distance.*

- **[Kandru/cs2-quake-sounds](https://github.com/Kandru/cs2-quake-sounds)**

⭐ 8

⏱️ updated 1 week ago

*This is a simple Quake Sound plugin for your server. It supports all types of sounds - only a workshop addon is necessesary.*

- **[Kandru/cs2-challenges](https://github.com/Kandru/cs2-challenges)**

⭐ 8

⏱️ updated 4 months ago

*This plugin allows you to create Challenges for players. Challenges are tasks that players need to complete within a certain time frame (e.g., daily, weekly, monthly).*

- **[zakriamansoor47/SLAYER_UnrestrictedFOV](https://github.com/zakriamansoor47/SLAYER_UnrestrictedFOV)**

⭐ 7

⏱️ updated 4 months ago

*This simple plugin allow players to change their FOV.*

- **[darkerz7/CS2-EntityFix](https://github.com/darkerz7/CS2-EntityFix)**

⭐ 7

⏱️ updated 3 weeks ago

*Fixes game_player_equip, game_ui, IgniteLifeTime, point_viewcontrol, trigger_gravity. Idea taken from cs2fixes.*

- **[Ferks-FK/CS2-TeamLimiter](https://github.com/Ferks-FK/CS2-TeamLimiter)**

⭐ 6

⏱️ updated 7 months ago

*This plugin allows you to set a maximum number of players in both teams. Useful for PUG/MIX or Retake mode servers.*

- **[zakriamansoor47/SLAYER_HeadshotOnly](https://github.com/zakriamansoor47/SLAYER_HeadshotOnly)**

⭐ 5

⏱️ updated 4 months ago

*This plugin enables headshot only to all players or enables headshot only on players themselves by using public command !hs.*

- **[zakriamansoor47/SLAYER_Noscope](https://github.com/zakriamansoor47/SLAYER_Noscope)**

⭐ 5

⏱️ updated 4 months ago

*This plugin disables scope of scope weapons like AWP, scout, etc.*

- **[Kandru/cs2-demo-recorder](https://github.com/Kandru/cs2-demo-recorder)**

⭐ 5

⏱️ updated 3 weeks ago

*This tool automatically start a recording whenever someone is on your server. It makes sure to stop the recording before the level is being changed.*

- **[asapverneri/CS2-Baninfo](https://github.com/asapverneri/CS2-Baninfo)**

⭐ 5

⏱️ updated 10 months ago

*Useful plugin that shows connected players ban & mute history in console.*

- **[asapverneri/CS2-ChatRelay](https://github.com/asapverneri/CS2-ChatRelay)**

⭐ 5

⏱️ updated 3 months ago

*Lightweight plugin to send your cs2 server chat messages to discord channel using webhook.*

- **[abnerfs/cs2-killfeed-filter](https://github.com/abnerfs/cs2-killfeed-filter)**

⭐ 5

⏱️ updated 1 year ago

*Show only your kills/assists/deaths in the killfeed, useful for DM servers where the killfeed has too much kills going on.*

- **[Austinbots/CS2-BotAI](https://github.com/Austinbots/CS2-BotAI)**

⭐ 5

⏱️ updated 3 days ago

*Improves the built in bots AI.*

- **[Interesting-exe/QuickDefuse](https://github.com/Interesting-exe/QuickDefuse)**

⭐ 4

⏱️ updated 11 months ago

*Guess a wire for a chance to instantly defuse the bomb.*

- **[asapverneri/CS2-BotQuotaManager](https://github.com/asapverneri/CS2-BotQuotaManager)**

⭐ 4

⏱️ updated 11 months ago

*This plugin handles bot_quota depending on playercount on the server.*

- **[zakriamansoor47/SLAYER_Revive](https://github.com/zakriamansoor47/SLAYER_Revive)**

⭐ 3

⏱️ updated 1 week ago

*Revive teammates with 'E' (+use button).*

- **[Letaryat/CS2-Poor-MapPropAds](https://github.com/Letaryat/CS2-Poor-MapPropAds)**

⭐ 3

⏱️ updated 6 days ago

*This plugin allows for server owners to create billboard type advertisements that are placed on wall.*

- **[M-archand/CS2FlashingHtmlHudFix](https://github.com/M-archand/CS2FlashingHtmlHudFix)**

⭐ 3

⏱️ updated 9 months ago

*A CS2 CS# Plugin that uses a workaround found by Poggu to make .PrintToCenterHTML not flash every second by setting.*

- **[darkerz7/CSSharp-Fixes](https://github.com/darkerz7/CSSharp-Fixes)**

⭐ 3

⏱️ updated 2 weeks ago

*CS#Fixes is a CounterStrikeSharp plugin that fixes some bugs in Counter-Strike 2 and adds some commonly requested features.*

- **[asapverneri/CS2-Gunsmenu](https://github.com/asapverneri/CS2-Gunsmenu)**

⭐ 3

⏱️ updated 3 weeks ago

*Up to date and lightweight gunmenu for CS2, allowing players to choose guns at any time of the round.*

- **[asapverneri/CS2-Legs](https://github.com/asapverneri/CS2-Legs)**

⭐ 3

⏱️ updated 12 months ago

*Simple plugin to disable lower body.*

- **[asapverneri/CS2-Clantags](https://github.com/asapverneri/CS2-Clantags)**

⭐ 3

⏱️ updated 2 months ago

*Extremely simple plugin to set admin/vip tag to scoreboard.*

- **[R0mz1k/CSS-Knockback](https://github.com/R0mz1k/CSS-Knockback)**

⭐ 3

⏱️ updated 1 year ago

*This plugin, when hit, repels the recipient of the damage.*

- **[Austinbots/cs2-Change-Map-Rotation-Using-Text-File](https://github.com/Austinbots/cs2-Change-Map-Rotation-Using-Text-File)**

⭐ 3

⏱️ updated 4 days ago

*It allows you to change the map rotation using a text file.*

- **[TICHOJEBEC-SK/cs2-WeaponRestrict](https://github.com/TICHOJEBEC-SK/cs2-WeaponRestrict)**

⭐ 2

⏱️ updated 1 week ago

*A plugin that lets you restrict weapons by rules.*

- **[asapverneri/CS2-ScoutzKnivez](https://github.com/asapverneri/CS2-ScoutzKnivez)**

⭐ 2

⏱️ updated 5 months ago

*This is a legendary gamemode made for CS2. It's in early state, but it should be pretty stable.*

- **[asapverneri/CS2-StaffList](https://github.com/asapverneri/CS2-StaffList)**

⭐ 2

⏱️ updated 11 months ago

*Simple plugin which show online admins in the server.*

- **[zakriamansoor47/SLAYER_1HitKill](https://github.com/zakriamansoor47/SLAYER_1HitKill)**

⭐ 2

⏱️ updated 4 months ago

*This simple plugin allows players to kill others in 1 Hit.*

- **[Dliix66/CS2-BotSlay](https://github.com/Dliix66/CS2-BotSlay)**

⭐ 2

⏱️ updated 1 year ago

*CSSharp plugin to slay all bots when the last player dies.*

- **[TICHOJEBEC-SK/cs2-WarnSystem](https://github.com/TICHOJEBEC-SK/cs2-WarnSystem)**

⭐ 1

⏱️ updated 5 days ago

*A plugin that allows admins to warn players.*

- **[asapverneri/CS2-ChatLogs](https://github.com/asapverneri/CS2-ChatLogs)**

⭐ 1

⏱️ updated 3 months ago

*Plugin that store chat messages to MySQL database.*

- **[Austinbots/cs2-BotsNoKnife](https://github.com/Austinbots/cs2-BotsNoKnife)**

⭐ 1

⏱️ updated 6 days ago

*Strips knife from bots.*

## Swiftly Plugins

- **[swiftly-solution/admins](https://github.com/swiftly-solution/admins)**

⭐ 4

⏱️ updated 5 months ago

*A simple plugin for swiftly that implements an admin system (core).*

- **[swiftly-solution/vip_modules](https://github.com/swiftly-solution/vip_modules)**

⭐ 4

⏱️ updated 4 months ago

*A repository containing all the VIP Modules created by Swiftly Solution for VIP Core.*

- **[swiftly-solution/vip-core](https://github.com/swiftly-solution/vip-core)**

⭐ 3

⏱️ updated 4 months ago

*A simple plugin for swiftly that acts like a core for vip.*

- **[swiftly-solution/ranks](https://github.com/swiftly-solution/ranks)**

⭐ 2

⏱️ updated 6 months ago

*A simple plugin for Swiftly that implements an Rank System.*

- **[swiftly-solution/tags](https://github.com/swiftly-solution/tags)**

⭐ 2

⏱️ updated 5 months ago

*A simple plugin for Swiftly that implements tags on chat/scoreboard.*

- **[swiftly-solution/faceit-level](https://github.com/swiftly-solution/faceit-level)**

⭐ 2

⏱️ updated 8 months ago

*A simple plugin for Swiftly that queries the level faceit of a player and add the icon on the scoreboard.*

- **[swiftly-solution/admins_basebans](https://github.com/swiftly-solution/admins_basebans)**

⭐ 1

⏱️ updated 5 months ago

*A simple plugin for Swiftly that implements a ban system.*

- **[swiftly-solution/admins_commands](https://github.com/swiftly-solution/admins_commands)**

⭐ 1

⏱️ updated 7 months ago

*A simple plugin for Swiftly that implements some base commands.*

- **[swiftly-solution/connection-filters](https://github.com/swiftly-solution/connection-filters)**

⭐ 1

⏱️ updated 4 months ago

*A simple plugin for Swiftly that filters the connection based on some settings.*

- **[swiftly-solution/steam-requirements](https://github.com/swiftly-solution/steam-requirements)**

⭐ 1

⏱️ updated 7 months ago

*A simple plugin for Swiftly that decides if a player can connect based on some requirements.*

- **[swiftly-solution/advertisements](https://github.com/swiftly-solution/advertisements)**

⭐ 1

⏱️ updated 8 months ago

*A simple plugin for Swiftly that implements an chat advertising system.*

- **[swiftly-solution/multi1v1](https://github.com/swiftly-solution/multi1v1)**

⭐ 1

⏱️ updated 8 months ago

*A simple plugin for Swiftly that implements an Arena System.*

- **[swiftly-solution/countryflags](https://github.com/swiftly-solution/countryflags)**

⭐ 1

⏱️ updated 11 months ago

*A plugin for Swiftly which puts country flags on the scoreboard.*

- **[swiftly-solution/remove_default_messages](https://github.com/swiftly-solution/remove_default_messages)**

⭐ 1

⏱️ updated 11 months ago

*A plugin for Swiftly that removes the default game messages.*

- **[swiftly-solution/admins_basecomms](https://github.com/swiftly-solution/admins_basecomms)**

⭐ 0

⏱️ updated 3 months ago

*A simple plugin for Swiftly that implements a comms system.*

- **[swiftly-solution/map-chooser](https://github.com/swiftly-solution/map-chooser)**

⭐ 0

⏱️ updated 2 months ago

*A simple plugin for Swiftly that implements a basic map voting system.*

- **[swiftly-solution/mostactive](https://github.com/swiftly-solution/mostactive)**

⭐ 0

⏱️ updated 6 months ago

*A simple plugin for Swiftly that saves the connected time of a player on server in database.*

- **[swiftly-solution/random-team-logo](https://github.com/swiftly-solution/random-team-logo)**

⭐ 0

⏱️ updated 6 months ago

*A simple plugin for Swiftly which chooses a random team logo on each map start.*

- **[swiftly-solution/hud](https://github.com/swiftly-solution/hud)**

⭐ 0

⏱️ updated 3 months ago

*A simple plugin for Swiftly that implements a basic Hud System.*

- **[swiftly-solution/deathmatch](https://github.com/swiftly-solution/deathmatch)**

⭐ 0

⏱️ updated 6 months ago

*A simple plugin for swiftly that implements the basic functionality of a Deathmatch/FFA server.*

- **[swiftly-solution/player-model-changer](https://github.com/swiftly-solution/player-model-changer)**

⭐ 0

⏱️ updated 6 months ago

*A simple plugin for Swiftly that implements a basic player model changing system.*

- **[swiftly-solution/auto-team-balance](https://github.com/swiftly-solution/auto-team-balance)**

⭐ 0

⏱️ updated 6 months ago

*A simple plugin for Swiftly that balances the teams.*

- **[swiftly-solution/shop-core](https://github.com/swiftly-solution/shop-core)**

⭐ 0

⏱️ updated 6 months ago

*A simple plugin for Swiftly that implements the core of the shop.*

- **[swiftly-solution/shop-modules](https://github.com/swiftly-solution/shop-modules)**

⭐ 0

⏱️ updated 6 months ago

*A repository containing all the Shop Modules created by Swiftly Solution for Shop Core.*

- **[swiftly-solution/damage-management](https://github.com/swiftly-solution/damage-management)**

⭐ 0

⏱️ updated 6 months ago

*A simple plugin for swiftly that changes the damage management to faceit-style.*

- **[swiftly-solution/discord-logs](https://github.com/swiftly-solution/discord-logs)**

⭐ 0

⏱️ updated 7 months ago

*A simple plugin for Swiftly that integrates basic discord logs.*

- **[swiftly-solution/pm](https://github.com/swiftly-solution/pm)**

⭐ 0

⏱️ updated 1 year ago

*A Swiftly plugin that allows players to send private messages.*

- **[swiftly-solution/joinleave](https://github.com/swiftly-solution/joinleave)**

⭐ 0

⏱️ updated 1 year ago

*A plugin for Swiftly that prints a message when a player connects on/disconnects from the server.*

- **[swiftly-solution/antiteamflash](https://github.com/swiftly-solution/antiteamflash)**

⭐ 0

⏱️ updated 1 year ago

*A simple plugin for Swiftly that removes the possibility to get flashed from other teammates.*

- **[swiftly-solution/resetscore](https://github.com/swiftly-solution/resetscore)**

⭐ 0

⏱️ updated 1 year ago

*A plugin for Swiftly that sets the stats from the tab to 0 to the player that used the !rs/!resetscore command.*

- **[swiftly-solution/connect-sounds](https://github.com/swiftly-solution/connect-sounds)**

⭐ 0

⏱️ updated 8 months ago

*A simple plugin for Swiftly that plays a sound when a player connects.*

- **[swiftly-solution/goldmember](https://github.com/swiftly-solution/goldmember)**

⭐ 0

⏱️ updated 8 months ago

*A plugin for Swiftly that gives benefits to players who has your server DNS in their name.*

- **[swiftly-solution/advanced-weapons](https://github.com/swiftly-solution/advanced-weapons)**

⭐ 0

⏱️ updated 11 months ago

*A plugin for Swiftly that changes the properties of any weapon.*

- **[swiftly-solution/removebodies](https://github.com/swiftly-solution/removebodies)**

⭐ 0

⏱️ updated 11 months ago

*A plugin for Swiftly that removes the dead bodies from the ground.*

- **[swiftly-solution/welcomemessages](https://github.com/swiftly-solution/welcomemessages)**

⭐ 0

⏱️ updated 1 year ago

*A simple plugin for Swiftly that prints a message to a player when he has connected on the server.*

# Contributors



1370533448

@1370533448


1Mack

@1Mack


2vg

@2vg


abnerfs

@abnerfs


actions-user

@actions-user




akappakappa

@akappakappa


akxcv

@akxcv


algorithm-developer

@algorithm-developer


AloneElxy

@AloneElxy


AlphaKeks

@AlphaKeks




amitelka

@amitelka


AmnesiaLemon

@AmnesiaLemon


AnshumanRohella

@AnshumanRohella


AntPGN

@AntPGN


Apfelwurm

@Apfelwurm




ar1a

@ar1a


asapverneri

@asapverneri


asensionacher

@asensionacher


audiomaster99

@audiomaster99


Austinbots

@Austinbots




B3none

@B3none


blu133721

@blu133721


BombFoolGranny

@BombFoolGranny


borzaka

@borzaka


brkvlr

@brkvlr




busheezy

@busheezy


CasaRica

@CasaRica


CeLicat

@CeLicat


characharm

@characharm


CharlesBarone

@CharlesBarone




Cherno-Beliy

@Cherno-Beliy


counterstrikesharp-panel

@counterstrikesharp-panel


crashzk

@crashzk


criskkky

@criskkky


Cruze03

@Cruze03




daffyyyy

@daffyyyy


darichey

@darichey


darkerz7

@darkerz7


DeadSwimek

@DeadSwimek


deafps

@deafps




DearCrazyLeaf

@DearCrazyLeaf


DeonduPreez

@DeonduPreez


dependabot[bot]

@dependabot[bot]


derkalle4

@derkalle4


devayee

@devayee




DizzyThermal

@DizzyThermal


Dliix66

@Dliix66


dollannn

@dollannn


dom1torii

@dom1torii


dr3fty

@dr3fty




Dying-Ducks

@Dying-Ducks


e-n-v-i

@e-n-v-i


e54385991

@e54385991


EasterLee

@EasterLee


ehwhattaugonnado

@ehwhattaugonnado




emilhaapalainen

@emilhaapalainen


eSTuuu

@eSTuuu


exababy

@exababy


exd02

@exd02


execut1ve

@execut1ve




exkludera

@exkludera


fabiosantoscode

@fabiosantoscode


FadelAlwan

@FadelAlwan


Faramour

@Faramour


Ferks-FK

@Ferks-FK




FlowingSPDG

@FlowingSPDG


fltuna

@fltuna


freakexeuLow

@freakexeuLow


Frozen-H2O

@Frozen-H2O


GabrielBigardi

@GabrielBigardi




GameChaos

@GameChaos


GAMMACASE

@GAMMACASE


Geekvcn

@Geekvcn


geison66

@geison66


GekasD

@GekasD




girlglock

@girlglock


github-actions[bot]

@github-actions[bot]


Gorakel

@Gorakel


grrhn

@grrhn


HerrMagiic

@HerrMagiic




Hichatu

@Hichatu


himenekocn

@himenekocn


hlyl

@hlyl


hobsRKM

@hobsRKM


HvH-gg

@HvH-gg




hzqst

@hzqst


idk1703

@idk1703


Iksix

@Iksix


ilyhalight

@ilyhalight


im6705

@im6705




imi-tat0r

@imi-tat0r


Interesting-exe

@Interesting-exe


invoker420

@invoker420


ipsvn

@ipsvn


Iwhite67

@Iwhite67




iwyo

@iwyo


JackJack3231

@JackJack3231


jakkekz

@jakkekz


jmgraeffe

@jmgraeffe


jonassjoh

@jonassjoh




Julienhqr

@Julienhqr


jvnipers

@jvnipers


jwsharpe

@jwsharpe


K4ryuu

@K4ryuu


Kandru

@Kandru




Katarina-E

@Katarina-E


KillerRoi

@KillerRoi


KillStr3aK

@KillStr3aK


KKNecmi

@KKNecmi


komashchenko

@komashchenko




kraigher

@kraigher


kralgorkem

@kralgorkem


Kroytz

@Kroytz


kus

@kus


Kxnrl

@Kxnrl




KZGlobalTeam

@KZGlobalTeam


laazzee

@laazzee


Lan2Play

@Lan2Play


lanslide-team

@lanslide-team


LaplaceTor

@LaplaceTor




Letaryat

@Letaryat


M-archand

@M-archand


m-arcuri

@m-arcuri


m3ntorsky

@m3ntorsky


mAa4a97

@mAa4a97




marqdevx

@marqdevx


mavproductions

@mavproductions


maxime1907

@maxime1907


MD-V

@MD-V


MerakW

@MerakW




Mesharsky

@Mesharsky


mihaigsm2003

@mihaigsm2003


milkywayfarer

@milkywayfarer


moongetsu

@moongetsu


moyogii

@moyogii




mrc4tt

@mrc4tt


MSWS

@MSWS


NaathySz

@NaathySz


Nereziel

@Nereziel


nicedayzhu

@nicedayzhu




NiGHT757

@NiGHT757


NikolaJyun

@NikolaJyun


NockyCZ

@NockyCZ


nokkvireyr

@nokkvireyr


notkoen

@notkoen




nry1337

@nry1337


Nubston

@Nubston


nuclearsilo583

@nuclearsilo583


NullVerdict

@NullVerdict


NYSHUN

@NYSHUN




o3LL

@o3LL


OniquirAK

@OniquirAK


oqyh

@oqyh


originalaidn

@originalaidn


oscar-wos

@oscar-wos




oylsister

@oylsister


Oz-Lin

@Oz-Lin


pandathebeasty

@pandathebeasty


panikajo

@panikajo


partiusfabaa

@partiusfabaa




pc-dongles

@pc-dongles


PhantomYopta

@PhantomYopta


phara1

@phara1


Poggicek

@Poggicek


poggicek

@poggicek




Prefix

@Prefix


qq410525209

@qq410525209


qstage

@qstage


Quantor97

@Quantor97


R0mz1k

@R0mz1k




rainstorm-9

@rainstorm-9


Ravid-A

@Ravid-A


razpbrry

@razpbrry


rcnoob

@rcnoob


rcon420

@rcon420




rdfortega

@rdfortega


ReneRebsdorf

@ReneRebsdorf


Riicesp

@Riicesp


rodopoulos1

@rodopoulos1


roflmuffin

@roflmuffin




roxyrekt

@roxyrekt


RoyZ-iwnl

@RoyZ-iwnl


rsKliPPy

@rsKliPPy


Salvatore-Als

@Salvatore-Als


samyycX

@samyycX




sapsanDev

@sapsanDev


sarim-hk

@sarim-hk


Satttoshi

@Satttoshi


ScchutzZ

@ScchutzZ


schwarper

@schwarper




shobhit-pathak

@shobhit-pathak


sirNugg3ts

@sirNugg3ts


skayee

@skayee


skuzzis

@skuzzis


sniperpl

@sniperpl




snorux

@snorux


snowhp

@snowhp


Source2ZE

@Source2ZE


sphaxa

@sphaxa


ssypchenko

@ssypchenko




st1ng2

@st1ng2


stefanx111

@stefanx111


Stimayk

@Stimayk


STONE-GPY

@STONE-GPY


swiftly-solution

@swiftly-solution




szogun1910

@szogun1910


T3Marius

@T3Marius


T3Marius-hub

@T3Marius-hub


tatuaua

@tatuaua


The0mikkel

@The0mikkel




thechrisnixon

@thechrisnixon


TheR00st3r

@TheR00st3r


ThunderClapZ

@ThunderClapZ


TICHOJEBEC-SK

@TICHOJEBEC-SK


tilgep

@tilgep




tiltysola

@tiltysola


Tsukasa-Nefren

@Tsukasa-Nefren


umbr1X

@umbr1X


UpkkXnet

@UpkkXnet


ValMadBox

@ValMadBox




Vauff

@Vauff


weblate

@weblate


webpashtet

@webpashtet


Wend4r

@Wend4r


wiruwiru

@wiruwiru




wjdrkfka3

@wjdrkfka3


wjsrnrgus33

@wjsrnrgus33


Wngui

@Wngui


xen-000

@xen-000


xLeviNx

@xLeviNx




y0ungsm

@y0ungsm


Yarukon

@Yarukon


Yeagorn

@Yeagorn


yonilerner

@yonilerner


zakriamansoor47

@zakriamansoor47




Zeisenx

@Zeisenx


zer0k-z

@zer0k-z


zhw1nq

@zhw1nq


ZMatu

@ZMatu


zwolof

@zwolof

# Contributing

## How to add plugins
You only need to add an entry in `manifests/xxx.json` and follow the same format as the other entries.

## Rules
- Plugin must be open source
- Plugin must be functioning
- Website must be non-profit

This project is a free and open-source project. We welcome any community resource websites/repositories/plugins as long as they follow the rules above, regardless of their popularity.\
Please feel free to submit pull requests or issues, we need your contributions!