Skip to main content

Math

MSK.Math.Number

Generates a random number.

Parameters
length - number - The Length of the number

Returns
number - number - The Number of the given length

local number = MSK.Math.Number(length)

-- Example
local number = MSK.Math.Number(3) -- Output: 123 or 475 or 285 or ...

-- As an Export:
local number = exports.msk_core:GetRandomNumber(length)

MSK.Math.Round

Rounds a number.

Parameters
number - number - The Number that should be rounded
decimal - number - The Length of the decimal digits

Returns
num - number - The rounded number

local num = MSK.Math.Round(number, decimal)

-- Example
local num = MSK.Math.Round(25.8385) -- Output: 26
local num = MSK.Math.Round(25.8385, 1) -- Output: 25.8
local num = MSK.Math.Round(25.8385, 2) -- Output: 25.84

-- As an Export:
local num = exports.msk_core:Round(number, decimal)

MSK.Math.Comma

Format a number with separators, e.g. 1.000 for UIs.

Parameters
number - number - The Number that should be separated
tag - string - Optional

Returns
text - string - The separated text

local text = MSK.Math.Comma(number, tag) -- tag is optional

-- Example
local text = MSK.Math.Comma(1000) -- Output: 1.000
local text = MSK.Math.Comma(1000, ',') -- Output: 1,000

-- As an Export:
local text = exports.msk_core:Comma(number, tag)