2015-04-11 12:02:44 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
class Man;
|
|
|
|
class CAManBase: Man {
|
|
|
|
class ACE_SelfActions {
|
|
|
|
class ACE_Equipment {
|
|
|
|
class GVAR(adjustZero) {
|
|
|
|
// Updates the zero reference
|
2015-05-27 17:04:25 +00:00
|
|
|
displayName = CSTRING(AdjustZero);
|
2015-04-11 12:02:44 +00:00
|
|
|
condition = QUOTE([ACE_player] call FUNC(canAdjustZero));
|
|
|
|
statement = QUOTE([ACE_player] call FUNC(adjustZero));
|
|
|
|
showDisabled = 0;
|
|
|
|
priority = 0.2;
|
|
|
|
//icon = QUOTE(PATHTOF(UI\...)); // TODO
|
2015-06-09 14:17:05 +00:00
|
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
2015-04-11 12:02:44 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|