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 .
×
What’s a beholder’s favorite food? Eyes cream. 👀🍦

D&D 5E (2024) Character Sheet & Builder by Roll20

Ilmari said: I've accidentally wiped out a character sheet by accidentally adding the character builder. I was trying to add spells to the new 2024 sheets. Is it possible to recover what I had? As far as I can see, an automated character builder is already a worthless vanity addition that nobody really wants. Now it's destroying the work I'd already done. I hate it. Is there a the DM can turn it off completely so there's no risk of tripping over it? Good morning! The builder should only add to your sheet, not overwrite anything. BUT the builder doesn't know what you've added to your sheet, so it will look like it's "empty". You can just exit at any time, saving your changes as a draft for later or discarding them, using the Exit button in the top right. You may need to access the builder from a desktop to see this button right now, though. You can also just build with nothing selected and nothing will change. I'll pass on the feedback about the worthless vanity addition that no one wants, but the builder is very heavily used, so I suspect we may continue to offer this feature for the forseeable future. I apologize for the disappointment this may cause. You can always combine builder and sheet content as well - unlike older versions of these builders, you can go into the builder, skip to literally any slide, make the choices there, and build, and it will stack with whatever you wrote on the sheet. We actually use this feature frequently as developers to test very specific portions of characters!
Why doesn't Roll20 fix the 2024 character sheet so that Experience Tracker or Ez-Expirence scripts will work?
1772596141
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
Hultz (Keeper of Secrets) said: Why doesn't Roll20 fix the 2024 character sheet so that Experience Tracker or Ez-Expirence scripts will work? What needs to be done with those scripts to make them work with the sheet? Have you contacted the authors?
I have not contacted the authors. If I feel that I have the spare time I will.
1772650801
keithcurtis
Forum Champion
Marketplace Creator
API Scripter
Seeing that it's a community-written script, it would be the script writer who would need to write for compatibility, not the sheet dev team. If the sheet lacks something specific in order for it to work (like an attribute to be exposed), then that thing would need to be identified and a request sent to the team for that specific thing. Analogy: the Acme seat cover company needs to design seat covers to fit the Ford F150. Ford doesn't redesign their truck to fit Acme's seat covers. But Acme can ask Ford to provide them with seat schematics if none are available. If you need assistance finding the script writers, I can help you there.
1772657862

