• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[C#] WZ Parser

Junior Spellweaver
Joined
Jul 1, 2008
Messages
178
Reaction score
83
Sup fam, this is a part of a series of releases relating to /

WZData is a library I built to handle parsing Nexon's WZ structure to join pieces together to form higher level objects that can then be used. This is the backbone of . It depends on the PKG1 library I released 2 weeks ago.

Repository URL:
Git Clone (HTTPS):

Example of usage:

Code:
PackageCollection v191 = new PackageCollection("/opt/v191/Base.wz");
MapMark mark = MapMark.Parse(v191.Resolve($"Map/MapHelper.img/mark/{markName}"));

As per usual, this is built with and can be compiled to near-native code on Linux, OSX, and Windows.
 
Last edited:
Back
Top