
Hello,
I'm attempting to build a general macro for a game I'm working on. Essentially it's a simple roll with the dice and primary modifiers already hard built into the macro. However, the feature I'm trying to figure out is for a player to input 2 variables, the secondary modifier, added to individual rolls w/in the same macro. Here's what I got currenty:
&{template:default} {{name=Shoot Skill}} {{accuracy=[[1d12+10]]}} {{damage=[[1d20]]}} {{critical 1=[[1d6]]}} {{critical 2=[[1d6]]}}
I know "+ ?{Modifier|0}" is the general script for the input prompt, but my issue is I'm trying to get 2 prompts: 1 for the "Accuracy" value and the other for the "Damage" value. Even if I have the general script inside the {{ }} for both values, I only get 1 input prompt and that input is applied to both values when that's not something I want.
This ultimately is a superfluous issue, but it'll require more writing or in head math for my players, and I want to avoid that since this is the only technically-complicated roll in the game.
Appreciate any help or advice.