mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
24 lines
493 B
Plaintext
24 lines
493 B
Plaintext
|
/*
|
||
|
* 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.
|
||
|
*
|
||
|
* Argument:
|
||
|
* 0: Code (Code or String)
|
||
|
*
|
||
|
* Return value:
|
||
|
* Code (String)
|
||
|
*/
|
||
|
|
||
|
private "_function";
|
||
|
|
||
|
_function = _this select 0;
|
||
|
|
||
|
if (typeName _function == "STRING") exitWith {_function};
|
||
|
|
||
|
_function = toArray str _function;
|
||
|
_function set [0, -1];
|
||
|
_function set [count _function - 1, -1];
|
||
|
_function = toString (_function - [-1]);
|
||
|
_function
|