Hello Roll20 community. I have a little problem with my damage macro. In v20 you add extra succeses from attack to damage dice pool. WIth one attack it is easy, but the problem occurs when I have several attacks. I can just click my attack several times, but I want to make the macro for all of them in one. For example my character makes 4 attacks: &{template:default} {{name=John hit the enemy! }} {{1=[[[[@{Dexterity} +@{Melee}]]d10>?{Difficulty?|6}sd]]}} {{2=[[[[@{Dexterity} +@{Melee}]]d10>?{Difficulty?|6}sd]]}} {{3=[[[[@{Dexterity} +@{Melee}]]d10>?{Difficulty?|6}sd]]}} {{4=[[[[@{Dexterity} +@{Melee}]]d10>?{Difficulty?|6}sd]]}} Somehow this macro asked me about difficulty only once, but in this case it is fine because attacks usualy are made vs the same difficulty. I've tried to make somthing similiar to this in case of damage: &{template:default} {{name= Damage pool }} {{damage 1=[[[[@{Strength} +1+?{Extra successes?|0}]]d10>6sd]]}} {{damage 2=[[[[@{Strength} +1+?{Extra successes?|0}]]d10>6sd]]}} {{damage 3=[[[[@{Strength} +1+?{Extra successes?|0}]]d10>6sd]]}} {{damage 4=[[[[@{Strength} +1+?{Extra successes?|0}]]d10>6sd]]}} but in case of damage macro has to ask the player several times, because the number of extra successes in each attack is different. How can I make my macro to ask me several times?