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,23 @@
if ( isDedicated ) exitWith {};
params [ "_attack_destination" ];
if ( isNil "GRLIB_last_incoming_notif_time" ) then { GRLIB_last_incoming_notif_time = -9999 };
if ( time > GRLIB_last_incoming_notif_time + 60 ) then {
GRLIB_last_incoming_notif_time = time;
private [ "_attack_location_name" ];
_attack_location_name = [_attack_destination] call KPLIB_fnc_getLocationName;
[ "lib_incoming", [ _attack_location_name ] ] call BIS_fnc_showNotification;
private [ "_mrk" ];
_mrk = createMarkerLocal [ "opfor_incoming_marker", _attack_destination];
"opfor_incoming_marker" setMarkerTypeLocal "selector_selectedMission";
"opfor_incoming_marker" setMarkerColorLocal GRLIB_color_enemy_bright;
sleep 250;
deleteMarkerLocal _mrk;
};