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
38 lines
1.2 KiB
C++
38 lines
1.2 KiB
C++
class CfgVehicles {
|
|
class ACE_Module;
|
|
class GVAR(module): ACE_Module {
|
|
author = ECSTRING(common,ACETeam);
|
|
category = "ACE";
|
|
displayName = CSTRING(Category);
|
|
function = QFUNC(moduleInit);
|
|
scope = 1;
|
|
isGlobal = 1;
|
|
isTriggerActivated = 0;
|
|
isDisposable = 0;
|
|
icon = "a3\ui_f\data\IGUI\Cfg\Actions\Obsolete\ui_action_getin_ca.paa";
|
|
class Arguments {
|
|
class enabled {
|
|
displayName = ECSTRING(common,Enabled);
|
|
description = CSTRING(KeybindDescription);
|
|
typeName = "BOOL";
|
|
defaultValue = 1;
|
|
};
|
|
class distance {
|
|
displayName = CSTRING(Distance);
|
|
description = CSTRING(DistanceDescription);
|
|
typeName = "NUMBER";
|
|
defaultValue = DEFAULT_DISTANCE;
|
|
};
|
|
class speed {
|
|
displayName = CSTRING(Speed);
|
|
description = CSTRING(SpeedDescription);
|
|
typeName = "NUMBER";
|
|
defaultValue = DEFAULT_SPEED;
|
|
};
|
|
};
|
|
class ModuleDescription {
|
|
description = CSTRING(KeybindDescription);
|
|
};
|
|
};
|
|
};
|