Back to blog
ReleaseGitHub

Libs

EcosystemLizeriumTools, portals, and developments around data, localization, and applications. A collection that was born during the creation of the game Freelancer Lizerium in C++ and Unity version of the game.Related projectLizeriumDataToolkitToolset for working with data, formats, and resources of Lizerium.

> Download .nupkg and install globally 💯

https://github.com/Lizerium/LizeriumDataToolkit/pkgs/nuget/Lizerium.Librelancer.DataBridge

> Download .nupkg and install locally

CODE
dotnet add package Lizerium.Librelancer.DataBridge --source "C:\temp\nuget"

The .dll libraries or nuget package required for your Freelancer managers.

> Usage:

{ Console.WriteLine(msg); });

Console.ReadLine();

var settings = new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.Auto };

var json = JsonConvert.SerializeObject(data, settings); File.WriteAllText("freelancer_dump.json", json);"> `` using LibreLancer.Data; using Newtonsoft.Json; var freelancerPath = "C:\\Program Files (x86)\\Freelancer"; var vfs = LibreLancer.Data.IO.FileSystem.FromPath(freelancerPath); var ini = new FreelancerIni(vfs); var data = new FreelancerData(ini, vfs); data.LoadData((msg) => { Console.WriteLine(msg); }); Console.ReadLine(); var settings = new JsonSerializerSettings { TypeNameHandling = TypeNameHandling.Auto }; var json = JsonConvert.SerializeObject(data, settings); File.WriteAllText("freelancer_dump.json", json); ``