2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
*
|
|
|
|
* Returns the name of the object. Used to prevent issues with the name command.
|
|
|
|
*
|
|
|
|
* Argument:
|
|
|
|
* 0: Object (Object)
|
|
|
|
* 1: Show effective commander name? (Bool, optinal default: false)
|
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* The name.
|
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
private ["_unit", "_showEffective", "_name"];
|
|
|
|
|
|
|
|
_unit = _this select 0;
|
|
|
|
_showEffective = _this select 1;
|
|
|
|
|
|
|
|
if (isNil "_showEffective") then {
|
|
|
|
_showEffective = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
_name = "";
|
|
|
|
|
|
|
|
if (_unit isKindOf "CAManBase") then {
|
2015-01-12 04:02:33 +00:00
|
|
|
_name = _unit getVariable ["ACE_Name", localize QUOTE(DOUBLES(STR,GVAR(Unknown)))];
|
2015-01-11 16:42:31 +00:00
|
|
|
} else {
|
|
|
|
if (_showEffective) then {
|
2015-01-11 18:20:14 +00:00
|
|
|
_name = [effectiveCommander _unit] call FUNC(getName);
|
2015-01-11 16:42:31 +00:00
|
|
|
} else {
|
|
|
|
_name = getText (configFile >> "CfgVehicles" >> typeOf _unit >> "displayName");
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
_name
|