diff --git a/README.md b/README.md index 3c390901..0b2dc474 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,9 @@ * Unlimited time to pick up Tombstone powerup * Disabled suicide option when player is down +### Who's Who +* Revive twice as fast when in Who's Who mode + ### Electric Cherry * Removed cooldown after being used multiple times in a row diff --git a/_zm_reimagined.gsc b/_zm_reimagined.gsc index d859ae19..bf1bc1fe 100644 --- a/_zm_reimagined.gsc +++ b/_zm_reimagined.gsc @@ -67,13 +67,15 @@ onplayerspawned() self thread jetgun_fast_spinlerp(); self thread jetgun_overheated_fix(); - self thread tombstone_save_perks(); - self thread tombstone_restore_perks(); - self thread additionalprimaryweapon_save_weapons(); self thread additionalprimaryweapon_restore_weapons(); 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 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() { self endon( "disconnect" );