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

(Roll20 5e Character Sheet) Adding additional dice to skill checks

1607873702

Edited 1607873757
I'm trying to implement a way of adding 1d4 to specific skills (Stealth and Performance) for a character, using this solution from the following thread: <a href="https://app.roll20.net/forum/post/8874284/additional-1d4-for-ability-checks-of-specific-races" rel="nofollow">https://app.roll20.net/forum/post/8874284/additional-1d4-for-ability-checks-of-specific-races</a> Specifically, I am substituting the following script for the default 'stealth_roll' script under Attributes and Abilities: @{wtype}&amp;{template:simple} {{rname=^{stealth-u}}} {{mod=@{stealth_bonus}}} {{r1=[[@{d20}+2[Proficiency]+3[dexterity]@{pbd_safe}]]}} {{always=1}} {{r2=[[@{d20}+2[Proficiency]+3[dexterity]@{pbd_safe}]]}} {{global=[[@{global_skill_mod}+1d4[Cunning Intuition]]]}} @{charname_output} However, instead of rolling an additional 1d4 with the roll, it's defaulting to a 1.&nbsp; Do y'all have any advice on how to properly format this?
Untested, but try this (putting brackets around the 1d4): @{wtype}&amp;{template:simple} {{rname=^{stealth-u}}} {{mod=@{stealth_bonus}}} {{r1=[[@{d20}+2[Proficiency]+3[dexterity]@{pbd_safe}]]}} {{always=1}} {{r2=[[@{d20}+2[Proficiency]+3[dexterity]@{pbd_safe}]]}} {{global=[[@{global_skill_mod}+ [[ 1d4 ]] [Cunning Intuition]]]}} @{charname_output}
Huh, that did it.&nbsp; Thank you for your assistance!