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

Custom character sheet rolls

Friend of mine is running Goblin with a Fat Ass on Roll20. Sadly, there is no character sheet available. However, after cribbing very heavily from Joe Eager's D6 Adventure Sheet, I have the majority of a working character sheet. The problem that I am running into is the Ass roll. I am using this code for the roll button: <button type='roll' value='@{whispertoggle} &{template:default} {{name=Ass}} {{Roll=[[(@{assdice})d6cf0cs0]]}}'>Ass</button> The issue is that this rolls the sum of all the dice roilled. I would like it to show the result of each indiviual dice instead. Could someone point out what I am missing here?
1726680672
GiGs
Pro
Sheet Author
API Scripter
The default with roll20 rolls is to sum up dice. If you want to see wach die individually, the easiest, hackiest way is to hover your mouse over the result: Failing that, you might have to look into Custom Roll Parsing, and build your own custom rolltemplate. Thats quite tricky - maybe someone will post an easier way.
1726680790
GiGs
Pro
Sheet Author
API Scripter
Also, for your roll button you'll want to include a name, like this <button type='roll' name='roll_ass' value='@{whispertoggle} &{template:default} {{name=Ass}} {{Roll=[[(@{assdice})d6cf0cs0]]}}'>Ass</button> This lets players drag the button the macrobar if they use it, and access the button directly in macros which you can't do without the name.
Thanks for the reply, GiGs, and for the suggestion.