We need SQLite3 databases which contain the data for actors and items. Currently we have the complete set of actor data (attached in this post) thanks to Houstin. We need two databases; one for Fallout 3, one for Fallout: New Vegas. They should contain the following tables:
actors (fields: "baseID" [32bit unsigned integer], "name" [string], "dlc" [unique integer identifier])
creatures (fields: "baseID" [32bit unsigned integer], "name" [string], "dlc" [unique integer identifier])
items (we don't have data yet, so no table structure yet)
The data attached consists of C headers (just treat them as text files). Each data set should have a unique ID (see "dlc" field). The main data of the games should have zero in the "dlc" field.
However, there is a problem. The baseIDs of the DLCs have a En prefix (like 0xE0, 0xE1 etc.). This was all correct when we had them build into the vaultmp application. Now, those prefixes need to be zeroed. So you have to replace all 0xEn with 0x00.
So if you have time...this is quite an important task