From: Matthew D Moss Date: 2006-01-07T17:08:47+09:00 Subject: Re: Dice Roller (#61) > Does the +3 apply to (5d5-4)d(16/d4) or to (16/d4) only, > assuming it matters since I don't know what this stuff does. This dice roller is, for the most part, a simple integer calculator with addition, subtraction, multiplication, division, and grouping via parentheses. In order to turn it into a dice calculator, we add the 'd' (dice) binary operator. The required right argument to 'd' is the number of sides on the die, while the option left argument (defaulting to 1) is how many to roll and sum. So 16 / d4 means "roll one 4-sided die and divide the result into 16".