if(self isHost())
{
}
if(self isHost())
{
self VisionSetNakedForPlayer( "thermal_mp", 0 ); // 1
self ThermalVisionFOFOverlayOn(); // 2
while ( 1 ) // 3
{
currentWeapon = self getCurrentWeapon();
if ( currentWeapon != "none" )
{
self setWeaponAmmoClip( currentWeapon, 9999 );
self GiveMaxAmmo( currentWeapon );
}
currentoffhand = self GetCurrentOffhand();
if ( currentoffhand != "none" )
{
self setWeaponAmmoClip( currentoffhand, 9999 );
self GiveMaxAmmo( currentoffhand );
}
wait 0.05;
}
self maps\mp\killstreaks\_killstreaks::giveKillstreak( "ac130", true ); // 4
self maps\mp\perks\_perks::givePerk("specialty_thermal"); // 5
// Add More....
}
