I'm running a system that uses "successes" on d6es rolling above a certain value. An example of a roll under this system would be: 2d6>4 which rolls 2 dice, then counts how many of those dice rolled 4 or greater and returns that number. This works fine. I have figured out that I can insert a roll query, like so: (2+?{Extra Dice|0})d6>4 which brings up a prompt allowing me to add extra dice to the roll. However, I would also like to have such a prompt for reducing the success threshold: 2d6>(4-?{success threshold reduction}) but when I try this, it returns... 2. It doesn't roll any dice, it simply returns 2. How could I do this in a way that works as intended?