Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

[5e Shaped] Having problem with inline rolls

I'm trying to setup a macro for scorching ray so I don't end up casting it 3 times. I've looked this over 8 million times and each attack is exactly the same but is not outputting correctly. Here is the code: &{template:5eDefault} {{spell=1}}{{title=Scorching Ray}} {{subheader=Level 2 · Evocation · 120 V, S 1 action · Instantaneous}} {{Description=You create three rays of fire and hurl them at targets within range. You can hurl them at one target or several. Make a ranged spell attack for each ray. On a hit, the target takes 2d6 fire damage.}} {{Attack1=[[d20+@{selected|pb}+@{selected|wisdom_mod}]] | [[d20+@{selected|pb}+@{selected|wisdom_mod}]] vs AC}} {{Damage1=[[2d6]] Fire}} {{Attack2=[[d20+@{selected|pb}+@{selected|wisdom_mod}]] | [[d20+@{selected|pb}+@{selected|wisdom_mod}]] vs AC}} {{Damage2=[[2d6]] Fire}} {{Attack3=[[d20+@{selected|pb}+@{selected|wisdom_mod}]] | [[d20+@{selected|pb}+@{selected|wisdom_mod}]] vs AC}} {{Damage3=[[2d6]] Fire}} Here is what the output is:
1466185557

Edited 1466185572
Try padding the interiors of the outwardmost inline roll brackets with spaces (e.g. Damage=[[foo]] → Damage=[[ foo ]]).
That did it. Thanks!