11 lines
247 B
Plaintext
11 lines
247 B
Plaintext
params ["_heli"];
|
|
|
|
private _efs = _heli getVariable ["efs", objNull];
|
|
if (!isNull _efs) then {
|
|
deleteVehicle _efs;
|
|
};
|
|
|
|
_heli animate ["EFS_Hide", 0];
|
|
_heli setVariable ["efs", objNull, true];
|
|
_heli setVariable ["braf_efs_deployed", false, true];
|