I'm working with the Minecraft Server To Client protocol documentation for a server I am making.

It says the packet is 18+ bytes, but I can't seem to figure out what each byte is for.

link|improve this question

You are going to need to provide a lot more detail about your specific issue. The page you linked to contains a fairly complete specification for the minecraft communications protocol. – Steve Mitcham Feb 6 '11 at 2:30
I thought it a bit 'amateur' that the widths of each field were not listed (in addition to their type interpretation), it's a protocol reference after all. Anyone worth their salt would have written the tables proper. Once you get over that, terminology becomes horrible and misleading and types are misintepreted altogether. The spec is a good start, and it's crap. – Shaun Wilson Jul 25 '11 at 5:33
feedback

2 Answers

up vote 2 down vote accepted

Entity ID = int = 4 bytes Map Seed = long = 8 bytes Dimension = byte = 1 byte ?

strings are variables sizes, hence why it says "Total Size: 18 bytes + length of strings"

Sorry I can't be more specific, more detail is needed

link|improve this answer
feedback

It also says that strings are a short (2 byte) length followed by the string.

Understanding what values go in each of those fields is a much more complicated issue, and i doubt anyone here can help with that.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.