1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-07 21:59:49 -05:00

Fixed backwards and strafe speeds

This commit is contained in:
Jbleezy 2020-02-13 22:43:45 -08:00
parent 9428ce9427
commit 9502ad7042
2 changed files with 11 additions and 1 deletions

View File

@ -14,6 +14,7 @@
## Players
* Unlimited sprint
* 100% backwards speed, strafe speed, and sprint strafe speed
## Zombies
* Health capped at 1 million
@ -33,7 +34,7 @@
### Sliquifier
* Kills on any round (normally stops killing after round 100)
* Removed additional goo being created by chain kills
* Removed additional goo created by chain kills
## Perks

View File

@ -34,6 +34,8 @@ onplayerspawned()
level thread post_all_players_spawned();
}
set_movement_dvars();
self setperk( "specialty_unlimitedsprint" );
self thread on_equipment_placed();
@ -107,6 +109,13 @@ post_all_players_spawned()
//level.power_local_doors_globally = 1;
}
set_movement_dvars()
{
setdvar( "player_backSpeedScale", 1 );
setdvar( "player_strafeSpeedScale", 1 );
setdvar( "player_sprintStrafeSpeedScale", 1 );
}
disable_high_round_walkers()
{
level.speed_change_round = undefined;