mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 23:33:29 +00:00
12 lines
317 B
Plaintext
12 lines
317 B
Plaintext
params["_unit"];
|
|
private _callsign = "";
|
|
if (roleDescription _unit != "") then {
|
|
_callsign = name _unit + " | " + roleDescription _unit;
|
|
} else {
|
|
_callsign = name _unit;
|
|
|
|
if (_callsign == "Error: No unit") then {
|
|
_callsign = getText(configFile >> "CfgVehicles" >> typeOf _unit >> "displayName");
|
|
};
|
|
};
|
|
_callsign |