Hey guys, I'm having some problems with my roll template and the google search and forum search haven't really given me a clear answer though I think it's (currently?) not possible: Inside my roll button I use 3 different 1d20 and a formula to calculate differences between the thrown dice and skill values to calculate a value XY. Based on the value XY i format the roll template and decide if the ability check has failed or succeded. My question is: Is there any way to show the values of those 3 dice inside the rolltemplate itself? Right now the result of the formula is stored inside XY but the formula is rather complex and if the user hovers over the result in the chat he won't be able to understand which numbers belong to the dice. Down below I included the button in a very simplified version. bttn type="roll" value="&{template:Z} {{XY=[[ @{skill_value} - {1d20 - ((some modificators)) } - {1d20 - ((some modificators)) } - {1d20 - ((some modificators)) } ]]}} "> Is something like this possible? bttn type="roll" value="&{template:Z} {{roll1= 1d20}} {{roll2= 1d20}} {{roll3= 1d20}} {{XY=[[ @{skill_value} - {roll1 - ((some modificators)) } - {roll2 - ((some modificators)) } - {roll3- ((some modificators)) } ]]}} "> This way the dice results would be stored in different variables and I could show those variables inside the roll template AND use those same results to calculate the formula XY to show XY in the roll template as well but I'm either screwing up the syntax or this isn't possible at all. Maybe someone can help? The only solution so far I've found is the power cards api but since it's a script that needs pro subscription I can't include it in my charsheet for everyone since only many people won't be able to use it.