Hello all, I am working with the Carbon 2185 character sheet (cyberpunk, based on 5e OGL system), and I am trying to make a token tool that calls on other token tools, but I'm not having any luck in getting it to work. I'm sure it is probably just a pretty simple thing that I'm messing up, but any help in straightening this out would be appreciated, for sure. Thanks, in advance. I currently have an attack Token Action macro that calls on the weapon fields on the character sheet and ends up displaying the Weapon being used in the title of the resulting default template block in the chat window. The first line under the title displays the Attack Roll and type (Standard, Advantage, or Disdvantage), the second line displays the type of damage that was done alongside the amount of damage rolled, and the third line simply repeats the second line, but listing it as Crit Dmg instead (in case of a critical hit roll). I have this Token Action macro set up for each of the four weapon entries that appear on the character sheet and I've labeled them each as ATK 1, ATK 2, etc. I'm trying to set it up so that there is another Token Action macro that simply calls on these other Token Action macros. The desired end result is such that the player will select a Token Action macro that is simply titled "Attack" and that will prompt a drop-down query roll input that lists the name of the weapons in the four weapon slots on the character sheet. Once the player selects which weapon he/she is attacking with, the appropriate attack Token Action macro will commence (ATK 1, ATK 2, etc) and post its output in the default template in the chat window as per normal, but specific to whichever weapon the player selected only. I will post my current attack macro example here: ----------------------------------- ATK-1 &{template:default} {{name=@{attack_name_1}}} {{Attack Roll= [[ @{attack_bonus_1} + ?{Roll Type|Standard,1d20 ]] Standard|Advantage,2d20kh1 ]] Advantage|Disadvantage,2d20kl1 ]] Disadvantage} }} {{damage=@{attack_type_1} [[@{attack_damage_1}+@{attack_dmod_1}]]}}{{crit Dmg=@{attack_type_1} [[@{attack_damage_1}+@{attack_dmod_1}]]}} ----------------------------------- The way I was trying to do it is (using only two entries as an example): ?{What type of attack?|@{attack_name_1},%{selected|ATK 1}|@{attack_name_2},%{selected|ATK 2}} ----------------------------------- For some reason, the result I keep getting is: No ability was found for %{selected|ATK 1} No ability was found for %{selected|ATK 2} I also tried it with the character's name instead of just using "selected", but that didn't work either. ----------------------------------- The query popup does appear though, and it is filled with four possible options for the player to choose. They are: Unarmed ATK 1 Shotgun ATK 2 (Because "Unarmed" is the entry in the spot labeled @{attack_name_1} and "Shotgun" is the entry in the spot labeled @{attack_name_2} on the character sheet. ATK 1 and ATK 2 are only the names of the associated Token Action macros, but they appear in the drop-down options as well.) ----------------------------------- So, if anyone sees the error of my ways here and would like to give me a clue as to what I'm doing wrong, I'd really appreciate it. Thanks.