I started using the most recent version of the script a couple days ago. Things were going GREAT and I was able to get some Monster Manual tokens and character sheets created then out of the blue WHAM no longer working. This was 2 days ago, tonight I found I had time to start debugging the script hoping it was something in the script that failed.
So I put a couple log messages in the script to see what is going on. Hopefully they show in this message as bolded and italicized
shaped.statblock = {
version: 'Jan 26th, 2016',
addTokenCache: [],
RegisterHandlers: function () {
log('In RegisterHandlers');
on('chat:message', HandleInput);
if (shaped.settings.rollMonsterHpOnDrop) {
on('add:graphic', function (obj) {
shaped.statblock.addTokenCache.push(obj.id);
});
on('change:graphic', function (obj) {
shaped.rollTokenHpOnDrop(obj);
});
}
log('Shaped Scripts ready');
}
};
function HandleInput(msg) {
log('at HandleInput');
commandExecuter = msg.who;
if (shaped.settings.useAmmoAutomatically && msg.rolltemplate === '5eDefault' && msg.content.indexOf('{{ammo_auto=1}}') !== -1) {
var character_name;
var attribute;
var match;
var regex = /\{\{(.*?)\}\}/gi;
Note the log message that would display when an chat:message was received and the HandleInput function was called
What follows is what the log window shows when I restart the sandbox and attempt to do a !shaped-import
Restarting sandbox due to script changes...
Spinning up new sandbox...
"In RegisterHandlers"
"Shaped Scripts ready"
Like I said I am not blaming the script at all because I was able to create 28 Monster Manual sheets before the script apparently lost connection with the campaign. But ever since the connection was lost I have not been able to use the script.
Very frustrating to pay for the ability to use the API scripting and it quit working, not through the fault of the script but because of something else. But if anyone has had issues like this and can assist me in making sure my connection between the API and the Campaign is maintained so I can finish getting the Monster Manual tokens finished I would appreciate it greatly.