From c378705963e0220f904c095f39027796f2cf4fe8 Mon Sep 17 00:00:00 2001 From: FutureRave Date: Tue, 28 Sep 2021 21:35:15 +0100 Subject: [PATCH] Okay --- _inf_alive_rewards.gsc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/_inf_alive_rewards.gsc b/_inf_alive_rewards.gsc index 43fe5d1..344b5e7 100644 --- a/_inf_alive_rewards.gsc +++ b/_inf_alive_rewards.gsc @@ -29,15 +29,15 @@ onConnect() monitorForRewards() { - self endon( "disconnect" ); - level endon( "game_ended" ); - for ( ;; ) - { - self waittill( "killed_enemy" ); - if ( self.sessionteam == "axis" ) return; // It's infected. Once your team is axis you are done for the game - count = self.kills; - switch( count ) - { + self endon( "disconnect" ); + level endon( "game_ended" ); + for ( ;; ) + { + self waittill( "killed_enemy" ); + if ( self.sessionteam == "axis" ) return; // It's infected. Once your team is axis you are done for the game + count = self.kills; + switch( count ) + { case 1: self scripts\_inf_utils::playLeaderDialog( "kill_confirmed" ); level thread dropAmmo( self ); @@ -67,7 +67,7 @@ monitorForRewards() level thread maps\mp\killstreaks\_airdrop::dropNuke( self.origin, self, "nuke_drop" ); break; } - } + } } dropAmmo( owner )