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

Pulling Info From 5e Character Sheet

So I'm using the 5e character sheet in a game I'm in and I want to make a macro that pulls the number in the 'Spell Save DC' box. Does anyone know how I can make a custom macro pull info from the sheet?
1611460908
Oosh
Sheet Author
API Scripter
You just need this: @{selected|spell_save_dc} If you pop your character sheet into a separate window, the ctrl-F search functionality will work on the Attributes & Abilities page so you can search for relevant Attributes. You can also right click an input and hit Q to 'inspect element'. This will open your HTML inspector where you can find the Attribute name in this line: <input type="number" name="attr_hp" title="@{hp}"> You just need to drop the "attr_" from the start when you're using Roll20's Attribute references (unless you're writing a sheet, really).