Update: Pathfinder Trap Theme v3.5 In this update, I've added support in the trap theme for Roll20's official Pathfinder sheet. Pull request pending: <a href="https://github.com/Roll20/roll20-api-scripts/pull/" rel="nofollow">https://github.com/Roll20/roll20-api-scripts/pull/</a>... Also in this update, the "Pathfinder" sheet option (for the sheet created by Sam M. and co.) has been renamed to "Pathfinder Community". Because of this, if were using the community sheet, then you'll likely see errors in the chat asking you to set the fields for various character sheet attributes. Just change the sheet to "Pathfinder Community" and you should be fine. To make use of the PF theme script while its pull request is still pending, you'll also need to add a script to mock up its user options state: on('ready', () => {
state.itsatrapthemepathfinder = {
useroptions: {
sheet: 'Pathfinder Official',
// ac: 'ac',
// fortSaveModifer: 'fortSave',
// refSaveModifier: 'refSave',
// willSaveModifier: 'willSave',
// perceptionModifier: 'perc',
// cmd: "cmd",
enablePassivePerception: "1"
},
passPercAttempts: {},
trapSpotterAttempts: {}
};
globalconfig.itsatrapthemepathfinder = undefined;
log('TEST - mocking up globalconfigs for ItsATrap PF Theme.');
});