ACE3/addons/common/functions/fnc_codeToString.sqf

24 lines
482 B
Plaintext
Raw Normal View History

/*
* 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.
*
2015-09-18 14:41:00 +00:00
* Arguments:
2015-09-18 13:40:51 +00:00
* 0: Code <CODE, STRING>
*
* Return value:
2015-09-18 13:40:51 +00:00
* Code <STRING>
*
* Public: Yes
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
2015-09-18 13:40:51 +00:00
params ["_function"];
if (_function isEqualType "") exitWith {_function};
_function = toArray str _function;
2015-09-18 13:40:51 +00:00
_function deleteAt 0;
_function deleteAt (count _function - 1);
toString _function // return