Initial baseline - KP Liberation v0.96.7a Ruha variant
This commit is contained in:
47
scripts/client/civinformant/civinfo_escort.sqf
Normal file
47
scripts/client/civinformant/civinfo_escort.sqf
Normal 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];};
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user