Difference between revisions of "Protocol FAQ"

From wiki.vg
Jump to navigation Jump to search
Line 24: Line 24:
 
#'''S->C''' : Login Success
 
#'''S->C''' : Login Success
 
#'''S->C''' : Join Game
 
#'''S->C''' : Join Game
#'''S->C''' : Spawn Position (Not necessarily where the client will spawn on login)
+
#'''S->C''' : Spawn Position ("Home" spawn, not where the client will spawn on login)
 
#'''S->C''' : Player Abilities
 
#'''S->C''' : Player Abilities
 
#'''S->C''' : Tell the client they're ready to spawn by sending a position + look packet.
 
#'''S->C''' : Tell the client they're ready to spawn by sending a position + look packet.

Revision as of 04:44, 11 March 2014

People very, very often have questions regarding the Minecraft Modern Protocol, so we'll try to address some of the most common ones on this document. If you're still having trouble, join us on IRC, channel #mcdevs on irc.freenode.net.

Is the protocol documentation complete?

Depending on your definition, yes! All packet types are known and their layout documented. Some finer details are missing, but everything you need to make functional programs is present. We have a script that monitors for new versions of the client and notifies us, allowing us to quickly document new packets.

What's the normal login sequence for a client?

See Authentication for communication with minecraft.net

Warning.png Information might not be totally up to date

The recommended login sequence looks like this, where C is the client and S is the server:

  1. Client connects to server
  2. C->S : Handshake State=2
  3. C->S : Login Start
  4. S->C : Encryption Key Request
  5. (Client Auth)
  6. C->S : Encryption Key Response
  7. (Server Auth, Both enable encryption)
  8. S->C : Login Success
  9. S->C : Join Game
  10. S->C : Spawn Position ("Home" spawn, not where the client will spawn on login)
  11. S->C : Player Abilities
  12. S->C : Tell the client they're ready to spawn by sending a position + look packet.
  13. C->S : Sends a position + look packet to confirm the spawn position
  14. S->C : Inventory, Map Chunk Bulk, Entities, etc

I think I've done everything right, but…

…my player isn't spawning!

After sending the common-sense packets (Handshake, Login, Inventory, Compass and Chunks) you need to finally send the player their initial position for them to leave the "Loading Map" screen.

Note that if the following steps are taken, a Minecraft client will spawn the player:

1) Do Handshake (See Protocol Encryption)
2) Send Spawn Position PDU
3) Send Player Position and Look PDU

While the above steps are sufficient for Minecraft 1.4.5, it is good form to send PDUs that inform the client about the world around the player before allowing the player to spawn.

…my client isn't receiving complete map chunks!

Main article: How to Write a Client

The standard Minecraft server sends full chunks only when your client is sending player status update packets (any of Player (0x0A) through Player Position & Look (0x0D)).

…all connecting clients spasm and jerk uncontrollably!

For newer clients, your server needs to send 49 chunks ahead of time, not just one. Send a 7x7 square of chunks, centered on the connecting client's position, before spawning them.