ACE3/addons/common/functions/fnc_codeToString.sqf

26 lines
470 B
Plaintext
Raw Normal View History

#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.
*
2015-09-18 14:41:00 +00:00
* Arguments:
2015-09-18 13:40:51 +00:00
* 0: Code <CODE, STRING>
*
2016-06-18 09:50:41 +00:00
* Return Value:
2015-09-18 13:40:51 +00:00
* Code <STRING>
*
* Example:
* ["bob"] call ace_common_fnc_codeToString
*
2015-09-18 13:40:51 +00:00
* Public: Yes
*/
2016-03-30 21:02:52 +00:00
params ["_code"];
if (_code isEqualType "") exitWith {_code};
2016-03-30 21:02:52 +00:00
_code = str(_code);
_code = _code select [1, count _code - 2];
2016-03-30 21:02:52 +00:00
_code
2015-09-18 13:40:51 +00:00