So I'm trying to give my character a 'Flaming Burst' property for his longsword. Flaming Burst: Grants the weapon +2d6 Fire damage, however on critical hit it deals the crit damage in addition to 2d10 fire damage. I'd like to know how much damage is fire damage for both the normal attacks and the critical hit. I mean I'll be fine if it's something like /roll 2d6 + [[2d10]] [Fire Damage] Also I'm using the dnd 3.5 Character sheets ---------------------------------------------- I've also been trying to make a macro for two-weapon fighting. And so far it's set up as normal. 1d8 for longsword damage, 1d6 for shortsword This is the macro: &{template:DnD35Attack} {{pcflag=true}} {{name=@{character_name}}} {{subtags=attacks with a @{weapon1name} }} {{attack1=A1: [[ @{weapon1attackcalc} ]] }} {{critconfirm1=Crit?: [[ @{weapon1attackcalc} ]] }} {{fumbleroll=Fumble: [[ d20 ]] }} {{damage1=D1: [[ @{weapon1damage} ]] }} {{critdmg1=+ [[ @{weapon1crit} ]] }} {{fullattackflag= [[ ?{Attack with offhand?|No, 0d1|Yes, d1} ]] }} {{attack2=Offhand A1: [[ @{weapon2attackcalc}-2 ]] }} {{critconfirm2=Crit!: [[ @{weapon2attackcalc}-2 ]] }} {{damage2=Offhand D1: [[ @{weapon2damage} ]] }} {{critdmg2=+ [[ @{weapon2crit} ]] }} {{attack3=Main A2: [[ @{weapon1attackcalc}-7 ]] }} {{critconfirm3=Crit!: [[ @{weapon1attackcalc}-7 ]] }} {{damage3=D3: [[ @{weapon1damage} ]] }} {{critdmg3=+ [[ @{weapon1crit} ]] }} {{attack4=Offhand A2: [[ @{weapon2attackcalc}-7 ]] }} {{critconfirm4=Crit!: [[ @{weapon2attackcalc}-7 ]] }} {{damage4=D2: [[ @{weapon2damage} ]] }} {{critdmg4=+ [[ @{weapon2crit} ]] }} weapon2___ calls the short sword's stats. Not sure if this is the proper way to do it or not.