This commit is contained in:
2026-07-12 17:45:29 -03:00
parent 9cd0cb33fd
commit 69974856ed
24 changed files with 375 additions and 23 deletions
+8 -6
View File
@@ -1,8 +1,10 @@
// Declaração de variáveis
params ["_heli"];
// Desatachar e apagar EFS
private _EFS = _heli getVariable ["efs", objNull];
if (!isNull _EFS) then {
deleteVehicle _EFS;
};
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];