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

Adding to dices separately

I want a roll button to get number of dices to roll and then add to each and every dice. I have managed to get number of dices from skill and other parameters (eg /roll skill+strengthd6) but if I want to add +1 it only adds that to the total sum. Is there a way for a roll button to collect number of dices (like above) and then add to each and every dice separately?
Not really something you can do by default... but you can do this: /roll (?{Skill} + ?{Strength})d6 + (1 * (?{Skill} + ?{Strength})) Just replace ?{Skill} with your @{Skill} attribute call and such. You can also replace the 1 * with ?{Modifier|0} to adjust it on the fly for each roll.
Ok. Thanks.