Jass documentation Database
JASS Documentation Database REFORGED
Results for the query "SetRandomSeed" as a "function"
Function SetRandomSeed
Line: |
3404 |
Location: |
common.j |
Constant? |
no |
Type: |
native |
Arguments: |
integer seed |
Returns: |
nothing |
Preview
Extra spaces may have been removed from the original file to show the function in a comfortable way.
Information about SetRandomSeed
sets the internal PRNG's seed. Useful for testing or when you want a repeatable outcome. WorldEdit has an option to run test maps with a fixed seed, you can achieve the same result with this. SetRandomSeed(42) GetRandomInt(0, 18) --> 12 GetRandomInt(0, 18) --> 2 SetRandomSeed(42) GetRandomInt(0, 18) --> 12
Desyncs! The random number generator is a global, shared resource. Do not change its state in local blocks asynchronously. See: GetRandomInt, GetRandomReal
Page loaded in 0.1038 seconds.
|