
Here's something that's been giving me a devil of a time: adding emotes to dice rolls in the character sheet. I've looked at several character sheet designs that do this, but no matter what I try I end up with all manner of crazy errors. My basic dice roll code looks something like this: {[[(@{skill}+@{ability}+?{Modifier|0})]]d10!sd}>7 This packages everything up nicely for the chat readout. I added: "/em makes a [Skill] roll" and ended up with Tom (GM) makes a [Skill] roll {6d10!sd}>7 (Calculates the dice to roll just fine, but doesn't actually roll anything). I added: "@{name} makes a charm roll" and ended up with Alpha Template makes a [Skill] roll {6d10!sd}>7 (Again, calculates, but doesn't roll). Throwing in a "/r" command doesn't get me anywhere: Alpha Template makes a [Skill] roll /r 6d10!sd}>7 Now, if I drop the emote and put in a "/r" command, everything works like a charm. So what am I doing wrong here?