RandomMulti
Description:
script:RandomMulti(start,end,NumberToPick,randomSeed)
Typically used to create a series of random numbers
Parameters:
- start
- First value to pick
- end
- Last value to pick from
- NumberToPick
- How many random numbers do we want to pick
- randomSeed
- Seed to be used
Example:
script:RandomMulti(1,10,3,\@sys_ramdom)
Result:
7;3;2 - As an example, the returned values are not sorted