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

Can the API to modify Character sheets?

I am trying to mod the character sheets to add additional Attribute tabs that I can use to better organize them. Is this possible and if so does anyone know of an example of someone modifying the  character sheets?
1369284396
Konrad J.
Pro
API Scripter
Near the bottom of the page it shows an example. &nbsp;Attributes is one of the things we can create. &nbsp;I've never tried myself yet. <a href="https://wiki.roll20.net/API:Objects" rel="nofollow">https://wiki.roll20.net/API:Objects</a> Note: Currently only&nbsp; characters, handouts, attributes, and abilities &nbsp;can be created //Create a new Strength attribute on any Characters that are added to the game. on("add:character", function(obj) { createObj("attribute", { name: "Strength", current: 0, max: 30, characterid: obj.id }); });
1369285844
Alex L.
Pro
Sheet Author
Edward P. said: I am trying to mod the character sheets to add additional Attribute tabs that I can use to better organize them. Is this possible and if so does anyone know of an example of someone modifying the &nbsp;character sheets? You can't change any aspect of the UI at all. Edit: At this time.
1369296876
Konrad J.
Pro
API Scripter
Oh sorry, I thought he just wanted to create new attributes through the API. :) &nbsp;Now I reread it and it does sound like Edward wants to change the layout of the Character window. &nbsp;Ya no real way to change the actual UI. :(