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

D&D 3.5 Character Sheet Adding "Other Skills" to custom macros

I am trying to add "other skills" to a macro that rolls several skills at once but I can't figure out the @{} thing for it. Under the macro on the sheet it lists @{otherskill} for all custom Other Skills. I can add the standard skills by using things like [[1d20+@{appraise}]] or [[1d20+@{craft1}]]. Anyone know the @{} for specific custom "other skills" on the sheet?
1421047801

Edited 1421048716
vÍnce
Pro
Sheet Author
I just checked the sheet, and that is a repeatable item and unfortunately you can't call those attribute's directly. You could create a macro "manually" by using all the applicable attributes... Repeatable items do not get an attribute created for them, so you cannot reference them directly. I believe it's a limitation of what is allowed by the system. Good suggestion to comment/vote on is Official support for repeating sections in character sheets Cheer.
1421074838
Diana P
Pro
Sheet Author
Since it is a repeatable section, the only way to call the "other skills" is to re-create the skill macro by directly calling out each element. To get a macro similar to what you get by hitting the roll button in the sheet you would need to know which row number of the skill you wish to call (the first one is 0 ) which would give you a macro like: @{selected|character_name} @{selected|repeating_skills_0_otherskillname} check: [[1d20 +@{selected|repeating_skills_0_otherskillstat} +@{selected|repeating_skills_0_otherskillranks} +@{selected|repeating_skills_0_otherskillarmorcheckpen} +@{selected|repeating_skills_0_otherskillmiscmod}]] For this to not throw errors, you have to make sure that you changed and updated (even if it's just putting zero back in for the value) every input in that row. Including changing the ability stat pulldown (and then back again to str if that's the ability stat needed). Change the zero to whichever skill you want. (1 for the 2nd skill, 2 for the 3rd, etc.) There is no way to call the skills in that section by their names unfortunately. (Because it uses selected, you have to have the token linked to the appropriate character sheet selected to get it to work as well.)
Thank you, that was what I was looking for.