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