Alright, I think I know where is the problem. Im using this <div>. <div class="sheet-value{{#rollTotal() critcheck 20}} sheet-critical{{/rollTotal() critcheck 20}}{{#rollTotal() critcheck 2}} sheet-fumble{{/rollTotal() critcheck 2}}">{{Resultado}}</div> Cause you said this is the way to make crits and fumble different. GiGs said: You'll need to use the Reusing Rolls trick, and add an extra rolltemplate key, like so: value="&{template:custom} {{title=Sin Armas}} {{subtitle=@{noweapons_specialty}}} [[ [[2d10]] + @{noweapons_mhc}]] {{Localización = [[1d10]]}} {{critcheck=$[[0]]}} {{Resultado=$[[1]]}}" Note: this moves your resultado inline roll outside of the {{}} brackets, so it is ignored by the rolltemplate code. But it adds the two constructs $[[0]] and $[[1]]. The last one is your old Resultado, but I've added critcheck which includes the 2d10 roll alone. Then your rolltemplate is altered a little: <rolltemplate class="sheet-rolltemplate-custom">
<div class="sheet-container sheet-color-{{color}}">
<div class="sheet-header">
{{#title}}<div class="sheet-title">{{title}}</div>{{/title}}
{{#subtitle}}<div class="sheet-subtitle">{{subtitle}}</div>{{/subtitle}}
</div> <div class="sheet-content"> <div class="sheet-key">Resultado</div>
<div class="sheet-value">{{Resultado}} {{#rollTotal() critcheck 20}}Critical!{{/rollTotal() critcheck 20}}{{#rollTotal() critcheck 2}}Fumble!{{/rollTotal() critcheck 2}}</div>
{{#allprops() title subtitle desc color critcheck Resultado}}
<div class="sheet-key">{{key}}</div>
<div class="sheet-value">{{value}}</div>
{{/allprops() title subtitle desc color critcheck Resultado}}
{{#desc}}<div class="sheet-desc">{{desc}}</div>{{/desc}}
</div>
</div>
</rolltemplate> I've added critcheck and Resultado to the allprops section, so they dont get printed out automatically. I've also added a separate section to show Resultado, and show a critical or fumble when you get one. You can play around with how you want this to display. You could, for instance, change the Critical! and Fumble! parts to classes, and have the Resultado show in a different style when its a critical or fumble. <div class="sheet-value{{#rollTotal() critcheck 20}} sheet-critical{{/rollTotal() critcheck 20}}{{#rollTotal() critcheck 2}} sheet-fumble{{/rollTotal() critcheck 2}}">{{Resultado}}</div> You'd need to add the sheet-critical and sheet-fumble classes to your CSS, but they will only be applied when both d10s add up to either 2 or 20. The problem here, as you can see in this screenshot, is that in order to change the gear's color to green or red, deppending if it is a critical hit or a fumble I put a background-image according to the result, but I need to diferentiate them by classes in order to do so, and in the HTML right now there aren't any classes to diferentiate it.