
I'm looking at running a Werewolf/Changing Brreeds game for a friend and I'm having a problem sorting out an attack macro due to having to subtract the target's defence from the number of dice rolled. I'm using the official Roll20 Chronicles of Darkness Character Sheet and using the Werewolf the Forsaken 2nd edition option on it, unfortunately it seems that whoever designed the character sheet forgot that shapechangers, change shape, and therefore their Physical Attributes can change, which means the defence changes. I've sorted it for the attack part by adding in the modified attributes on the attributes and abilities part of the general sheet (not the actual character sheet as it were), but the targets defence is giving me a problem. What I ideally want is [[(?{attacker form| Human, @{selected|strength}| Near Human, @{selected|near_human_strength}| Warform, @{selected|war_beast_strength}} + @{selected|brawl}-?{targets defence in current form| Human, @{target|human_defence}| Near Human, @{target|near_human_defence}| War Beast, @{target|War_Beast_defence}})d10>8!!]] Defence is worked out as the lowest of Dexterity or Wits + the Athletics skill. I found this macro after a search witch works fine as a basic one [[ [[ { @{selected|Dexterity}, @{selected|Wits} }Kl1]] + [[@{selected|athletics}]] ]] What I need now is to be able to change the Dexterity depending on form and still have it choose the lowest of the dexterity and the wits. I have created Attributes that I could target Human_Defence [[ [[ { @{selected|Dexterity}, @{selected|Wits} }Kl1]] + [[@{selected|athletics}]] ]] Near_Human_Defence [[ [[ { @{selected|Near_Human_Dexterity}, @{selected|Wits} }Kl1]] + [[@{selected|athletics}]] ]] War_Beast_Defence [[ [[ { @{selected|Warbeast_Dexterity}, @{selected|Wits} }Kl1]] + [[@{selected|athletics}]] ]] And then doing a query to just pick out the correct defence figure ?{current form| Human, @{human_defence}| Near Human,@{Near_Human_defence}| Warbeast, @{War_Beast_defence}} Unfortunetely I just can't get it to work. I've read the bit on nesting macros in queries using alternatives to } , or | but I just seem to end up getting syntax errors not regocnising them or just nothing happening. Hopefully that all makes sense, sorry I don't know how to put the macro sections to appear in their own boxes (as most people show them)