Quote from: sparkletwist
The graph the way I gave it to you shows each possible outcome of the dice and what sum that gives you. I assume what you are looking for is just the probability of each sum coming up. You can get that if you leave out the first part of the formula and the separators, so you end up with:Code SelectDR := 2;
roll := 3d6;
keeps := count DR < roll; sum least keeps roll
Excellent! And the results are almost exactly what I hoped they would be too. Thank you!