I'm trying to create attack and damage macros using the Exalted 3rd Edition Dice Roller, but it seems to somehow be breaking order of operations. for example: Character has a 3 dex and a 2 archery Macro code: !exr @{Character_Name|dexterity}+@{Character_Name|archery}# That should get dex and archery skill, add them together, and roll the total number of dice as 5d10. Instead I get "rolling 3+2d10>7" and it only rolls 2 dice If I try putting the attributes in brackets, !exr [@{Character_Name|dexterity}+@{Character_Name|archery}]# Then I get "rolling [3+2]d10>7" and it rolls a single die regardless of what's actually in the brackets. How do I get it to add multiple things together and pass that total number to the API?