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

Getting this when using GroupCheck API Mod

April 14 (4 months ago)

With no changes made, this began happening this evening when attempting to use GroupCheck with the 2024 PC and NPC sheets


April 14 (4 months ago)
keithcurtis
Forum Champion
Marketplace Creator
API Scripter

Hi Spider!

My first guess is that you are using a Jumpgate game and have the 2014 and 2024 D&D sheets. If this is the case, check on your API page and make sure you are running the Experimental API server, not the Default (Production) server. I believe this is necessary in order for the script to function correctly under this setup.

April 14 (4 months ago)

This was indeed the problem. 

Why/how would it revert to Default like this?  I didn't switch it myself.

April 14 (4 months ago)
keithcurtis
Forum Champion
Marketplace Creator
API Scripter

It's a bug. It is currently being investigated and worked on, but it has been around for a while. It's annoying as it can take multiple attempts to get the reversion to revert.

Here is a little scriptlet by The Aaron that will alert you as to which engine is running at startup:

log(`API Restarted: ${typeof $20 !== "undefined" ? "EXPERIMENTAL" : "PRODUCTION"}`);
on('ready',()=>sendChat('API Restart', `/w gm <div><b>Server: <code>${typeof $20 !== "undefined" ? "EXPERIMENTAL" : "PRODUCTION"}<code></b></div>`));
It will send a whispered message to Chat, as well as put it in the API log.
April 14 (4 months ago)

Thank you!