D (function)

From NetHackWiki
Jump to navigation Jump to search

d(n,x)[1] is a pseudo-random number function used in NetHack to simulate the rolling of multiple dice. The range of values is between n and n*x inclusive (that is, n ≤ d(n,x) ≤ n*x). It is equivalent to ndx in D notation, or rolling n independent dice with x sides each and summing the results.

References

  1. d in rnd.c
This page is a stub. Should you wish to do so, you can contribute by expanding this page.