Jump to content

Extended metadata with TileEntity


Busti

Recommended Posts

yeah but sometimes if you know X item has Y id its easier to simply type give Y 64 instead of looking through hundreds of item

 

 

btw i actually agree with you more then i agree with the argument above, specially since theres a search bar

 

soooo ... since you dont care about ID, why dont you just fill in the blanks in the Block.blocksList ?

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

because your method is extremmely memory intensive ?

 

imagine if you have a wall of those blocks. when the player needs to load them itll take forever to the server to send hundred of relativelly empty tile entity

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

Correct me if I'm wrong, but I thought that implementing unnecessary TileEntities isn't good for the performance.

 

//Edit: Sorry hydroflame, you already said that. Good to emphasize though :P

Author of PneumaticCraft, MineChess, Minesweeper Mod and Sokoban Mod. Visit www.minemaarten.com to take a look at them.

Link to comment
Share on other sites

@MineMaarten: you are absolutelly right

its important to understand whats the process of loading a chunk

basicly chunk are simply arrays of number. so whenever a player need to load a chunk he will request the server to first get that chunk in memory and then end it to the client. but tile entity are EXTRA data that are saved separatelly. if a chunk is loaded the server will also send the tile entity in separate packet (not 1 packet for all TE, 1 packet PER TE)

 

basicly if you have 20 TE per chunk, you're goign to roughly receive 21 packet.

 

but you usually dont load 1 chunk at a time, you usually need like 10

meaning the server will need to send 210 packet instead of 10 and at THIS point your network will be congested.

 

tldr

dont do it, no one will use the mod and its not going to be playable

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

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.