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-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_MissionModules_AmbianceSounds_DisplayName";
|
2015-04-06 16:22:43 +00:00
|
|
|
icon = QUOTE(PATHTOF(UI\Icon_Module_Ambient_Sounds_ca.paa));
|
|
|
|
category = "ACE_missionModules";
|
|
|
|
function = QUOTE(FUNC(moduleAmbianceSound));
|
|
|
|
functionPriority = 1;
|
|
|
|
isGlobal = 1;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
author = "$STR_ACE_Common_ACETeam";
|
|
|
|
class Arguments {
|
|
|
|
class soundFiles {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_MissionModules_AmbianceSounds_soundFiles_DisplayName";
|
|
|
|
description = "$STR_ACE_MissionModules_AmbianceSounds_soundFiles_Description";
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "STRING";
|
|
|
|
defaultValue = "";
|
|
|
|
};
|
|
|
|
class minimalDistance {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_MissionModules_AmbianceSounds_minimalDistance_DisplayName";
|
|
|
|
description = "$STR_ACE_MissionModules_AmbianceSounds_minimalDistance_Description";
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 400;
|
|
|
|
};
|
|
|
|
class maximalDistance {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_MissionModules_AmbianceSounds_maximalDistance_DisplayName";
|
|
|
|
description = "$STR_ACE_MissionModules_AmbianceSounds_maximalDistance_Description";
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 900;
|
|
|
|
};
|
|
|
|
class minimalDelay {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_MissionModules_AmbianceSounds_minimalDelay_DisplayName";
|
|
|
|
description = "$STR_ACE_MissionModules_AmbianceSounds_minimalDelay_Description";
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 10;
|
|
|
|
};
|
|
|
|
class maximalDelay {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_MissionModules_AmbianceSounds_maximalDelay_DisplayName";
|
|
|
|
description = "$STR_ACE_MissionModules_AmbianceSounds_maximalDelay_Description";
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 170;
|
|
|
|
};
|
|
|
|
class followPlayers {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_MissionModules_AmbianceSounds_followPlayers_DisplayName";
|
|
|
|
description = "$STR_ACE_MissionModules_AmbianceSounds_followPlayers_Description";
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "BOOL";
|
|
|
|
defaultValue = 0;
|
|
|
|
};
|
|
|
|
class soundVolume {
|
2015-05-11 22:24:12 +00:00
|
|
|
displayName = "$STR_ACE_MissionModules_AmbianceSounds_soundVolume_DisplayName";
|
|
|
|
description = "$STR_ACE_MissionModules_AmbianceSounds_soundVolume_Description";
|
2015-04-06 16:22:43 +00:00
|
|
|
typeName = "NUMBER";
|
|
|
|
defaultValue = 1;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
class ModuleDescription {
|
2015-05-11 22:24:12 +00:00
|
|
|
description = "$STR_ACE_MissionModules_AmbianceSounds_Description";
|
2015-04-06 16:22:43 +00:00
|
|
|
sync[] = {};
|
|
|
|
};
|
|
|
|
};
|
2015-05-11 22:24:12 +00:00
|
|
|
};
|