Maple2.File.Parser.Tadeucci
2.4.19
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Maple2.File.Parser.Tadeucci --version 2.4.19
NuGet\Install-Package Maple2.File.Parser.Tadeucci -Version 2.4.19
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="Maple2.File.Parser.Tadeucci" Version="2.4.19" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Maple2.File.Parser.Tadeucci" Version="2.4.19" />
<PackageReference Include="Maple2.File.Parser.Tadeucci" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Maple2.File.Parser.Tadeucci --version 2.4.19
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Maple2.File.Parser.Tadeucci, 2.4.19"
#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.
#:package Maple2.File.Parser.Tadeucci@2.4.19
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Maple2.File.Parser.Tadeucci&version=2.4.19
#tool nuget:?package=Maple2.File.Parser.Tadeucci&version=2.4.19
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Maple2.File
Strongly typed MapleStory2 m2d file parsing
xblock Parsing Example:
using var reader = new M2dReader(EXPORTED_PATH);
var index = new FlatTypeIndex(reader);
var parser = new XBlockParser(reader, index);
parser.Include(typeof(ISpawnPoint));
parser.Include(typeof(IMS2TriggerObject));
parser.Include(typeof(IPortal));
...
var results = new Dictionary<string, MapEntityMetadata>();
parser.Parse((xblock, entities) => {
var metadata = new MapEntityMetadata();
foreach (IMapEntity entity in entities) {
switch (entity) {
case ISpawnPointPC spawnPoint:
...
case ISpawnPointNPC npcSpawnPoint:
...
default:
...
}
}
results[xblock] = metadata;
});
xblock Parallel Parsing Example:
using var reader = new M2dReader(EXPORTED_PATH);
var index = new FlatTypeIndex(reader);
var parser = new XBlockParser(reader, index);
var results = new Dictionary<string, MapEntityMetadata>();
parser.Parallel().ForAll(map => {
var metadata = new MapEntityMetadata();
foreach (IMapEntity entity in map.entities) {
switch (entity) {
case ISpawnPointPC spawnPoint:
...
case ISpawnPointNPC npcSpawnPoint:
...
default:
...
}
}
results[map.xblock] = metadata;
});
xml Parsing Example:
using var reader = new M2dReader(XML_PATH);
// LOCALE: "TW", "TH", "NA", "CN", "JP", "KR"
// ENV: "Dev", "Qa", "DevStage", "Stage", "Live"
Filter.Load(reader, LOCALE, ENV);
var parser = new ItemParser(reader);
foreach ((int id, string name, ItemData data) in parser.Parse()) {
// Extract fields from ItemData that are needed.
}
xblock CliExplorer Example:
using var reader = new M2dReader(EXPORTED_PATH);
var index = new FlatTypeIndex(reader);
index.CliExplorer();
| Product | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Maple2.File.Parser.Tadeucci:
| Repository | Stars |
|---|---|
|
MS2Community/Maple2
Server emulator for MapleStory2.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 2.4.23 | 77 | 8/28/2026 |
| 2.4.22 | 178 | 8/19/2026 |
| 2.4.21 | 778 | 8/5/2026 |
| 2.4.20 | 171 | 8/2/2026 |
| 2.4.19 | 117 | 8/1/2026 |
| 2.4.18 | 349 | 7/27/2026 |
| 2.4.17 | 110 | 7/27/2026 |
| 2.4.16 | 446 | 5/29/2026 |
| 2.4.15 | 223 | 5/26/2026 |
| 2.4.14 | 116 | 5/25/2026 |
| 2.4.13 | 179 | 5/18/2026 |
| 2.4.12 | 109 | 5/17/2026 |
| 2.4.11 | 214 | 5/14/2026 |
| 2.4.10 | 133 | 5/13/2026 |
| 2.4.9 | 134 | 5/9/2026 |
| 2.4.8 | 141 | 5/6/2026 |
| 2.4.7 | 128 | 5/4/2026 |
| 2.4.6 | 155 | 5/1/2026 |
| 2.4.5 | 164 | 4/27/2026 |
| 2.4.4 | 306 | 4/12/2026 |
Loading failed