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