CS2 implementation of double jump plugin written in C# for CounterStrikeSharp. Based on the version for CS:GO by FoxSerito.
- Enabling\disabling mod via
dj
command - Setting jump counts via config or
dj_count
command - Setting jump velocity via config or
dj_velocity
command
The configuration file can be found at the following path: addons\counterstrikesharp\configs\plugins\DoubleJumpCS2\DoubleJumpCS2.json
{
"JumpsCount": 2,
"Velocity": 250.0,
"AllowInstantJump": true,
"RequiredPermission": "@css/vip"
}
- JumpsCount: Specifies the maximum number of consecutive jumps allowed.
- Velocity: Sets the velocity of the double jump.
- AllowInstantJump: Determines whether instant double jumps are allowed. When set to
false
, the next jump can only be performed when the player has started falling. - RequiredPermission: Specifies the required permission level for using the double jump feature. If both is empty, all players are granted access.
- Download the zip file from the latest release, and extract the contents into your
counterstrikesharp/plugins
directory.
If you appreciate the project then please take the time to star the repository 🙏
This was inspired by the CS:GO DoubleJump written by FoxSerito.