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

Looking for a full list of all the repeating attributes

Hi There, Looking for a full list of all repeating attributes on the 5e OGL sheet to help in macro creation.  Can anyone assist or point me in the right direction?  Thank you!  *Example repeating_damagemod_$0_global_save (looking for all repeating). 
1617984892
Andreas J.
Forum Champion
Sheet Author
Translator
most or all are listed on the community wiki page for the sheet: <a href="https://wiki.roll20.net/D%26D_5E_by_Roll20#Directly_Referencing_Attributes" rel="nofollow">https://wiki.roll20.net/D%26D_5E_by_Roll20#Directly_Referencing_Attributes</a>
1617985048
Kraynic
Pro
Sheet Author
Did you check the wiki?&nbsp; Looks like there is a lot of attribute info on that sheet starting around here: <a href="https://wiki.roll20.net/D%26D_5E_by_Roll20#Advanced_Use" rel="nofollow">https://wiki.roll20.net/D%26D_5E_by_Roll20#Advanced_Use</a>
Hello and than you both for responding, yes I have looked at the wiki,I was hoping that there were repeating fields for the Global Attack, Damage, Save etc modifiers, I didnt see anything listed there for those.
1617988030

Edited 1617988316
Andreas J.
Forum Champion
Sheet Author
Translator
Using the Borwser developer tool(F12), and inspect the inputs, I was able to see them: global_damage_name, global_damage_damage, global_damage_critical_damage, global_damage_type Added them the the wiki page: <a href="https://wiki.roll20.net/D%26D_5E_by_Roll20#Dynamic_References_to_Repeating_Sections" rel="nofollow">https://wiki.roll20.net/D%26D_5E_by_Roll20#Dynamic_References_to_Repeating_Sections</a> To figure out other attribute names, inspect an open sheet wit the browser tool, select with the inspector tooltip the field you want to look at, and then see what is defined in it's name=" " field. Discard the "attr_" prefix form the name and you have the field's name.
1617988458

Edited 1617988981
Kraynic
Pro
Sheet Author
Well, if nothing else, you can right click on any input field and select "Inspect Element".&nbsp; Any repeating section will have 3 parts: 1: repeating section name 2: row ID or row number 3: attribute name All 3 of those are strung together as a single attribute call with an underscore between those 3 parts. So, if I enable the global damage modifier and inspect the field where you input damage, it gives me "attr_global_damage_damage".&nbsp; You can drop the "attr_" part, since that is telling the character sheet framework that this is an attribute, and the macro will need everything after that.&nbsp; That is part 3 of the attribute call.&nbsp; Assuming this is the first entry int he global damage modifiers, then the row number will be $0.&nbsp; It starts at 0 and counts up.&nbsp; If I scroll up the inspection pane, I will eventually find the repeating section name to be "repeating_damagemod". So, if I want to pull the damage value from the first global damage modifier, it would look like this: @{repeating_damagemod_$0_global_damage_damage} You can get the attribute for any field on any sheet the same way.&nbsp; If it isn't in a repeating section, then all you need is part 3.&nbsp; Only a repeating section needs the section name and something to identify the row.
Appreciate the help!&nbsp; Thank very much!