Difference between revisions of "Template:RNG"
Jump to navigation
Jump to search
(Still a WIP, needs documentation.) |
(Making types.) |
||
Line 2: | Line 2: | ||
{{impressive}} | {{impressive}} | ||
Generic random number:<onlyinclude> | Generic random number:<onlyinclude> | ||
− | {{#switch:{{{ | + | {{#switch:{{{1|}}} |
− | |#default = {{#expr:(({{{seed|}}}+0)* | + | |#default = {{#expr:(({{{seed|}}}+0)*371+{{CURRENTTIMESTAMP}}-{{REVISIONTIMESTAMP}})*325 mod {{#if:{{{limit|}}}|{{{limit}}}|100}}}} |
− | |case 2 = {{#expr:{{REVISIONTIMESTAMP}}* | + | |case 2 = {{#expr:{{REVISIONTIMESTAMP}}*113+({{{seed|}}}+0) mod {{#if:{{{limit|}}}|{{#expr:1+{{{limit}}}}}|100}}}} |
− | |case 3 = {{#expr:{{CURRENTTIMESTAMP}}* | + | |case 3 = {{#expr:{{CURRENTTIMESTAMP}}*85+({{{seed|}}}+0) mod {{#if:{{{limit|}}}|{{#expr:1+{{{limit}}}}}|100}}}} |
}} | }} | ||
</onlyinclude> | </onlyinclude> | ||
Line 12: | Line 12: | ||
<b>Generated numbers:</b> | <b>Generated numbers:</b> | ||
− | Type 1 seed 1:{{RNG | | + | Type 1 seed 1:{{RNG |1|seed=1}}<br /> |
− | Type 2 seed 1:{{RNG | | + | Type 2 seed 1:{{RNG |2|seed=1}}<br /> |
− | Type 3 seed 1:{{RNG | | + | Type 3 seed 1:{{RNG |3|seed=1}} |
</div> | </div> | ||
{{{{BASEPAGENAME}}/doc}} | {{{{BASEPAGENAME}}/doc}} |
Revision as of 07:25, 12 December 2016
This is an Impressive page. It is giving a +3 positive thought to all colonists viewing it. Please consider leaving the page as is, or decorating this page with sculptures. The impressiveness of this page at the moment is 97. |
Generic random number: 0
Generated numbers:
Type 1 seed 1:
75
Type 2 seed 1:
75
Type 3 seed 1:
75
Description
This template is used to generate random numbers in a relatively short time.
Usage
Type {{RNG}}
on the page to assume a seed of 0 and a limit of 100.
NOTE: Setting a limit value to something greater than 1 000 000 WILL have an effect on the randomness of the result. Use two {{RNG}} templates instead. {{RNG |seed=(number) -->Makes RNGs with different seeds unique to each other. |limit=(number) -->Restricts the RNG to produce only numbers from 1 to limit. }}
Example:
{{RNG |seed=1234 |limit=5000}}
results in: 1450