 
I'm trying to a nested roll query and seem to be having some problems. Working on a mechanic where the modifiers are dice—you can either add dice or subtract dice from your roll. I want a query that asks if you need to add or subtract dice and the answers in the drop down menu are: Neither (end of of query and proceed with roll), Add dice (generates another query with a drop down menu), and Subtract dice (generates another query with a drop down menu).  The problem I'm running into is that the values of the nested queries are roll template calls. I know to use } to close the curly braces, but that still doesn't seem to be working.  When I remove the roll template call and change them to straight up roll calls (i.e. [[1d10]]) things work flawlessly, but as soon as I put the template structure back in, it falls apart.   Is it not possible to do this, or is there another trick I need besides replacing the problematic characters?  Here's the code I have for the macro currently:  ?{Add or Subtract Dice?|Neither,0|Add,?{ Add how many?  |  +1  , {{st5=[[1d10]]}}| +2 ,{st4=[[1d10]]}}{{st5=[[1d10]]}} |  +3  , {{st3=[[1d10]]}}{{st4=[[1d10]]}}{{st5=[[1d10]]}} |  +4  , {{st2=[[1d10]]}}{{st3=[[1d10]]}}{{st4=[[1d10]]}}{{st5=[[1d10]]}} |  +5  , {{st1=[1d10]]}}{{st2=[[1d10]]}}{{st3=[[1d10]]}}{{st4=[[1d10]]}}{{st5=[[1d10]]}}}|Subtract,?{ Subtract how many?  |  -1  , {{st1=[0]]}} |  -2  , {{st1=[0]]}}{{st2=[[0]]}} |  -3  , {{st1=[0]]}}{{st2=[[0]]}}{{st3=[[0]]}} |  -4  , {{st1=[0]]}}{{st2=[[0]]}}{{st3=[[0]]}}{{st4=[[0]]}} |  -5  , {{st1=[0]]}}{{st2=[[0]]}}{{st3=[[0]]}}{{st4=[[0]]}}{{st5=[[0]]}}}} In an effort to make it easier to read, I bolded each drown down item (though not the value) and italicized the pipe (|) and comma (,) that precedes and follows the drop down item (separating the label from the value)  Is what I'm trying to do even possible?   EDIT:  Looks like when the question posted it converted the ampersand pound 124; and the ampersand pound 44; to the normal characters...so, just know that I have the correct in my query. :-/
 
				
			