Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Show individual dice roll

Is there a way to display the dice rolls individually, I dont need the dice added up? I have seen this question around, but I can't find an answer. I found a workaround, by making this. <button type="roll" name="roll_attack" value="&{template:custom} {{title=Basic Attack}}  {{Roll:=?{Attack Stat| 1, [[1d4]]| 2, [[1d4]] [[1d4]]| 3, [[1d4]] [[1d4]] [[1d4]]| 4, [[1d4]] [[1d4]] [[1d4]] [[1d4]]| 5, [[1d4]] [[1d4]] [[1d4]] [[1d4]] [[1d4]]}}}></button> But I would realy like it to work directly, by referancing the attribute. <button type="roll" name="roll_brawn" value="&{template:custom} {{title=Brawn}} {{Roll=[[@{Brawn}d4]]}}"></button> Thanks
1693070601
Scott C.
Forum Champion
Sheet Author
API Scripter
Compendium Curator
The only way to really do this in a character sheet is to use custom roll parsing .
Thanks. It looks complicated, but I will give it a try
1693151725
GiGs
Pro
Sheet Author
API Scripter
It is complicated, but is the only way to go. If you show us your work, we can fill in the blanks.
That would be awesome. Unfortunately I'm only on the simple standard code, I had no idea it would be this complicated to "disable" the inline calculations and show the individual dice in the Roll Template. <h4><button type="roll" name="roll_brawn" value="&{template:custom} {{color=player}} {{title=Brawn}} {{subtitle=@{character_name} - Performance Pool}} {{Roll=[[@{Brawn}d4]]}}"> </button> Brawn <input type="text" name="attr_Brawn" style="width:30px; font-size:14pt; margin-left:5px; margin-top:-5px; line-height:20px" min="1" value="1" /></h4> <p class="sheet-text-hand" align="left" style="font-size:13pt; font-family:Shadows Into Light; margin-left:40px; margin-top:-3px; line-height:10px">Strength</p> Strength "> Strength "> But I will give custom roll parsing a shot. I'm very new with code, and I'm more and less just grabbing stuff and frankenstein'ing it together.