2015-10-14 22:26:31 +00:00
|
|
|
class CfgVehicles {
|
|
|
|
|
|
|
|
class Man;
|
|
|
|
class CAManBase: Man {
|
|
|
|
class ACE_SelfActions {
|
2015-11-24 21:43:42 +00:00
|
|
|
class ADDON {
|
2015-10-14 22:26:31 +00:00
|
|
|
displayName = CSTRING(Gestures);
|
2016-07-07 14:38:24 +00:00
|
|
|
condition = QUOTE((canStand _target) && {GVAR(showOnInteractionMenu) == 2});
|
2015-10-14 22:26:31 +00:00
|
|
|
statement = "";
|
|
|
|
showDisabled = 1;
|
|
|
|
priority = 3.5;
|
2016-04-08 18:34:50 +00:00
|
|
|
icon = QPATHTOF(UI\gestures_ca.paa);
|
2015-12-30 10:23:52 +00:00
|
|
|
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Advance) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Advance);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2016-07-12 14:16:01 +00:00
|
|
|
statement = QUOTE([ARR_2(_target,'gestureAdvance')] call EFUNC(common,doGesture););
|
2015-10-14 22:26:31 +00:00
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.9;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Go) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Go);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2016-07-12 14:16:01 +00:00
|
|
|
statement = QUOTE([ARR_2(_target,selectRandom [ARR_2('gestureGo','gestureGoB')])] call EFUNC(common,doGesture););
|
2015-10-14 22:26:31 +00:00
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.8;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Follow) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Follow);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2016-07-12 14:16:01 +00:00
|
|
|
statement = QUOTE([ARR_2(_target,'gestureFollow')] call EFUNC(common,doGesture););
|
2015-10-14 22:26:31 +00:00
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.7;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Up) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Up);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2016-07-12 14:16:01 +00:00
|
|
|
statement = QUOTE([ARR_2(_target,'gestureUp')] call EFUNC(common,doGesture););
|
2015-10-14 22:26:31 +00:00
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.5;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(CeaseFire) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(CeaseFire);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2016-07-12 14:16:01 +00:00
|
|
|
statement = QUOTE([ARR_2(_target,'gestureCeaseFire')] call EFUNC(common,doGesture););
|
2015-10-14 22:26:31 +00:00
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.3;
|
|
|
|
};
|
2016-03-29 13:39:32 +00:00
|
|
|
class GVAR(Stop) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Stop);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2016-07-12 14:16:01 +00:00
|
|
|
statement = QUOTE([ARR_2(_target,'gestureFreeze')] call EFUNC(common,doGesture);); // BI animation - is actualls "stop" in all stances but prone
|
2015-10-14 22:26:31 +00:00
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.2;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Forward) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Forward);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2015-10-14 22:26:31 +00:00
|
|
|
statement = QUOTE(QUOTE(QGVAR(forward)) call FUNC(playSignal));
|
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.9;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Regroup) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Regroup);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2015-10-14 22:26:31 +00:00
|
|
|
statement = QUOTE(QUOTE(QGVAR(regroup)) call FUNC(playSignal));
|
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.8;
|
|
|
|
};
|
2016-03-29 13:39:32 +00:00
|
|
|
class GVAR(Freeze) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Freeze);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2016-03-29 13:39:32 +00:00
|
|
|
statement = QUOTE(QUOTE(QGVAR(freeze)) call FUNC(playSignal));
|
2015-10-14 22:26:31 +00:00
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.7;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Cover) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Cover);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2015-10-14 22:26:31 +00:00
|
|
|
statement = QUOTE(QUOTE(QGVAR(cover)) call FUNC(playSignal));
|
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.6;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Point) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Point);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2015-10-14 22:26:31 +00:00
|
|
|
statement = QUOTE(QUOTE(QGVAR(point)) call FUNC(playSignal));
|
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.5;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Engage) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Engage);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2015-10-14 22:26:31 +00:00
|
|
|
statement = QUOTE(QUOTE(QGVAR(engage)) call FUNC(playSignal));
|
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.4;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Hold) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Hold);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2015-10-14 22:26:31 +00:00
|
|
|
statement = QUOTE(QUOTE(QGVAR(hold)) call FUNC(playSignal));
|
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.3;
|
|
|
|
};
|
2015-11-24 21:43:42 +00:00
|
|
|
class GVAR(Warning) {
|
2016-03-29 13:51:51 +00:00
|
|
|
displayName = CSTRING(Warning);
|
2016-04-21 18:15:35 +00:00
|
|
|
condition = QUOTE(true);
|
2015-10-14 22:26:31 +00:00
|
|
|
statement = QUOTE(QUOTE(QGVAR(warning)) call FUNC(playSignal));
|
|
|
|
showDisabled = 1;
|
|
|
|
priority = 1.2;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|