From 7e61473b7660de9b8398df19ebf963d869b8a1c5 Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Sun, 29 Mar 2020 02:10:50 -0700 Subject: [PATCH] Who's Who: no longer gives claymores --- README.md | 1 + _zm_reimagined.gsc | 9 +++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0b2dc474..2996ae0b 100644 --- a/README.md +++ b/README.md @@ -117,6 +117,7 @@ ### Who's Who * 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 ### Electric Cherry * Removed cooldown after being used multiple times in a row diff --git a/_zm_reimagined.gsc b/_zm_reimagined.gsc index bf1bc1fe..f4d0385f 100644 --- a/_zm_reimagined.gsc +++ b/_zm_reimagined.gsc @@ -74,7 +74,7 @@ onplayerspawned() self thread tombstone_save_perks(); self thread tombstone_restore_perks(); - self thread whos_who_fast_revive(); + self thread whos_who_spawn_changes(); self thread electric_cherry_unlimited(); @@ -3983,7 +3983,7 @@ additionalprimaryweapon_indicator() } } -whos_who_fast_revive() +whos_who_spawn_changes() { self endon( "disconnect" ); @@ -3993,6 +3993,11 @@ whos_who_fast_revive() self.pers_upgrades_awarded["revive"] = 1; + self takeweapon("frag_grenade_zm"); + self takeweapon("claymore_zm"); + self giveweapon("sticky_grenade_zm"); + self setweaponammoclip("sticky_grenade_zm", 2); + self waittill("chugabud_effects_cleanup"); self.pers_upgrades_awarded["revive"] = 0;