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

Combined attributes

1568273871

Edited 1568274087
I'm trying to make a macro that combines multiple attributes before it drops the highest total. I got that all figured out but now I want to combine the total of two attributes to determine how many rolls to drop from the highest count. Working Example:  [[({@{constitution_dice_pool}d10!! + @{constitution_bonus}d10!!}dh@{constitution_penalty}) + @{constitution_modifier}]] Failed Attempt 1: [[({@{constitution_dice_pool}d10!! + @{constitution_bonus}d10!!}dh@{constitution_penalty})dh@{ dexterity_penalty } + @{constitution_modifier}]] Failed Attempt 2: [[({@{constitution_dice_pool}d10!! + @{constitution_bonus}d10!!}dh@{constitution_penalty})dh@{ dexterity_penalty } + @{constitution_modifier}]] Failed Attempt 3: [[({@{constitution_dice_pool}d10!! + @{constitution_bonus}d10!!}dh@{constitution_penalty + dexterity_penalty }) + @{constitution_modifier}]] Any ideas? I'll just keep fiddling with it until I can solve it. P.S. I was trying to search it but Roll20 kept bringing me to an error page after timing out.
1568274766

Edited 1568274775
Nevermind figured it out :D For those interested. Correct Attempt:  [[({@{constitution_dice_pool}d10!! + @{constitution_bonus}d10!!}dh[[@{constitution_penalty} + @{ dexterity_penalty }]]) + @{constitution_modifier}]]