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

Can Roll Templates be used with Character Sheet rolls?

I am currently working on building a character sheet for Battletech: A Time of War. I wanted to put in a few sheet rolls but am having trouble with the formatting. I was looking around and saw the Roll Templates listed. Post can be found here. Dev Update As far as I can tell these work with Macros but I haven't been able to figure out how to make it work with the roll button on my character sheet. Is this even possible or not a feature put in game yet?
Currently only possible on the dev server.
1425193864

Edited 1425193919
vÍnce
Pro
Sheet Author
You need to change the sheet roll button macros to use the roll templates. The value attribute needs to include the roll template macro info. example (bold info show changes); here's the Caster Level check button for the PF sheet (without roll template) <button style="font-size: 100%" title="%{selected|Spell-Class-0-CL-Check}" type="roll" name="roll_Spell-Class-0-CL-Check" value=" @{character_name}'s @{spellclass-0-name} caster level check: [[1d20 + @{spellclass-0-level} + @{spellclass-0-level-misc}]]" class="btn ui-draggable ">CL Check</button> Caster Level check button for the PF sheet (with roll template) <button style="font-size: 100%" title="%{selected|Spell-Class-0-CL-Check}" type="roll" name="roll_Spell-Class-0-CL-Check" value=" &{template:pf_check} {{name=Caster Level Check}} {{caster_class=@{spellclass-0-name} [[@{spellclass-0-level}]] }} {{caster_lvl_chk=[[1d20 + @{spellclass-0-level} + @{spellclass-0-level-misc}]] }}" class="btn ui-draggable ">CL Check</button>