fudge: Difference between revisions
Jump to navigation
Jump to search
Bubblobill (talk | contribs) m (category test) |
Bubblobill (talk | contribs) mNo edit summary |
||
Line 32: | Line 32: | ||
}} | }} | ||
[[Category:Dice Function] | [[Category:Dice Function]] | ||
[Category:Game Specific]] | [[Category:Game Specific][Category:Fudge]] |
Revision as of 08:28, 19 February 2021
fudge() Function
Generates random numbers to emulate dice rolls; returns the total of a special Fudge dice roll. When these dice are rolled, the result is
-1
, 0
, or 1
, this function then sums up all of the dice rolled and returns that sum.Usage
fudge(times)
f(times)
Parameters
times
- The number of times to roll the dice.
Examples
Roll ten special Fudge dice.
Returns a number than is between
[t: fudge(10)]
Returns a number that is between -10
and 10
.
Roll five special Fudge dice, using variables.
[h: DiceTimes = 5]
[t: fudge(DiceTimes)]
-5
and 5
.See Also
For another method of rolling dice, see Dice Expressions.
[[Category:Game Specific][Category:Fudge]]