How would I roll one set of dice and display the result unaltered, and then display the same roll with an added bonus, both in the same roll template? Really fast (so ignore bugs) &{template:hero6template} {{attack=[[ 3d6 ]]}} {{dcvhit=[[ 3d6 ]]+@{ocv}-11}} <rolltemplate class="sheet-rolltemplate-hero6template">
<div class="rt-main">
<div class="rt-line">Attack Roll: {{ attack }} </div>
<div class="rt-line">DCV hit: {{ dcvhit }} </div>
</div>
</rolltemplate>
I want to only roll 3d6 once, and use it in both properties. Is this possible?