PalworldDataExtractor.Lib 0.5.0

dotnet add package PalworldDataExtractor.Lib --version 0.5.0
NuGet\Install-Package PalworldDataExtractor.Lib -Version 0.5.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PalworldDataExtractor.Lib" Version="0.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PalworldDataExtractor.Lib --version 0.5.0
#r "nuget: PalworldDataExtractor.Lib, 0.5.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PalworldDataExtractor.Lib as a Cake Addin
#addin nuget:?package=PalworldDataExtractor.Lib&version=0.5.0

// Install PalworldDataExtractor.Lib as a Cake Tool
#tool nuget:?package=PalworldDataExtractor.Lib&version=0.5.0

Palworld data extractor

This tool extracts data from the Palworld .pak file. The data is extracted from:

  • The game's .pak file:
    • Pal\Content\Pal\DataTable\Character\DT_PalMonsterParameter.uasset: data about all the pals of the game
    • Pal\Content\Pal\DataTable\Character\DT_PalCharacterIconDataTable.DT_PalCharacterIconDataTable.uasset: mapping from pal tribe names to icon assets
  • The content of steam's app manifest file if the steamapps directory is a parent of the .pak file directory:
    • appid: application id
    • buildid: build id
    • name: game name on steam
    • SizeOnDisk: application size

Usage

using CUE4Parse.UE4.Versions;
using PalworldDataExtractor;
using PalworldDataExtractor.Models;

DataExtractor extractor = new(
    @"Palworld\Pal\Content\Paks",
    config =>
    {
        config.UnrealEngineVersion = new VersionContainer(EGame.GAME_UE5_1);
        config.PakFileName = "Pal-Windows.pak";
    }
);

ExtractedData data = await extractor.Extract();
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.5.0 175 2/22/2024
0.4.4 156 2/22/2024
0.4.3 140 2/22/2024
0.4.2 150 2/22/2024
0.4.1 145 2/21/2024
0.4.0 153 2/21/2024
0.3.2 157 2/19/2024
0.3.1 159 2/19/2024
0.3.0 183 2/19/2024
0.2.6 154 2/18/2024
0.2.5 126 2/18/2024
0.2.4 147 2/18/2024
0.2.3 169 2/18/2024
0.2.2 151 2/18/2024
0.2.1 159 2/18/2024
0.1.6 180 2/17/2024