2016-07-14 14:16:53 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class Sound;
|
2017-07-08 14:52:25 +00:00
|
|
|
class GVAR(Sound_low): Sound {
|
2016-07-14 14:16:53 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
_generalMacro = QGVAR(Sound);
|
|
|
|
scope = 1;
|
2017-07-08 14:52:25 +00:00
|
|
|
sound = QGVAR(CookOff_low);
|
|
|
|
};
|
|
|
|
class GVAR(Sound_mid): GVAR(Sound_low) {
|
|
|
|
sound = QGVAR(CookOff_mid);
|
|
|
|
};
|
|
|
|
class GVAR(Sound_high): GVAR(Sound_low) {
|
|
|
|
sound = QGVAR(CookOff_high);
|
2016-07-14 14:16:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Tank;
|
|
|
|
class Tank_F: Tank {
|
2016-10-28 20:10:40 +00:00
|
|
|
GVAR(cookoffSelections)[] = {"poklop_gunner","poklop_commander"};
|
2016-07-14 14:16:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class Car_F;
|
|
|
|
class Wheeled_APC_F: Car_F {
|
|
|
|
GVAR(cookoffSelections)[] = {"poklop_gunner","poklop_commander"};
|
|
|
|
|
2024-06-05 19:36:39 +00:00
|
|
|
// Big explosions for wheeled APCs (same as for tanks)
|
2016-07-14 14:16:53 +00:00
|
|
|
explosionEffect = "FuelExplosionBig";
|
|
|
|
};
|
|
|
|
};
|