From 6a7a59363e8a946387d9c8ed0c51d94f9811261d Mon Sep 17 00:00:00 2001 From: Jbleezy Date: Sun, 16 Feb 2020 02:25:16 -0800 Subject: [PATCH] Added fasttoss and sprintrecovery perks --- README.md | 2 ++ _zm_reimagined.gsc | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index f589e83f..91863cb7 100644 --- a/README.md +++ b/README.md @@ -42,9 +42,11 @@ ### Speed Cola * Aim twice as fast * Switch weapons twice as fast +* Throw grenades twice as fast ### Deadshot * Move faster while aiming +* Decreased sprint recovery time ## Powerups diff --git a/_zm_reimagined.gsc b/_zm_reimagined.gsc index fcb8efea..56ad4fd1 100644 --- a/_zm_reimagined.gsc +++ b/_zm_reimagined.gsc @@ -826,20 +826,24 @@ give_additional_perks() { self SetPerk("specialty_fastads"); self SetPerk("specialty_fastweaponswitch"); + self Setperk( "specialty_fasttoss" ); } else { self UnsetPerk("specialty_fastads"); self UnsetPerk("specialty_fastweaponswitch"); + self Unsetperk( "specialty_fasttoss" ); } if (self HasPerk("specialty_deadshot")) { self SetPerk("specialty_stalker"); + self Setperk( "specialty_sprintrecovery" ); } else { self UnsetPerk("specialty_stalker"); + self Unsetperk( "specialty_sprintrecovery" ); } } }