rollWithLower: Difference between revisions
Jump to navigation
Jump to search
(Created page with "{{MacroFunction |name=rollWithLower |description= Generates random numbers to emulate dice rolls. Returns the total of a dice roll where each die that rolled lower than the {{...") |
m (Conversion script moved page rollWithLower to RollWithLower without leaving a redirect: Converting page title to first-letter uppercase) |
(No difference)
|
Revision as of 22:36, 9 February 2023
rollWithLower() Function
Generates random numbers to emulate dice rolls. Returns the total of a dice roll where each die that rolled lower than the
minimum
parameter is counted as that value instead.Usage
rollWithLower(times, sides, minimum)
Parameters
times
- The number of times to roll the dice.sides
- The number of sides the dice possess.minimum
- The minimum value that each individual die will contribute to the total.
Examples
Roll five twenty-sided dice. Any rolls below 7 are treated as 7.
Returns a number that is between 35 and 100 (and no longer down to 5 as with a regular
[t: rollWithLower(5, 20, 7)]
5d20
roll).See Also
The corresponding dice roll expression is
XdYlZ
. For other methods of rolling dice, see Dice Expressions.