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

Breath weapon Macro help.

I have a dragon born and my macro is not working well. [[3d6]] for damage DC = [[8 + @{CON Mod} [Constitution Mod] + @{PB} [Proficiency Bonus] ]] I keep getting this error: No attribute was found for @{Balasar|CON Mod} Any help would be great!
You can't use the [ ]  descriptors in an inline roll unless there's an actual roll involved. You can adjust your macro to: [[3d6]] for damage DC = [[ 0d0 + 8 + @{CON Mod} [Constitution Mod] + @{PB} [Proficiency Bonus] ]]   if you want to keep the descriptions. Or use 8d1  instead of just 8
Mark G. said: You can't use the [ ]  descriptors in an inline roll unless there's an actual roll involved. Eric W. said: I keep getting this error: No attribute was found for @{Balasar|CON Mod} Might your attribute instead be named CON _ Mod?
I got rid of the error with this: [[0d0 + 8 + {CON_Mod} [Constitution Mod] + @{PB} [Proficiency Bonus] ]] but my DC is not adding up. Staying at 0
You're missing the @ in front of {CON_Mod}
By the way, did you create the problematic attribute in question? Both 5e sheets use @{constitution_mod}.
Silvyre said: By the way, did you create the problematic attribute in question? Both 5e sheets use @{constitution_mod}. I didn't, I was just copying other macros I was finding on the forums, I was not sure what the sheet used.
Thanks! It worked!