Description of MUSHclient world function: world.MtRand
Name | MtRand |
---|---|
Type | Method |
Summary | Returns pseudo-random number using the Mersenne Twister algorithm |
Prototype | double MtRand();
|
Description | This returns a pseudo-random number in the range 0 to 1 (however excluding 1) as a "double" (floating-point number). Thus you can generate a number in any range by multiplying the result by the range you want. Note: Available in version 3.57 onwards. |
VBscript example |
|
Jscript example |
|
Lua example |
|
Returns | A pseudo-random number in the range [0 to 1). In other words, zero might be returned, however 1 will not be. |
Introduced in version | 3.57 |
See also ...
Function | Description |
---|---|
MtSrand | Seed the Mersenne Twister pseudo-random number generator |
Enter a word or phrase in the box below to narrow the list down to those that match.
The function name, prototype, summary, and description are searched.
Leave blank to show all functions.
Many functions return a "code" which indicates the success or otherwise of the function.
You can view a list of the return codes
The "prototype" part of each function description lists exactly how the function is called (what arguments, if any, to pass to it).
You can view a list of the data types used in function prototypes
Information and images on this site are licensed under the Creative Commons Attribution 3.0 Australia License unless stated otherwise.