MsbtLib
MSBT Library by GingerAvalanche on GitHub.
About MsbtLib
Usage
Reading
Reading from a FileStream
using MsbtLib;
using FileStream fileStream = File.OpenRead("C:/ExtractedMsbt/Msg_USen.product/ActorType/ArmorHead.msbt");
MSBT msbt = new(fileStream);using MsbtLib;
using Nintendo.Sarc;
using Nintendo.Yaz0;
SarcFile bootup = new(File.ReadAllBytes("D:/Botw/Update/content/Pack/Bootup_USen.pack"));
SarcFile langPack = new(Yaz0.Decompress(bootup.Files["Msg_USen.product.ssarc"]));
MSBT msbt = new(langPack.Files["ActorType/ArmorHead.msbt"]);Reading from a pseudo HTML string
Editing
Writing
Writing to pseudo HTML
Writing to a file
Writing to a byte[] (continued example from 'Reading from a byte[]')
Download
Last updated