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>
23 lines
418 B
Plaintext
23 lines
418 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
|