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

[Car Wars] Sheet Questions

1462636980

Edited 1462637351
Okay, so I am using another sheet as the base and modifying it, because well...the original works, I just need to really change content and context for information.  I will have more questions for sure, but right now, I am wondering: 1. If there is a way, within the actual sheet itself, for the GM / Referee to input stuff in for the player, but the player can't modify it.  Not in the GM notes either. Reason:  in Car Wars, characters get reputation (prestige) as well as cash for competing and especially winning Auto Duels.  I want a way to track IN the character sheet, where it is visible to the player but not editable by them, where I can record the date/time and the result of any engagements, be they official Arena matches, or ambushes on the road.  As well as other information like skill points earned etc as well. 2. Now I am using the OGL 5e character sheet as a base, is there a way to have a drop down on the front page of the character sheet, to select a vehicle type, that hides the other possible tabs?  The tabs are: [ Driver ][ Gunners ][ Cycles ][ Trikes ][ 2 Axles ][ 3 Axles ][ 4 Axles ][ Trucks ] So if the player pulls a drop down, and selects say Luxury cars, then the character sheet would only show the following tabs: [ Driver ][ Gunners ][ 2 Axles ] 3.  How do I get one field to sum several other fields?  In the I want a prestige counter, and cash field on the front page to add up all the awarded points in the rewards tab.  4.  Lastly, is it possible to have a skill increased based on a total count in another field.  Example: A driver starts with 3 skill points, with one required in a vehicle type (Driving, Trucks or Cycles).  The player earns points for each skill based on what they do in a match.  To get from level 1 to level 2 costs 10 points, and level 2 to level 3 costs 20 points.  Is there a way, that I can total the skills added on points, so that the driver skill (for example) automatically updates when the new skill points are applied? Thanks in advance.
I should also note, I have fairly good HTML and CSS skills, but I am wondering if doing things like javascript is enabled (I am guessing not, but have to ask) which means I have to do it in HTML and CSS.  Is the HTML 5 or 4.x?  Also, what version of CSS is it as well.  Then I can get out a handy dandy reference tablet I have and make use of the right things to get this all done.
1462641515

Edited 1462641537
5.  Is there a way for a player to put a url to a picture say at imgur.com and have it show up in the character sheet too?  Just thinking it would be good for the players to show either the driver, the car, or something like that.  6.  I would also need this, in line with the point #1 (above) where I can place trophies and awards the players earn in their character sheets, and store them there? I did say there would be more questions right?
I have a Car Wars game setup on Roll20. Works great! I have three arenas and may add more. I can't help you with your sheet ... I have no sheet-making experience. But if you wanna see my setup or even play a game, PM me.
I would love to see your setup.  I am looking at doing a full League, so if you are interested, we should talk when I am ready to do some testing as well as maybe some collaboration.  I will PM you in the next week or so.
1462667305

Edited 1462667378
vÍnce
Pro
Sheet Author
Might need to get my old Steve Jackson plastic case out of the attic... &nbsp;;-P 1. I don't think so. All "editable" fields on a sheet are editable by whomever has permission to edit the sheet. 2. You can use css and checkboxes to hide/show elements (divs by class). 3. Yes. &nbsp;create your attributes (A,B,C) &nbsp;attribute D can be a disabled(non-editable attribute) with a value="(A+B+C)" &lt;input type="number" name="attr_D" value="(A+B+C)" disabled /&gt;&nbsp; ( <a href="https://wiki.roll20.net/Building_Character_Sheets" rel="nofollow">https://wiki.roll20.net/Building_Character_Sheets</a> ) 4. &nbsp;Attribute values can use formula to determine values. &nbsp;You can also use&nbsp; sheet workers (limited javascript) to do more complicated logic such as if/else to set an attributes value. 5. Sadly, no. &nbsp;Although you might update sheet portraits and/or tokens to represent cars/drivers. 6. You can probably make an awards attribute @{awards} and use a simple text field &lt;textarea&gt;My award, My second award, etc...&lt;/textarea&gt; Or maybe even make a repeating section and add awards as earned.