
Okay, so, I'm back once again with a question on writing macros. I was wondering if it were possible to make a macro that asks how many times you want to roll it, and then takes that number and somehow rolls something multiple times. I tried something like this:
This is the roll: 1d20+3
This is the macro I tried:
[[1d20+3]]*?{How many times do you need to roll it(insert a number)}
And it just multiplies whatever the roll outputs times the number you input. I did find a work around by doing something like this:
?{How many times do you need to roll it|1,[[1d20+3]]|2,[[1d20+3]][[1d20+3]]|....}
bit that limits how many times you can roll. I need this macro because we have spells like shatter, that require lots of enemies to roll a saving throw. These are simplified versions of the macros.
This is the roll: 1d20+3
This is the macro I tried:
[[1d20+3]]*?{How many times do you need to roll it(insert a number)}
And it just multiplies whatever the roll outputs times the number you input. I did find a work around by doing something like this:
?{How many times do you need to roll it|1,[[1d20+3]]|2,[[1d20+3]][[1d20+3]]|....}
bit that limits how many times you can roll. I need this macro because we have spells like shatter, that require lots of enemies to roll a saving throw. These are simplified versions of the macros.