A simple CounterStrikeSharp plugin that gives players a customizable speed boost when they fire specified weapons with optional VIP support and damage disabling features.
- Pushes players backward when firing specified weapons
- Custom per-weapon speed via config (
weapon_ak47:750
) - VIP-exclusive speeds (
weapon_awp:1000
for VIPs only) - Disable damage for selected weapons
- Configurable global default speed
- Live config reload via console command
- Customizable VIP flag (
@css/vip
by default)
- Download the plugin from the Releases section.
- Unzip the archive.
- Place the folder into:
addons/counterstrikesharp/plugins/
The config file is automatically created at:
addons/counterstrikesharp/configs/plugins/WeaponSpeed/WeaponSpeed.json
{
"WeaponSpeedForce": 700.0,
"EnablePlugin": true,
"WeaponList": [
"weapon_deagle:800",
"weapon_mp5sd:850"
],
"VipWeaponList": [
"weapon_taser:900",
"weapon_awp:1000"
],
"DisableDamageWeapons": [
"weapon_taser"
],
"EnableDamageControl": true,
"VipFlag": "@css/vip"
}
WeaponSpeedForce
: Default force if weapon-specific force not setEnablePlugin
: Enables/disables the plugin entirelyWeaponList
: Weapons and their force (e.g."weapon_deagle:800"
)VipWeaponList
: VIP-only weapons with speed boostDisableDamageWeapons
: Weapons that deal no damage when firedEnableDamageControl
: Enables the damage blocker for listed weaponsVipFlag
: Required flag for VIP speed boost (default:@css/vip
)
css_weaponspeed_reload_config
- Reloads the plugin configuration (requires @css/root permission)
Whenever a player fires a weapon listed in the config:
- They get launched backward based on the direction they're aiming.
- The launch force is either global (
WeaponSpeedForce
) or defined per-weapon (weapon_name:speed
). - If they are a VIP, they may get stronger launch effects depending on
VipWeaponList
.
- CounterStrikeSharp
- CS2 Server