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

5e ogl Divine smite macro help.

Hey guys. I'm trying to come up with a clever way to use divine smite on my ogl character sheet. I was originally just going to make a seperate damage roll for my greatsword + divine smite, to use after a sucessful hit, but then I realized that if I crit on my attack roll, then this seperate macro will not roll crit damage.... Does anyone have a good solution? Right now, I have the secondary damage box on my greatsword filled in for divine smite, but unticked unless I want to smite, then i'll go in and tick it. I don't think this is a good long term solution for when I get things like hunters mark and stuff rolling. Any suggestions would be great.
I would keep the attacks separate.  Greatsword only.  Divine Smite only.  Roll Divine Smite twice if you crit.  Smites don't get mods, so mod isn't doubled that way.
I may do that, but right now i'm working on having my damage roll ask me if I want to smite. It looks like this. 2d6ro<2 + ?{Divine Smite|Yes,2d8 |No,0d0} So far it's working great, but i'm trying to get it to add "Slashing + Radiant" for the damage type when I smite. I'm pretty close, but I can't figure out how to get it to just say "slashing" when I don't smite. Here is what I got under the "type" line, Slashing ?{Radiant|Yes,+ Radiant |No,null} So Null won't work if I select "no" radiant. I'm sure there is a better way to have it show radiant Slashing + Radiant damage if I smite?
1503906798
Andrew C
Marketplace Creator
I assume its a 5EOGL? You might just build an Ability, and make it a Token Action. &{template:dmg} {{rname=Divine Smite}} {{damage=1}} {{dmg1flag=1}} {{dmg1=[[?{Spell Used|0,1|1,2|2,3}d8]]} {{dmg1type=Radiant}} {{crit=1}} {{crit1=[[ [[?{Spell Used}*2]]d8]] }} {{desc= @{selected|token_name} uses a [[?{Spell Used}-1]] Level Spellv}}
1503939901

Edited 1503939966
One thing to consider with divine smite is that you only choose to use it after you have already hit. You don't decide to use it before the attack roll. The easy option is to make a separate attack entry that only deals damage and use a roll query to ask how many dice to roll, that way you can smite with any level of spell slot or with or without crits all in one. You can also easily add in the extra d8 for smiting fiends and undead. Here's what to put in the damage line. ?{Number of Dice|2}d8
Caelen said: One thing to consider with divine smite is that you only choose to use it after you have already hit. You don't decide to use it before the attack roll. The easy option is to make a separate attack entry that only deals damage and use a roll query to ask how many dice to roll, that way you can smite with any level of spell slot or with or without crits all in one. You can also easily add in the extra d8 for smiting fiends and undead. Here's what to put in the damage line. ?{Number of Dice|2}d8 Awesome idea man. This seems like the simplest way to handle this  thanks!