
Is there any way to roll on two different tables within the same line in a macro?
I'm trying to set up a macro for Paranoia that uses 2 rollable tables: one standard d6, and one for the computer die. For those not familiar with the system, players roll a pool of d6 + one special "computer die", a d6 where the 6 is a computer. 5s and 6s on the standard d6 are successes, and a 5 on the computer die also counts as a success.
However, I can't figure out a way to include the computer dice roll within the same line as the rest of the chat roll. The code below is what I've got so far by separating them out (where d6 is the standard d6 table, and c6 the computer die), but it looks kind of ugly when rolled in the chat, as it's rolling the computer table on a new line and giving its successes separately.
/roll ?{Enter NODE Dice Number:}t[d6]
/roll 1t[c6]
Can anyone think of a clever solution to this?