I'm playing a game of D&D 5e. On my character sheet, I've set up global attack modifiers for things like Bless. When I have none checked, the value of @{Character Name | global_attack_mod} is the empty string. When I check Bless, it becomes [[1d4[Bless]]] . For one of my attacks, I get to add 1d4 to the roll. I'm trying to write a macro that will use the same result of the 1d4 for both rolls when I attack with advantage/disadvantage. Here's what I've got so far: @{Character Name | wtype}&{ template :atkdmg} {{mod =+ @{Character Name | spell_attack_bonus} }} {{rname = Warhammer}} {{r1 = [[@{Character Name | d 20} cs> 20 + @{Character Name | charisma_mod}[ CHA ] + @{Character Name | pb}[ PROF ] ]]}} @{Character Name | rtype} cs> 20 + @{Character Name | charisma_mod}[ CHA ] + @{Character Name | pb}[ PROF ] ]]}} {{attack = 1}} {{damage = 1}} {{dmg1flag = 1}} {{dmg1 = [[1 d 8 + @{Character Name | charisma_mod}[ CHA ] ]]}} {{dmg1type = Bludgeoning}} {{crit1 = [[8[ CRIT ] ]]}} {{globalattack = [[1 d 4[ Weird Thing ] + @{Character Name | global_attack_mod}]]}} {{globaldamage = [[0]]}} {{globaldamagecrit = [[0]]}} {{globaldamagetype = @{Character Name | global_damage_mod_type} }} @{Character Name | charname_output} Since it looks like the ways of reusing rolls without paying for API access are unintended and might be patched, I put the extra 1d4 into globalattack . However, this hides the description for Bless. When I mouse over the bonus, I see this text: Rolling 1d4[Weird Thing] + 2 = (1)+2 This is because globalattack expands to [[1d4[Weird Thing] + [[1d4[Bless]]]]] And the extra [[ ]] around 1d4[Bless] means that I only see the result. Is there a way to remove those brackets, so that I can see the descriptions of both things? Since this bonus always applies to this attack and never applies to any other attacks, I don't want to add it as a global attack modifier that I have to keep checking/unchecking. If there are other ways to use the same result of the 1d4 that are intended behaviour, I'd also appreciate hearing about those options.