RandomInt - Utility
Jump to navigation
Jump to search
Member of: Utility Script
Generates a random integer between the minimum and maximum values (inclusive).
Syntax[edit | edit source]
int Function RandomInt(int aiMin = 0, int aiMax = 100) native global
Parameters[edit | edit source]
- aiMin: The minimum value for the random integer.
- Default: 0
- aiMax: The maximum value for the random integer.
- Default: 100
Return Value[edit | edit source]
A random integer between aiMin and aiMax (inclusive)
Examples[edit | edit source]
; Get a random number between 0 and 100
int random = Utility.RandomInt()
; Get a random number between 0 and 10
int random = Utility.RandomInt(0, 10)