Jump to content

Recommended Posts

Posted

hen .... i guess its sortof a good reason, you could always automagicly assign empty id to your block if you're not using the "give" command

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

-hydroflame, author of the forge revolution-

Posted

The blocks should all be accessible in the chosen creative Tab so you don't need to cheat them in.

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

Posted

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-

Posted

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-

Posted

Thats something I've never thought of. Redpower does that and ive never been in the situation where my huge tunnel bore took long to load.

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

Posted

well like we were thinking earlier, the meta, but we dont knwo how to extend it beyond 16.

 

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

-hydroflame, author of the forge revolution-

Posted

It is also very hard to look where the Metadata is coming from because i cant find anything which is calling one of the methods in the block class.

PM's regarding modding questions should belong in the Modder Support sub-forum and won't be answered.

Posted

the only way to have more than 16 meta is by having custom chunk files. I looked in the minecraft code, and it's saved as nibbles (half a byte) so you'd need to either make a core mod that changes that, or make them specific to a custom dimension.

Posted

Look into the world class, the get and set block metadata methods.

That should show you all involved classes and how/why they work ;)

If you guys dont get it.. then well ya.. try harder...

Posted

Considering the amount of work you are planning to do, you should have at least one hundred blocks to merge like this.

It would be a huge loss of time to do it for less.

Posted

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.

Posted

@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-

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.