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

Mythic Odysseys of Theros & Silver Tongue

Before I buy Mythic Odysseys of Theros, I wanted to know if the character sheet supported Silver Tongue? Is it an easy clickable like applying expertise or is it something that you need a macro for? Thanks
I'd love an answer to this too, I've found that if you just want to do the calculation you can use [[ {1d20+Mod, 0d0+10+Mod}kh1 ]] as a macro. That is rather ugly so a nicer template would be preferred, but it's a start!
I tried your macro but got. SyntaxError: Expected "(", ".", "[", "abs(", "ceil(", "d", "floor(", "round(", "t", "{", [ |\t], [+|\-], [+|\-|*|\/|%] or [0-9] but "M" found Did I miss something?
1593961676
Finderski
Plus
Sheet Author
Compendium Curator
Chinook N. said: I'd love an answer to this too, I've found that if you just want to do the calculation you can use [[ {1d20+Mod, 0d0+10+Mod}kh1 ]] as a macro. That is rather ugly so a nicer template would be preferred, but it's a start! I'm not familiar with the sheet, but I can say the problem is going to be "Mod" It either needs to be @{Mod} or a roll Query like ?{Mod|0}.  I don't know which would be correct, but Mod is definitely the problem in the above macro.
1593963276
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
To be absolutely true to the D&D 5th Edition by Roll20 Sheet, try these. They are based on the formulas created by a rogue's Reliable Talent feature: Persuasion @{wtype}&{template:simple} {{rname=^{persuasion-u}}} {{mod=@{persuasion_bonus}}} {{r1=[[{@{d20},0d20+10}k1+@{persuasion_bonus}@{pbd_safe}]]}} {{always=1}} {{r2=[[{@{d20},0d20+10}k1+@{persuasion_bonus}@{pbd_safe}]]}} {{global=@{global_skill_mod}}} @{charname_output} Deception @{wtype}&{template:simple} {{rname=^{deception-u}}} {{mod=@{deception_bonus}}} {{r1=[[{@{d20},0d20+10}k1+@{deception_bonus}@{pbd_safe}]]}} {{always=1}} {{r2=[[{@{d20},0d20+10}k1+@{deception_bonus}@{pbd_safe}]]}} {{global=@{global_skill_mod}}} @{charname_output}
Thanks