Hello everyone. A friend of mine is developing a new ttrpg and creating Roll20 support for it. I'm helping him, but I in turn need some help. See, his system uses a dice system for both attributes (strength, intelligence, charisma, etcetera) and skills. So you might have a d8 allocated to your strength score and a d6 allocated to your athletics score, and you would combine their results to roll a strength-based athletics check. We already have separate macros for each, one to roll an attribute check and one to roll a skill check. What we're having trouble with is adding them together. Macros follow, with skill names edited out to preserve privacy until the kickstarter launch. &{template:default} {{name= ATTRIBUTE CHECK}} {{Result: =?{Select an Attribute| Attribute1,Attribute1 Check: [[1d@{Attribute1}]]| Attribute2,Attribute2 Check: [[1d@{Attribute2}]]| Attribute3,Attribute3 Check: [[1d@{Attribute3}]]| Attribute4,Attribute4 Check: [[1d@{Attribute4}]]| Attribute5,Attribute5 Check: [[1d@{Attribute5}]]| Attribute6,Attribute6 Check: [[1d@{Attribute6}]]}}} &{template:default} {{name= SKILL CHECK}} {{Result= ?{Select a Skill| Skill1,Skill1 Check: [[1d@{Skill1}+@{Skill1Bonus}]]| Skill2,Skill2 Check: [[1d@{Skill2}+@{Skill2Bonus}]]| Skill3,Skill3 Check: [[1d@{Skill3}+@{Skill3Bonus}]]| Skill4,Skill4 Check: [[1d@{Skill4}+@{Skill4Bonus}]]| Skill5,Skill5 Check: [[1d@{Skill5}+@{Skill5Bonus}]]| Skill6,Skill6 Check: [[1d@{Skill6}+@{Skill6Bonus}]]| Skill7,Skill7 Check: [[1d@{Skill7}+@{Skill7Bonus}]]| Skill8,Skill8 Check: [[1d@{Skill8}+@{Skill8Bonus}]]| Skill9,Skill9 Check: [[1d@{Skill9}+@{Skill9Bonus}]]| Skill10,Skill10 Check: [[1d@{Skill10}+@{Skill10Bonus}]]| Skill11,Skill11 Check: [[1d@{Skill11}+@{Skill11Bonus}]]| Skill12,Skill12 Check:[[1d@{Skill12}+@{Skill12Bonus}]]} ?{Select an Attribute| Attribute1,Attribute1 Check: [[1d@{Attribute1}]]| Attribute2,Attribute2 Check: [[1d@{Attribute2}]]| Attribute3,Attribute3 Check: [[1d@{Attribute3}]]| Attribute4,Attribute4 Check: [[1d@{Attribute4}]]| Attribute5,Attribute5 Check: [[1d@{Attribute5}]]| Attribute6,Attribute6 Check: [[1d@{Attribute6}]]}}} How do I set it up so that clicking "SKILL CHECK" calls up a skill list to select from, then calls up an attribute list to select an attribute to add to the roll and have the macro add them automatically? EDIT: I've gotten it to the point where it shows both results in the same macro, but I'd still like to set it up so it automatically adds them together.