How do I make it so only one person can get a wonderweapon out of the box instead of everyone (for example thundergun). This is the case with the wunderwaffe but not with custom wonderweapons does anybody know how to change this?
How do I make it so only one person can get a wonderweapon out of the box instead of everyone (for example thundergun). This is the case with the wunderwaffe but not with custom wonderweapons does anybody know how to change this?
if(level.script != "nazi_zombie_prototype") { Precachemodel("zombie_teddybear"); } // ONLY 1 OF THE BELOW SHOULD BE ALLOWED add_limited_weapon( "m2_flamethrower_zombie", 1 ); add_limited_weapon( "tesla_gun", 1); }
and then under add_limited_weapon("tesla_gun", 1 ); add the weapon(s) that you want only 1 person can get out of the box.
if(level.script != "nazi_zombie_prototype") { Precachemodel("zombie_teddybear"); } // ONLY 1 OF THE BELOW SHOULD BE ALLOWED add_limited_weapon( "m2_flamethrower_zombie", 1 ); add_limited_weapon( "tesla_gun", 1); }
and then under add_limited_weapon("tesla_gun", 1 ); add the weapon(s) that you want only 1 person can get out of the box.