Random: Difference between revisions

From Onset Developer Wiki
(Created page with "{{FuncSyntax|Random( [, Min, Max]) }}")
 
No edit summary
 
(14 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{FuncSyntax|Random( [, Min, Max])
{{Info|Function|Server & Client|1.0}}
}}
 
{{FuncDescription|Get a pseudo-random number. Negative ranges are supported as of v1.0.2.}}
 
{{FuncSyntax|Random([Min, Max])}}
 
{{FuncParameters}}
{{FuncParamOptional|Min|The minimum number.}}
{{FuncParamOptional|Max|The maximum number.}}
 
{{FuncReturnValue|Returns the random between the range.}}
 
== Example ==
<syntaxhighlight lang="Lua">
Random(0, 10) -- Returns a number between 0 to 10
</syntaxhighlight>
 
{{RelatedFunctions}}
* [[RandomFloat]]

Latest revision as of 10:47, 6 January 2020

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