mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
20 lines
697 B
C++
20 lines
697 B
C++
class CfgVehicles {
|
|
class Man;
|
|
class CAManBase: Man {
|
|
class ACE_SelfActions {
|
|
class ACE_Equipment {
|
|
class GVAR(adjustZero) {
|
|
// Updates the zero reference
|
|
displayName = CSTRING(AdjustZero);
|
|
condition = QUOTE([ACE_player] call FUNC(canAdjustZero));
|
|
statement = QUOTE([ACE_player] call FUNC(adjustZero));
|
|
showDisabled = 0;
|
|
priority = 0.2;
|
|
//icon = QUOTE(PATHTOF(UI\...)); // TODO
|
|
exceptions[] = {"notOnMap", "isNotInside", "isNotSitting"};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|