Hi. (Sorry for my bad english, i'm french :-). I'm a developer. For one of my game, i need to create a roll template for my charactersheet. So, i've look about "roll template" on the wiki, but after a few hours of works, it don't work... The code : <button class="sheet-text-button" title="test" type="roll" name="roll_STR-Check" value="&{template:customtest} {{name=JET}} {{jet=[[1d10]]}}"> FOR</button>
<rolltemplate class="sheet-rolltemplate-customtest">
<table>
<tr>
<th>{{name}}</th>
</tr>
<tr>
<td>{{roll}}</td>
</tr>
{{#rollLess() roll 5}}
<tr>
<td>Aucunes Blessures</td>
</tr>
{{/#rollLess() roll}}
{{#rollBetween() roll 5 7}}
<tr>
<td>Légère Blessure</td>
</tr>
{{/#rollBetween() roll}}
{{#rollBetween() roll 8 9}}
<tr>
<td>Blessure importante</td>
</tr>
{{/#rollBetween() roll}}
{{#rollGreater() roll 9}}
<tr>
<td>Légère Blessure</td>
</tr>
{{/#rollGreater() roll}}
</table>
</rolltemplate> Objective : When the player click on the button, roll 1d10 and show a message depend of the result of the roll. But actually, when i click on the button, nothing happens and i don't know why. (The css is the same of the css wiki). I the same time, it's possible to customize the "success" textbox when you roll like : 3d6>3 ? Thank you for your help.