initial files

This commit is contained in:
Samuele Lorefice
2025-05-24 16:17:33 +02:00
commit 9e023649ac
477 changed files with 118566 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
params ["_informant"];
if (isDedicated) exitWith {};
if (KP_liberation_civinfo_debug > 0) then {[format ["civinfo_escort called on: %1 - Parameters: [%2]", debug_source, _informant], "CIVINFO"] remoteExecCall ["KPLIB_fnc_log", 2];};
waitUntil {sleep 0.5; local _informant || !alive _informant};
if !(alive _informant) exitWith {if (KP_liberation_civinfo_debug > 0) then {[format ["civinfo_escort exited by: %1 - Informant isn't alive", debug_source], "CIVINFO"] remoteExecCall ["KPLIB_fnc_log", 2];};};
private _is_near_fob = false;
sleep 1;
_informant playmove "AmovPercMstpSsurWnonDnon_AmovPercMstpSnonWnonDnon";
sleep 2;
_informant enableAI "ANIM";
_informant enableAI "MOVE";
sleep 2;
[_informant, ""] remoteExecCall ["switchMove"];
waitUntil {sleep 5;
_nearestfob = [getpos _informant] call KPLIB_fnc_getNearestFob;
if (count _nearestfob == 3) then {
if ((_informant distance _nearestfob) < 30) then {
_is_near_fob = true;
};
};
!alive _informant || (_is_near_fob && (vehicle _informant == _informant))
};
if (alive _informant) then {
if (_is_near_fob) then {
sleep 5;
private _grp = createGroup [GRLIB_side_friendly, true];
[_informant] joinSilent _grp;
_informant playmove "AmovPercMstpSnonWnonDnon_AmovPsitMstpSnonWnonDnon_ground";
_informant disableAI "ANIM";
_informant disableAI "MOVE";
sleep 5;
[_informant, "AidlPsitMstpSnonWnonDnon_ground00"] remoteExecCall ["switchMove"];
[_informant] remoteExec ["civinfo_delivered",2];
if (KP_liberation_civinfo_debug > 0) then {["civinfo_escort -> Informant at FOB", "CIVINFO"] remoteExecCall ["KPLIB_fnc_log", 2];};
sleep 600;
deleteVehicle _informant;
if (KP_liberation_civinfo_debug > 0) then {[format ["civinfo_escort finished by: %1", debug_source], "CIVINFO"] remoteExecCall ["KPLIB_fnc_log", 2];};
};
};

View File

@@ -0,0 +1,51 @@
if (isDedicated) exitWith {};
params ["_notif_id", ["_pos", getpos player]];
if (KP_liberation_civinfo_debug > 0) then {[format ["civinfo_notifications called on: %1 - Parameters: [%2, %3]", debug_source, _notif_id, _pos], "CIVINFO"] remoteExecCall ["KPLIB_fnc_log", 2];};
switch (_notif_id) do {
case 0: {
["lib_civ_informant_start", [markertext ([10000, _pos] call KPLIB_fnc_getNearestSector)]] call BIS_fnc_showNotification;
private _informant_marker = createMarkerLocal ["informantmarker", _pos];
_informant_marker setMarkerColorLocal "ColorCIV";
_informant_marker setMarkerShape "ELLIPSE";
_informant_marker setMarkerBrush "FDiagonal";
_informant_marker setMarkerSize [500,500];
};
case 1: {
["lib_civ_informant_success"] call BIS_fnc_showNotification;
deleteMarkerLocal "informantmarker";
};
case 2: {
["lib_civ_informant_fail"] call BIS_fnc_showNotification;
deleteMarkerLocal "informantmarker";
};
case 3: {
["lib_civ_informant_death"] call BIS_fnc_showNotification;
deleteMarkerLocal "informantmarker";
};
case 4: {
["lib_civ_hvt_start", [markertext ([10000, _pos] call KPLIB_fnc_getNearestSector)]] call BIS_fnc_showNotification;
private _marker = createMarker ["HVT_marker", _pos];
_marker setMarkerColor GRLIB_color_enemy_bright;
_marker setMarkerType "hd_unknown";
private _marker_zone = createMarker ["HVT_zone", _pos];
_marker_zone setMarkerColor GRLIB_color_enemy_bright;
_marker_zone setMarkerShape "ELLIPSE";
_marker_zone setMarkerBrush "FDiagonal";
_marker_zone setMarkerSize [500,500];
};
case 5: {
["lib_civ_hvt_success"] call BIS_fnc_showNotification;
deleteMarkerLocal "HVT_marker";
deleteMarkerLocal "HVT_zone";
};
case 6: {
["lib_civ_hvt_fail"] call BIS_fnc_showNotification;
deleteMarkerLocal "HVT_marker";
deleteMarkerLocal "HVT_zone";
};
default {[format ["civinfo_notifications.sqf -> no valid value for _notif_id: %1", _notif_id], "ERROR"] remoteExecCall ["KPLIB_fnc_log", 2];};
};