
Hello! I'm attempting a macro to list all 10 of the NPC attacks (D&D 5e Unshaped Character Sheet), and then depending on what is chosen, it calls the attack / action macro and displays in chat. The reason I'm attempting this is, rather than create specific token macros for *each* character, I'm hoping to have one global macros that does lists the 10 attacks, the DM/GM picks one, then the attack/action macro is displayed in chat. So far the macro I've created is (this only lists Actions 2 and Actions 2 -- once I figure this out, I'll expand it to list 3 - 10 as well): ?{Which attack?|@{selected|npc_action_name1}, #NPCAction1 |@{selected|npc_action_name2}, #NPCAction2 } The problem I'm having seems to be in the bold portion. I've attempted various calls here, and nothing works. Here's the results I get for the above: Upon hitting Test Macro, the Input Value window pops up as expected, and the first 2 Actions are listed in the drop down, as expected. So far so good! Upon choosing Action1 I get "#NPCAction1" in the chat window (without the quotes); upon choosing Action2 I get "#NPCAction2" in the chat window (without the quotes) What I want to see is the results of the %{selected|NPCAction1} or %{selected|NPCAction2} macro (i.e., the various NPC Action macros) Anyone see what's missing in the second parts of the above macro, or another way to accomplish the above? Thanks!