mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
cd30b09b4f
* Convert ACE_settings to CBA_settings * Run Modules Globaly, BWC for SetSetting * Add support for string settings * ACE_ServerSettings warning * Add handler for global setting being changed * Add deprecated and replaced not to Settings Framework doc * Remove options menu UI, Move Debug and HeadBug Fix to Options in Pause Menu * Change modules scope to 1 * Disable debug
56 lines
1.9 KiB
C++
56 lines
1.9 KiB
C++
class CfgVehicles {
|
|
class ACE_Module;
|
|
class GVAR(module): ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE_missionModules";
|
|
displayName = CSTRING(DisplayName);
|
|
function = QFUNC(moduleInit);
|
|
scope = 1;
|
|
isGlobal = 1;
|
|
isTriggerActivated = 0;
|
|
isDisposable = 0;
|
|
icon = QPATHTOF(UI\Icon_Module_Slideshow_ca.paa);
|
|
class Arguments {
|
|
class Objects {
|
|
displayName = CSTRING(Objects_DisplayName);
|
|
description = CSTRING(Objects_Description);
|
|
typeName = "STRING";
|
|
defaultValue = "";
|
|
};
|
|
class Controllers {
|
|
displayName = CSTRING(Controllers_DisplayName);
|
|
description = CSTRING(Controllers_Description);
|
|
typeName = "STRING";
|
|
defaultValue = "";
|
|
};
|
|
class Images {
|
|
displayName = CSTRING(Images_DisplayName);
|
|
description = CSTRING(Images_Description);
|
|
typeName = "STRING";
|
|
defaultValue = "";
|
|
};
|
|
class Names {
|
|
displayName = CSTRING(Names_DisplayName);
|
|
description = CSTRING(Names_Description);
|
|
typeName = "STRING";
|
|
defaultValue = "";
|
|
};
|
|
class SetName {
|
|
displayName = CSTRING(SetName_DisplayName);
|
|
description = CSTRING(SetName_Description);
|
|
typeName = "STRING";
|
|
defaultValue = "";
|
|
};
|
|
class Duration {
|
|
displayName = CSTRING(Duration_DisplayName);
|
|
description = CSTRING(Duration_Description);
|
|
typeName = "NUMBER";
|
|
defaultValue = 0;
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(Description);
|
|
};
|
|
};
|
|
};
|