
Hey! I need help creating a macro and/or ability in roll20 that is able to incorporate success rolls with sum rolls in a single roll expression... eg, for a simple success roll: /r 1d100<13 [[1d100<13]] gives me number of successes, expanded in inline, respectively. However, I want to make "53" dependent on the character's attributes. Suppose Character's attributes are AGI of 6 and LCK of 3. "13" is a particular number of skill level that roll needs to be below. This skill level is determined by =AGI*2+LCK*.5+level modifier I've tried: /r 1d100<(@{AGI}*2+@{LCK}*2+5) /r 1d100<((@{AGI}*2)+(@{LCK}*2)+5) /r 1d100<(@{CHARACTER|AGI}*2+@{CHARACTER|LCK}*2) and /r 1d100<((@{CHARACTER|AGI}*2)+(@{CHARACTER|LCK}*2) TL:DR: Make the success vs. number dynamic based on character attributes. I can't seem to get this to work. Any ideas? Thanks.