RandInt

From Multi Theft Auto: Wiki
Jump to navigation Jump to search

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 ) )