Skip to content
This repository has been archived by the owner on Jan 16, 2021. It is now read-only.

Latest commit

 

History

History
38 lines (31 loc) · 1.21 KB

RANDOMIZE.org

File metadata and controls

38 lines (31 loc) · 1.21 KB

Top | Up (RNG) | < Previous (PAGE NAME) | Next (RND) >

RANDOMIZE

Sets the randomizer seed of one of the 8 RNG channels.

Syntax

RANDOMIZE channel% [, seed%]
parameterdescription
channel%channel # 0-7
seed%The seed to use. If 0 or omitted, a random seed is used

Examples

Seeded channels yielding the same result:

RANDOMIZE 0, 398
RANDOMIZE 1, 398
?RND(0,1000)
?RND(1,1000)

References

1 12Me21, “Random Numbers.” https://smilebasicsource.com/page?pid=992


Top | Up (RNG) | < Previous (PAGE NAME) | Next (RND) >