1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 23:27:57 -05:00

Who's Who adjustments

Who's Who: spawn facing towards the clone when entering Who's Who mode
Who's Who: no longer revive twice as fast in Who's Who mode
This commit is contained in:
Jbleezy
2023-04-21 20:55:51 -07:00
parent 4f001e9e59
commit d6bea06c4e
3 changed files with 21 additions and 18 deletions

View File

@ -55,7 +55,7 @@
* Removed blur when getting damaged
* Removed shellshock from explosive damage
* No longer killed when landing on top of another player
* Ignored by enemies for 1 second after being revived
* Ignored by zombies for 1 second after being revived
* Weapon is no longer switched after reviving if player switched weapons during revive
* No longer gain points back on self revives
* Respawn near random player (normally respawns near the same player every time)
@ -226,8 +226,8 @@
* Decreased last stand ammo from 3 clips to 1 clip
### Jet Gun
* Kills multiple enemies significantly faster
* Kills enemies that are in the ground, traversing, or behind barriers
* Kills multiple zombies significantly faster
* Kills zombies that are in the ground, traversing, or behind barriers
* Awards points for kills
* Cools down twice as fast
* Cools down while not holding weapon
@ -354,15 +354,16 @@
### Who's Who
* Keep weapons when entering Who's Who mode
* Spawn facing towards the clone when entering Who's Who mode
* Keep any perks obtained in Who's Who mode when exiting Who's Who mode
* Revive twice as fast in Who's Who mode
* Decreased Who's Who mode duration from 45 seconds to 30 seconds
* Self revives in solo always activate during Who's Who mode
* Ignored by zombies for 1 second after entering Who's Who mode
* Invulnerable for 2 seconds after entering and exiting Who's Who mode
* Controls are frozen for 0.5 seconds after exiting Who's Who mode
* Controls are frozen for 0.5 seconds after entering and exiting Who's Who mode
* Purchasing Who's Who in Who's Who mode no longer destroys the clone
* Downing with Who's Who in Who's Who mode destroys the clone
* Added Who's Who mode duration on HUD
* Added Who's Who mode duration bar on HUD
* Changed revive waypoint icon to Who's Who perk icon
* Revive waypoint shows offscreen

View File

@ -136,22 +136,29 @@ chugabud_fake_revive()
level.chugabud_force_player_position = undefined;
}
self setorigin( spawnpoint.origin );
self setplayerangles( spawnpoint.angles );
playsoundatposition( "evt_ww_appear", spawnpoint.origin );
playfx( level._effect["chugabud_revive_fx"], spawnpoint.origin );
self allowstand( 1 );
self allowcrouch( 1 );
self allowprone( 1 );
self.ignoreme = 0;
self setstance( "stand" );
self freezecontrols( 0 );
self chugabud_give_loadout();
self seteverhadweaponall( 1 );
self.score = self.loadout.score;
self.pers["score"] = self.loadout.score;
wait 2;
self setorigin( spawnpoint.origin );
self setplayerangles( spawnpoint.angles );
playsoundatposition( "evt_ww_appear", spawnpoint.origin );
playfx( level._effect["chugabud_revive_fx"], spawnpoint.origin );
wait 0.5;
self freezecontrols( 0 );
wait 0.5;
self.ignoreme = 0;
wait 1;
self disableinvulnerability();
}

View File

@ -29,11 +29,6 @@ revive_do_revive( playerbeingrevived, revivergun )
revivetime *= 0.5;
}
if ( isdefined( self.e_chugabud_corpse ) )
{
revivetime *= 0.5;
}
timer = 0;
revived = 0;
playerbeingrevived.revivetrigger.beingrevived = 1;