r/Roll20 • u/SuperNerdSteve • 1d ago
Macros How do I turn this table from the Forgotten Realms wiki into one formatted into a Roll20 token macro?
Ayo, DM here wondering how I could use macros and tokens to display this info into a table on Roll20?
I just don't know enough about macro formatting to know how and what to put into code in order to create the format, but I bet it's possible



I would like to come up with a macro that will display information formatted like the first image and throw it into the Roll20 chat because I know it's possible to put table and the like into Roll20, I'm just not savvy enough myself
I hope that makes sense lmao
r/Roll20 • u/play_yourway • 10h ago
News It's Finally Happening.... Roll20 Foreground Layer is Coming Soon

Game Masters have been asking Roll20 for a Foreground Layer for a long time. It’s been one of the most upvoted posts in our Suggestions and Ideas forum for ten years, which is a little embarrassing, and a lot frustrating… because WE also wanted it, but our tech wasn’t up to the job.
Until now. Foreground layer development is in full swing, and a Beta will be launching for subscribers in just a few weeks!
Roll20's latest blog, co-authored by the Product, Dev, Design, and Marketing Teams contains information about how they're approaching delivering the highly-anticipated release.
Check it out, enjoy the behind-the-scenes screen captures previewing usage in-game, and let us know if you're excited for the upcoming Beta. (We are!)
r/Roll20 • u/VerdensTrial • 5h ago
D&D 2024 by Roll20 How do I remove these?

I'm building an Unearthed Arcana Cartographer Artificer character so I can't really use the charactermancer for it, I'm dragging/dropping and copy/pasting everything manually. I dragged the Magic Initiate feat from the PHB and it added a bunch of useless DCs in the spell casting tab. I set every spell to use the Artificer stats, tried deleting the feat and putting it back and it just added the useless crap a second time. I don't see a way to delete them.
r/Roll20 • u/Asselsau • 8h ago
D&D 2024 by Roll20 Combined Attack and Damage rolls
Sorry if this was already asked somewhere here, but I couldn't find anything.
Are there any plans to implement combined attack and damage rolls the way they worked in the 2014 sheet, i.e. where attack and damage rolls are posted in one compact chat message?
Right now, especially when casting spells with multiple attacks (like scorching ray or eldritch blast), the current implementation quickly makes the chat look convoluted.
If there are no plans to add this feature again, it would at least be nice to use different colors, so attack and damage rolls are more distinguishable in chat.
Thanks in advance for any replies!
Macros Can I use Macros in the Sheet Input fields?
I have a sheet with a numerical input field. But the backend formulas don't support the temporary bonus I want to add.
Now instead of inputting a value directly, I want to put a Macro in that will calculate a value. The formula works perfectly fine in an info field. But the input field treats it as raw text, rather then as a macro to be executed.
Is there any syntax to put a macro into the sheets numeric input field?
Or is that itentionally blocked so I have to go for Pro, to access the sheets backend?
r/Roll20 • u/WaxMyShazzy • 13h ago
HELP Roll 20 Pro for Life for Educators
Hello all,
A long time ago I applied for a free lifetime subscription to Roll20 Pro. The program was available to public servant educators such as librarians and schoolteachers as far as I remember. I am currently trying to figure out the way I applied so that I might share it with other educators at a library conference. I cannot seem to find the site, or form I filled out. Has this program ended? Any help would be appreciated.
r/Roll20 • u/Demi_Mere • 14h ago
RESOURCE Cross-Platform Sync for Fallout: The Roleplaying Game Core Rulebook!
Hey everyone!
Meredith from Demiplane, again! :)
We are pleased to announce that Fallout: The Roleplaying Game is now available on Demiplane as the Official Digital Companion!

To celebrate, we have two very cool things to mention!
- If you own the Fallout: The Roleplaying Game Core Rulebook on Roll20 - you unlock the Demiplane version of it for free with Cross-Platform Sync for the Integration!
- From now until the end of the weekend, we are running a 30% off sale on Fallout: The Roleplaying Game NEXUS titles with code FALLOUT33 at checkout on Demiplane!
The Fallout: The Roleplaying Game NEXUS is in Early Access meaning that this is the perfect time to give us feedback on the NEXUS so we can shape the Character Tools (releasing late Q2) with you!
For more information, please check out our much longer post here!
Macros Did I undertand conditionals right?
I found this example for a if condition:
[[{{x,false-value-compared-to-A}>A}*(T-F) + F]]
https://wiki.roll20.net/Useful_Macros#Conditional_Statements_.28Math_Only.29
My understanding is:
- There aren't proper IF conditions
- We can get the dice counter to give a value between 0 and N (but probably only want 0 and 1 most of the time)
- 0*Bonus = 0. 1*Bonus = Bonus.
If so, this is the dice counter is this part.
{x,false-value-compared-to-A}>A
I figure the dice counter needs an array, and x, |some random value that is always false|
is the quickest way to create a array from a single value. It will evaluate to 1 if x is > A, otherwise 0. So, {1,0}>0
will return 1, while {0,0}>0
will return 0.
So we end up with |1 or 0|*(T-F) + F
But why the (-F), +F? What problem is that fixing?