Skip to content

Table Database

The table files .tbl, located under system/table holds most of the data for the game. Items, abilities, gems (sigils), and a lot more.

In order to make it easier for editing, it is recommended to first convert them to SQLite for easier manipulation.

Danger

Do NOT use this online. Likewise, do NOT use this to create and publish cheat related mods, such as skill edits.

Table research and edits should be reserved to adding or adjusting content. Using mods with table edits has a high potential for breakage if used online. If you are publishing a mod with table edits, only include the table files you've edited in your mod, not ALL the tables.

Mention which tables you have edited when publishing your mod. Otherwise multiple mods may conflict if they edit the same table.


Converting to SQLite

To convert them to SQLite, you can use GBFRDataTools >1.2.0 which you should already have.

Command
GBFRDataTools.exe tbl-to-sqlite -i <path to table folder> -o <output SQLite file> -v <game version i.e 1.1.1>

You can then preview them using any SQLite database editor, such as SQLiteStudio

Tip

If you care about your eyes, switch to Dark Mode in:

  • Tools Open configuration dialog Look & feel (Style) Current style: Fusion Dark.

Converting back to .tbl

Note

Make sure you've read the danger notice above.

Command
GBFRDataTools.exe sqlite-to-tbl -i <path to SQLite file> -o <path of output table folder> -v <game version i.e 1.1.1>

Additional Notes

  • For random-looking-values, Hashes are used for table relationships. Blank columns signify a hash of 887AE0B0 (empty string/no value).
  • The actual type of each column can be found by inspecting the .headers files of GBFRDataTool under the Headers folder.
  • Many of the columns are unknown and may need to be figured out first.
  • Please contribute! There are many tables that have yet to be figured out. The headers are located here on the repo. Same goes for hashes, if you manage to bruteforce the original string for certain hashes, the list is located here.