I know this is an old thread, but is there a way to tell it to display a spell save dc
Absolutely… depending on what “it” is of course. As long as “it” is a subclass, race, or feat, it’s absolutely possible. What’s the spellcasting ability?
im having trouble with the simplest of things, im trying to get this line to work and its just not,
Channel Bahamut’s breath as a 30ft cone. Deals {{((2d8)) + ((classlevel))}} radiant damage or heals. Wisdom save for half damage. At 11th level: 2d10, choose 60ft line. At 17th level: 2d12, choose 60ft cone or 90ft line.
i had it like this originally and it didnt work either.
Channel Bahamut’s breath as a 30ft cone. Deals {{2d8 + classlevel}} radiant damage or heals. Wisdom save for half damage. At 11th level: 2d10, choose 60ft line. At 17th level: 2d12, choose 60ft cone or 90ft line.
im having trouble with the simplest of things, im trying to get this line to work and its just not,
Channel Bahamut’s breath as a 30ft cone. Deals {{((2d8)) + ((classlevel))}} radiant damage or heals. Wisdom save for half damage. At 11th level: 2d10, choose 60ft line. At 17th level: 2d12, choose 60ft cone or 90ft line.
i had it like this originally and it didnt work either.
Channel Bahamut’s breath as a 30ft cone. Deals {{2d8 + classlevel}} radiant damage or heals. Wisdom save for half damage. At 11th level: 2d10, choose 60ft line. At 17th level: 2d12, choose 60ft cone or 90ft line.
pls help
There's not much snippets can do for the extra stuff about lines or cones. You'll just need to think of the best way to interpret that for what you're trying to accomplish.
The snippet code for the damage would be (assuming this is a subclass):
yah i wasnt trying to do anything with the areas just the class level thing and thats way more complicated than i thought it needed to be so glad i reached out!
and it is a subclass sorry should have mentioned that
yah i wasnt trying to do anything with the areas just the class level thing and thats way more complicated than i thought it needed to be so glad i reached out!
and it is a subclass sorry should have mentioned that
It only looks overwhelming. Try breaking it down into its different parts:
<strong>2d</strong> The number of dice with the appropriate HTML tags to make it bold like the snippet codes are.
{{8 The starting value that we're adding something to.
+(classlevel/11)@rounddown*2 If we divide the classlevel by 11 and round that result down, you get a 0 or 1. Multiply that result by 2 which will give us a 0 or a 2 which we add to the previous section.
+(classlevel/17)@rounddown*2}} If we divide classlevel by 17 and round that result down, you get a 0 or a 1. Multiply that result by 2 which gives us a 0 or a 2 which we add to the previous section.
{{classlevel#signed}} Appending the damage bonus you specify to the previous calculation. This is a useful shorthand for <strong>+</strong>{{classlevel}} Just go with <strong>+</strong>{{classlevel}}
Keep in mind that if you use (classlevel/some level)@rounddown and that some level is 10 or less, you'll need to add the @max:1 modifier to that section because the simple version of this method only really works well if the result is a 0 or a 1. If (classlevel/4)@rounddown returns a 4 because you're level 17, it throws everything off. You'll need to use (classlevel/4)@max:1,rounddown instead.
so I tried to plug it in and its still saying " 2d8 + classlevel - Invalid keyword: d " or atleast thats what it is showing in the character sheet. I waited like a hour before checking
so I tried to plug it in and its still saying " 2d8 + classlevel - Invalid keyword: d " or atleast thats what it is showing in the character sheet. I waited like a hour before checking
You can't have spaces in snippet codes. Can you copy that field in your edit screen and paste it here?
Channel Bahamut’s breath as a 30ft cone. Deals <strong>2d</strong>{{8+(classlevel/11)@rounddown*2+(classlevel/17)@rounddown*2}}{{classlevel#signed}} radiant damage or heals. Wisdom save for half damage.
i just plugged it in, ill have to wait for it to update on the sheet. I did have one more issue with another one would it be kinda the same? sorry im really new to all this.
Add {{2 + spelllevel}} HP when you cast a healing spell of 1st level or higher.
i just plugged it in, ill have to wait for it to update on the sheet. I did have one more issue with another one would it be kinda the same? sorry im really new to all this.
Add {{2 + spelllevel}} HP when you cast a healing spell of 1st level or higher.
its doing the same thing as the other one
There is no spell level snippet. This snippet would only function on the spell itself and the upcasting already would indicate the healing, so it's completely unnecessary.
Rollback Post to RevisionRollBack
Click ✨ HERE ✨ For My Youtube Videos featuring Guides, Tips & Tricks for using D&D Beyond. Need help with Homebrew? Check out ✨ thisFAQ/Guide thread ✨ by IamSposta.
Goal: wizard subclass that has a die that starts as 1d4 at level 2, then increases in size at levels 6,10,14, & 18.
By level this is
1(2)—5=1d4
6—9=1d6
10-13=1d8
14-17=1d10
18—20=1d12
My Brews:
Race: Tropical Dwaves Spells: Summon Spirits Rites of Mummification
Monster: Osprey Feat: Skill Mastery–Animal Handler (Provides DCs for training animals applicable to those with and without this feat)
<strong>1d</strong>{{4+(classlevel/6)@max:1,rounddown*2+(classlevel/10)@max:1,rounddown*2+(classlevel/14)@rounddown*2+(classlevel/18)@rounddown*2}}
or
<strong>1d</strong>{{4+(characterlevel/6)@max:1,rounddown*2+(characterlevel/10)@max:1,rounddown*2+(characterlevel/14)@rounddown*2+(characterlevel/18)@rounddown*2}}
How to: Replace DEX in AC | Jump & Suffocation stats | Spell & class effect buff system | Wild Shape effect system | Tool Proficiencies as Custom Skills | Spells at higher levels explained | Superior Fighting/Martial Adept Fix | Snippet Codes Explored - Subclasses | Snippet Math Theory | Homebrew Weapons Explained
My: FEATS | MAGIC ITEMS | MONSTERS | SUBCLASSES Artificer Specialist: Weaveblade
Dndbeyond images not loading WORKAROUND FIXED!!! (TY Jay_Lane for original instructions)
Does anyone know how to do an actions for unarmed strike, it's an action so I thought I could use the same one as the opportunity attack?
What precisely do you mean? Are you asking how to set up the Action, or how to code a snippet for an Action?
Creating Epic Boons on DDB
DDB Buyers' Guide
Hardcovers, DDB & You
Content Troubleshooting
I just made it a separate action from Unarmed strike instead, but I don't think it would have worked anyway. Thank you!
I know this is an old thread, but is there a way to tell it to display a spell save dc
Absolutely… depending on what “it” is of course. As long as “it” is a subclass, race, or feat, it’s absolutely possible. What’s the spellcasting ability?
Creating Epic Boons on DDB
DDB Buyers' Guide
Hardcovers, DDB & You
Content Troubleshooting
Spell save DC for a paladin. So charisma, but for the feature I’m trying to make it’s a dex save equal to the paladin’s spell save dc
im having trouble with the simplest of things, im trying to get this line to work and its just not,
Channel Bahamut’s breath as a 30ft cone. Deals {{((2d8)) + ((classlevel))}} radiant damage or heals. Wisdom save for half damage.
At 11th level: 2d10, choose 60ft line.
At 17th level: 2d12, choose 60ft cone or 90ft line.
i had it like this originally and it didnt work either.
Channel Bahamut’s breath as a 30ft cone. Deals {{2d8 + classlevel}} radiant damage or heals. Wisdom save for half damage.
At 11th level: 2d10, choose 60ft line.
At 17th level: 2d12, choose 60ft cone or 90ft line.
pls help
Wouldn't the DC still be the paladin's spell save DC? So {{savedc:cha}}
How to: Replace DEX in AC | Jump & Suffocation stats | Spell & class effect buff system | Wild Shape effect system | Tool Proficiencies as Custom Skills | Spells at higher levels explained | Superior Fighting/Martial Adept Fix | Snippet Codes Explored - Subclasses | Snippet Math Theory | Homebrew Weapons Explained
My: FEATS | MAGIC ITEMS | MONSTERS | SUBCLASSES Artificer Specialist: Weaveblade
Dndbeyond images not loading WORKAROUND FIXED!!! (TY Jay_Lane for original instructions)
There's not much snippets can do for the extra stuff about lines or cones. You'll just need to think of the best way to interpret that for what you're trying to accomplish.
The snippet code for the damage would be (assuming this is a subclass):
<strong>2d</strong>{{8+(classlevel/11)@rounddown*2+(classlevel/17)@rounddown*2}}{{classlevel#signed}}Use this one instead.
How to: Replace DEX in AC | Jump & Suffocation stats | Spell & class effect buff system | Wild Shape effect system | Tool Proficiencies as Custom Skills | Spells at higher levels explained | Superior Fighting/Martial Adept Fix | Snippet Codes Explored - Subclasses | Snippet Math Theory | Homebrew Weapons Explained
My: FEATS | MAGIC ITEMS | MONSTERS | SUBCLASSES Artificer Specialist: Weaveblade
Dndbeyond images not loading WORKAROUND FIXED!!! (TY Jay_Lane for original instructions)
yah i wasnt trying to do anything with the areas just the class level thing and thats way more complicated than i thought it needed to be so glad i reached out!
and it is a subclass sorry should have mentioned that
It only looks overwhelming. Try breaking it down into its different parts:
{{classlevel#signed}} Appending the damage bonus you specify to the previous calculation. This is a useful shorthand for <strong>+</strong>{{classlevel}}Just go with <strong>+</strong>{{classlevel}}Keep in mind that if you use (classlevel/some level)@rounddown and that some level is 10 or less, you'll need to add the @max:1 modifier to that section because the simple version of this method only really works well if the result is a 0 or a 1. If (classlevel/4)@rounddown returns a 4 because you're level 17, it throws everything off. You'll need to use (classlevel/4)@max:1,rounddown instead.
How to: Replace DEX in AC | Jump & Suffocation stats | Spell & class effect buff system | Wild Shape effect system | Tool Proficiencies as Custom Skills | Spells at higher levels explained | Superior Fighting/Martial Adept Fix | Snippet Codes Explored - Subclasses | Snippet Math Theory | Homebrew Weapons Explained
My: FEATS | MAGIC ITEMS | MONSTERS | SUBCLASSES Artificer Specialist: Weaveblade
Dndbeyond images not loading WORKAROUND FIXED!!! (TY Jay_Lane for original instructions)
so I tried to plug it in and its still saying " 2d8 + classlevel - Invalid keyword: d " or atleast thats what it is showing in the character sheet. I waited like a hour before checking
You can't have spaces in snippet codes. Can you copy that field in your edit screen and paste it here?
How to: Replace DEX in AC | Jump & Suffocation stats | Spell & class effect buff system | Wild Shape effect system | Tool Proficiencies as Custom Skills | Spells at higher levels explained | Superior Fighting/Martial Adept Fix | Snippet Codes Explored - Subclasses | Snippet Math Theory | Homebrew Weapons Explained
My: FEATS | MAGIC ITEMS | MONSTERS | SUBCLASSES Artificer Specialist: Weaveblade
Dndbeyond images not loading WORKAROUND FIXED!!! (TY Jay_Lane for original instructions)
Channel Bahamut’s breath as a 30ft cone. Deals <strong>2d</strong>{{8+(classlevel/11)@rounddown*2+(classlevel/17)@rounddown*2}}{{classlevel#signed}} radiant damage or heals. Wisdom save for half damage.
thats the what it shows in my edit
I guess #signed doesn't work with classlevel. I was at work earlier and assumed that it did. Learn something new every day. Try:
<strong>2d</strong>{{8+(classlevel/11)@rounddown*2+(classlevel/17)@rounddown*2}}<strong>+</strong>{{classlevel}}
How to: Replace DEX in AC | Jump & Suffocation stats | Spell & class effect buff system | Wild Shape effect system | Tool Proficiencies as Custom Skills | Spells at higher levels explained | Superior Fighting/Martial Adept Fix | Snippet Codes Explored - Subclasses | Snippet Math Theory | Homebrew Weapons Explained
My: FEATS | MAGIC ITEMS | MONSTERS | SUBCLASSES Artificer Specialist: Weaveblade
Dndbeyond images not loading WORKAROUND FIXED!!! (TY Jay_Lane for original instructions)
i just plugged it in, ill have to wait for it to update on the sheet. I did have one more issue with another one would it be kinda the same? sorry im really new to all this.
Add {{2 + spelllevel}} HP when you cast a healing spell of 1st level or higher.
its doing the same thing as the other one
There is no spell level snippet. This snippet would only function on the spell itself and the upcasting already would indicate the healing, so it's completely unnecessary.
Click ✨ HERE ✨ For My Youtube Videos featuring Guides, Tips & Tricks for using D&D Beyond.
Need help with Homebrew? Check out ✨ this FAQ/Guide thread ✨ by IamSposta.
oh okay thank you!