Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Looking to use a ?{Modifier|0} query in a Skills Drop down macro

I want to add a modifier query in a skill roll macro.  The macro has a drop down list of skills to chose from.  This is all from a basic character sheet (adding info on the Attributes & Abilities tab).  Here is the first part of the macro with a few of the skills. &{template:default} {{name=@{selected|token_name}'s Skill-Test}}  {{ Rolled[[1d10-1]][[1d10-1]][[1d10-1]]}}{{?{Skill| Athletics, Athletics  Skill=  [[ @{selected|BODY} +@{selected|Strength} +@{selected|Athletics}]]| CloseCombat, CloseCombat Skill=  [[@{selected|BODY} +@{selected|Strength} +@{selected|CloseCombat}]]| I want to add +?{Modifier|0} to each skill line for a modifier. I know the roll is unorthodox but I'm trying something new here.  Thanks for any help.
1595721795

Edited 1595721878
Kraynic
Pro
Sheet Author
My suggestion would be to take off the closing ]] from each Skill query entry.  That will leave you with an open ended roll. So your Athletics would become something like this: Athletics  Skill=  [[ @{selected|BODY} +@{selected|Strength} +@{selected|Athletics}| After end of your skill query, you just add on the new one +?{Modifier|0}]]  with the closing double square brackets.  Edit: I haven't tested this, but I think it should work.
It works, thanks so much!