GrenadeInfo is a fun Counter-Strike 2 plugin that tracks your grenade statistics and provides feedback on your utility usage. Whether you're curious about how many enemies you've blinded with flashbangs or want to see who throws the most grenades each round, this plugin adds an entertaining layer of information to your gameplay.
The plugin shows real-time notifications when you blind players, deal grenade damage, or accidentally flash teammates. At the end of each round, players can see their personal grenade statistics and check out a simple leaderboard highlighting the top performers. It's a lighthearted way to learn about your grenade habits and maybe discover some areas for improvement along the way.
- Statistics Tracking: See how many enemies you've blinded, grenades thrown, and damage dealt
- Real-Time Notifications: Get instant chat messages when you blind someone or deal grenade damage
- Round Leaderboards: Simple end-of-round summary showing the top 3 grenade users
- Mistake Alerts: Friendly reminders when you accidentally flash teammates or hurt yourself
- Chat Commands: Use
!gstatsto see your stats and!topgfor the leaderboard - Easy Configuration: Customize which features you want enabled through a simple config file
- Download and extract the latest release from the GitHub releases page.
- Move the "GrenadeInfo" folder to the
/addons/counterstrikesharp/plugins/directory. - Restart the server.
Updating is even easier: simply overwrite all plugin files and they will be reloaded automatically. To automate updates please use our CS2 Update Manager.
This plugin automatically creates a readable JSON configuration file. This configuration file can be found in /addons/counterstrikesharp/configs/plugins/GrenadeInfo/GrenadeInfo.json.
{
"enabled": true,
"debug": false,
"command_toplist": "topg",
"command_personal_stats": "gstats",
"info_message_limit": 6,
"show_top_player_stats_on_round_end": true,
"show_personal_stats_on_round_end": true,
"show_flashevents_instantly": true,
"show_grenade_damage_instantly": true,
"ConfigVersion": 1
}Whether or not the plug-in is enabled.
Enables the debug mode. Only useful during development or if requested by the plug-in author.
The command players can execute to show the toplist during gameplay. Defaults to !topg and can be emptied to disable this command.
Shows the personal stats to the player. Defaults to !gstats and can be emptied to disable this command.
Amount of messages to display for the personal stats. Each message is one thing a player has achieved with grenades.
Whether or not to show the player stats on round end.
Whether or not to show personal stats on round end.
Whether or not to show flashbang events in realtime for all involved players in chat.
Whether or not to show grenade damage in realtime for all involved players in chat.
Reload of the configuration file during runtime without reloading the plug-in.
Shows the top grenade players of the current round in chat.
Shows the players personal grenade statistic of the current round in chat.
Clone the project:
git clone https://github.com/Kandru/cs2-grenade-info.gitGo to the project directory
cd cs2-grenade-infoInstall dependencies
dotnet restoreBuild debug files (to use on a development game server)
dotnet buildBuild release files (to use on a production game server)
dotnet publishTODO

