init
This commit is contained in:
67
maps/mp/killstreaks/_teamammorefill.gsc
Normal file
67
maps/mp/killstreaks/_teamammorefill.gsc
Normal file
@ -0,0 +1,67 @@
|
||||
#include maps\mp\_utility;
|
||||
#include common_scripts\utility;
|
||||
|
||||
/*
|
||||
Team Ammo Refill Killstreak: when the player uses this, everyone on their team gets an ammo refill
|
||||
*/
|
||||
|
||||
init()
|
||||
{
|
||||
level.killStreakFuncs[ "team_ammo_refill" ] = ::tryUseTeamAmmoRefill;
|
||||
}
|
||||
|
||||
tryUseTeamAmmoRefill( lifeId )
|
||||
{
|
||||
result = self giveTeamAmmoRefill();
|
||||
if ( result )
|
||||
self maps\mp\_matchdata::logKillstreakEvent( "team_ammo_refill", self.origin );
|
||||
|
||||
return ( result );
|
||||
}
|
||||
|
||||
giveTeamAmmoRefill()
|
||||
{
|
||||
if( level.teambased )
|
||||
{
|
||||
foreach( teammate in level.players )
|
||||
{
|
||||
if( teammate.team == self.team )
|
||||
{
|
||||
teammate refillAmmo( true );
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
self refillAmmo( true );
|
||||
}
|
||||
|
||||
level thread teamPlayerCardSplash( "used_team_ammo_refill", self );
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
refillAmmo( refillEquipment )
|
||||
{
|
||||
weaponList = self GetWeaponsListAll();
|
||||
|
||||
if ( refillEquipment )
|
||||
{
|
||||
if ( self _hasPerk( "specialty_tacticalinsertion" ) && self getAmmoCount( "flare_mp" ) < 1 )
|
||||
self givePerkOffhand( "specialty_tacticalinsertion", false );
|
||||
}
|
||||
|
||||
foreach ( weaponName in weaponList )
|
||||
{
|
||||
if ( isSubStr( weaponName, "grenade" ) || ( GetSubStr( weaponName, 0, 2 ) == "gl" ) )
|
||||
{
|
||||
if ( !refillEquipment || self getAmmoCount( weaponName ) >= 1 )
|
||||
continue;
|
||||
}
|
||||
|
||||
self giveMaxAmmo( weaponName );
|
||||
}
|
||||
|
||||
self playLocalSound( "ammo_crate_use" );
|
||||
|
||||
}
|
Reference in New Issue
Block a user