ACE3/addons/core/functions/fn_toNumber.sqf

23 lines
424 B
Plaintext

/*
Name: GVAR(fnc_toNumber)
Author(s):
Garth de Wet (LH)
Description:
Takes a string/number and returns the number.
Parameters:
0: TYPE - Value to attempt to convert to number or if number simply return number.
Returns:
NUMBER
Example:
_number = ["102"] call GVAR(fnc_toNumber);
*/
if (TYPENAME(_this select 0) == "SCALAR")exitWith {
(_this select 0)
};
(parseNumber (_this select 0))