Is it possible to double the value of an attribute with a Critical Hit? Hello, I'm trying to create a macro to double the damage of critical hits from an attribute when the result is "6" on the dice roll. I'm using this provisional macro, with the critical calculated: &{template:default} {{name=NORMAL ATTACK}} {{Damage = [[1d6cs>6 + "ATTRIBUTE 1 + "ATTRIBUTE 2" + 3]]}} {{In case of Critical = [[ATTRIBUTE 1 *2 + ATTRIBUTE 2 + 3 + 6]]}} However, I also need the value of the rolled die to be added to the total damage. Example: "1st Attribute 3 + 2nd Attribute 2 + 1d6 = 5 + 1d6" In case of a critical hit, the value of the "1st Attribute" is doubled (or multiplied) and added to the value of the "2nd Attribute" and the result "6" on the die: "1st Attribute 6 + 2nd Attribute 2 + 6 = 14" If you could help me, I would be very grateful!