Hello there! I am using a common blind rolls-API from the forum (with German just meaning "result sent to GM") in my games: on("chat:message", function(msg) { var cmdName = "!broll "; var msgTxt = msg.content; var msgWho = msg.who; var msgFormula = msgTxt.slice(cmdName.length); if(msg.type == "api" && msgTxt.indexOf(cmdName) !== -1) { sendChat(msgWho, "/gmroll " + msgFormula); sendChat(msgWho, "/w " + msgWho + " Ergebnis an SL gesendet (" + msgFormula + ")"); }; }); However for some time my blind roll-abilities (determined in the html-layout) don't seem to work anymore. I didn't change anything, but blindroll-abilities wouldn't be sent or even rolled on anymore. No error message in chat. Just nothing after clicking the button... Does someone made a similar experience and/or knows a way out? Thanks very much for any help!