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

Custom roll templates not appearing in chat archive

1754761947

Edited 1754762030
Quinn
Pro
Sheet Author
Steps taken: Create new legacy game "Test A" with custom character sheet. Give it an extremely rudimentary character sheet - just a button that does a Basic Attack roll with some CSS. Click button to do a basic attack. Check chat archive. Update game to Jumpgate. Click button to do a basic attack. Check chat archive. In in-game chat window: In chat archive: Rolls were also missing in the chat archive of the legacy backup game. Rolls were also missing in the chat archive of a legacy game that wasn't updated to Jumpgate. Seems universal. HTML: <script type="text/worker"> function rollBasicAttack() { let command = `&{template:ascent} {{rollname=Basic Attack}} {{attack=[[1d20]]}}`; startRoll(command, function(result) { finishRoll(result.rollId); }); } on("clicked:basicattack", function() { rollBasicAttack(); }); </script> <div class="container"> <div> <button type='action' name='act_basicattack'>Attack</button> </div> </div> <rolltemplate class="sheet-rolltemplate-ascent"> <div class="container"> <div class="header"> <span class="major-label">{{rollname}}</span> </div> <div class="section"> <span class="label">Attack: </span> {{attack}} {{attackadvantage}} </div> </div> </rolltemplate> CSS: .container { min-width: 840px; padding: 0px; } .basic-attack { border: 2px solid #916C4A; padding: 4px; margin-bottom: 5px; display: grid; width: auto; grid-template-columns: min-content min-content; grid-template-rows: repeat(3, 1fr); align-items: center; grid-column-gap: 2px; white-space: nowrap; } .sheet-rolltemplate-ascent .sheet-container { background: #DCC8AF; border: 2px solid #916C4A; } .sheet-rolltemplate-ascent .sheet-header { background: #CEB18E; border-bottom: 1px solid #916C4A; padding: 5px; } .sheet-rolltemplate-ascent .sheet-section { height: 18px; margin: 3px; padding: 5px; } .sheet-rolltemplate-ascent .sheet-label { font-weight: bold; } .sheet-rolltemplate-ascent .sheet-major-label { font-weight: bold; font-size: large; font-style: italic; } Issue seems to be occurring in all my games with custom sheets, which is every game I'm running. Link to join game here , no scripts attached and confirmed in both chrome and firefox.
1754762210
Quinn
Pro
Sheet Author
Update - this issue is visible even in older logs where I'm positive they were displaying before. Nowhere in any game are custom roll templates visible in the chat archive.
1754763242

Edited 1754763256
Gauss
Forum Champion
Hi Quinn,  You might want to post this in the Character Sheet forum where other character sheet coders are more likely to see it. Perhaps they can help figure out what is going on.  On the other hand, if you are trying to contact Roll20 the best method is via the Help Center as the Bug Report forum is primarily for community support. 
1754771616

Edited 1754771644
vÍnce
Pro
Sheet Author
I'm not seeing any sheet template formatting in the chat archive...   I can only see raw "un-templated" rolls or ones made with the default roll template. (checked a legacy and JG custom game)