Hello everyone, I'm trying to create a macro for 1 attack only with damages shown, but I'm having some difficulties there. (I'm using a blade which deals 1d10+10 Slashing damages and 1d6 Frost damages and does crits starting at 18) Here's my code: &{template:pc} {{name=Lame elfique incurvée}} {{type=attackdamage}} {{showchar=[[1]]}} {{charname=Storval}} {{attack=[[1]]}} {{roll=[[1d20cs>18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] ]]}} {{critconfirm=[[1d20cs18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] ]]}} {{rolldmg1=[[1d10+10]]}} {{rolldmg1type=Slashing}} {{rolldmg1crit=[[((1d10+1d10))+20]]}} {{rolldmg2=[[1d6]]}} {{rolldmg2type=Frost}} But with this code, it only shows the attack roll, not the damage ones (see image below) ------ However, if I add a 2dn attack roll with this following code, it shows me the damage rolls of the first attack (and of course the 2nd attack roll - that I don't want) (image below): &{template:pc} {{name=Lame elfique incurvée}} {{type=attackdamage}} {{showchar=[[1]]}} {{charname=Storval}} {{attack=[[1]]}} {{roll=[[1d20cs>18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] ]]}} {{critconfirm=[[1d20cs18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] ]]}} {{rolldmg1=[[1d10+10]]}} {{rolldmg1type=Slashing}} {{rolldmg1crit=[[((1d10+1d10))+20]]}} {{rolldmg2=[[1d6]]}} {{rolldmg2type=Frost}} {{roll1=[[1d20cs>18 + @{Storval|bab}[BBA] + @{Storval|strength_mod}[FOR] + 2[LAME] +1[ENTRAINEMENT] -5]]}} --- I don't understand why it would behave like that. What am I not understanding ?