Actually, it depends on what you mean...are you coding the roll template now? Because if you are developing it, then there are some options. If you mean, if nb_dice = 3 then only show the results from test1, test2, and test3, then you absolutely can do that. tests 4 & 5 would still happen, they just wouldn't be shown. It can be a bit complex to implement, but you'd be looking at things like: <div>
{{#rollTotal() nb_dice 1}}
{{test1}}
{{/rollTotal() nb_dice 1}} {{#rollTotal() nb_dice 2}} {{test1}} {{test2}}
{{/rollTotal() nb_dice 2}} {{#rollTotal() nb_dice 3}} {{test1}} {{test2}}
{{test3}}
{{/rollTotal() nb_dice 3}} {{#rollTotal() nb_dice 4}} {{test1}}
{{test2}}
{{test3}}
{{test4}}
{{/rollTotal() numrolls 4}} {{#rollTotal() numrolls 5}} {{test1}}
{{test2}}
{{test3}}
{{test4}}
{{test5}}
{{/rollTotal() numrolls 5}} </div> You may also need to modify nb_dice to be {{nb_dice=[[0d6+?modifier|0]]}} That way it's an actual roll. Doing this, like I said, means the unused tests will still roll, but they'll be invisible as if they didn't roll. The only oddity is with 3d dice...they may still see all the dice rolling around, but...I don't know, I personally can't stand 3d dice. :)