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

Question on Making A Settings Tab

1713554983
Skyeris
Pro
Sheet Author
Compendium Curator
One thing I would like to add to my sheet is a settings tab that contains the option to replace parts of the character sheet with another on all the other tabs. Essentially I plan to have two radio buttons, one for the d100 version and one for the d10 version. A click of the button displays on the other tabs of the Character Sheet different information. Is this even possible to do or is there some sort of work around?
1713559180
GiGs
Pro
Sheet Author
API Scripter
Yes, this is possible. If you just want a tab for this, create it the same way you create any other tabs. What precisile is it you want to do?
1713573716
Skyeris
Pro
Sheet Author
Compendium Curator
Essentially, I want to turn one of the tabs to a Settings Tab and in there have options for changes on the character sheet. The changes would affect the information displayed on the other tabs. My sheet is divided into four other tabs that contain everything you need. I want to have two options for character sheets. One option is the d100 version and the other is the d10 version.
1713577158

Edited 1713577226
GiGs
Pro
Sheet Author
API Scripter
If you already have tabs you know how to create them. My suggestion would be to have a select on the settings tab for selecting dice (with d10 and d100 options). Name the select something like die : <select name="attr_die">     <option selected>d100</option> <option>d10</option> </select> Then in every place you would use a die (all your rolls), replace the d100 or d10 part with @{die} , or maybe 1@{die} .