2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: commy2
|
|
|
|
* Transforms a number to an string of the correspondending digits.
|
|
|
|
*
|
2015-09-17 16:25:02 +00:00
|
|
|
* Arguments:
|
|
|
|
* 0: Number to 'digitize' <NUMBER>
|
2017-06-08 13:31:51 +00:00
|
|
|
* 1: Set the minimal length of the returned string. Useful for getting left hand zeroes. (Optional) <NUMBER>
|
2015-01-11 16:42:31 +00:00
|
|
|
*
|
2015-09-17 16:25:02 +00:00
|
|
|
* Return Value:
|
2015-09-18 19:46:21 +00:00
|
|
|
* Digits. The maximum length is six digits. <STRING>
|
2015-09-17 16:25:02 +00:00
|
|
|
*
|
2017-06-08 13:31:51 +00:00
|
|
|
* Example:
|
|
|
|
* [5, 5] call ace_common_fnc_numberToDigitsString
|
|
|
|
*
|
2015-09-17 16:25:02 +00:00
|
|
|
* Public: Yes
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-02 17:00:01 +00:00
|
|
|
ACE_DEPRECATED(QFUNC(numberToDigitsString),"3.14.0","CBA_fnc_formatNumber");
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2018-01-02 17:00:01 +00:00
|
|
|
_this call CBA_fnc_formatNumber
|