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
35 lines
1.1 KiB
C++
35 lines
1.1 KiB
C++
class ACE_Module;
|
|
class ACE_ModuleExplosive: ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE";
|
|
displayName = CSTRING(Module_DisplayName);
|
|
function = QFUNC(module);
|
|
scope = 1;
|
|
isGlobal = 1;
|
|
isSingular = 1;
|
|
icon = QPATHTOF(UI\Icon_Module_Explosives_ca.paa);
|
|
class Arguments {
|
|
class RequireSpecialist {
|
|
displayName = CSTRING(RequireSpecialist_DisplayName);
|
|
description = CSTRING(RequireSpecialist_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 0;
|
|
};
|
|
class PunishNonSpecialists {
|
|
displayName = CSTRING(PunishNonSpecialists_DisplayName);
|
|
description = CSTRING(PunishNonSpecialists_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
class ExplodeOnDefuse {
|
|
displayName = CSTRING(ExplodeOnDefuse_DisplayName);
|
|
description = CSTRING(ExplodeOnDefuse_Description);
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(Module_Description);
|
|
};
|
|
};
|