mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
441 B
Plaintext
23 lines
441 B
Plaintext
/*
|
|
* Author: Garth de Wet (LH)
|
|
* Takes a string/number and returns the number.
|
|
*
|
|
* Arguments:
|
|
* 0: Value to attempt to convert to number or if number simply return number. <STRING, NUMBER>
|
|
*
|
|
* Return Value:
|
|
* <NUMBER>
|
|
*
|
|
* Example:
|
|
* number = ["102"] call ace_common_fnc_toNumber;
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
params ["_value"];
|
|
|
|
if (_value isEqualType 0) exitWith {_value};
|
|
|
|
parseNumber _value // return
|