Jump to content

Recommended Posts

Posted

I haven't researched NBT much, however I was wondering whether it would be possible to store a custom Java object(not minecraft object, like an instance of a java class) as NBT to an item? How would I go about doing this, can anyone help, or provide any pages that may cover this?

Posted

I have had a quick look around and I cannot find anyway of storing custom data types as NBT. I want to be able to store my custom data type in game however it should exist only once and on server side

Posted

You need to break down your object and the objects it's composed of into the basic data types supported by NBT: compound tags for complex objects, list tags for collections, string tags for strings, numeric tags for numbers and numeric array tags for collections of numbers. You should implement

INBTSerializable

on classes that can be serialised to NBT.

 

To attach data to an

ItemStack

,

Entity

or

TileEntity

(or any other

ICapabilityProvider

), use the Capability system.

 

To attach data to a dimension or save, use World Saved Data.

Please don't PM me to ask for help. Asking your question in a public thread preserves it for people who are having the same problem in the future.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.