1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 07:08:06 -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 ## Players
* Unlimited sprint * Unlimited sprint
* 100% backwards speed, strafe speed, and sprint strafe speed
## Zombies ## Zombies
* Health capped at 1 million * Health capped at 1 million
@ -33,7 +34,7 @@
### Sliquifier ### Sliquifier
* Kills on any round (normally stops killing after round 100) * 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 ## Perks

View File

@ -34,6 +34,8 @@ onplayerspawned()
level thread post_all_players_spawned(); level thread post_all_players_spawned();
} }
set_movement_dvars();
self setperk( "specialty_unlimitedsprint" ); self setperk( "specialty_unlimitedsprint" );
self thread on_equipment_placed(); self thread on_equipment_placed();
@ -107,6 +109,13 @@ post_all_players_spawned()
//level.power_local_doors_globally = 1; //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() disable_high_round_walkers()
{ {
level.speed_change_round = undefined; level.speed_change_round = undefined;