mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 22:33:29 +00:00
25 lines
398 B
Plaintext
25 lines
398 B
Plaintext
// function name: armatak_fnc_extract_side
|
|
// function author: Valmo
|
|
// function description: Gets the unit side
|
|
|
|
params["_unit"];
|
|
|
|
_side = "friendly";
|
|
switch (side _unit) do {
|
|
case "WEST": {
|
|
_side = "friendly";
|
|
};
|
|
case "EAST": {
|
|
_side = "hostile";
|
|
};
|
|
case "INDEPENDENT": {
|
|
_side = "neutral";
|
|
};
|
|
case "CIVILIAN": {
|
|
_side = "unknown";
|
|
};
|
|
default {
|
|
_side = "friendly";
|
|
};
|
|
};
|
|
_side |