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
This post has been closed. You can still view previous posts, but you can't post any new replies.

Charactermancer stopped working

I'm not sure if this is the place to post this so move if necessary. I'm creating a character creator for a non D&D system using the new charactermancer. It was working on August 27th and now it is no longer initiating the charactermancer. Hopefully someone can tell me where my error is or if the system is just down. I have tried this code in a blank custom character sheet to eliminate the interference of the rest of my character sheet code with no luck. I have tried this on another computer as well. Browser: Google Chrome Version 68.0.3440.106; cache cleared on both computers OS: PC-1: Windows 7; PC-2: Windows 10 Button to initiate the charactermancer located on the character sheet. <div class="section-charmancer">        <button type="action" name="act_start_charmancer" data-i18n="charmancer-u">START CHARACTER CREATION</button> </div> Charactermancer section of my code. <!-- Charactermancer --> <charmancer class="sheet-charmancer-intro"> <div> <div class="row button-menu"> <div class="col"> <button type="submit" value="step1" title="Character Concept">Step 1</button> </div> <div class="col"> <button type="submit" value="step2" title="Abilities">Step 2</button> </div> <div class="col"> <button type="submit" value="step3" title="Race">Step 3</button> </div> <div class="col"> <button type="submit" value="step4" title="Social Class & Background">Step 4</button> </div> <div class="col"> <button type="submit" value="step5" title="Class">Step 5</button> </div> <div class="col"> <button type="submit" value="step6" title="Starting Equipment">Step 6</button> </div> <div class="col"> <button type="submit" value="step7" title="Defense">Step 7</button> </div> <div class="col"> <button type="submit" value="step8" title="Name">Step 8</button> </div> <div class="col"> <button style="margin-right:0;" type="submit" value="step9" title="Goals & Ties">Step 9</button> </div> </div> <hr> <div class="main-heading"> <span data-i18n="character-creation-intro">Character Creation Introduction</span> </div> <div class="col"> </div> <hr> <div class="row button-bottom"> <div class="col"> <button type="cancel" data-i18n="cancel_charactermancer" style="margin-left:380px;">Cancel</button> </div> <div class="col"> <button type="submit" value="step1" style="margin-right:0;">Next</button> </div> </div> </div> </charmancer>  Sheet Worker section. <!-- Sheet Workers --> <script type="text/worker"> on("clicked:start_charmancer", function() { startCharactermancer("intro"); }); </script> JSON (contained in curly brackets) "charmancer-u": "START CHARACTER CREATION", "character-creation-intro": "Character Creation Introduction", "character-creation-step1": "Step 1: Character Concept", "cancel_charactermancer": "Cancel" Any help would be appreciated. Thanks, Matt
Hello Matt, Currently the Charactermancer tools are still in an unreleased state so there will be some instability expected. That said, the issue at this time might be in not having a compendium selected. If you select one of the compendiums (even if you don't use it) does this bring it back to a working state?
1535645624

Edited 1535646230
Drespar said: Hello Matt, Currently the Charactermancer tools are still in an unreleased state so there will be some instability expected. That said, the issue at this time might be in not having a compendium selected. If you select one of the compendiums (even if you don't use it) does this bring it back to a working state? Thanks Drespar for getting back to me and for the suggestion. Unfortunately selecting a compendium didn't make a difference. I had thought the charactermancer was officially released being on the prod server. Although, I might be mistaken as to what you mean by 'unrealeased' but as you said it might just be unstable. Thanks again for the suggestion. EDIT: This did work. I had added code that was interfering with the sheet workers. So yes, selecting a compendium did work. Thanks Drespar!