Hello! I'm hoping someone can help me with the Macros I want to create. My base sample Macros is this: &{template:default} {{name=Healing Potion}} {{ ?{Type| Normal (4-10 HP) , **Normal:** [[2d4+2]] | Greater (8-20 HP), **Greater:** [[4d4+4]]| Superior (16-40 HP), **Superior:** [[8d4+8]]| Supreme (30-60 HP), **Supreme:** [[10d4+20]] }}} This lets me pick a potion type and roll its benefits based on what I chose. I want to do something similar for NPC attacks by selecting its token. Replacing Normal (4-10 HP) with @{selected|repeating_npcaction_$0_name} I add the name of the first attack belonging to the token to the pop-up menu dropdown to chose from but I don't know what to replace **Normal:** [[2d4+2]] with, so that the result of choosing the attack in the drop down is having it roll it in chat. I attempted (~selected|repeating_npcaction_$0_npc_action) but it gets messed up. Any idea if coding something like this is even possible?