2015-02-17 06:51:51 +00:00
|
|
|
class CfgVehicles {
|
2015-04-06 16:22:43 +00:00
|
|
|
class Logic;
|
|
|
|
class Module_F: Logic {
|
|
|
|
class ArgumentsBaseUnits {
|
|
|
|
};
|
|
|
|
};
|
2015-02-17 06:51:51 +00:00
|
|
|
|
2015-04-06 16:22:43 +00:00
|
|
|
// TODO make a curator variant for this
|
|
|
|
class ACE_moduleAmbianceSound: Module_F {
|
|
|
|
scope = 2;
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AmbianceSounds_DisplayName);
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\Icon_Module_Ambient_Sounds_ca.paa);
|
2015-04-06 16:22:43 +00:00
|
|
|
category = "ACE_missionModules";
|
2016-04-08 18:43:26 +00:00
|
|
|
function = QFUNC(moduleAmbianceSound);
|
2015-04-06 16:22:43 +00:00
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
|
|
|
isTriggerActivated = 0;
|
2015-05-27 20:04:41 +00:00
|
|
|
author = ECSTRING(common,ACETeam);
|
2015-04-06 16:22:43 +00:00
|
|
|
class Arguments {
|
|
|
|
class soundFiles {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AmbianceSounds_soundFiles_DisplayName);
|
|
|
|
description = CSTRING(AmbianceSounds_soundFiles_Description);
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "STRING";
|
|
|
|
defaultValue = "";
|
|
|
|
};
|
|
|
|
class minimalDistance {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AmbianceSounds_minimalDistance_DisplayName);
|
|
|
|
description = CSTRING(AmbianceSounds_minimalDistance_Description);
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 400;
|
|
|
|
};
|
|
|
|
class maximalDistance {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AmbianceSounds_maximalDistance_DisplayName);
|
|
|
|
description = CSTRING(AmbianceSounds_maximalDistance_Description);
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 900;
|
|
|
|
};
|
|
|
|
class minimalDelay {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AmbianceSounds_minimalDelay_DisplayName);
|
|
|
|
description = CSTRING(AmbianceSounds_minimalDelay_Description);
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 10;
|
|
|
|
};
|
|
|
|
class maximalDelay {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AmbianceSounds_maximalDelay_DisplayName);
|
|
|
|
description = CSTRING(AmbianceSounds_maximalDelay_Description);
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 170;
|
|
|
|
};
|
|
|
|
class followPlayers {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AmbianceSounds_followPlayers_DisplayName);
|
|
|
|
description = CSTRING(AmbianceSounds_followPlayers_Description);
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
class soundVolume {
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AmbianceSounds_soundVolume_DisplayName);
|
|
|
|
description = CSTRING(AmbianceSounds_soundVolume_Description);
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ModuleDescription {
|
2015-05-27 17:04:25 +00:00
|
|
|
description = CSTRING(AmbianceSounds_Description);
|
2015-04-06 16:22:43 +00:00
|
|
|
sync[] = {};
|
|
|
|
};
|
|
|
|
};
|
2021-10-30 21:42:03 +00:00
|
|
|
};
|