RandInt: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
Line 11: Line 11:


==Example==
==Example==
<syntaxhighlight lang="lua">serverChat ( "A random value between 5 and 10 is ", randInt ( 5, 10 ) )</syntaxhighlight>
<syntaxhighlight lang="lua">outputChatBox ( "A random value between 5 and 10 is ", randInt ( 5, 10 ) )</syntaxhighlight>

Revision as of 02:39, 20 May 2006

Description

This function returns a random integer value between a specified minimum and maximum value.

Syntax

randInt ( lowerbound, upperbound )

Required Arguments

  • lowerbound: This is the lowest random value this function can return.
  • upperbound: This is the highest random value this function can return.

Example

outputChatBox ( "A random value between 5 and 10 is ", randInt ( 5, 10 ) )