From aa4b71b70f104e7ae0228026f08ffb2d57aad38f Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Sun, 29 Mar 2020 14:39:01 -0700 Subject: [PATCH] Who's Who: gain all other perks the player had --- README.md | 3 ++- _zm_reimagined.gsc | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2996ae0b..bfaec300 100644 --- a/README.md +++ b/README.md @@ -116,8 +116,9 @@ * Disabled suicide option when player is down ### Who's Who +* Gain all other perks the player had before going down when entering Who's Who mode * Revive twice as fast when in Who's Who mode -* No longer gives the player claymores in Who's Who mode if the player purchased claymores +* No longer gives the player claymores when entering Who's Who mode if the player purchased claymores ### Electric Cherry * Removed cooldown after being used multiple times in a row diff --git a/_zm_reimagined.gsc b/_zm_reimagined.gsc index f17e0bb6..f40a347a 100644 --- a/_zm_reimagined.gsc +++ b/_zm_reimagined.gsc @@ -4060,6 +4060,11 @@ whos_who_spawn_changes() self giveweapon("sticky_grenade_zm"); self setweaponammoclip("sticky_grenade_zm", 2); + foreach (perk in self.loadout.perks) + { + self maps/mp/zombies/_zm_perks::give_perk(perk); + } + self waittill("chugabud_effects_cleanup"); self.pers_upgrades_awarded["revive"] = 0;