mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 22:13:28 +00:00
13 lines
427 B
Plaintext
13 lines
427 B
Plaintext
// function name: armatak_fnc_send_group_cots
|
|
// function author: Valmo
|
|
// function description: handle the cot routing for drones
|
|
|
|
params["_group"];
|
|
|
|
{
|
|
_callsign = [_x] call armatak_fnc_extract_callsign;
|
|
_group_name = [_group] call armatak_fnc_extract_group_color;
|
|
_group_role = [_x] call armatak_fnc_extract_group_role;
|
|
|
|
[_x, _callsign, _group_name, _group_role] call armatak_fnc_send_human_cot;
|
|
} forEach (units _group); |