Edited 1772657898
It's possible I'm missing or misinterpreting something, but certain resources on the 2024 sheet show as red-filled boxes... you use the resource, and the red goes away.  But others appear as red-filled boxes with checkmarks, and they function... the same way? For me and my players, a checkmark intuitively implies "checked this off because I used it," rather than "there's a check here that says you can still use it." Is there a reason for the checkmarks that I'm missing? In general, I think it would also be a good option to toggle red/not-red to indicate a resource being available or used. As a group, we seem to want unused resources to be empty boxes, and as you use them you fill the box in as red... like "stop." Or perhaps an option that offers you green for unused and red for used? But really @Nicole B., I'm mostly wondering about those checkmarks. Thanks!
Keithcurtis said: If the sheet lacks something specific in order for it to work (like an attribute to be exposed), then that thing would need to be identified and a request sent to the team for that specific thing. I briefly contacted Scott C. one of the authors of Easy Experience and he indicated to me that the needed attribute on the 2024 character sheet is not exposed and Roll20 needs to fix that. So.. without using a script, what is the recommended way to update the Experience Point value on the 2024 sheet?
Hultz (Keeper of Secrets) said: Keithcurtis said: If the sheet lacks something specific in order for it to work (like an attribute to be exposed), then that thing would need to be identified and a request sent to the team for that specific thing. I briefly contacted Scott C. one of the authors of Easy Experience and he indicated to me that the needed attribute on the 2024 character sheet is not exposed and Roll20 needs to fix that. So.. without using a script, what is the recommended way to update the Experience Point value on the 2024 sheet? I'm going to prioritize read/write access for this attribute next week. Glad to hear he's open to working on the script once that's available!
I'm not sure he's open to that or not, in my mind 50%.
1772745952
vÍnce
Pro
Sheet Author
Nicole B. said: I'm going to prioritize read/write access for this attribute next week. Glad to hear he's open to working on the script once that's available! Hi Nicole, Just curious, please excuse my ignorance, but is there a downside to exposing all the attributes in the sheet to API Mod access?
vÍnce said: Hi Nicole, Just curious, please excuse my ignorance, but is there a downside to exposing all the attributes in the sheet to API Mod access? It depends on what you mean by "all the attributes" here. Like, are you referring to "I want to edit my AC", or are you referring to "I want whatever the database holds and I'll figure out what it means myself"? Because those are two different things with different answers. If the former, there's no downside really, it's just work for each individual one, so it has to be prioritized against other work. Unlike older sheets, where the attributes you might want to access are all just in the database as-is and the work is just "go find the exact attribute you asked for", most of what you want to access isn't like that on the 5.5 sheet. For each attribute a user might want, Beacon asks the sheet "how should we respond to this request?" For XP, it's just an oversight because it is actually just a value we have to pull out and update. It is still work and not something we get automatically, but relative to other attributes that one is pretty light. We do have to individually plan each one, though, so oversights do happen and they have varying levels of difficulty to implement. Most of what you see is actually a combination of a bunch of individual pieces of data run through specific logic to figure out how to display them, so that specific logic has to be rerun if you want something like "what's my maximum HP" or "what's the damage of my flail attack". Inline editing has unlocked a lot of editing attributes though, since we now have a system in place for what it looks like when someone just manually edits their value without care for any of that complexity, which we just recently started dipping into with maximum HP editing. If the latter, there are pros and cons that have been heavily discussed internally. Our data is still  in heavy flux, with the way data is structured changed and updated frequently, and as soon as we give access to that structure to the public, anything anyone does will be built on shaky ground and if it breaks due to our changes, it will be frustrating for everyone involved and we'll begin to fall into a trap of messy backwards compatibility. For example, we're now in the process of deleting a certain property from ~75% of our data as part of our work to improve performance. If we had previously allowed APIs to edit this property, then a lot of APIs could have immediately broken, annoying the users of the API, the devs of the API, and us. There's a whole layer of architecture that would be required to make all the data available, which would have to be prioritized against our other features because it would require dev work and upkeep/maintenance. It would be largely useless without heavy documentation, that we would then have to add "keep that documentation up to date with our weekly changes" to the list of work. Personally, someday I would like to go that route because it's exciting to think of what users might be able to create with that level of freedom, but that's just my personal opinion and we're definitely not in a place today where that would make sense. I tried to write documentation for our data a few months ago and it's over a dozen pages already, with the most intricate pieces of data still unstarted, and it's out of date now lol.
1772834430
vÍnce
Pro
Sheet Author
Thank you for the detailed response Nicole. Sounds somewhat similar to what we deal with on non-beacon sheets that rely heavily on sheetworker processes. No doubt the addition of inline editing exposure on the 2024 sheet is much easier to implement  than exposing the entire database.
1772834431
vÍnce
Pro
Sheet Author
Thank you for the detailed response Nicole. Sounds somewhat similar to what we deal with on non-beacon sheets that rely heavily on sheetworker processes. No doubt the addition of inline editing exposure on the 2024 sheet is much easier to implement  than exposing the entire database.
Hi guys, Regarding DND 2024 character sheet. I've tried to create modify an ability to become a heal, but the changes does not seem to save. And I've also tried to add a healing potion from compendium and modify that to act as a heal ability, but when I use it, it still posts to chat window as the healing potion, not the description I changed on the ability/icon it into. Is any attempts at homebrew considered unsupported still, or am I missing something important? Sorry if this was already asked, I cant see where to search this topic. /Alex
Another GM and I were looking at the 2024 Character builder and tried to build a Treasure. Nice stuff but how can I enable it to be moved and/or opened by a player? I haven't found a way to enable any player permissions on a GM created Treasure Chest. What are we missing here?
1773304425

