Rolling dice info
When rolling dice with additional modifications, the number that is rolled is important too.
```
roll d20 +13
```
shows the result only. But in D&D it is important to know natural 20 or 1. It is ok with above example, because you can calculate. Not possible with 2 dices. `roll d20 + d6 +7`
is it possible to show result of rolls?
```
roll d20 + d6 +7
25 (15 + 3 +7)
```
but only 25 should be in variable `ans`. This is just my idea and probably not important for other people. Please close if not a good idea.
1 条评论