
Is it possible to update the settings area of a sheet with CharSetAttr? In particular the Roll Configuration (NPC / PC / Stats Rolls) I want to set them all to "Public Rolls" on every single sheet. If it can't be done with CharSetAttr can it be done by using a modified copy of my movement speed update code: findObjs({type:'attribute',name:'movement-speed'}).forEach((a) => {
const speed = parseInt(getAttrByName(a.get('characterid'), 'speed-modified')) || 30;
a.set('current', speed / 5);
});
What would the attribute names be for the 3 roll configuration options? How can I update EVERY SINGLE sheet to use Public Rolls?