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

Calling macro inside query?

I'm trying to call two different macros as values to query label drop downs. What I have so far is this: [[ ?{Attack Type|Standard, 1d20|Advantage, 2d20d1|Disadvantage, 2d20dh1} + ?{d20 Modifier|0} ]] ?{Reason?|General, |AC, #vsAC}|Saving Throw, #sthrow } vsAC Macro: vs @{target|character_name} AC sthrow Macro: ?{Save ability|Strength|Dexterity|Constitution|Intelligence|Wisdom|Charisma} both the sthrow and vsAC macros work individually but when used in the top example it just breaks completely. Any help would be awesome.
1442193988

Edited 1442194005
You have to do a lot of html character entity replacement. Silvyre seems to be pretty good at it.
Do you mean using the "&124;" type replacements?
Yup... a  LOT  of those types of replacements. It's a real pain in the butt.
1442197288

Edited 1442197410
Well, not that many. :) [[ ?{Attack Type|Standard, 1d20|Advantage, 2d20d1|Disadvantage, 2d20dh1} + ?{d20 Modifier|0} ]] ?{Reason?|General, |AC, vs @{target|character_name} AC|Saving Throw, ?{Save ability|Strength|Dexterity|Constitution|Intelligence|Wisdom|Charisma} }
Thank you both. I'm so appreciative of the help and a little in disbelief that it finally works.