ACE3/addons/common/functions/fnc_setName.sqf

26 lines
599 B
Plaintext
Raw Normal View History

/*
* Author: commy2
* Sets the name variable of the object. Used to prevent issues with the name command.
*
2015-09-17 16:25:02 +00:00
* Arguments:
* 0: Object <OBJECT>
*
2015-09-17 16:25:02 +00:00
* Return Value:
* None
*
* Public: No
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
2015-09-17 16:25:02 +00:00
params ["_unit"];
if (isNull _unit || {!alive _unit}) exitWith {};
if (_unit isKindOf "CAManBase") then {
private _sanitizedName = [name _unit, true] call FUNC(sanitizeString);
private _rawName = [name _unit, false] call FUNC(sanitizeString);
2016-03-29 11:59:07 +00:00
_unit setVariable ["ACE_Name", _sanitizedName, true];
_unit setVariable ["ACE_NameRaw", _rawName, true];
};