mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-25 14:40:32 -05:00
Revive twice as fast in Who's Who mode
This commit is contained in:
@ -115,6 +115,9 @@
|
|||||||
* Unlimited time to pick up Tombstone powerup
|
* Unlimited time to pick up Tombstone powerup
|
||||||
* Disabled suicide option when player is down
|
* Disabled suicide option when player is down
|
||||||
|
|
||||||
|
### Who's Who
|
||||||
|
* Revive twice as fast when in Who's Who mode
|
||||||
|
|
||||||
### Electric Cherry
|
### Electric Cherry
|
||||||
* Removed cooldown after being used multiple times in a row
|
* Removed cooldown after being used multiple times in a row
|
||||||
|
|
||||||
|
@ -67,13 +67,15 @@ onplayerspawned()
|
|||||||
self thread jetgun_fast_spinlerp();
|
self thread jetgun_fast_spinlerp();
|
||||||
self thread jetgun_overheated_fix();
|
self thread jetgun_overheated_fix();
|
||||||
|
|
||||||
self thread tombstone_save_perks();
|
|
||||||
self thread tombstone_restore_perks();
|
|
||||||
|
|
||||||
self thread additionalprimaryweapon_save_weapons();
|
self thread additionalprimaryweapon_save_weapons();
|
||||||
self thread additionalprimaryweapon_restore_weapons();
|
self thread additionalprimaryweapon_restore_weapons();
|
||||||
self thread additionalprimaryweapon_indicator();
|
self thread additionalprimaryweapon_indicator();
|
||||||
|
|
||||||
|
self thread tombstone_save_perks();
|
||||||
|
self thread tombstone_restore_perks();
|
||||||
|
|
||||||
|
self thread whos_who_fast_revive();
|
||||||
|
|
||||||
self thread electric_cherry_unlimited();
|
self thread electric_cherry_unlimited();
|
||||||
|
|
||||||
self thread vulture_disable_stink_while_standing();
|
self thread vulture_disable_stink_while_standing();
|
||||||
@ -3981,6 +3983,22 @@ additionalprimaryweapon_indicator()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
whos_who_fast_revive()
|
||||||
|
{
|
||||||
|
self endon( "disconnect" );
|
||||||
|
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
self waittill("fake_revive");
|
||||||
|
|
||||||
|
self.pers_upgrades_awarded["revive"] = 1;
|
||||||
|
|
||||||
|
self waittill("chugabud_effects_cleanup");
|
||||||
|
|
||||||
|
self.pers_upgrades_awarded["revive"] = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
electric_cherry_unlimited()
|
electric_cherry_unlimited()
|
||||||
{
|
{
|
||||||
self endon( "disconnect" );
|
self endon( "disconnect" );
|
||||||
|
Reference in New Issue
Block a user