Hello, I've looked around a little and I'm beginning to get the hang of things. Please forgive me if I miss use terms. I hope the following doesn't sound like too much gibberish. I'm trying to create a list of queries that presents another list of queries based on your choices. For example, I have an ability I've called Reg. Reg pulls up the question of which weapon you want to use. Once you choose your weapon, Reg calls the appropriate weapon ability in the character sheet. Reg looks like this: ?{Weapon | Javelin, %{Charactername|Reg-Jav-Attack} | Greatsword, %{Charactername|Reg-Great-Attack}} Now Reg is one of three options, depending on your attack quality. Does one have advantage, disadvantage, or a regular attack? I've made a query that should pull up and start the choice selected. This one is called Attack : ?{Attack| Regular, %{Charactername|Reg} | Advantage, %{Charactername|Adv} | Disadvantage, %{Charactername|Dis}} I believe I might have to use alternate characters inside the nested ability to make it work, however doing so seems to break the ability all together. Is what I am trying possible? Is my mistake here blatantly obvious?