Daniel N. said: Hello, I like to roll multiple d2-1, e.g. 5d2-1 = 5(d2-1), but with this macro he calculates (5d2)-1. So what is wrong? &{template:default} [[ [[1d20]] + [[?{Dice}d2-1]] + [[6]] ]] {{name=My Attack}} {{$[[0]] + $[[1]] + $[[2]]==$[[3]]}} I'm confused about what you want the -1 to subtract from. Is it subtracting from the number of dice rolled? If ?{Dice} = 5
[?{Dice}-1]d2
[5-1]d2
[4]d2
[1,2,2,1]
=6 Or the number of sides of the dice? If ?{Dice} = 5
?{Dice}[d2-1]
[5]d1
[1,1,1,1]
=4 Or the final result? If ?{Dice} = 5
?{Dice}d2-1
[5]d2-1
[1,2,2,1,2]-1
8-1
=7