Changed Indentation

This commit is contained in:
Wyqer 2019-08-05 19:42:14 +02:00
parent 8b8d1b4af8
commit 9eab2e2f90
No known key found for this signature in database
GPG Key ID: D7E2F8BD7F1E48FA
1 changed files with 61 additions and 61 deletions

View File

@ -4,74 +4,74 @@ waitUntil {!isNil "save_is_loaded"};
if (count GRLIB_all_fobs == 0) then {
if (GRLIB_build_first_fob) then {
_potentialplaces = [];
{
_nextsector = _x;
_acceptsector = true;
{
if (((markerPos _nextsector) distance (markerPos _x)) < 800) then {
_acceptsector = false;
};
} foreach sectors_allSectors;
if (GRLIB_build_first_fob) then {
_potentialplaces = [];
{
_nextsector = _x;
_acceptsector = true;
{
if (((markerPos _nextsector) distance (markerPos _x)) < 800) then {
_acceptsector = false;
};
} foreach sectors_allSectors;
if (_acceptsector) then {
_potentialplaces pushBack _nextsector;
};
} foreach sectors_opfor;
if (_acceptsector) then {
_potentialplaces pushBack _nextsector;
};
} foreach sectors_opfor;
_spawnplace = selectRandom _potentialplaces;
[markerPos _spawnplace, true] remoteExec ["build_fob_remote_call",2];
} else {
private _fobbox = objNull;
while {count GRLIB_all_fobs == 0} do {
_fobbox = FOB_box_typename createVehicle (getposATL base_boxspawn);
_fobbox setdir getDir base_boxspawn;
_fobbox setposATL (getposATL base_boxspawn);
_spawnplace = selectRandom _potentialplaces;
[markerPos _spawnplace, true] remoteExec ["build_fob_remote_call",2];
} else {
private _fobbox = objNull;
_fobbox call F_setFobMass;
// Add ViV actions to FOB Box
[_fobBox] remoteExecCall ["F_setLoadableViV", 0, _fobBox];
while {count GRLIB_all_fobs == 0} do {
_fobbox = FOB_box_typename createVehicle (getposATL base_boxspawn);
_fobbox setdir getDir base_boxspawn;
_fobbox setposATL (getposATL base_boxspawn);
sleep 3;
_fobbox call F_setFobMass;
// Add ViV actions to FOB Box
[_fobBox] remoteExecCall ["F_setLoadableViV", 0, _fobBox];
waitUntil {
sleep 1;
!(alive _fobbox) || ((count GRLIB_all_fobs) > 0) || (((getPosASL _fobbox) select 2) < 0)
};
sleep 15;
};
deleteVehicle _fobbox;
};
sleep 3;
waitUntil {sleep 5; (count GRLIB_all_fobs) > 0};
waitUntil {
sleep 1;
!(alive _fobbox) || ((count GRLIB_all_fobs) > 0) || (((getPosASL _fobbox) select 2) < 0)
};
sleep 15;
};
deleteVehicle _fobbox;
};
private _crateArray = [];
waitUntil {sleep 5; (count GRLIB_all_fobs) > 0};
uiSleep 10;
private _crateArray = [];
for [{_i = 0;}, {_i < 6}, {_i = _i + 1;}] do {
private _crate = createVehicle [
(KP_liberation_crates select (_i % 3)),
[((GRLIB_all_fobs select 0) select 0), ((GRLIB_all_fobs select 0) select 1), 150],
[],
80,
"FLY"
];
clearWeaponCargoGlobal _crate;
clearMagazineCargoGlobal _crate;
clearItemCargoGlobal _crate;
clearBackpackCargoGlobal _crate;
_crate setVariable ["KP_liberation_crate_value", 100, true];
[_crate, 500] remoteExec ["F_setMass",_crate];
[objNull, _crate] call BIS_fnc_curatorObjectEdited;
if(KP_liberation_ace) then {[_crate, true, [0, 1.5, 0], 0] remoteExec ["ace_dragging_fnc_setCarryable"];};
_crateArray pushBack _crate;
};
uiSleep 25;
{
private _smoke = "SmokeShellGreen" createVehicle (getPos _x);
_smoke attachTo [_x];
} forEach _crateArray;
uiSleep 10;
for [{_i = 0;}, {_i < 6}, {_i = _i + 1;}] do {
private _crate = createVehicle [
(KP_liberation_crates select (_i % 3)),
[((GRLIB_all_fobs select 0) select 0), ((GRLIB_all_fobs select 0) select 1), 150],
[],
80,
"FLY"
];
clearWeaponCargoGlobal _crate;
clearMagazineCargoGlobal _crate;
clearItemCargoGlobal _crate;
clearBackpackCargoGlobal _crate;
_crate setVariable ["KP_liberation_crate_value", 100, true];
[_crate, 500] remoteExec ["F_setMass",_crate];
[objNull, _crate] call BIS_fnc_curatorObjectEdited;
if(KP_liberation_ace) then {[_crate, true, [0, 1.5, 0], 0] remoteExec ["ace_dragging_fnc_setCarryable"];};
_crateArray pushBack _crate;
};
uiSleep 25;
{
private _smoke = "SmokeShellGreen" createVehicle (getPos _x);
_smoke attachTo [_x];
} forEach _crateArray;
};