#include "..\script_component.hpp" /* * Author: IDSolutions * Converts underscores in a string to spaces for display * * Arguments: * 0: String * * Return Value: * Deserialized String * * Example: * ["Hello_World"] call forge_client_misc_fnc_deserializeString; * * Public: Yes */ params [["_string", "", [""]]]; if (_string isEqualTo "") exitWith { ERROR_MSG("String is empty"); "" }; (_string splitString "_") joinString " "