Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Great Weapon Master, Great weapon fighting and Rage

Sorry I am new to macro's and any help would be appreciated!  Is there a macro for all of these (Great Weapon Master, Great weapon fighting and Rage)?   Thank you in advance! Scott
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!
What your describing is exactly what I want... roll attack, then ask me if I want to use great weapon master and then ask if I am raging.  Ill read into it more becasue this stuff always confusses me.  Thanks
So a little more information.  We are playing 5e with a shaped character sheet.  If anyone has any experience with this I'd love some help :)  I am using a greataxe.  
1498308157

Edited 1498308499
The Aaron
Pro
API Scripter
I usually put them in as different attacks: Greataxe Greataxe (Heavy) Greataxe (Rage) Greataxe (Heavy,Rage) Then I just set up each one with the appropriate bonuses and penalties.  You'll want to either adjust the weight to 0 on all but one of them, or set them as not carried (if that's a thing on your version or in your game).  Doing it this way has the advantage that there is never any confusion about what attack you used as the title in the chat will correctly identify it. 
Thanks, I have it set up that way currently.  I just didnt know if someone had a macro I just could cut and paste.