I'm trying to create macros for use with Armour Astir's confidence/despair mechanic, when it's combined with the advantage/disadvantage mechanic. In brief, the game is a 2d6 system, and confidence turns 1s into 6s, while despair turns 6s into 1. Advantage lets you roll an extra die (keeping the highest two), while disadvantage makes you roll an extra and keep the lowest two (advantage and disadvantage can be stacked). For the basic confidence/despair stuff, I'm basically using rollable tables that are meant to work as d6s where 1 or 6 is present twice and the other is absence (6 with weight 2 for confidence, 1 with weight 2 for despair). The tables seem to work fine. Combining them with advantage/disadvantage works fine as well. Confidence with advantage looks like this: /r {3t[conf]}kh2 You can probably figure out what the other combos look like. They work as expected. However, I'm trying to make a macro with a dropdown query so that players don't have to sift through macro buttons. I have this for the confidence roller: /r ?{Advantage|
Standard,2t[conf]|
Advantage,#conf-adv|
Disadvantage,#conf-dis|
Double Advantage,#conf-dbl-adv|
Double Disadvantage,#conf-dbl-dis}?{Bonus|+0|-3|-2|-1|+1|+2|+3} The standard roll works find, but the others do not. I just get an error message. I thought the issue could be using # instead of HTML escape replacements, but switching it to that didn't work. I also tried removing the "/r" from the macros being called. I'm a little stumped, so I'd appreciate any advice on what to try next. Thanks!