RandInt: Difference between revisions

From Multi Theft Auto: Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
{{Server function}}
__NOTOC__
__NOTOC__
This function returns a random integer value between a specified minimum and maximum value.
This function returns a random integer value between a specified minimum and maximum value.
Line 6: Line 7:


===Required Arguments===
===Required Arguments===
* '''lowerbound''': This is the lowest random value this function can return.
* '''lowerbound:''' This is the lowest random value this function can return.
* '''upperbound''': This is the highest random value this function can return.
* '''upperbound:''' This is the highest random value this function can return.


===Returns===
===Returns===

Revision as of 15:37, 16 August 2007

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

Syntax

int randInt ( int lowerbound, int 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.

Returns

Returns an int containing a random number between and potentially including lowerbound and upperbound.

Example

This example outputs a random number between 5 and 10 inclusive.

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

See Also