2017-06-02 21:51:07 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class ACE_Module;
|
|
|
|
class GVAR(module): ACE_Module {
|
|
|
|
author = ECSTRING(common,ACETeam);
|
|
|
|
category = "ACE";
|
|
|
|
displayName = CSTRING(Category);
|
|
|
|
function = QFUNC(moduleInit);
|
2017-11-11 19:21:55 +00:00
|
|
|
scope = 1;
|
2017-06-02 21:51:07 +00:00
|
|
|
isGlobal = 1;
|
|
|
|
isTriggerActivated = 0;
|
|
|
|
isDisposable = 0;
|
2017-09-21 14:22:28 +00:00
|
|
|
icon = "a3\ui_f\data\IGUI\Cfg\Actions\Obsolete\ui_action_getin_ca.paa";
|
2017-06-02 21:51:07 +00:00
|
|
|
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);
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|