home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / games / volume1 / roll / README < prev    next >
Text File  |  1987-06-29  |  985b  |  38 lines

  1. The Ultimate Dice Roller! Should be transportable to most systems that
  2. can run 'C' and have the standard library.
  3.  
  4. This dice roller is random, even if the random number generator isn't very
  5. random.
  6.  
  7. Usage: (options included in braces):
  8.  
  9. roll {numrep@}{{bestroll,}numroll x}{{bestdice,}numdice d}{sides}
  10.  
  11. numrep   [1]       = number of times to repeat the rolling sequence.
  12. bestroll [numroll] = print the best "bestroll" rolls.
  13. numroll  [1]       = number of rolls to do.
  14. bestdice [numdice] = use the "bestdice" highest rolling dice.
  15. numdice  [1]       = number of dice to use per roll.
  16. sides    [100]     = number of sides on the dice.
  17.  
  18. Examples:
  19.     roll
  20.         d100 = 65 
  21.     roll 6
  22.         d6 = 3 
  23.     roll 4d10
  24.         4d10 = 11 
  25.     roll 5,10d8
  26.         5,10d8 = 28 
  27.     roll 6x3d6
  28.         6x3d6 = 17 12 11 11 10 6 
  29.     roll 6x3,4d6
  30.         6x3,4d6 = 18 15 10 10 7 6 
  31.     roll 5,10x4d4
  32.         5,10x4d4 = 14 13 12 12 10 
  33.     roll 3@6,10x3,4d6
  34.         6,10x3,4d6 = 17 17 15 15 14 14 
  35.         6,10x3,4d6 = 18 15 15 15 14 14 
  36.         6,10x3,4d6 = 16 14 13 13 11 11 
  37.  
  38.