2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* 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-01-11 16:42:31 +00:00
|
|
|
*
|
2015-09-17 16:25:02 +00:00
|
|
|
* Return Value:
|
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-17 16:25:02 +00:00
|
|
|
params ["_unit"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
if (isNull _unit || {!alive _unit}) exitWith {};
|
|
|
|
|
|
|
|
if (_unit isKindOf "CAManBase") then {
|
2015-12-11 18:01:50 +00:00
|
|
|
private _sanitizedName = [name _unit, true] call FUNC(sanitizeString);
|
|
|
|
private _rawName = [name _unit, false] call FUNC(sanitizeString);
|
|
|
|
|
|
|
|
//Debug Testing Code (with html tags):
|
|
|
|
// private _sanitizedName = ["<TAG>Name", true] call FUNC(sanitizeString);
|
|
|
|
// private _rawName = ["<TAG>Name", false] call FUNC(sanitizeString);
|
|
|
|
|
2015-05-14 18:06:06 +00:00
|
|
|
//if (_name != _unit getVariable ["ACE_Name", ""]) then {
|
2015-12-11 18:01:50 +00:00
|
|
|
_unit setVariable ["ACE_Name", _sanitizedName, true];
|
|
|
|
_unit setVariable ["ACE_NameRaw", _rawName, true];
|
2015-05-14 18:06:06 +00:00
|
|
|
//};
|
2015-01-11 16:42:31 +00:00
|
|
|
};
|