
So here I figured we could do a thread for how we can use drop down queries... Share ideas... One that I have been using them for is for situation-based things. Example: (Here are some from my pathfinder game) I have a Paladin who has Greater Mercy, so I heal an additional 1d6 HP damage if I am not applying a Mercy... Normally I just had to manually add an extra d6, but no more! &{template:default} {{name=Lay on Hands}} {{Result=?{Mercy Applied?|No, [[3d6]] |Yes, [[2d6]]}}} This one is simple, it gives me a template output (I love template outputs) and a drop down to select if my mercy applies or not. Simple, clean, really useful. Then I added one for channeling positive energy: &{template:default} {{name=Channel Positive Energy}} {{Effect= ?{What are you targeting?| Living, All **living** targets within a 30 ft radius regain [[2d6]] HP.| Undead, All **undead** targets within a 30 ft radius take [[2d6]] HP damage. They may make a Will Save DC [[10+2+4]] to take half damage.} }} This one is fun, once more it gives a template output and a drop down to select if I am targeting the living or the dead. Then it outputs different text depending on what I selected. I'm sure that other uses could be for things like, a 1 click Cure macro that lets the caster select from their available spells? (Example) &{template:default} {{name=Divine Spellcasting}} {{Effect= ?{Which Cure spell are you casting?| Cure Light Wounds, **Cure Light Wounds** Target Regains [[1d8+5]] HP.| Cure Moderate Wounds, **Cure Moderate Wounds** Target Regains [[2d8+8]] HP.| Cure Serious Wounds, **Cure Serious Wounds** Target Regains [[3d8+8]] HP.} }} So what uses have others come up with?