Initial baseline - KP Liberation v0.96.7a Ruha variant

This commit is contained in:
2026-06-11 01:08:09 +02:00
commit 6f5e757e92
478 changed files with 64458 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
if (!isServer) exitWith {};
params [ "_new_fob", "_create_fob_building" ];
private [ "_fob_building", "_fob_pos" ];
GRLIB_all_fobs pushback _new_fob;
publicVariable "GRLIB_all_fobs";
if ( _create_fob_building ) then {
_fob_pos = [ (_new_fob select 0) + 15, (_new_fob select 1) + 2, 0 ];
[_fob_pos, 20, true] call KPLIB_fnc_createClearance;
_fob_building = FOB_typename createVehicle _fob_pos;
_fob_building setpos _fob_pos;
_fob_building setVectorUp [0,0,1];
[_fob_building] call KPLIB_fnc_addObjectInit;
sleep 1;
};
[] spawn KPLIB_fnc_doSave;
sleep 3;
[_new_fob, 0] remoteExec ["remote_call_fob"];
stats_fobs_built = stats_fobs_built + 1;
FOB_build_in_progress = false;
publicVariable "FOB_build_in_progress";