
This is for a D&D 3.5 game.
I want to have one saving throw macro button for Fortitude, Reflex and Will saves.
When players click on the 'Saves' button I want them to get this drop-down list: https://screenshot.googleplex.com/9Zw5xLs6D7LiqEm (The option list at the bottom of the SS is what you see when opening the drop-down).
A player that clicks on 'Fortitude' should see: https://screenshot.googleplex.com/ALPtQW3JQNAWYDP
A player that clicks on 'Reflex' should see: https://screenshot.googleplex.com/9YGfKnX7FfTDbAM
A player that clicks on 'Will' should see: https://screenshot.googleplex.com/wA8gBEdMK2hUebY
This is the ability I created for it:
?{Choose a Saving Throws|Fortitude, @{selected|fortitudemacro} |Reflex, @{selected|reflexmacro}|Will, @{selected|willmacro}}
I have added the 3 attributes for the character: https://screenshot.googleplex.com/BDZNaEFyr3iRLst
The values are the generated macros for each role.
fortitudemacro: &{template:DnD35StdRoll} {{saveflag=true}} {{name=@{character_name} }} {{subtags=braces against the attack}} {{check=Fortitude check:}} {{checkroll= [[ 1d20 + [[ @{fortitude} ]] ]] }} {{notes=@{fortitudenote} }}
reflexmacro: &{template:DnD35StdRoll} {{saveflag=true}} {{name=@{character_name} }} {{subtags=tries to dodge}} {{check=Reflex check:}} {{checkroll= [[ 1d20 + [[ @{reflex} ]] ]] }} {{notes=@{reflexnote} }}
willmacro: &{template:DnD35StdRoll} {{saveflag=true}} {{name=@{character_name} }} {{subtags=tries to resist}} {{check=Will check:}} {{checkroll= [[ 1d20 + [[ @{will} ]] ]] }} {{notes=@{willnote} }}
This doesn't work... This is what I get when I run the macro: https://screenshot.googleplex.com/9VBzwH93adHoppv
Looking at the different parts of the Saving throw macros, I see three different parts:
subtags
check
checkroll
Since these have different values for each type of saving throws, I understand that they need to be inside the drop-down code so that the user's choice would decide the value for them.
Is what I want to do possible?
Thanks.