I've created macros for my players for their attacks and one of them is a Barbarian. I'm happy to share it but I'm not sure if it is what you are looking for. This is for 5th edition of course. This is for the actual to hit roll, which I have them do separately because I use a critical hit table so if they crit I have them roll that first. @{wtype}&{template:atk} {{mod=+[[@{strength_mod}+@{pb}]] }} {{rname=[Greatsword(+1)](~@{character_name}|Greatsword-Dmg)}} {{rnamec=[Critical Strike with Greatsword(+1)!](~@{character_name}|Greatsword-Dmg) Extra attack from Great Weapon Master!}} {{r1=[[1d20+@{strength_mod}+@{pb}+1-?{Use Great Weapon Master?|Yes,5|No,0}]]}} @{rtype}cs>20+@{strength_mod}+@{pb}+1-?{Use Great Weapon Master?|Yes,5|No,0}]]}} {{r2=[[1d20+@{strength_mod}+@{pb}+1-?{Use Great Weapon Master?|Yes,5|No,0}]]}} {{desc=**[Extra Attack](~@{character_name}|Greatsword)** }} {{range=5 ft}} {{charname=@{character_name}}} This goes into the attributes and abilities section of the character's sheet. Then for the damage it is something very similar. @{wtype}&{template:dmg} {{rname=rname}} {{attack=0}} {{range=range}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[?{Critical Hit?|Yes,4d6|No,2d6}+@{strength_mod}+?{Raging?|Yes,2|No,0}+?{Did you use Great Weapon Master?|Yes,10|No,0}+1]]}} {{dmg1type=Piercing }} {{damage=1}} {{dmg2flag=}} {{dmg2=}} {{dmg2type=}} {{save=}} {{saveattr=saveattr}} {{savedesc=savedesc}} {{savedc=savedc}} {{desc=desc}} {{charname=@{character_name}}} Now, to break it down some. First check out the wiki on templates here . They are how you make stuff pretty. There is one for doing both attack and damage at once as well so it will take some tinkering if that's what you want. The @{wtype} uses the whisper type of the character sheet. So if they have it set to whisper to me or ask them what they want, etc. The &{template:[name]} is how you define your template and each thing in the double brackets ( {{ }} ) after it adds something to it. That isn't too hard to figure out with some fiddling. The important/cool part is using the roll queries. What this does is make a pop up asking if they want to use Great Weapon master, which adds in that modifier, and if they are raging, if they got a crit, etc. If you have any other questions I'm happy to answer them!