Jump to content

Recommended Posts

Posted

Hello, I'm here because I would like to create more information for every block. I successful to add a nbt but it's juste for one block and for evry world...

How can I add a NBTTag for every block placed and for one world and not just one NBT for one block and for every world?
I would like use the same system that TileEntities, Entities or ItemStack.

(I can't use the TileEntity because I want add this NBTTag for every vanilla Blocks).

I'm use the Events: PlaceEvent, HarvestDropsEvent, BreakEvent, ChunkDataEvent.Save and ChunkDataEvent.Load.

Thank you for write me!

Posted (edited)
  On 4/14/2019 at 11:03 AM, TheMinecraftBox said:

How can I add a NBTTag for every block placed and for one world and not just one NBT for one block and for every world?

Expand  

AFAIK you don't.

 

There might be ways that can potentially achieve this, but are probably discouraged.

What are you trying to achieve? There is probably a better way of doing it.

Edited by DavidM

Some tips:

  Reveal hidden contents

 

Posted
  On 4/14/2019 at 12:19 PM, DavidM said:

What are you trying to achieve? There is probably a better way of doing it.

Expand  

Okay, I would like that when the player place a enchanted block in the world, the game save the enchantment when the block is broken.

With my NBT on my event class, it work but juste for one block. If the player place two blocks with this nbt, there are juste one block with this NBT.

Posted

What would your feature look like from an end-user perspective? There are multiple ways of doing stuff like this

About Me

  Reveal hidden contents

Versions below 1.14.4 are no longer supported on this forum. Use the latest version to receive support.

When asking support remember to include all relevant log files (logs are found in .minecraft/logs/), code if applicable and screenshots if possible.

Only download mods from trusted sites like CurseForge (minecraft.curseforge.com). A list of bad sites can be found here, with more information available at stopmodreposts.org

Edit your own signature at www.minecraftforge.net/forum/settings/signature/ (Make sure to check its compatibility with the Dark Theme)

Posted
  On 4/14/2019 at 12:38 PM, TheMinecraftBox said:

it work but juste for one block. If the player place two blocks with this nbt, there are juste one block with this NBT.

Expand  

Sounds like you're storing the data in a field of your block class.

This will never work (as you've seen) because blocks are singletons.

 

You must use a separate data structure, such as a Tile Entity.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

Posted (edited)
  On 4/14/2019 at 12:38 PM, TheMinecraftBox said:

With my NBT on my event class, it work but juste for one block.

Expand  

Use a tile entity instead.

Since blocks are singleton; values in your block class will be the same for every block in the world.

Edited by DavidM

Some tips:

  Reveal hidden contents

 

Posted
  On 4/14/2019 at 2:43 PM, Draco18s said:

You must use a separate data structure, such as a Tile Entity.

Expand  

 

  On 4/14/2019 at 2:46 PM, DavidM said:

Use a tile entity instead.

 

Expand  

 

  On 4/14/2019 at 11:03 AM, TheMinecraftBox said:

(I can't use the TileEntity because I want add this NBTTag for every vanilla Blocks).

 

Expand  

 

You can either have a block with a TE that takes on the model of the "enchanted" block or have a chunk capability that holds the additional data in a <BlockPos, YourData> map.

Posted
  On 4/14/2019 at 5:42 PM, V0idWa1k3r said:

 

 

 

You can either have a block with a TE that takes on the model of the "enchanted" block or have a chunk capability that holds the additional data in a <BlockPos, YourData> map.

Expand  

Create a TileEntity and how can I add all blocks Minecraft (in one file if it's possible). Or else, how I can create a NBT with singletons?

If it's so hard, I can make one file for one block but it's will so longers...

Posted
  On 4/15/2019 at 4:53 PM, TheMinecraftBox said:

Or else, how I can create a NBT with singletons

Expand  

Singleton is the name of a pattern whereby there is only one object and it is referenced everywhere as needed. 

 

"Per block" is the "everywhere"

 

If a TE won't work for you, you need a custom data studies that holds that information by coordinate. You will need to manage it yourself. It will be hard. 

 

You have no other options. 

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

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.