This site works best with JavaScript enabled. Please enable JavaScript to get the best experience from this site.
Sign in to view your library & saved favorites.
I want to roll a d20 for attack: 13.
Now I want to roll 1d6 for damage if that roll was a critical and 2d6 if it wasn't. I thought I could use:
if([roll:-1:critical],=0,1d6,2d6)
when between the roll tags, but I just get an error: 1.
What's the right way to do this?
Update: after editing, it works! It looks like you may have to make the rolls in a specific order in the post and avoid using spaces.
I want to roll a d20 for attack: 13.
Now I want to roll 1d6 for damage if that roll was a critical and 2d6 if it wasn't. I thought I could use:
if([roll:-1:critical],=0,1d6,2d6)
when between the roll tags, but I just get an error: 1.
What's the right way to do this?
Update: after editing, it works! It looks like you may have to make the rolls in a specific order in the post and avoid using spaces.