ACE3/addons/common/functions/fnc_codeToString.sqf
2023-07-09 23:41:12 +03:00

23 lines
415 B
Plaintext

#include "script_component.hpp"
/*
* Author: commy2
* Removes the brackets around a code and returns the code as a string. It does nothing if the code is already a string.
*
* Arguments:
* 0: Code <CODE, STRING>
*
* Return Value:
* Code <STRING>
*
* Example:
* ["bob"] call ace_common_fnc_codeToString
*
* Public: Yes
*/
params ["_code"];
if (_code isEqualType "") exitWith {_code};
toString _code