ACE3/addons/common/functions/fnc_setName.sqf

27 lines
537 B
Plaintext
Raw Normal View History

/*
* Author: commy2
*
* Sets the name variable of the object. Used to prevent issues with the name command.
*
* Argument:
* 0: Object (Object)
*
* Return value:
* Nothing.
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
private ["_unit", "_name"];
_unit = _this select 0;
if (isNull _unit || {!alive _unit}) exitWith {};
if (_unit isKindOf "CAManBase") then {
2015-01-11 18:20:14 +00:00
_name = [name _unit, true] call FUNC(sanitizeString);
//if (_name != _unit getVariable ["ACE_Name", ""]) then {
_unit setVariable ["ACE_Name", _name, true];
//};
};