
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}&{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. Do y'all have any advice on how to properly format this?