Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[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