41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
dorepackage = 0;
|
|
|
|
createDialog "liberation_repackage_fob";
|
|
waitUntil {sleep 0.1; dialog};
|
|
waitUntil {sleep 0.1; !dialog || !alive player || dorepackage != 0};
|
|
|
|
if (dorepackage > 0) then {
|
|
closeDialog 0;
|
|
waitUntil {sleep 0.1; !dialog};
|
|
|
|
private _fob = [] call KPLIB_fnc_getNearestFob;
|
|
|
|
if !(_fob isEqualTo []) then {
|
|
GRLIB_all_fobs = GRLIB_all_fobs - [_fob];
|
|
KP_liberation_clearances deleteAt (KP_liberation_clearances findIf {(_x select 0) isEqualTo _fob});
|
|
publicVariable "GRLIB_all_fobs";
|
|
publicVariable "KP_liberation_clearances";
|
|
};
|
|
|
|
{deleteVehicle _x} forEach (((getPos player) nearobjects [FOB_typename, 250]) select {getObjectType _x >= 8});
|
|
|
|
sleep 0.5;
|
|
|
|
private _spawnpos = zeropos;
|
|
while {_spawnpos distance2d zeropos < 1000} do {
|
|
_spawnpos = (getPos player) findEmptyPosition [10, 250, 'B_Heli_Transport_01_F'];
|
|
if (_spawnpos isEqualTo []) then {_spawnpos = zeropos;};
|
|
};
|
|
|
|
if (dorepackage == 1) then {
|
|
private _fobbox = FOB_box_typename createVehicle _spawnpos;
|
|
[_fobbox] call KPLIB_fnc_addObjectInit;
|
|
};
|
|
|
|
if (dorepackage == 2) then {
|
|
private _fobTruck = FOB_truck_typename createVehicle _spawnpos;
|
|
[_fobTruck] call KPLIB_fnc_addObjectInit;
|
|
};
|
|
hint localize "STR_FOB_REPACKAGE_HINT";
|
|
};
|