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: <input type="text" name="Dicipline1" style="width:105px"/> 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: <input type="text" name="attr_Dicipline1_Name" style="width:105px"/> 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.