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

Vampire: The Masquerade Character Sheets

I didn't see a report for this already, so I'm going to make one. When I use the V:tM 2nd Ed. character sheet in Roll20 it looses values from text fields after it's closed. To re-produce, create a new character, go to character sheet, and fill in some text in one of the disciplines boxes. Close the sheet and re-open it. When I do this, the values I just entered have vanished. I'm accessing Roll20 through Chrome, running Windows 7.
1415470351

Edited 1415470387
B Simon Smith
Marketplace Creator
Normally I would recommend contacting the creator of the sheet, although if it was created by the same sheet author as the following link, there's no bug, the sheet was just made to allow for input of info into fields without the ability to save the info. Additionally, the sheet author apparently abandoned it, so you may need to wait until another author decides to fix it. <a href="https://app.roll20.net/forum/post/1044400/vampire-" rel="nofollow">https://app.roll20.net/forum/post/1044400/vampire-</a>...
1415479769
Pat S.
Forum Champion
Sheet Author
Moved to character sheet forum.
1415492842
Finderski
Plus
Sheet Author
Compendium Curator
If it's the sheet I think it is, the problem is in the field properties. Here's an example of one of the properties: &lt;input type="text" name="Dicipline1" style="width:105px"/&gt; That provides a text box for input, but no way for it to be saved to the character sheet. All you'd need to do is modify it to be something like: &lt;input type="text" name="attr_Dicipline1_Name" style="width:105px"/&gt; To get any of the text boxes that aren't saving, you just need to make sure that that the attr_ added to the front of the name property, and that the name doesn't match something else (which is why I recommended appending _Name to the above text box. I'm not a VtM player, and so am somewhat apprehensive in modifying the character sheet (because then if there are problems I'd get tagged with fixing it—and I just don't have the time, nor desire for that). But if someone wants to take up the mantle of maintaining that character sheet, I'd be happy to answer questions if the above doesn't make sense.