C# .NET Library for handling Dark Age of Camelot Client resources
This DLL is meant to be linked in any project that needs to access Dark Age of Camelot Client resources for parsing various content.
Download : /~https://github.com/dol-leodagan/DaocClientLib/releases/latest
using DaocClientLib;
public const string daocDirectory = @"C:\Dark Age of Camelot";
public static void Main(string[] args)
{
try
{
var clientData = new ClientDataWrapper(daocDirectory);
// Use some Data...
Console.WriteLine(clientData.CraftRecipes[0]);
}
catch (Exception e)
{
Console.WriteLine("Could not read DAOC setup...");
Console.WriteLine(e);
}
}
git clone --recursive /~https://github.com/dol-leodagan/DaocClientLib
cd DaocClientLib
nuget restore
then build with your favorite IDE...