I am using a pathfinder sheet.
I am having trouble understanding you, I looked at the advanced roll query and assumed I would need to replace all or some of the | and } but it did not work, I thought that maybe it was some(the ones inside the brackets) and it did not work either for the outside ones or the inside ones.
Just to clear up just in case, What I am looking for are these steps:
- I select any token(Example a bandit or a player)
- I start the macro
- It asks me what I want to roll from the selected token in a drop-down menu style(Fortitude, Reflex or Will checks).
- I choose for example fortitude, then click submit.
- The macro looks inside the character sheet for the fortitude roll(1d20 + Fortmod) and rolls it.
I hae done this before but for initiative and perception and it works:
/emas @{selected|token_name} Gets ready to fight.
%{selected|Roll-for-initiative}
It works, even if I do it for saves, but as soon as I try to make it into multiple selection drop-down menu style it stops working. I assume that what you are trying to say is that the way I am trying to make it wont work for dropdowns and must change the | for the respective character replacement
I have tried these for example
[original]
?{Choose a Save|Fortitude, %{selected|Fort-Save}|Reflex, %{selected|Ref-Save}|Will, %{selected|Will-Save}}
[character replacement into the html equivalent in the parenthesis]
?{Choose a Save(|)Fortitude, %{selected|Fort-Save}(|)Reflex, %{selected|Ref-Save}(|)Will, %{selected|Will-Save}}
[character replacement into the html equivalent in the parenthesis]
?{Choose a Save|Fortitude, %{selected(|)Fort-Save}|Reflex, %{selected(|)Ref-Save}|Will, %{selected(|)Will-Save}}