
I'm using the the trick of nesting rolls to gain multiple results from a single roll button: [[ @{una} + ?{Bonus|0} + [[ [[[[1d10]]]] - [[1d10]] ]] ]] {{black=$[[1]]}} {{red=$[[2]]}} {{difr=$[[3]]}} {{result=$[[4]]}}] So this gives me two separate 1d10 rolls (black and red) as well as the natural difference between them (difr) and the difference after stat and bonus are added (difr). Is it possible to make actual calculations using the $[[x]] elements? I'd like to show the result of the sum stat+bonus+black, which might only be doable with something like {{total= [[ @{una} + ?{Bonus|0} + $[[1]] ]]}} but this doesn't resolve. Can it be done, or is this a limit of the technique?