Minestom / Hephaistos

NBT & Anvil save format library
MIT License
60 stars 11 forks source link

Write & Read for netty buffers #31

Closed hinoobers closed 1 year ago

hinoobers commented 2 years ago

is there a tutorial for writing nbt to netty buffers and reading them from it?

jglrxavpok commented 1 year ago

Sorry for the (very) late answer:

Use NBTWriter pointing to an OutputStream capable of writing to a Netty buffer, or alternatively, use NBTWriter with a ByteArrayOutputStream and write the resulting byte array to your buffer directly.