Alex B. said: One related follow on: Is there a way to structure a multiple call under a single Whisper toggle? For example, the following code for spells has the Whisper toggle, then three spell calls - but the toggle only impacts the first rather than all three. Any way to set it up to get all of them and by extension any number of calls? ?{Whisper|No, |Yes,/w gm} %{selected|repeating_spell-3_$0_spell} %{selected|repeating_spell-3_$1_spell} %{selected|repeating_spell-3_$2_spell} I might have the wrong end of the stick here.... if you're asking if you can just keep applying the whisper to new lines, then no, Keith's right. There's no way of leaving the whisper open-ended. But if you specifically want those 3 spells to cast, or you have a set number of lines? Sure.... they're technically separate whispers, but you only get queried once. Although it may not be a good idea in this case! ?{Whisper|No, |Yes,/w gm} %{selected|repeating_spell-3_$0_spell} ?{Whisper}%{selected|repeating_spell-3_$1_spell} ?{Whisper}%{selected|repeating_spell-3_$2_spell} If you type multiple queries with the same name (exactly the same) it will keep using the option you selected. Unfortunately in this case, if you multi-cast spells like this the same Query logic will apply to your spell slot level selection. Whatever level you choose to cast the first spell at is what the next two will use because the Higher Level Cast queries all have the same name. So maybe avoid it for spells, unless you want to add your own custom Upcast queries with differing names.