Edited 1773307459
Lypse said: Hi guys, Regarding DND 2024 character sheet. I've tried to create modify an ability to become a heal, but the changes does not seem to save. And I've also tried to add a healing potion from compendium and modify that to act as a heal ability, but when I use it, it still posts to chat window as the healing potion, not the description I changed on the ability/icon it into. Is any attempts at homebrew considered unsupported still, or am I missing something important? Sorry if this was already asked, I cant see where to search this topic. /Alex This workaround did it for me: - Drag and drop a healing potion from the library into your inventory (2024). Add a new resource to the item for the amount of the healing poitions you have in stock. - Go to your features tab on the character sheet 2024. There you create a feature and call it e.g. use healing potion. You can also link it to the resource you created for the potion on your inventory tab. That enables you to tick off amount of your healing poitions on any section of the character sheet. On the feature you must also add a bonus action which will let appear the feature and so the healing poition as bonus action onf the front tab of the character sheet. - last thing is to go to your combat tab, edit the bonus action that you added on the features tab and ticm the checkbox "heal"  and enter the amount of dice you want to be rolled. EDIT: I just tried out to add a heal by myself and right now the character sheet is not persisiting my changes that I make to the bonus action on the combat tab. All changes I make to the action woud not be saved. Although, I can add the action but if I check the "heal" check bix and add dice to the action, it would not show up as a heal. The bonus action remains empty and disfunctional. So, while generally my workaround should work, right now it is not working.
1773319743

Edited 1773319824
Nicole B. said: @Der Arkanier: [...] Effects is ticketed already, thanks for the report! I thiiiink the query for generic rolls might be ticketed as well but I'll double check and make sure it is if not. Since, I could not find anything in the patch notes and also not in my roll20 game, just checking if this is still in the making? For reference, here is what I originally reported: - The chat bubbles for all "Effects" on the combat tab don't post anything to chat anymore.  - If I create a free action on the combat tab (or any kind of action for that matter) and add a dice value (e.g. d10) to the field "roll" I can see the goldish colored d10 next to the name of the feature. If I press it, the dice rolls in normal mode but not in query mode. In query more the query window opens correctly but when clicking the roll button in the window, nothing happens.  
Lypse said: Hi guys, Regarding DND 2024 character sheet. I've tried to create modify an ability to become a heal, but the changes does not seem to save. And I've also tried to add a healing potion from compendium and modify that to act as a heal ability, but when I use it, it still posts to chat window as the healing potion, not the description I changed on the ability/icon it into. Is any attempts at homebrew considered unsupported still, or am I missing something important? Sorry if this was already asked, I cant see where to search this topic. /Alex We've got a ticket to fix this, sorry about that! Hultz (Keeper of Secrets) said: Another GM and I were looking at the 2024 Character builder and tried to build a Treasure. Nice stuff but how can I enable it to be moved and/or opened by a player? I haven't found a way to enable any player permissions on a GM created Treasure Chest. What are we missing here? To be able to see a shop, all you need to do is set it as in that player's journal. In previous character sheets, this would hide the sheet itself from the player and only show them Bio & Info. However, beacon gives us the ability to show a read-only or limited version of a sheet if it's in your journal but you don't have edit access, which we really only take advantage of for shops. Actually transferring the items is work we haven't done yet, although it is on our roadmap . Der Arkanier said: Since, I could not find anything in the patch notes and also not in my roll20 game, just checking if this is still in the making? For reference, here is what I originally reported: - The chat bubbles for all "Effects" on the combat tab don't post anything to chat anymore.  - If I create a free action on the combat tab (or any kind of action for that matter) and add a dice value (e.g. d10) to the field "roll" I can see the goldish colored d10 next to the name of the feature. If I press it, the dice rolls in normal mode but not in query mode. In query more the query window opens correctly but when clicking the roll button in the window, nothing happens.  1. This has been ticketed and is in the sprint (which usually means "next few weeks" but can get pushed back based on higher-priority work coming in), but hasn't started work yet. 2. This should be fixed. I'm not in charge of the change log so I'm not sure if it's been updated yet with the note, but it should say "Added support for action rolls to prompt Query Mode" or something similar.
If you are still at work in improving the sheet:  1. I would love to be able to automatically reroll my dice as per the o ld   ro<2 or   r<2 command. This does not work for crits at the moment, as the crit does not double the amount of dice.  2. Please let me be able to set the Crit range for specific weapons. If you use different weapons that might have different crit ranges it is very tedious to go in and out of the menu for each different attack.
I have a Character with Great Weapon Master Feat. The feat adds Prof Bonus of Damage to Heavy Weapons (A Toggle in the Effects section of the Combat Tab of the Sheet "Heavy Weapons Mastery").  The problem is that it adds the Prof. Bonus to any damage dealing weapon. Is this a bug, and is this the place to report it?  Thanks.