1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-19 03:28:38 -05:00
Files
BO2-Reimagined/scripts/zm/replaced/_zm_perks.gsc
Jbleezy 80e7dce5a5 EMP Grenade: remove laugh sound from EMP'ing Pack-a-Punch
Pack-a-Punch weapon is deleted instantly when EMP'd
2022-01-07 04:36:48 -08:00

26 lines
477 B
Plaintext

#include maps\mp\_utility;
#include common_scripts\utility;
#include maps\mp\zombies\_zm_utility;
perk_pause( perk )
{
// disabled
}
destroy_weapon_in_blackout( player )
{
self endon( "pap_timeout" );
self endon( "pap_taken" );
self endon( "pap_player_disconnected" );
level waittill( "Pack_A_Punch_off" );
if ( isDefined( self.worldgun ) )
{
if ( isDefined( self.worldgun.worldgundw ) )
{
self.worldgun.worldgundw delete();
}
self.worldgun delete();
}
}