mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13 lines
196 B
Plaintext
13 lines
196 B
Plaintext
// by commy2
|
|
|
|
private ["_unit", "_oldUnit"];
|
|
|
|
_unit = _this select 0;
|
|
_oldUnit = _this select 1;
|
|
|
|
if (_unit getVariable ["AGM_isCaptive", false]) then {
|
|
showHUD false;
|
|
} else {
|
|
showHUD true;
|
|
};
|