#include "..\script_component.hpp" /* * Author: IDSolutions * Adds a message to the message list * * Arguments: * 0: Message - The message to add * * Return Value: * None * * Example: * ["Hello World"] call forge_client_phone_fnc_addMsg; * * Public: Yes */ if (_this isEqualTo [""]) exitWith {}; private _tmp = call compile format ["%1", _this]; if ((typeName _tmp) isEqualTo "SCALAR") exitWith {}; GVAR(messages) = _this;