Game:Main Page/Editing Guideline/Random
Jump to navigation
Jump to search
Game List Editing Rules Editing Guides
Method 1 - <option>[edit]
<choose> <option weight=(optional)>(Text A)</option> <option weight=(optional)>(Text B)</option> (...) </choose>
“You can use it in quota template (B)”
<option> is
massive use[edit]
<choose><option weight=1>a</option><option weight=1>b</option></choose>
a b a b a b b a b a
The result probably will repeats when you refresh the webpage.
Method 1 - Template:Rand[edit]
This template is using the time to generate a random number.
{{Rand| (range) | (seed) | (prime) }}
例子:
- {{Rand}} 74
- {{Rand|256}} 2
- {{Rand|1000}} 74
- {{Rand|1000|3.14}} 494
Add Minimum[edit]
{{#expr: (Minimum) + {{Rand|(Maxium-Minimum)+1)| (seed) | (prime) }}}}
- {{#expr: 500 + {{Rand|500}}}}
500-999: 574
Pads the random number to the specified width[edit]
{{padleft:{{Rand| (range) | (seed) | (prime) }}| (digis) |0}}
- {{padleft:{{Rand|9999}}|4|0}}
000-9999: 1758
Problem[edit]
Template:Rand is using time to generate random number, so two {{Rand}} will cause same result.
If no seed or prime is inputed, they will get same result.
{{Rand|85000}}、{{Rand|85000}}、{{Rand|85000}}
52074, 52074, 52074
If you want to generate two random number, you should use Mod to separate a big number to two.
comparison[edit]
- If you just want to display random test, it's more convenient to use <option>.
- <option> cannot work in Parser Functions. Use {{Rand}}.