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

Changing style of output

I'm trying to make the following macro to show the 3rd number as a normal number (i.e. see Saladin) and not like a "rolled" number (i.e. see the others). What do I need to replace the [[ and ]] with? Haven't found the answer online. &{template:default} {{name=Health Report *current / max / difference*}} {{Saladin= @{saladin|hp} / @{saladin|hp|max} / [[@{saladin|hp|}-@{saladin|hp}]] }} {{Iziqor= @{iziqor|hp} / @{iziqor|hp|max} [[@{iziqor|hp|}-@{iziqor|hp}]] }} {{Venitt= @{venitt|hp} / @{venitt|hp|max} [[@{venitt|hp|}-@{venitt|hp}]] }} {{Asper= @{asper gillis|hp} / @{asper gillis|hp|max} [[@{asper gillis|hp|}-@{asper gillis|hp}]] }}
1599083976
David M.
Pro
API Scripter
Not sure if there is a way around that using the default template. One option would be to add the inline brackets [[...]] around your first two results so they all at least look the same (with yellow highlights). Another option, since you are a pro user, is to convert to a powercard template and use the [TXT] option for the roll. The latter option returns inline results as plain text, as described  here .
1599189154
Oosh
Sheet Author
API Scripter
You can turn them into links: &{template:default}{{name=Weeeee}}{{inline=[[1d20]] [[1d20]] [[1d20]]}}{{links=[[[1d20]]](#) [[[1d20]]](#) [[[1d20]]](#)}}
Thank you for these suggestions.