mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 13:43:46 +00:00
reoganized command groups on extension call
This commit is contained in:
@@ -10,5 +10,5 @@ if (!isNull _digitalPointer) then {
|
||||
|
||||
_dpCot = [_link_uid, _contact_callsign, _digitalPointerPosition select 1, _digitalPointerPosition select 2, _digitalPointerPosition select 3];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:send_digital_pointer_cot", [_dpCot]];
|
||||
"armatak" callExtension ["tcp_socket:cot:digital_pointer", [_dpCot]];
|
||||
};
|
||||
|
||||
@@ -12,4 +12,4 @@ _callsign = _unit call armatak_fnc_extract_marker_callsign;
|
||||
|
||||
_marker_cot = [_uuid, _type, _unit_position select 1, _unit_position select 2, _unit_position select 3, _callsign, _unit_position select 5, _unit_position select 6];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:send_marker_cot", [_marker_cot]];
|
||||
"armatak" callExtension ["tcp_socket:cot:marker", [_marker_cot]];
|
||||
|
||||
@@ -9,4 +9,4 @@ _position = _unit call armatak_client_fnc_extractClientPosition;
|
||||
_uuid = _unit call armatak_fnc_extract_uuid;
|
||||
|
||||
_eud_cot = [_uuid, _position select 1, _position select 2, _position select 3, _callsign, _group_name, _group_role, _position select 5, _position select 6];
|
||||
"armatak" callExtension ["tcp_socket:send_eud_cot", [_eud_cot]];
|
||||
"armatak" callExtension ["tcp_socket:cot:eud", [_eud_cot]];
|
||||
|
||||
@@ -10,4 +10,4 @@ _uuid = _unit call armatak_fnc_extract_uuid;
|
||||
|
||||
_marker_cot = [_uuid, _type, _unit_position select 1, _unit_position select 2, _unit_position select 3, _callsign, _unit_position select 5, _unit_position select 6];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:send_marker_cot", [_marker_cot]];
|
||||
"armatak" callExtension ["tcp_socket:cot:marker", [_marker_cot]];
|
||||
|
||||
@@ -123,4 +123,4 @@ if (!isNil "armatak_attribute_marker_type" or armatak_attribute_marker_type != '
|
||||
_role = armatak_attribute_marker_type;
|
||||
};
|
||||
|
||||
_role
|
||||
_role
|
||||
|
||||
@@ -22,6 +22,6 @@ _target = getSensorTargets (_unit);
|
||||
|
||||
_marker_cot = [_uuid, _type, _unit_position select 1, _unit_position select 2, _unit_position select 3, _callsign, _unit_position select 5, _unit_position select 6];
|
||||
|
||||
"armatak" callExtension ["tcp_socket:send_marker_cot", [_marker_cot]];
|
||||
"armatak" callExtension ["tcp_socket:cot:marker", [_marker_cot]];
|
||||
};
|
||||
} forEach _target;
|
||||
} forEach _target;
|
||||
|
||||
Reference in New Issue
Block a user