
Plain English roll rules: Select a Number of dice to roll. Select which type of die to roll. Select a Difficulty. Select the lowest of the dice, and compare it to the difficulty, if it is equal or lower, you succeed, otherwise you fail. Here's my current Macro and Roll Template: <button type="roll" value="&{template:sagas} {{name=@{character_name} is rolling for ?{Activity|}}} {{Roll=[[?{Number of Dice|1}d?{Die Type|12|6|8|10|12}kl1]]}} {{Difficulty=?{Difficulty|5|1|2|3|4|5|6|7|8}}}"> Make a Check</button>
<rolltemplate class="sagas">
<div class="sheet-rolltemplate-sagas">
<div class="sheet-rollresult">
<strong>{{name}}</strong>
<p>Roll: {{Roll}}</p>
<p>Difficulty: {{Difficulty}}</p>
<p>If the roll result is less than or equal to the difficulty, the check is successful. Otherwise, the check fails.</p>
</div>
</div>
</rolltemplate> What I would like to do is replace the plain text " If the roll result is less than or equal to the difficulty, the check is successful. Otherwise, the check fails. " with "Critical Success" on a 1, "Success" on a successful check, and "Failed" on a failure. I've read " How-to-Make-Roll-Templates" a few times and it seems like it should be possible, but nothing I've tried has worked. I've even tried using Chat-GPT for help, but its solutions have not been solutions at all and when I point out that they don't work, it simply says it is not possible.