Random

From Onset Developer Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Random

Type: Function
Context: Server & Client
Introduced: v1.0

Description

Get a pseudo-random number. Negative ranges are supported as of v1.0.2.

Syntax

Random([Min, Max])

Parameters

  • Min (optional)
    The minimum number.
  • Max (optional)
    The maximum number.

Return Value

  • Returns the random between the range.

Example

Random(0, 10) -- Returns a number between 0 to 10

See also