
Hello, I'm currently coding a character sheet and have met a problem. What I'm trying to do is to nest a drop-down query inside of another drop-down query, so that it would produce a tree of options(Select one of three options then have to select one af two more options...). This is specifically needed for selecting predefined in-roll formulas(so no player typing any value here, just selecting things). I can't use a simple ?{query} + ?{query} instead of nesting the second in the first, because some of the primary options don't lead to secondary options and I want to limit the number of queries to a minimum for each option string, to keep them as unintrusive as I can. I know how to nest normal queries inside of other normal or drop-down queries, replacing ',' '}' and '|' by their html entities but what I want is to nest another drop-down prompt in my drop-down prompt, in order not to have dozens of options in one query(I also try to keep the number of separate roll buttons to a minimum, that's why I need one single central query). So my question is simple: Is it possible to nest a drop-down query inside another drop-down query? And how? I hope this wasn't difficult to understand, thank you !