chris b. said: Samuel Penn said: Are there any plans to add in support for the Sanity rules? no specific plans, but we know we need to add in Occult, Horror, and Intrigue rules, we have not even started on those and they've been out for awhile. I have the books but have not read through them. That is partly why i added so many fields to the Notes page, so people could create their own macro values and rolls without having to use the abilities tab, since IDK when we will get to them. Okay, fair enough. We're just about to start a Strange Aeons campaign, so I'm trying to figure out how to do it with custom fields. Sanity Threshold is the real difficulty, because it's very non-standard. It's based on the bonus of your highest mental ability score, minus any ability damage to that score. How would I figure this out? For a perfectly generic solution, I'd need to figure out the highest ability, and find the ability damage associated with that ability. So far, for everything, I'm using: customc1 (Sanity Score): @{WIS} + @{INT} + @{CHA} + @{INT-damage} + @{INT-penalty} + @{INT-drain} + @{WIS-damage} + @{WIS-penalty} + @{WIS-drain} + @{CHA-damage} + @{CHA-penalty} + @{CHA-drain} customc2 (Sanity Edge): ceil(@{customc1-mod}/2) customc3 (Sanity Threshold): @{WIS-mod},@{INT-mod},@{CHA-mod}}kh1 customd1: @{selected|NPC-whisper} &{template:pf_block} @{selected|toggle_accessible_flag} @{selected|toggle_rounded_flag}{{color=@{selected|rolltemplate_color}}} {{header_image=@{selected|header_image-pf_block}}} {{character_name=@{selected|token_name}}} {{character_id=@{selected|character_id}}} {{subtitle}} {{name=Sanity}} {{sanity=**Sanity Score:** [[@{selected|customc1-mod}]] }} {{edge=**Sanity Edge:** [[@{selected|customc2-mod}]]}} {{current=**Current:** [[@{selected|bar2}]]}}{{threshold=**Sanity Threshold:** [[@{selected|customc3}]]}} I'm using token bar2 to track my current sanity, though I'm not sure yet how to link this to a custom field on the character (other than just creating a non-character-sheet attribute, and ignoring the character sheet for this). How do I find the ability damage for my highest attribute? Even if I stopped trying for a generic approach, and hardcoded the Threshold to Wisdom (my highest attribute), how do I find the wisdom bonus before any ability damage? Is there an attribute for this, or do I need to work out the maths ((attribute - 10) / 2) myself? Unless I'm reading things wrong, which is possible, because the rules for working out Sanity Threshold seem unusual (the bonus for the attribute, minus any damage to that attribute, rather than just allowing damage/drain to reduce the bonus in the normal way).