I've figured out a workaround that rolls a Melee or Missile attack for me. I added a new two new check commands (one for Melee, one for Missile) using the --import function. Here's the code for them, if anyone's interested (these are for the 5e Shaped sheet, by the way): !group-check-config --add { "Melee" : { "name" : "Melee Attack", "formula" : "\[d20 + \at{strength_mod} + \at{pb} \]"} } !group-check-config --add { "Missile" : { "name" : "Missile Attack", "formula" : "\[d20 + \at{dexterity_mod} + \at{pb} \]"} } I can't think of how to do a Finesse weapon attack - so, for example, Goblins will have to roll a "Missile Attack" when they're actually attacking with scimitars, but it will work for my purposes for now. If someone can figure out how to add a Finesse attack, I'd be glad to have the code for it. EDIT: By the way, when I say "I figured out," what I actually mean is "I read Jakob's excellent documentation for the script!" Thanks, Jakob !