Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×

[5e] Query Attack Macro Help

Hello, I am having trouble making a query attack macro.  Currently, I have the following working attack macros: ATK1:   %{selected|repeating_attack_$0_attack} ATK2:   %{selected|repeating_attack_$1_attack} ATK3:   %{selected|repeating_attack_$2_attack} ATK_T:  @{selected|wtype}&{template:default}{{name=@{selected|character_name} Actions}} {{ Actions =[@{selected|repeating_attack_$0_atkname}](~selected|repeating_attack_$0_attack) [@{selected|repeating_attack_$1_atkname}](~selected|repeating_attack_$1_attack) [@{selected|repeating_attack_$2_atkname}](~selected|repeating_attack_$2_attack) [@{selected|repeating_attack_$3_atkname}](~selected|repeating_attack_$3_attack) [@{selected|repeating_attack_$4_atkname}](~selected|repeating_attack_$4_attack) [@{selected|repeating_attack_$5_atkname}](~selected|repeating_attack_$5_attack) }} Now, I want to create this: ?{Choose an Attack| @{selected|repeating_attack_$0_atkname} ,  #ATK1 | @{selected|repeating_attack_$1_atkname} ,  #ATK2 | @{selected|repeating_attack_$2_atkname} ,  #ATK3 } If I remove the nested attack macros and simply put simple values the macro will have the correct dropdown menu and will return these simple values.  Example: ?{Choose an Attack| @{selected|repeating_attack_$0_atkname} ,  1 | @{selected|repeating_attack_$1_atkname} ,  2 | @{selected|repeating_attack_$2_atkname} ,  3 } Is it possible to get this to return attack callouts?
1595195558

Edited 1595195582
Queries don't like Macro commands as choices. It's best to use a Chat Menu instead. Check out this thread for details .
I know, that's what my ATK_T macro is, just wanted to see if it is possible to make it as a query.