Skip to content

Latest commit

 

History

History
276 lines (264 loc) · 19.7 KB

README.md

File metadata and controls

276 lines (264 loc) · 19.7 KB

TrinityCore.Dbc.Net.Lib

⚠️ Only supported version is TrinityCore branch 3.3.5 ⚠️

First of all, English is not my mother tongue, so sorry in advance for any mistakes.

What can i do with the library ?

With this library you can open and read the contents of used dbc files used by the trinitycore server. Each file is represented by a specific class.

How to use the library ?

Basic example

DbcDirectory.Initialize("<path to dbc directory>");
List<Achievement> records = DbcDirectory.Open<Achievement>();

Specifying the locale

DbcDirectory.Initialize("<path to dbc directory>", Enums.DbcLocale.frFR);
List<Achievement> records = DbcDirectory.Open<Achievement>();

What files are currently available ?