Files
CTI34-KPLIB-Ruha/scripts/client/markers/fob_markers.sqf

51 lines
1.9 KiB
Plaintext

waitUntil {!isNil "save_is_loaded"};
waitUntil {!isNil "GRLIB_all_fobs"};
waitUntil {save_is_loaded};
uiSleep 3;
private _markers = [];
private _markers_mobilespawns = [];
while {true} do {
if (count _markers != count GRLIB_all_fobs) then {
{deleteMarkerLocal _x;} forEach _markers;
_markers = [];
for "_idx" from 0 to ((count GRLIB_all_fobs) - 1) do {
private _marker = createMarkerLocal [format ["fobmarker%1", _idx], markers_reset];
_marker setMarkerTypeLocal "b_hq";
_marker setMarkerSizeLocal [1.5, 1.5];
_marker setMarkerPosLocal (GRLIB_all_fobs select _idx);
_marker setMarkerTextLocal format ["FOB %1",military_alphabet select _idx];
_marker setMarkerColorLocal "ColorYellow";
_markers pushback _marker;
};
};
if (KP_liberation_mobilerespawn) then {
private _respawn_trucks = [] call KPLIB_fnc_getMobileRespawns;
if (count _markers_mobilespawns != count _respawn_trucks) then {
{deleteMarkerLocal _x;} forEach _markers_mobilespawns;
_markers_mobilespawns = [];
for "_idx" from 0 to ((count _respawn_trucks) - 1) do {
_marker = createMarkerLocal [format ["mobilespawn%1", _idx], markers_reset];
_marker setMarkerTypeLocal "mil_end";
_marker setMarkerColorLocal "ColorYellow";
_markers_mobilespawns pushback _marker;
};
};
if (count _respawn_trucks == count _markers_mobilespawns) then {
for "_idx" from 0 to ((count _markers_mobilespawns) - 1) do {
(_markers_mobilespawns select _idx) setMarkerPosLocal getPos (_respawn_trucks select _idx);
(_markers_mobilespawns select _idx) setMarkerTextLocal format ["%1 %2", localize "STR_RESPAWN_TRUCK", mapGridPosition (_respawn_trucks select _idx)];
};
};
};
sleep 5;
};