I'm trying to make an inline ability that prompts the user to choose any value between 1 and 12 to add to a roll and display the roll result within the box. I can figure out how to do a basic query or a dropdown list, but dropdowns are slow and clumsy, and I don't want to make 12 options to choose from or do some weird workaround with new attributes. Is there any way I can use something like a comparator operation to check the input, then if it's below the minimum value to chooses the minimum value, and if it's above the maximum to choose the maximum? So basically, this kind of logic: Query user input X If X < 1, choose 1 If X > 12, choose 12 Output inline result Roll+X