This site has been archived and made available for preservation purposes. No edits can be made.

Page 1 of 2 12 LastLast
Results 1 to 10 of 13

Thread: Creating SQLite3 databases for game data

  1. #1
    Administrator
    Join Date
    Jun 2011
    Location
    Germany
    Posts
    1,057
    Blog Entries
    5

    Creating SQLite3 databases for game data

    If you want to help and have some knowledge about SQL, you could work on this GitHub issue:

    https://github.com/Foxtacles/vaultmp/issues/14

    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

    EDIT:
    NeoPhoenix works on it
    Attached Files Attached Files
    Last edited by foxtacles; 05-05-2012 at 10:22 PM.

  2. #2
    i would do it during weekend

  3. #3
    Administrator
    Join Date
    Jun 2011
    Location
    Germany
    Posts
    1,057
    Blog Entries
    5
    That would be nice

  4. #4
    Senior Member Volumed's Avatar
    Join Date
    Aug 2011
    Location
    Holland
    Posts
    1,010
    Blog Entries
    1
    Do you still need the ID list?

  5. #5
    Administrator
    Join Date
    Jun 2011
    Location
    Germany
    Posts
    1,057
    Blog Entries
    5
    We have all necessary data for actors / creatures. We still need complete base ID / name lists for items, though.

    (and cell data)

  6. #6
    Senior Member Volumed's Avatar
    Join Date
    Aug 2011
    Location
    Holland
    Posts
    1,010
    Blog Entries
    1
    You will get it.

  7. #7
    Senior Member Volumed's Avatar
    Join Date
    Aug 2011
    Location
    Holland
    Posts
    1,010
    Blog Entries
    1
    Fallout 3 items and DLC items

    https://www.2shared.com/document/F31T...sfallout3.html

    Is this what you want? I can make more ID lists with objects and more..

  8. #8
    Administrator
    Join Date
    Jun 2011
    Location
    Germany
    Posts
    1,057
    Blog Entries
    5
    That looks good! Can you also put the display name (in-game) instead of the form name?

  9. #9
    Senior Member Volumed's Avatar
    Join Date
    Aug 2011
    Location
    Holland
    Posts
    1,010
    Blog Entries
    1
    That is a little harder. And not all items got a name.

  10. #10
    Administrator
    Join Date
    Jun 2011
    Location
    Germany
    Posts
    1,057
    Blog Entries
    5
    Quote Originally Posted by Volumed View Post
    That is a little harder. And not all items got a name.
    Would be nice, though The actor data we currently have also has the in-game names. If an item doesn't have a name, then just use the form name instead

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •