d6(int)

Rolls a 6-sided die.

int d6(
    int nNumDice = 1
);

Parameters

nNumDice

The number of dice to roll. (Default: 1)


Description

Returns the total from rolling nNumDice x d6 dice.
If nNumDice is less than 1, then 1 is used.



Remarks

A d6 (six sided die) has a 16.6% probability of turning up any one number.


Version

1.22

See Also

functions: d10 | d100 | d12 | d2 | d20 | d3 | d4 | d8 | Random
categories: Miscellaneous Functions


 author: Charles Feduke