
I'm playing Shadowrun 5th Edition and I was creating Abilities for my character. For clarity reason I would like to see what makes up my dice pool. I tried "inline labels" that looked promising, to do something like below. /r (@{Agility} [Agility] + @{Pistols} [Pistols])d6>5 and expected an output like rolling (5 [Agility] + 4 [Pistols])d6>5 (6+2+3+1+5+3+4+1+6) =3 Successes Unfortunately this does not work right now and gives the output below Could not determine result type of: [{"type":"M","expr":"(6"},{"type":"L","text":"Agility"},{"type":"M","expr":"+4"},{"type":"L","text":"Pistols"},{"type":"M","expr":")"},{"type":"C","text":"d6>5"}] The only way I could make it work is to bring the label outside the roll, like /r 5d6>5[Agility] + 4d6>5[Pistols] That gives rolling 5d6>5[Agility] + 4d6>5[Pistols] (5+1+5+4+3)+(2+1+5+3) = 3 Successes but this solution does not work well with the Roll Queries I want to use for modifying the roll. So, is there a way to add "comments" inside the pool part of the roll formula?