diff --git a/README.md b/README.md index 4fa53df0..0e908707 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,9 @@ * Move faster while aiming * Decreased sprint recovery time +### Electric Cherry +* Removed cooldown after being used multiple times in a row + ## Powerups ### Carpenter diff --git a/_zm_reimagined.gsc b/_zm_reimagined.gsc index 1fed3c79..1d19731c 100644 --- a/_zm_reimagined.gsc +++ b/_zm_reimagined.gsc @@ -41,6 +41,8 @@ onplayerspawned() self thread on_equipment_placed(); self thread give_additional_perks(); + self thread electric_cherry_unlimited(); + self thread screecher_remove_hint(); self thread jetgun_fast_cooldown(); @@ -1061,6 +1063,19 @@ give_additional_perks() } } +electric_cherry_unlimited() +{ + self endon( "death" ); + self endon( "disconnect" ); + + for ( ;; ) + { + self.consecutive_electric_cherry_attacks = 0; + + wait 0.5; + } +} + zombie_health_fix() { for ( ;; )