Hey guys, I'm making a character sheet for a campaign that I'm going to be playing (I'm not the GM) and I'm going to need a little help on a few tricks. First, here is a preview of the part I'm needing help with: <a href="https://dl.dropboxusercontent.com/u/11073099/OnePi" rel="nofollow">https://dl.dropboxusercontent.com/u/11073099/OnePi</a>... As you can see there are several dice buttons, each rolls this: {{jet1=[[1d10&lt;@{avantforcemains}]]}} It then sends the roll to a roll template Now, there are 2 things I just can't figure out how to do: On some special rolls, I need to take 1 to 5 different values ( from the 36 on the preview image ) and roll a die that would be a success under the total value of these. I thought of that (with all 36 possibilities on 5 different queries):&nbsp; {{jet1=[[1d10 &lt; (?{ToAdd|Force,@{avantforcetete}|Dex,@{avantdexteritetete}|Char,@{avantcharismetete}} + ?{ToAdd2|Force,@{avantforcetete}|Dex,@{avantdexteritetete}|Char,@{avantcharismetete}})]]}} But the code would be extremely long and it would take a lot of time to roll, chose the 5 bonus stats and end the roll My question: Is there a way to quickly select a few values on the main page of the character sheet and roll under the total of it? Second problem: Depending on the situation, I may have to roll several dices, including both d10 and d100 at the same time, I can use this to query the quantity: {{jet1=[[?{Combien de Dés 10?}d10 + ?{Combien de Dés 100?}d100]]}} But then, if I roll let's say 2d10 and 3d100, the result is added and I don't see each single die because the roll is inline and sent to a template. My question: Is there a way to display all dices without hovering the mouse over the result? And last problem: In special cases, I'm going to have to roll a die (let's say a single d10) and check under a value (let's say 4) and then proceed to reroll endlessly until the die gives me 5 or more {{jet1=[[1d10r&lt;4]]}} would do the trick if it didn't grey out every single die that has succeeded, I need to see all the dices. My question: Is it possible to display (still through a roll template) all the dices rolled without greying the rerolls? Thank you very much