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

Help with Template Macro

I'm trying to create a macro for a few skills that use my Rogue's Reliable Talent feature but the second roll in my simple template is just a regular D20 and not the roll I have specified to take the higher of 1d20 or 0d1+10. &{template:simple} {{rname=^{acrobatics-u}}} {{mod=@{acrobatics_bonus}}} {{r1=[[{d20cf<0, 0d1+10}kh1+@{acrobatics_bonus}@{pbd_safe}]]}} {{always=1}} {{r2=[[{d20cf<0, 0d1+10}kh1+@{acrobatics_bonus}@{pbd_safe}]]}}   @{rtype}+@{acrobatics_bonus}@{pbd_safe}]]}} @{global_skill_mod} @{charname_output} This is what my macro looks like but it's not recognizing the r2 section and is just being ignored or over witten with a standard d20 plus modifier
1532775550
Spren
Sheet Author
I think you're missing some braces. The rtype is missing the double opening braces. When I break it out in to lines I get this: &{template:simple}  {{ rname=^{acrobatics-u}   }}  {{ mod=@{acrobatics_bonus} }}  {{ r1=[[{d20cf<0, 0d1+10}kh1+@{acrobatics_bonus}@{pbd_safe}]] }}  {{ always=1 }}  {{ r2=[[{d20cf<0, 0d1+10}kh1+@{acrobatics_bonus}@{pbd_safe}]] }}  @{rtype}+@{acrobatics_bonus}@{pbd_safe}]] }} @{global_skill_mod}  @{charname_output}
You're right, it had something to do with that. I couldn't figure out where they went but on a whim I cut that line out entirely because I wasn't sure why it was in there in the first place and now it works perfectly lol Thanks
1532808637
Spren
Sheet Author
No prob. Glad we figured it out! Cheers.