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,30 @@
if ( isDedicated ) exitWith {};
if ( isNil "sector_timer" ) then { sector_timer = 0 };
params [ "_sector", "_status" ];
if ( _status == 0 ) then {
[ "lib_sector_captured", [ markerText _sector ] ] call BIS_fnc_showNotification;
};
if ( _status == 1 ) then {
[ "lib_sector_attacked", [ markerText _sector ] ] call BIS_fnc_showNotification;
"opfor_capture_marker" setMarkerPosLocal ( markerpos _sector );
sector_timer = GRLIB_vulnerability_timer;
};
if ( _status == 2 ) then {
[ "lib_sector_lost", [ markerText _sector ] ] call BIS_fnc_showNotification;
"opfor_capture_marker" setMarkerPosLocal markers_reset;
sector_timer = 0;
};
if ( _status == 3 ) then {
[ "lib_sector_safe", [ markerText _sector ] ] call BIS_fnc_showNotification;
"opfor_capture_marker" setMarkerPosLocal markers_reset;
sector_timer = 0;
};
{ _x setMarkerColorLocal GRLIB_color_enemy; } foreach (sectors_allSectors - blufor_sectors);
{ _x setMarkerColorLocal GRLIB_color_friendly; } foreach blufor_sectors;