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

looking for roll template for PF 1E legacy sheet on the wiki but can't find them

Hello I am looking for a list of roll templates for the Pathfinder 1e legacy sheet. I can't seem to find them I thought I found them before but now I can't find anything for the legacy sheet on the wiki can someone help me?
1654992701
Kraynic
Pro
Sheet Author
I'm not sure, but maybe a couple of the links from this page might lead to what you are looking for: <a href="https://wiki.roll20.net/Category:Pathfinder" rel="nofollow">https://wiki.roll20.net/Category:Pathfinder</a>
is there like a generic roll template for the legacy sheet? i have a macros that has multiple lines and i need to have a line for each calculation
1655004085

Edited 1655004101
Kraynic
Pro
Sheet Author
I don't know.&nbsp; The easiest way to know would be to roll something off the sheet that uses a roll template (if the rolls there do), put your cursor in the chat box, and then hit the up arrow to see that last command given.&nbsp;
1655040081

Edited 1655040091
Andreas J.
Forum Champion
Sheet Author
Translator
<a href="https://wiki.roll20.net/Pathfinder_by_Roll20/Roll_Templates" rel="nofollow">https://wiki.roll20.net/Pathfinder_by_Roll20/Roll_Templates</a> it was one of the pages listed on Kraynic's link.
well that seems to not work in the case of the legacy layout sheet. i will go through the sheet and roll a bunch to try and figure it out but thanks for all the help.
1655193332

Edited 1655193381
vÍnce
Pro
Sheet Author
Here's the code.&nbsp; Might help determine the roll template's keys &lt;rolltemplate class="sheet-rolltemplate-pf"&gt; &lt;table&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;{{charName}} &amp;#x21D2; {{attr}}&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt;{{#isAttack}}{{#rollWasCrit() result}} &lt;tr&gt; &lt;td&gt; &lt;h3 class="crit" data-i18n="critical-hit-tpl"&gt;Critical Hit! {{result}}&lt;/h3&gt; &lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td data-i18n="roll-to-confirm-tpl"&gt;Roll to Confirm {{critConfirm}}&lt;/td&gt; &lt;/tr&gt;{{/rollWasCrit() result}}{{#^rollWasCrit() result}} &lt;tr&gt; &lt;td data-i18n="attack-tpl"&gt;Attack {{result}}&lt;/td&gt; &lt;/tr&gt;{{/^rollWasCrit() result}} &lt;tr&gt; &lt;td&gt; &lt;hr/&gt; &lt;/td&gt; &lt;/tr&gt;{{#rollWasCrit() result}} &lt;tr&gt; &lt;td class="crit" data-i18n="crit-damage-tpl"&gt;Crit Damage {{critDamage}}&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td data-i18n="non-crit-damage-tpl"&gt;Non-crit Damage {{damage}}&lt;/td&gt; &lt;/tr&gt;{{/rollWasCrit() result}}{{#^rollWasCrit() result}} &lt;tr&gt; &lt;td data-i18n="damage-tpl"&gt;Damage {{damage}}&lt;/td&gt; &lt;/tr&gt;{{/^rollWasCrit() result}}{{#notes}} &lt;tr&gt; &lt;td class="notes"&gt; &lt;div data-i18n="notes-tpl"&gt;Notes:&lt;/div&gt; &lt;div&gt;{{notes}}&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt;{{/notes}}{{/isAttack}}{{#isNotAttack}} &lt;tr&gt; &lt;td data-i18n="result-tpl"&gt;Result {{result}}&lt;/td&gt; &lt;/tr&gt;{{#notes}} &lt;tr&gt; &lt;td class="notes"&gt; &lt;div data-i18n="notes-tpl"&gt;Notes:&lt;/div&gt; &lt;div&gt;{{notes}}&lt;/div&gt; &lt;/td&gt; &lt;/tr&gt;{{/notes}}{{/isNotAttack}} &lt;/tbody&gt; &lt;/table&gt; &lt;/rolltemplate&gt; Seems to boil down to {{charName}}{{attr}} {{#isAttack}} {{#rollWasCrit() result}} {{result}} {{critConfirm}} {{/rollWasCrit() result}} {{#^rollWasCrit() result}} {{result}} {{/^rollWasCrit() result}} {{#rollWasCrit() result}} {{critDamage}} {{damage}} {{/rollWasCrit() result}} {{#^rollWasCrit() result}} {{damage}} {{/^rollWasCrit() result}} {{#notes}}{{notes}}{{/notes}} {{/isAttack}} {{#isNotAttack}} {{result}} {{/isNotAttack}}