mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
29 lines
720 B
Plaintext
29 lines
720 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: JasperRab
|
|
* Renames object.
|
|
*
|
|
* Arguments:
|
|
* None
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_cargo_fnc_renameObject
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
private _display = uiNamespace getVariable QGVAR(menuDisplay);
|
|
if (isNil "_display") exitWith {};
|
|
|
|
private _ctrlEditText = ctrlText 100;
|
|
_ctrlEditText = _ctrlEditText select [0,32];
|
|
if (_ctrlEditText isEqualTo "") then { // custom name has been removed
|
|
[LSTRING(clearedCustomName), 3] call EFUNC(common,displayTextStructured);
|
|
} else {
|
|
[[LSTRING(renamedObject), _ctrlEditText], 3] call EFUNC(common,displayTextStructured);
|
|
};
|
|
GVAR(interactionVehicle) setVariable [QGVAR(customName), _ctrlEditText, true];
|