Difference between revisions of "Protocol"

From wiki.vg
Jump to navigation Jump to search
m (Make Open Screen packet easier to find and more connected to the other container packets)
m (Updated Github link)
Line 3: Line 3:
 
   |BACKGROUND = #99CCFF
 
   |BACKGROUND = #99CCFF
 
   |WIDTH = 100%
 
   |WIDTH = 100%
   |ICON =
+
   |ICON =  
 
   |HEADING = Heads up!
 
   |HEADING = Heads up!
   |CONTENT = This article is about the protocol for the latest '''stable''' release of Minecraft '''Java Edition''' ([[Protocol version numbers|1.19.3, protocol 761]]). For the Java Edition pre-releases, see [[Pre-release protocol]]. For the incomplete Bedrock Edition docs, see [[Bedrock Protocol]]. For the old Pocket Edition, see [[Pocket Edition Protocol Documentation]].
+
   |CONTENT = This article is about the protocol for the latest '''stable''' release of Minecraft '''computer edition'''. For the computer edition pre-releases, see [[Pre-release protocol]]. For Pocket Edition, see [[Pocket Minecraft Protocol]].
 
}}
 
}}
  
 
This page presents a dissection of the current '''[https://minecraft.net/ Minecraft] protocol'''.
 
This page presents a dissection of the current '''[https://minecraft.net/ Minecraft] protocol'''.
  
If you're having trouble, check out the [[Protocol FAQ|FAQ]] or ask for help in the IRC channel [ircs://irc.libera.chat:6697 #mcdevs on irc.libera.chat] ([https://wiki.vg/MCDevs More Information]).
+
If you're having trouble, check out the [[Protocol FAQ|FAQ]] or ask for help in the IRC channel ([irc://irc.freenode.net/mcdevs #mcdevs on chat.freenode.net]).
  
'''Note:''' While you may use the contents of this page without restriction to create servers, clients, bots, etc; substantial reproductions of this page must be attributed IAW [https://creativecommons.org/licenses/by-sa/4.0/ CC BY-SA 4.0].
+
'''Note:''' While you may use the contents of this page without restriction to create servers, clients, bots, etc… you still need to provide attribution to #mcdevs if you copy any of the contents of this page for publication elsewhere.
  
 
The changes between versions may be viewed at [[Protocol History]].
 
The changes between versions may be viewed at [[Protocol History]].
Line 18: Line 18:
 
== Definitions ==
 
== Definitions ==
  
The Minecraft server accepts connections from TCP clients and communicates with them using ''packets''. A packet is a sequence of bytes sent over the TCP connection. The meaning of a packet depends both on its packet ID and the current state of the connection. The initial state of each connection is [[#Handshaking|Handshaking]], and state is switched using the packets [[#Handshake|Handshake]] and [[#Login Success|Login Success]].
+
The Minecraft server accepts connections from TCP clients and communicates with them using ''packets''. A packet is a sequence of bytes sent over the TCP connection. The meaning of a packet depends both on its packet ID and the current state of the connection. The initial state of each connection is [[#Handshaking|Handshaking]], and state is switched using the packets [[#Handshake|Handshake]] ([[#Handshaking|Handshaking]], 0x00, serverbound) and [[#Login Success|Login Success]] ([[#Login|Login]], 0x02, clientbound).
  
 
=== Data types ===
 
=== Data types ===
Line 47: Line 47:
 
  |-
 
  |-
 
  | Global palette
 
  | Global palette
  | A table/dictionary/palette mapping nonnegative integers to block states. Block state IDs are created in a linear fashion based off of order of assignment.  One block state ID allocated for each unique block state for a block; if a block has multiple properties then the number of allocated states is the product of the number of values for each property.  A current list of properties and state ID ranges is found on [https://pokechu22.github.io/Burger/1.19.html burger].
+
  | A table/dictionary/palette mapping nonnegative integers to block states. The block state IDs can be constructed from {{Minecraft Wiki|Data values|this table}} by multiplying what the Minecraft Wiki calls “block IDs” by 16 and adding the metadata/damage value (or in most programming languages <code>block_id &lt;&lt; 4 <nowiki>|</nowiki> metadata</code>).
 
 
Alternatively, the vanilla server now includes an option to export the current block state ID mapping, by running <code>java -cp minecraft_server.jar net.minecraft.data.Main --reports</code>.  See [[Data Generators]] for more information.
 
|-
 
| Notchian
 
| The official implementation of vanilla Minecraft as developed and released by Mojang.
 
|-
 
| Sequence
 
| The action number counter for local block changes, incremented by one when clicking a block with a hand, right clicking an item, or starting or finishing digging a block. Counter handles latency to avoid applying outdated block changes to the local world.  Also is used to revert ghost blocks created when placing blocks, using buckets, or breaking blocks.
 
 
  |}
 
  |}
  
 
== Packet format ==
 
== Packet format ==
 
Packets cannot be larger than 2<sup>21</sup> &minus; 1 or 2097151 bytes (the maximum that can be sent in a 3-byte VarInt).  For compressed packets, this applies to both the compressed length and uncompressed lengths.
 
  
 
=== Without compression ===
 
=== Without compression ===
Line 71: Line 61:
 
  | Length
 
  | Length
 
  | VarInt
 
  | VarInt
  | Length of Packet ID + Data
+
  | Length of packet data + length of the packet ID
 
  |-
 
  |-
 
  | Packet ID
 
  | Packet ID
 
  | VarInt
 
  | VarInt
  |
+
  |  
 
  |-
 
  |-
 
  | Data
 
  | Data
Line 84: Line 74:
 
=== With compression ===
 
=== With compression ===
  
Once a [[#Set Compression|Set Compression]] packet (with a non-negative threshold) is sent, [[wikipedia:Zlib|zlib]] compression is enabled for all following packets. The format of a packet changes slightly to include the size of the uncompressed packet.
+
Once a [[#Set Compression|Set Compression]] packet is sent, [[wikipedia:Zlib|zlib]] compression is enabled for all following packets. The format of a packet changes slighty to include the size of the uncompressed packet.
  
 
{| class=wikitable
 
{| class=wikitable
Line 95: Line 85:
 
  | Packet Length
 
  | Packet Length
 
  | VarInt
 
  | VarInt
  | Compressed length of (Packet ID + Data)
+
  | Length of Data Length + compressed length of (Packet ID + Data)
 
  |-
 
  |-
 
  | No
 
  | No
Line 102: Line 92:
 
  | Length of uncompressed (Packet ID + Data) or 0
 
  | Length of uncompressed (Packet ID + Data) or 0
 
  |-
 
  |-
  | rowspan="2"| Yes
+
  |rowspan="2"| Yes
 
  | Packet ID
 
  | Packet ID
  | VarInt
+
  | Varint
 
  | zlib compressed packet ID (see the sections below)
 
  | zlib compressed packet ID (see the sections below)
 
  |-
 
  |-
Line 112: Line 102:
 
  |}
 
  |}
  
If the size of the buffer containing the packet data and ID (as a VarInt) is smaller than the threshold specified in the packet [[#Set Compression|Set Compression]]. It will be sent as uncompressed. This is done by setting the data length as 0. (Comparable to sending a non-compressed format with an extra 0 between the length, and packet data).
+
The length given by the Packet Length field is the number of bytes that remain in that packet, including the Data Length field.
  
If it's larger than the threshold, then it follows the regular compressed protocol format.
+
If Data Length is set to zero, then the packet is uncompressed; otherwise it is the size of the uncompressed packet.
  
Compression can be disabled by sending the packet [[#Set Compression|Set Compression]] with a negative Threshold, or not sending the Set Compression packet at all.
+
If compressed, the uncompressed length of (Packet ID + Data) must be equal to or over the threshold set in the packet [[#Set Compression 2|Set Compression]] ([[#Login|Login]], 0x03, clientbound), otherwise the receiving party will disconnect.
 +
 
 +
Compression can be disabled by sending the packet [[#Set Compression 2|Set Compression]] ([[#Login|Login]], 0x03, clientbound) with a Threshold of -1.
  
 
== Handshaking ==
 
== Handshaking ==
Line 138: Line 130:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="4"| 0x00
+
  |rowspan="4"| 0x00
  | rowspan="4"| Handshaking
+
  |rowspan="4"| Handshaking
  | rowspan="4"| Server
+
  |rowspan="4"| Server
 
  | Protocol Version
 
  | Protocol Version
 
  | VarInt
 
  | VarInt
  | See [[protocol version numbers]] (currently 760 in Minecraft 1.19.2).
+
  | See [[protocol version numbers]] (currently 47)
 
  |-
 
  |-
 
  | Server Address
 
  | Server Address
  | String (255)
+
  | String
  | Hostname or IP, e.g. localhost or 127.0.0.1, that was used to connect. The Notchian server does not use this information. Note that SRV records are a simple redirect, e.g. if _minecraft._tcp.example.com points to mc.example.org, users connecting to example.com will provide example.org as server address in addition to connecting to it.
+
  | hostname or IP, e.g. localhost or 127.0.0.1<!-- does this support IPv6? -->
  |-
+
  |-  
 
  | Server Port
 
  | Server Port
 
  | Unsigned Short
 
  | Unsigned Short
  | Default is 25565. The Notchian server does not use this information.
+
  | default is 25565
 
  |-
 
  |-
 
  | Next State
 
  | Next State
  | VarInt Enum
+
  | VarInt
  | 1 for [[#Status|Status]], 2 for [[#Login|Login]].
+
  | 1 for [[#Status|status]], 2 for [[#Login|login]]
 
  |}
 
  |}
  
Line 163: Line 155:
  
 
While not technically part of the current protocol, legacy clients may send this packet to initiate [[Server List Ping]], and modern servers should handle it correctly.
 
While not technically part of the current protocol, legacy clients may send this packet to initiate [[Server List Ping]], and modern servers should handle it correctly.
The format of this packet is a remnant of the pre-Netty age, before the switch to Netty in 1.7 brought the standard format that is recognized now. This packet merely exists to inform legacy clients that they can't join our modern server.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 178: Line 169:
 
  | Payload
 
  | Payload
 
  | Unsigned Byte
 
  | Unsigned Byte
  | always 1 (<code>0x01</code>).
+
  | always 1 (<code>0x01</code>)
 
  |}
 
  |}
  
 
See [[Server List Ping#1.6]] for the details of the protocol that follows this packet.
 
See [[Server List Ping#1.6]] for the details of the protocol that follows this packet.
  
== Status ==
+
== Play ==
{{Main|Server List Ping}}
 
  
 
=== Clientbound ===
 
=== Clientbound ===
  
==== Status Response ====
+
==== Keep Alive ====
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x00
 
| rowspan="2"| Status
 
| rowspan="2"| Client
 
|-
 
| JSON Response
 
| String (32767)
 
| See [[Server List Ping#Response]]; as with all strings this is prefixed by its length as a VarInt.
 
|}
 
  
==== Ping Response ====
+
The server will frequently send out a keep-alive, each containing a random ID. The client must respond with the same packet. If the client does not respond to them for over 30 seconds, the server kicks the client. Vice versa, if the server does not send any keep-alives for 20 seconds, the client will disconnect and yields a "Timed out" exception.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 217: Line 190:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x01
+
  |rowspan="1"| 0x00
  | Status
+
  |rowspan="1"| Play
  | Client
+
  |rowspan="1"| Client
  | Payload
+
  | Keep Alive ID
  | Long
+
  | VarInt
  | Should be the same as sent by the client.
+
  |  
 
  |}
 
  |}
  
=== Serverbound ===
+
==== Join Game ====
  
==== Status Request ====
+
See [[Protocol Encryption]] for information on logging in.
 
 
The status can only be requested once immediately after the handshake, before any ping. The server won't respond otherwise.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 239: Line 210:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x00
+
  |rowspan="7"| 0x01
  | Status
+
  |rowspan="7"| Play
| Server
+
  |rowspan="7"| Client
  | colspan="3"| ''no fields''
+
| Entity ID
 +
| Int
 +
| The player's Entity ID (EID)
 +
|-
 +
| Gamemode
 +
| Unsigned Byte
 +
| 0: Survival, 1: Creative, 2: Adventure, 3: Spectator. Bit 3 (0x8) is the hardcore flag.
 +
|-
 +
| Dimension
 +
| Byte
 +
| -1: Nether, 0: Overworld, 1: End
 +
|-
 +
| Difficulty
 +
| Unsigned Byte
 +
| 0: peaceful, 1: easy, 2: normal, 3: hard
 +
|-
 +
| Max Players
 +
| Unsigned Byte
 +
| Used by the client to draw the player list
 +
|-
 +
| Level Type
 +
| String
 +
| default, flat, largeBiomes, amplified, default_1_1
 +
|-
 +
| Reduced Debug Info
 +
| Boolean
 +
| If true, a Notchian client shows reduced information on the {{Minecraft Wiki|debug screen}}.
 
  |}
 
  |}
  
==== Ping Request ====
+
{{Warning|If the Dimension isn't valid then the client will crash}}
 +
 
 +
==== Chat Message ====  
 +
 
 +
Identifying the difference between Chat/System Message is important as it helps respect the user's chat visibility options. While Position 2 accepts json formatting it will not display, old style formatting works
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 255: Line 256:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x01
+
  |rowspan="2"| 0x02
  | Status
+
  |rowspan="2"| Play
  | Server
+
  |rowspan="2"| Client
  | Payload
+
  | JSON Data
  | Long
+
  | [[Chat]]
  | May be any number. Notchian clients use a system-dependent time value which is counted in milliseconds.
+
  | Limited to 32767 bytes
 +
|-
 +
| Position
 +
| Byte
 +
| 0: chat (chat box), 1: system message (chat box), 2: above hotbar
 
  |}
 
  |}
  
== Login ==
+
{{Warning|Malformed JSON will disconnect the client}}
  
The login process is as follows:
+
==== Time Update ====
  
# C→S: [[#Handshake|Handshake]] with Next State set to 2 (login)
+
Time is based on ticks, where 20 ticks happen every second. There are 24000 ticks in a day, making Minecraft days exactly 20 minutes long.
# C→S: [[#Login Start|Login Start]]
 
# S→C: [[#Encryption Request|Encryption Request]]
 
# Client auth
 
# C→S: [[#Encryption Response|Encryption Response]]
 
# Server auth, both enable encryption
 
# S→C: [[#Set Compression|Set Compression]] (optional)
 
# S→C: [[#Login Success|Login Success]]
 
  
Set Compression, if present, must be sent before Login Success. Note that anything sent after Set Compression must use the [[#With compression|Post Compression packet format]].
+
The time of day is based on the timestamp modulo 24000. 0 is sunrise, 6000 is noon, 12000 is sunset, and 18000 is midnight.
  
For unauthenticated ("cracked"/offline-mode) and integrated servers (either of the two conditions is enough for an unencrypted connection) there is no encryption. In that case [[#Login Start|Login Start]] is directly followed by [[#Login Success|Login Success]]. The Notchian server uses UUID v3 for offline player UUIDs, with the namespace “OfflinePlayer” and the value as the player’s username. For example, Notch’s offline UUID would be derived from the string “OfflinePlayer:Notch”. This is not a requirement however, the UUID may be anything.
+
The default SMP server increments the time by <code>20</code> every second.
  
See [[Protocol Encryption]] for details.
+
{| class="wikitable"
 
+
  ! Packet ID
=== Clientbound ===
 
 
 
==== Disconnect (login) ====
 
 
 
{| class="wikitable"
 
  ! Packet ID
 
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
Line 294: Line 286:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x00
+
  |rowspan="2"| 0x03
  | Login
+
  |rowspan="2"| Play
  | Client
+
  |rowspan="2"| Client
  | Reason
+
  | World Age
  | [[Chat]]
+
| Long
  | The reason why the player was disconnected.
+
| In ticks; not changed by server commands
 +
  |-
 +
| Time of day
 +
| Long
 +
  | The world (or region) time, in ticks. If negative the sun will stop moving at the Math.abs of the time
 
  |}
 
  |}
  
==== Encryption Request ====
+
==== Entity Equipment ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 312: Line 308:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="5"| 0x01
+
  |rowspan="3"| 0x04
  | rowspan="5"| Login
+
  |rowspan="3"| Play
  | rowspan="5"| Client
+
  |rowspan="3"| Client
  | Server ID
+
  | Entity ID
| String (20)
 
| Appears to be empty.
 
|-
 
| Public Key Length
 
 
  | VarInt
 
  | VarInt
  | Length of Public Key
+
  | Entity's EID
 
  |-
 
  |-
  | Public Key
+
  | Slot
  | Byte Array
+
  | Short
  | The server's public key, in bytes.
+
  | Equipment slot. 0: held, 1–4: armor slot (1: boots, 2: leggings, 3: chestplate, 4: helmet)
 
  |-
 
  |-
  | Verify Token Length
+
  | Item
  | VarInt
+
  | [[Slot Data|Slot]]
| Length of Verify Token. Always 4 for Notchian servers.
+
  | Item in slot format
|-
 
| Verify Token
 
| Byte Array
 
  | A sequence of random bytes generated by the server.
 
 
  |}
 
  |}
  
See [[Protocol Encryption]] for details.
+
==== Spawn Position ====
  
==== Login Success ====
+
Sent by the server after login to specify the coordinates of the spawn point (the point at which players spawn at, and which the compass points to). It can be sent at any time to update the point compasses point at.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 344: Line 332:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! colspan="2"| Field Name
+
  ! Field Name
  ! colspan="2"| Field Type
+
  ! Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="7"| 0x02
+
  |rowspan="1"| 0x05
  | rowspan="7"| Login
+
  |rowspan="1"| Play
  | rowspan="7"| Client
+
  |rowspan="1"| Client
  | colspan="2"| UUID
+
  | Location
  | colspan="2"| UUID
+
  | Position
  | colspan="2"|
+
  | Spawn location
  |-
+
  |}
| colspan="2"| Username
+
 
| colspan="2"| String (16)
+
==== Update Health ====
| colspan="2"|
 
|-
 
| colspan="2"| Number Of Properties
 
| colspan="2"| VarInt
 
| Number of elements in the following array.
 
|-
 
| rowspan="4"| Property
 
| Name
 
| rowspan="4"| Array
 
| String (32767)
 
| colspan="2"|
 
|-
 
| Value
 
| String (32767)
 
| colspan="1"|
 
|-
 
| Is Signed
 
| Boolean
 
| colspan="2"|
 
|-
 
| Signature
 
| Optional String (32767)
 
| Only if Is Signed is true.
 
|}
 
  
This packet switches the connection state to [[#Play|play]].
+
Sent by the server to update/set the health of the player it is sent to.
  
{{Warning2|The (notchian) server might take a bit to fully transition to the Play state, so it's recommended to wait for the [[#Login (play)|Login (play)]] packet from the server.
+
Food {{Minecraft Wiki|Food#Hunger vs. Saturation|saturation}} acts as a food “overcharge”. Food values will not decrease while the saturation is over zero. Players logging in automatically get a saturation of 5.0. Eating food increases the saturation as well as the food bar.
 
 
The notchian client doesn't send any packets until the [[#Login (play)|Login (play)]] packet.
 
}}
 
 
 
==== Set Compression ====
 
 
 
Enables compression. If compression is enabled, all following packets are encoded in the [[#With compression|compressed packet format]].  Negative values will disable compression, meaning the packet format should remain in the [[#Without compression|uncompressed packet format]]. However, this packet is entirely optional, and if not sent, compression will also not be enabled (the notchian server does not send the packet when compression is disabled).
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 401: Line 358:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x03
+
  |rowspan="3"| 0x06
  | Login
+
  |rowspan="3"| Play
  | Client
+
  |rowspan="3"| Client
  | Threshold
+
  | Health
 +
| Float
 +
| 0 or less = dead, 20 = full HP
 +
|-
 +
| Food
 
  | VarInt
 
  | VarInt
  | Maximum size of a packet before it is compressed.
+
  | 0–20
 +
|-
 +
| Food Saturation
 +
| Float
 +
| Seems to vary from 0.0 to 5.0 in integer increments
 
  |}
 
  |}
  
==== Login Plugin Request ====
+
==== Respawn ====
  
Used to implement a custom handshaking flow together with [[#Login Plugin Response|Login Plugin Response]].
+
To change the player's dimension (overworld/nether/end), send them a respawn packet with the appropriate dimension, followed by prechunks/chunks for the new dimension, and finally a position and look packet. You do not need to unload chunks, the client will do it automatically.
 
 
Unlike plugin messages in "play" mode, these messages follow a lock-step request/response scheme, where the client is expected to respond to a request indicating whether it understood. The notchian client always responds that it hasn't understood, and sends an empty payload.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 423: Line 386:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x04
+
  |rowspan="4"| 0x07
  | rowspan="3"| Login
+
  |rowspan="4"| Play
  | rowspan="3"| Client
+
  |rowspan="4"| Client
  | Message ID
+
  | Dimension
  | VarInt
+
  | Int
  | Generated by the server - should be unique to the connection.
+
  | -1: The Nether, 0: The Overworld, 1: The End
 +
|-
 +
| Difficulty
 +
| Unsigned Byte
 +
| 0: Peaceful, 1: Easy, 2: Normal, 3: Hard
 
  |-
 
  |-
  | Channel
+
  | Gamemode
  | Identifier
+
  | Unsigned Byte
  | Name of the [[plugin channel]] used to send the data.
+
  | 0: survival, 1: creative, 2: adventure. The hardcore flag is not included
 
  |-
 
  |-
  | Data
+
  | Level Type
  | Byte Array (1048576)
+
  | String
  | Any data, depending on the channel. The length of this array must be inferred from the packet length.
+
  | Same as [[#Join Game|Join Game]]
 
  |}
 
  |}
  
In Notchian client, the maximum data length is 1048576 bytes.
+
{{Warning|If the Dimension isn't valid then the client will crash}}
  
=== Serverbound ===
+
{{Warning|Avoid changing player's dimension to same dimension they were already in, weird bugs can occur i.e. such player will be unable to attack other players in new world (fixes after their death and respawn)}}
 +
 
 +
==== Player Position And Look ====
 +
 
 +
Updates the player's position on the server.
 +
This packet will also close the "Downloading Terrain" screen when joining/respawning.
  
==== Login Start  ====
+
If the distance between the last known position of the player on the server and the new position set by this packet is greater than 100 meters, the client will be kicked for “You moved too quickly :( (Hacking?)”.
  
{| class="wikitable"
+
Also if the fixed-point number of X or Z is set greater than <code>3.2E7D</code> the client will be kicked for “Illegal position”.
! Packet ID
+
 
! State
+
Yaw is measured in degrees, and does not follow classical trigonometry rules. The unit circle of yaw on the XZ-plane starts at (0, 1) and turns counterclockwise, with 90 at (-1, 0), 180 at (0, -1) and 270 at (1, 0). Additionally, yaw is not clamped to between 0 and 360 degrees; any number is valid, including negative numbers and numbers greater than 360.
! Bound To
+
 
! Field Name
+
Pitch is measured in degrees, where 0 is looking straight ahead, -90 is looking straight up, and 90 is looking straight down.
! Field Type
+
 
! Notes
+
The yaw and pitch of player (in degrees), standing at point (x0, y0, z0) and looking towards point (x, y, z) one can be calculated with:
  |-
+
 
  | rowspan="9"| 0x00
+
  dx = x-x0
  | rowspan="9"| Login
+
  dy = y-y0
  | rowspan="9"| Server
+
  dz = z-z0
  | Name
+
  r = sqrt( dx*dx + dy*dy + dz*dz )
| String (16)
+
  yaw = -atan2(dx,dz)/PI*180
  | Player's Username.
+
  if yaw < 0 then
|-
+
    yaw = 360 - yaw
  | Has Player UUID
+
  pitch = -arcsin(dy/r)/PI*180
| Boolean
+
 
| Whether or not the next field should be sent.
+
You can get a unit vector from a given yaw/pitch via:
|-
 
| Player UUID
 
| UUID
 
| The UUID of the player logging in. Optional. Only sent if Has Player UUID is true.
 
|}
 
  
==== Encryption Response ====
+
x = -cos(pitch) * sin(yaw)
 +
y = -sin(pitch)
 +
z = cos(pitch) * cos(yaw)
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 479: Line 448:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="8"| 0x01
+
  |rowspan="6"| 0x08
  | rowspan="8"| Login
+
  |rowspan="6"| Play
  | rowspan="8"| Server
+
  |rowspan="6"| Client
  | Shared Secret Length
+
  | X
  | VarInt
+
  | Double
  | Length of Shared Secret.
+
  | Absolute or relative position, depending on Flags
 
  |-
 
  |-
  | Shared Secret
+
  | Y
  | Byte Array
+
  | Double
  | Shared Secret value, encrypted with the server's public key.
+
  | Absolute or relative position, depending on Flags
 
  |-
 
  |-
  | Verify Token Length
+
  | Z
  | VarInt
+
  | Double
  | Length of Verify Token.
+
  | Absolute or relative position, depending on Flags
 +
|-
 +
| Yaw
 +
| Float
 +
| Absolute or relative rotation on the X Axis, in degrees
 +
|-
 +
| Pitch
 +
| Float
 +
| Absolute or relative rotation on the Y Axis, in degrees
 +
|-
 +
| Flags
 +
| Byte
 +
| Bit field, see below
 +
|}
 +
 
 +
About the Flags field:
 +
 
 +
<Dinnerbone> It's a bitfield, X/Y/Z/Y_ROT/X_ROT. If X is set, the x value is relative and not absolute.
 +
 
 +
{| class="wikitable"
 +
|-
 +
! Field
 +
! Bit
 +
|-
 +
| X
 +
| 0x01
 +
|-
 +
| Y
 +
| 0x02
 +
|-
 +
| Z
 +
| 0x04
 +
|-
 +
| Y_ROT
 +
| 0x08
 
  |-
 
  |-
  | Verify Token
+
  | X_ROT
  | Byte Array
+
  | 0x10
| Verify Token value, encrypted with the same public key as the shared secret.
 
 
  |}
 
  |}
  
See [[Protocol Encryption]] for details. See [[Mojang_API#Player_Certificates]] for an API to get the message signature.
+
==== Held Item Change ====
  
==== Login Plugin Response ====
+
Sent to change the player's slot selection.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 511: Line 513:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x02
+
  |rowspan="1"| 0x09
  | rowspan="3"| Login
+
  |rowspan="1"| Play
  | rowspan="3"| Server
+
  |rowspan="1"| Client
  | Message ID
+
  | Slot
  | VarInt
+
  | Byte
  | Should match ID from server.
+
  | The slot which the player has selected (0–8)
|-
 
| Successful
 
| Boolean
 
| <code>true</code> if the client understood the request, <code>false</code> otherwise. When <code>false</code>, no payload follows.
 
|-
 
| Data
 
| Optional Byte Array (1048576)
 
| Any data, depending on the channel. The length of this array must be inferred from the packet length.
 
 
  |}
 
  |}
  
In Notchian server, the maximum data length is 1048576 bytes.
+
==== Use Bed ====
  
== Play ==
+
This packet tells that a player goes to bed.
  
=== Clientbound ===
+
The client with the matching Entity ID will go into bed mode.
  
==== Spawn Entity ====
+
This Packet is sent to all nearby players including the one sent to bed.
 
 
Sent by the server when a vehicle or other non-living entity is created.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 545: Line 537:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="13"| 0x00
+
  |rowspan="2"| 0x0A
  | rowspan="13"| Play
+
  |rowspan="2"| Play
  | rowspan="13"| Client
+
  |rowspan="2"| Client
 
  | Entity ID
 
  | Entity ID
 
  | VarInt
 
  | VarInt
  | A unique integer ID mostly used in the protocol to identify the entity.
+
  | Sleeping player's EID
 
  |-
 
  |-
  | Entity UUID
+
  | Location
  | UUID
+
  | Position
  | A unique identifier that is mostly used in persistence and places where the uniqueness matters more.
+
  | Block location of the head part of the bed
 +
|}
 +
 
 +
==== Animation ====
 +
 
 +
Sent whenever an entity should change animation.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | Type
+
  |rowspan="2"| 0x0B
 +
|rowspan="2"| Play
 +
|rowspan="2"| Client
 +
| Entity ID
 
  | VarInt
 
  | VarInt
  | The type of the entity (see "type" field of the list of [[entity_metadata#Mobs|Mob types]]).
+
  | Player ID
 
  |-
 
  |-
  | X
+
  | Animation
  | Double
+
  | Unsigned Byte
  |
+
  | Animation ID (see below)
 +
|}
 +
 
 +
Animation can be one of the following values:
 +
 
 +
{| class="wikitable"
 +
! ID
 +
! Animation
 
  |-
 
  |-
  | Y
+
  | 0
| Double
+
  | Swing arm
  |
 
 
  |-
 
  |-
  | Z
+
  | 1
| Double
+
  | Take damage
  |
 
 
  |-
 
  |-
  | Pitch
+
  | 2
  | Angle
+
  | Leave bed
| To get the real pitch, you must divide this by (256.0F / 360.0F)
 
 
  |-
 
  |-
  | Yaw
+
  | 3
  | Angle
+
  | Eat food
| To get the real yaw, you must divide this by (256.0F / 360.0F)
 
 
  |-
 
  |-
  | Head Yaw
+
  | 4
  | Angle
+
  | Critical effect
| Only used by living entities, where the head of the entity may differ from the general body rotation.
 
 
  |-
 
  |-
  | Data
+
  | 5
  | VarInt
+
  | Magic critical effect
| Meaning dependent on the value of the Type field, see [[Object Data]] for details.
 
|-
 
| Velocity X
 
| Short
 
| rowspan="3"| Same units as [[#Set Entity Velocity|Set Entity Velocity]].
 
|-
 
| Velocity Y
 
| Short
 
|-
 
| Velocity Z
 
| Short
 
 
  |}
 
  |}
  
==== Spawn Experience Orb ====
+
==== Spawn Player ====
 +
 
 +
This packet is sent by the server when a player comes into visible range, ''not'' when a player joins.
 +
 
 +
This packet must be sent after the [[#Player List Item|Player List Item]] ([[#Play|Play]], 0x38, clientbound) packet that adds the player data for the client to use when spawning a player. If the tab list entry for the UUID included in this packet is not present when this packet arrives, the entity will not be spawned. The tab includes skin/cape data.
 +
 
 +
Servers can, however, safely spawn player entities for players not in visible range. The client appears to handle it correctly.
 +
 
 +
When in online-mode the UUIDs must be valid and have valid skin blobs, in offline-mode UUID v3 is used.
 +
 
 +
For NPCs UUID v2 should be used. Note:
 +
 
 +
<+Grum> i will never confirm this as a feature you know that :)
  
Spawns one or more experience orbs.
+
In an example UUID, <code>xxxxxxxx-xxxx-Yxxx-xxxx-xxxxxxxxxxxx</code>, the UUID version is specified by <code>Y</code>. So, for UUID v3, <code>Y</code> will always be <code>3</code>, and for UUID v2, <code>Y</code> will always be <code>2</code>.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 611: Line 622:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="5"| 0x01
+
  |rowspan="9"| 0x0C
  | rowspan="5"| Play
+
  |rowspan="9"| Play
  | rowspan="5"| Client
+
  |rowspan="9"| Client
 
  | Entity ID
 
  | Entity ID
 
  | VarInt
 
  | VarInt
  |
+
  | Player's EID
 
  |-
 
  |-
  | X
+
| Player UUID
  | Double
+
| UUID
  |
+
|
 +
|-
 +
  | X
 +
  | Int
 +
  | Player X as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
 
  | Y
 
  | Y
  | Double
+
  | Int
  |
+
  | Player Y as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
 
  | Z
 
  | Z
  | Double
+
  | Int
  |
+
| Player Z as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 +
|-
 +
| Yaw
 +
| Angle
 +
|
 +
|-
 +
| Pitch
 +
| Angle
 +
  |  
 
  |-
 
  |-
  | Count
+
  | Current Item
 
  | Short
 
  | Short
  | The amount of experience this orb will reward once collected.
+
  | The item the player is currently holding. Note that this should be 0 for “no item”, unlike -1 used in other packets.
 +
|-
 +
| Metadata
 +
| [[Entities#Entity Metadata Format|Metadata]]
 +
|
 
  |}
 
  |}
  
==== Spawn Player ====
+
{{Warning|A negative Current Item crashes clients}}
  
This packet is sent by the server when a player comes into visible range, ''not'' when a player joins.
+
{{Warning|The client will crash if no Metadata is sent}}
  
This packet must be sent after the [[#Player_Info_Update|Player Info Update]] packet that adds the player data for the client to use when spawning a player. If the Player Info for the player spawned by this packet is not present when this packet arrives, Notchian clients will not spawn the player entity. The Player Info packet includes skin/cape data.
+
==== Collect Item ====
  
Servers can, however, safely spawn player entities for players not in visible range. The client appears to handle it correctly.
+
Sent by the server when someone picks up an item lying on the ground — its sole purpose appears to be the animation of the item flying towards you. It doesn't destroy the entity in the client memory, and it doesn't add it to your inventory. The server only checks for items to be picked up after each [[#Player Position|Player Position]] (and [[#Player Position And Look|Player Position And Look]]) packet sent by the client.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 651: Line 678:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="7"| 0x02
+
  |rowspan="2"| 0x0D
  | rowspan="7"| Play
+
  |rowspan="2"| Play
  | rowspan="7"| Client
+
  |rowspan="2"| Client
  | Entity ID
+
  | Collected Entity ID
 +
| VarInt
 +
|
 +
|-
 +
| Collector Entity ID
 
  | VarInt
 
  | VarInt
  | A unique integer ID mostly used in the protocol to identify the player.
+
  |  
 +
|}
 +
 
 +
==== Spawn Object ====
 +
 
 +
Sent by the server when a vehicle or other object is created.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | Player UUID
+
  |rowspan="11"| 0x0E
  | UUID
+
|rowspan="11"| Play
  | See below for notes on {{Minecraft Wiki|Server.properties#online-mode|offline mode}} and NPCs.
+
|rowspan="11"| Client
 +
| Entity ID
 +
  | VarInt
 +
  | EID of the object
 +
|-
 +
| Type
 +
| Byte
 +
| The type of object (see [[Entities#Objects]])
 
  |-
 
  |-
 
  | X
 
  | X
  | Double
+
  | Int
  |
+
  | X position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
 
  | Y
 
  | Y
  | Double
+
  | Int
  |
+
  | Y position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
 
  | Z
 
  | Z
  | Double
+
  | Int
  |
+
| Z position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 +
|-
 +
| Pitch
 +
| Angle
 +
  |  
 
  |-
 
  |-
 
  | Yaw
 
  | Yaw
 
  | Angle
 
  | Angle
  |
+
  |  
 +
|-
 +
| Data
 +
| Int
 +
| Meaning dependent on the value of the Type field, see [[Object Data]] for details.
 +
|-
 +
| Velocity X
 +
| Optional Short
 +
| Only sent if the Data field is nonzero. Same units as [[#Entity Velocity|Entity Velocity]].
 +
|-
 +
| Velocity Y
 +
| Optional Short
 +
| Only sent if the Data field is nonzero. Same units as [[#Entity Velocity|Entity Velocity]].
 
  |-
 
  |-
  | Pitch
+
  | Velocity Z
  | Angle
+
  | Optional Short
  |
+
  | Only sent if the Data field is nonzero. Same units as [[#Entity Velocity|Entity Velocity]].
 
  |}
 
  |}
  
When in {{Minecraft Wiki|Server.properties#online-mode|online mode}}, the UUIDs must be valid and have valid skin blobs.
+
==== Spawn Mob ====
In offline mode, [[Wikipedia:Universally unique identifier#Versions 3 and 5 (namespace name-based)|UUID v3]] is used with the String <code>OfflinePlayer:&lt;player name&gt;</code>, encoded in UTF-8 (and case-sensitive).  The Notchian server uses <code>UUID.nameUUIDFromBytes</code>, implemented by OpenJDK [https://github.com/AdoptOpenJDK/openjdk-jdk8u/blob/9a91972c76ddda5c1ce28b50ca38cbd8a30b7a72/jdk/src/share/classes/java/util/UUID.java#L153-L175 here].
 
  
For NPCs UUID v2 should be used. Note:
+
Sent by the server when a Mob Entity is Spawned
 
 
<+Grum> i will never confirm this as a feature you know that :)
 
 
 
In an example UUID, <code>xxxxxxxx-xxxx-Yxxx-xxxx-xxxxxxxxxxxx</code>, the UUID version is specified by <code>Y</code>. So, for UUID v3, <code>Y</code> will always be <code>3</code>, and for UUID v2, <code>Y</code> will always be <code>2</code>.
 
 
 
==== Entity Animation ====
 
 
 
Sent whenever an entity should change animation.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 704: Line 762:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x03
+
  |rowspan="12"| 0x0F
  | rowspan="2"| Play
+
  |rowspan="12"| Play
  | rowspan="2"| Client
+
  |rowspan="12"| Client
 
  | Entity ID
 
  | Entity ID
 
  | VarInt
 
  | VarInt
  | Player ID.
+
  |  
 
  |-
 
  |-
  | Animation
+
  | Type
 
  | Unsigned Byte
 
  | Unsigned Byte
  | Animation ID (see below).
+
  | The type of mob. See [[Entities#Mobs|Mobs]]
  |}
+
|-
 
+
| X
Animation can be one of the following values:
+
| Int
 
+
| X position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
{| class="wikitable"
+
|-
  ! ID
+
| Y
  ! Animation
+
| Int
 +
  | Y position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 +
|-
 +
| Z
 +
| Int
 +
| Z position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 +
|-
 +
| Yaw
 +
  | Angle
 +
  |
 
  |-
 
  |-
  | 0
+
  | Pitch
  | Swing main arm
+
| Angle
 +
  |  
 
  |-
 
  |-
  | 1
+
  | Head Pitch
  | Take damage
+
| Angle
 +
  |  
 
  |-
 
  |-
  | 2
+
  | Velocity X
  | Leave bed
+
  | Short
 +
| Same units as [[#Entity Velocity|Entity Velocity]]
 
  |-
 
  |-
  | 3
+
  | Velocity Y
  | Swing offhand
+
  | Short
 +
| Same units as [[#Entity Velocity|Entity Velocity]]
 
  |-
 
  |-
  | 4
+
  | Velocity Z
  | Critical effect
+
  | Short
 +
| Same units as [[#Entity Velocity|Entity Velocity]]
 
  |-
 
  |-
  | 5
+
  | Metadata
  | Magic critical effect
+
| [[Entities#Entity Metadata Format|Metadata]]
 +
  |  
 
  |}
 
  |}
  
==== Award Statistics ====
+
==== Spawn Painting ====
  
Sent as a response to [[#Client Command|Client Command]] (id 1). Will only send the changed values if previously requested.
+
This packet shows location, name, and type of painting.
 +
 
 +
Calculating the center of an image: given a (width x height) grid of cells, with (0, 0) being the top left corner, the center is (max(0, width / 2 - 1), height / 2). E.g.
 +
 
 +
2x1 (1, 0)
 +
4x4 (1, 2)
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 749: Line 827:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! colspan="2"| Field Name
+
  ! Field Name
  ! colspan="2"| Field Type
+
  ! Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="4"| 0x04
+
  |rowspan="4"| 0x10
  | rowspan="4"| Play
+
  |rowspan="4"| Play
  | rowspan="4"| Client
+
  |rowspan="4"| Client
  | colspan="2"| Count
+
  | Entity ID
  | colspan="2"| VarInt
+
  | VarInt
  | Number of elements in the following array.
+
  |  
 
  |-
 
  |-
  | rowspan="3"| Statistic
+
  | Title
| Category ID
+
  | String
| rowspan="3"| Array
+
  | Name of the painting. Max length 13
  | VarInt
 
  | See below.
 
 
  |-
 
  |-
  | Statistic ID
+
  | Location
  | VarInt
+
  | Position
  | See below.
+
  | Center coordinates
 
  |-
 
  |-
  | Value
+
  | Direction
  | VarInt
+
  | Unsigned Byte
  | The amount to set it to.
+
  | Direction the painting faces. 0: north (-z), 1: west (-x), 2: south (+z), 3: east (+x)
 
  |}
 
  |}
  
Categories (these are namespaced, but with <code>:</code> replaced with <code>.</code>):
+
==== Spawn Experience Orb ====
 +
 
 +
Spawns one or more experience orbs.
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! Name
+
  ! Packet ID
  ! ID
+
! State
  ! Registry
+
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | <code>minecraft.mined</code>
+
  |rowspan="5"| 0x11
  | 0
+
|rowspan="5"| Play
  | Blocks
+
|rowspan="5"| Client
 +
| Entity ID
 +
  | VarInt
 +
  | Entity's ID
 
  |-
 
  |-
  | <code>minecraft.crafted</code>
+
  | X
  | 1
+
  | Int
  | Items
+
  | X position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.used</code>
+
  | Y
  | 2
+
  | Int
  | Items
+
  | Y position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.broken</code>
+
  | Z
  | 3
+
  | Int
  | Items
+
  | Z position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.picked_up</code>
+
  | Count
  | 4
+
| Short
  | Items
+
| The amount of experience this orb will reward once collected
  |-
+
|}
  | <code>minecraft.dropped</code>
+
 
  | 5
+
==== Entity Velocity ====
  | Items
+
 
 +
Velocity is believed to be in units of 1/8000 of a block per server tick (50ms); for example, -1343 would move (-1343 / 8000) = −0.167875 blocks per tick (or −3,3575 blocks per second).
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 +
|-
 +
  |rowspan="4"| 0x12
 +
  |rowspan="4"| Play
 +
  |rowspan="4"| Client
 +
  | Entity ID
 +
  | VarInt
 +
  |  
 
  |-
 
  |-
  | <code>minecraft.killed</code>
+
  | Velocity X
  | 6
+
  | Short
  | Entities
+
  | Velocity on the X axis
 
  |-
 
  |-
  | <code>minecraft.killed_by</code>
+
  | Velocity Y
  | 7
+
  | Short
  | Entities
+
  | Velocity on the Y axis
 
  |-
 
  |-
  | <code>minecraft.custom</code>
+
  | Velocity Z
  | 8
+
  | Short
  | Custom
+
  | Velocity on the Z axis
 
  |}
 
  |}
  
Blocks, Items, and Entities use block (not block state), item, and entity ids.
+
==== Destroy Entities ====
  
Custom has the following (unit only matters for clients):
+
Sent by the server when a list of entities is to be destroyed on the client.
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! Name
+
  ! Packet ID
  ! ID
+
! State
  ! Unit
+
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | <code>minecraft.leave_game</code>
+
  |rowspan="2"| 0x13
  | 0
+
|rowspan="2"| Play
  | None
+
|rowspan="2"| Client
 +
| Count
 +
  | VarInt
 +
  | Number of elements in the following array
 
  |-
 
  |-
  | <code>minecraft.play_one_minute</code>
+
  | Entity IDs
  | 1
+
  | Array of VarInt
  | Time
+
  | The list of entities of destroy
  |-
+
  |}
| <code>minecraft.time_since_death</code>
+
 
  | 2
+
==== Entity ====
  | Time
+
 
 +
This packet may be used to initialize an entity.
 +
 
 +
For player entities, either this packet or any move/look packet is sent every game tick. So the meaning of this packet is basically that the entity did not move/look since the last such packet.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | <code>minecraft.time_since_rest</code>
+
  |rowspan="1"| 0x14
  | 3
+
|rowspan="1"| Play
  | Time
+
|rowspan="1"| Client
 +
| Entity ID
 +
| VarInt
 +
  |  
 +
  |}
 +
 
 +
==== Entity Relative Move ====
 +
 
 +
This packet is sent by the server when an entity moves less then 4 blocks; if an entity moves more than 4 blocks [[#Entity Teleport|Entity Teleport]] should be sent instead.
 +
 
 +
This packet allows at most four blocks movement in any direction, because byte range is from -128 to 127.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | <code>minecraft.sneak_time</code>
+
  |rowspan="5"| 0x15
  | 4
+
|rowspan="5"| Play
  | Time
+
|rowspan="5"| Client
 +
| Entity ID
 +
  | VarInt
 +
  |  
 
  |-
 
  |-
  | <code>minecraft.walk_one_cm</code>
+
  | Delta X
  | 5
+
  | Byte
  | Distance
+
  | Change in X position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.crouch_one_cm</code>
+
  | Delta Y
  | 6
+
  | Byte
  | Distance
+
  | Change in Y position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.sprint_one_cm</code>
+
  | Delta Z
  | 7
+
  | Byte
  | Distance
+
  | Change in Z position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.walk_on_water_one_cm</code>
+
  | On Ground
  | 8
+
| Boolean
  | Distance
+
  |  
 +
  |}
 +
 
 +
==== Entity Look ====
 +
 
 +
This packet is sent by the server when an entity rotates.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | <code>minecraft.fall_one_cm</code>
+
  |rowspan="4"| 0x16
  | 9
+
|rowspan="4"| Play
  | Distance
+
|rowspan="4"| Client
 +
| Entity ID
 +
  | VarInt
 +
  |  
 
  |-
 
  |-
  | <code>minecraft.climb_one_cm</code>
+
  | Yaw
  | 10
+
  | Angle
  | Distance
+
  | New angle, not a delta
 
  |-
 
  |-
  | <code>minecraft.fly_one_cm</code>
+
  | Pitch
  | 11
+
  | Angle
  | Distance
+
  | New angle, not a delta
 
  |-
 
  |-
  | <code>minecraft.walk_under_water_one_cm</code>
+
  | On Ground
  | 12
+
| Boolean
  | Distance
+
|
 +
|}
 +
 
 +
==== Entity Look And Relative Move ====
 +
 
 +
This packet is sent by the server when an entity rotates and moves. Since a byte range is limited from -128 to 127, and movement is offset of fixed-point numbers, this packet allows at most four blocks movement in any direction. (-128/32 == -4)
 +
 
 +
{| class="wikitable"
 +
  ! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | <code>minecraft.minecart_one_cm</code>
+
  |rowspan="7"| 0x17
  | 13
+
|rowspan="7"| Play
  | Distance
+
|rowspan="7"| Client
 +
| Entity ID
 +
  | VarInt
 +
  |  
 
  |-
 
  |-
  | <code>minecraft.boat_one_cm</code>
+
  | Delta X
  | 14
+
  | Byte
  | Distance
+
  | Change in X position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.pig_one_cm</code>
+
  | Delta Y
  | 15
+
  | Byte
  | Distance
+
  | Change in Y position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.horse_one_cm</code>
+
  | Delta Z
  | 16
+
  | Byte
  | Distance
+
  | Change in Z position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.aviate_one_cm</code>
+
  | Yaw
  | 17
+
  | Angle
  | Distance
+
  | New angle, not a delta
 
  |-
 
  |-
  | <code>minecraft.swim_one_cm</code>
+
  | Pitch
  | 18
+
  | Angle
  | Distance
+
  | New angle, not a delta
 
  |-
 
  |-
  | <code>minecraft.strider_one_cm</code>
+
  | On Ground
  | 19
+
| Boolean
  | Distance
+
  |  
 +
  |}
 +
 
 +
==== Entity Teleport ====
 +
 
 +
This packet is sent by the server when an entity moves more than 4 blocks.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | <code>minecraft.jump</code>
+
  |rowspan="7"| 0x18
  | 20
+
|rowspan="7"| Play
  | None
+
|rowspan="7"| Client
 +
| Entity ID
 +
  | VarInt
 +
  |  
 
  |-
 
  |-
  | <code>minecraft.drop</code>
+
  | X
  | 21
+
  | Int
  | None
+
  | X position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.damage_dealt</code>
+
  | Y
  | 22
+
  | Int
  | Damage
+
  | Y position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.damage_dealt_absorbed</code>
+
  | Z
  | 23
+
  | Int
  | Damage
+
  | Z position as a [[Data Types#Fixed-point numbers|Fixed-Point number]]
 
  |-
 
  |-
  | <code>minecraft.damage_dealt_resisted</code>
+
  | Yaw
  | 24
+
  | Angle
  | Damage
+
  | New angle, not a delta
 
  |-
 
  |-
  | <code>minecraft.damage_taken</code>
+
  | Pitch
  | 25
+
  | Angle
  | Damage
+
  | New angle, not a delta
 
  |-
 
  |-
  | <code>minecraft.damage_blocked_by_shield</code>
+
  | On Ground
  | 26
+
| Boolean
  | Damage
+
  |  
 +
  |}
 +
 
 +
==== Entity Head Look ====
 +
 
 +
Changes the direction an entity's head is facing.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | <code>minecraft.damage_absorbed</code>
+
  |rowspan="2"| 0x19
  | 27
+
|rowspan="2"| Play
  | Damage
+
|rowspan="2"| Client
 +
| Entity ID
 +
  | VarInt
 +
  |  
 
  |-
 
  |-
  | <code>minecraft.damage_resisted</code>
+
  | Head Yaw
  | 28
+
  | Angle
  | Damage
+
  | New angle, not a delta
 +
|}
 +
 
 +
==== Entity Status ====
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | <code>minecraft.deaths</code>
+
  |rowspan="2"| 0x1A
  | 29
+
|rowspan="2"| Play
  | None
+
|rowspan="2"| Client
 +
| Entity ID
 +
  | Int
 +
  |  
 
  |-
 
  |-
  | <code>minecraft.mob_kills</code>
+
  | Entity Status
  | 30
+
  | Byte
  | None
+
  | See below
 +
|}
 +
 
 +
{| class="wikitable"
 
  |-
 
  |-
  | <code>minecraft.animals_bred</code>
+
  ! Entity Status
  | 31
+
  ! Meaning
| None
 
 
  |-
 
  |-
  | <code>minecraft.player_kills</code>
+
  | 1
  | 32
+
  | Sent when resetting a mob spawn minecart's timer / Rabbit jump animation
| None
 
 
  |-
 
  |-
  | <code>minecraft.fish_caught</code>
+
  | 2
  | 33
+
  | Living Entity hurt
| None
 
 
  |-
 
  |-
  | <code>minecraft.talked_to_villager</code>
+
  | 3
  | 34
+
  | Living Entity dead
| None
 
 
  |-
 
  |-
  | <code>minecraft.traded_with_villager</code>
+
  | 4
  | 35
+
  | Iron Golem throwing up arms
| None
 
 
  |-
 
  |-
  | <code>minecraft.eat_cake_slice</code>
+
  | 6
  | 36
+
  | Wolf/Ocelot/Horse taming — Spawn “heart” particles
| None
 
 
  |-
 
  |-
  | <code>minecraft.fill_cauldron</code>
+
  | 7
  | 37
+
  | Wolf/Ocelot/Horse tamed — Spawn “smoke” particles
| None
 
 
  |-
 
  |-
  | <code>minecraft.use_cauldron</code>
+
  | 8
  | 38
+
  | Wolf shaking water — Trigger the shaking animation
| None
 
 
  |-
 
  |-
  | <code>minecraft.clean_armor</code>
+
  | 9
  | 39
+
  | (of self) Eating accepted by server
| None
 
 
  |-
 
  |-
  | <code>minecraft.clean_banner</code>
+
  | 10
  | 40
+
  | Sheep eating grass
| None
 
 
  |-
 
  |-
  | <code>minecraft.clean_shulker_box</code>
+
  | 10
  | 41
+
  | Play TNT ignite sound
| None
 
 
  |-
 
  |-
  | <code>minecraft.interact_with_brewingstand</code>
+
  | 11
  | 42
+
  | Iron Golem handing over a rose
| None
 
 
  |-
 
  |-
  | <code>minecraft.interact_with_beacon</code>
+
  | 12
  | 43
+
  | Villager mating — Spawn “heart” particles
| None
 
 
  |-
 
  |-
  | <code>minecraft.inspect_dropper</code>
+
  | 13
  | 44
+
  | Spawn particles indicating that a villager is angry and seeking revenge
| None
 
 
  |-
 
  |-
  | <code>minecraft.inspect_hopper</code>
+
  | 14
  | 45
+
  | Spawn happy particles near a villager
| None
 
 
  |-
 
  |-
  | <code>minecraft.inspect_dispenser</code>
+
  | 15
  | 46
+
  | Witch animation — Spawn “magic” particles
| None
 
 
  |-
 
  |-
  | <code>minecraft.play_noteblock</code>
+
  | 16
  | 47
+
  | Play zombie converting into a villager sound
| None
 
 
  |-
 
  |-
  | <code>minecraft.tune_noteblock</code>
+
  | 17
  | 48
+
  | Firework exploding
| None
 
 
  |-
 
  |-
  | <code>minecraft.pot_flower</code>
+
  | 18
  | 49
+
  | Animal in love (ready to mate) — Spawn “heart” particles
| None
 
 
  |-
 
  |-
  | <code>minecraft.trigger_trapped_chest</code>
+
  | 19
  | 50
+
  | Reset squid rotation
| None
 
 
  |-
 
  |-
  | <code>minecraft.open_enderchest</code>
+
  | 20
  | 51
+
  | Spawn explosion particle — works for some living entities
| None
 
 
  |-
 
  |-
  | <code>minecraft.enchant_item</code>
+
  | 21
  | 52
+
  | Play guardian sound — works for only for guardians
| None
 
 
  |-
 
  |-
  | <code>minecraft.play_record</code>
+
  | 22
  | 53
+
  | Enables reduced debug for players
| None
 
 
  |-
 
  |-
  | <code>minecraft.interact_with_furnace</code>
+
  | 23
  | 54
+
  | Disables reduced debug for players
| None
 
|-
 
| <code>minecraft.interact_with_crafting_table</code>
 
| 55
 
| None
 
|-
 
| <code>minecraft.open_chest</code>
 
| 56
 
| None
 
|-
 
| <code>minecraft.sleep_in_bed</code>
 
| 57
 
| None
 
|-
 
| <code>minecraft.open_shulker_box</code>
 
| 58
 
| None
 
|-
 
| <code>minecraft.open_barrel</code>
 
| 59
 
| None
 
|-
 
| <code>minecraft.interact_with_blast_furnace</code>
 
| 60
 
| None
 
|-
 
| <code>minecraft.interact_with_smoker</code>
 
| 61
 
| None
 
|-
 
| <code>minecraft.interact_with_lectern</code>
 
| 62
 
| None
 
|-
 
| <code>minecraft.interact_with_campfire</code>
 
| 63
 
| None
 
|-
 
| <code>minecraft.interact_with_cartography_table</code>
 
| 64
 
| None
 
|-
 
| <code>minecraft.interact_with_loom</code>
 
| 65
 
| None
 
|-
 
| <code>minecraft.interact_with_stonecutter</code>
 
| 66
 
| None
 
|-
 
| <code>minecraft.bell_ring</code>
 
| 67
 
| None
 
|-
 
| <code>minecraft.raid_trigger</code>
 
| 68
 
| None
 
|-
 
| <code>minecraft.raid_win</code>
 
| 69
 
| None
 
|-
 
| <code>minecraft.interact_with_anvil</code>
 
| 70
 
| None
 
|-
 
| <code>minecraft.interact_with_grindstone</code>
 
| 71
 
| None
 
|-
 
| <code>minecraft.target_hit</code>
 
| 72
 
| None
 
|-
 
| <code>minecraft.interact_with_smithing_table</code>
 
| 73
 
| None
 
 
  |}
 
  |}
  
Units:
+
==== Attach Entity ====
 
 
* None: just a normal number (formatted with 0 decimal places)
 
* Damage: value is 10 times the normal amount
 
* Distance: a distance in centimeters (hundredths of blocks)
 
* Time: a time span in ticks
 
 
 
==== Acknowledge Block Change ====
 
  
Acknowledges a user-initiated block change. After receiving this packet, the client will display the block state sent by the server instead of the one predicted by the client.
+
This packet is sent when a player has been attached to an entity (e.g. Minecart).
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,144: Line 1,256:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="1"| 0x05
+
  |rowspan="3"| 0x1B
  | rowspan="1"| Play
+
  |rowspan="3"| Play
  | rowspan="1"| Client
+
  |rowspan="3"| Client
  | Sequence ID
+
  | Entity ID
  | VarInt
+
| Int
  | Represents the sequence to acknowledge, this is used for properly syncing block changes to the client after interactions.
+
| Attached entity's EID
 +
|-
 +
| Vehicle ID
 +
  | Int
 +
  | Vechicle's Entity ID. Set to -1 to detach
 +
|-
 +
| Leash
 +
| Boolean
 +
| If true leashes the entity to the vehicle
 
  |}
 
  |}
  
==== Set Block Destroy Stage ====
+
==== Entity Metadata ====
  
0–9 are the displayable destroy stages and each other number means that there is no animation on this coordinate.
+
Updates one or more [[Entities#Entity Metadata Format|metadata]] properties for an existing entity. Any properties not included in the Metadata field are left unchanged.
 
 
Block break animations can still be applied on air; the animation will remain visible although there is no block being broken.  However, if this is applied to a transparent block, odd graphical effects may happen, including water losing its transparency.  (An effect similar to this can be seen in normal gameplay when breaking ice blocks)
 
 
 
If you need to display several break animations at the same time you have to give each of them a unique Entity ID. The entity ID does not need to correspond to an actual entity on the client. It is valid to use a randomly generated number.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,168: Line 1,284:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x06
+
  |rowspan="2"| 0x1C
  | rowspan="3"| Play
+
  |rowspan="2"| Play
  | rowspan="3"| Client
+
  |rowspan="2"| Client
 
  | Entity ID
 
  | Entity ID
 
  | VarInt
 
  | VarInt
  | The ID of the entity breaking the block.
+
  |  
 
  |-
 
  |-
  | Location
+
  | Metadata
  | Position
+
  | [[Entities#Entity Metadata Format|Metadata]]
| Block Position.
+
  |  
|-
+
  |}
| Destroy Stage
 
| Byte
 
  | 0–9 to set it, any other value to remove it.
 
  |}
 
  
==== Block Entity Data ====
+
==== Entity Effect ====
 
 
Sets the block entity associated with the block at the given location.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,196: Line 1,306:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x07
+
  |rowspan="5"| 0x1D
  | rowspan="3"| Play
+
  |rowspan="5"| Play
  | rowspan="3"| Client
+
  |rowspan="5"| Client
  | Location
+
  | Entity ID
  | Position
+
  | VarInt
  |
+
  |  
 +
|-
 +
| Effect ID
 +
| Byte
 +
| See {{Minecraft Wiki|Status effect#List of effects|this table}}
 +
|-
 +
| Amplifier
 +
| Byte
 +
| Notchian client displays effect level as Amplifier + 1
 
  |-
 
  |-
  | Type
+
  | Duration
 
  | VarInt
 
  | VarInt
  | The type of the block entity
+
  | Seconds
 
  |-
 
  |-
  | NBT Data
+
  | Hide Particles
  | [[NBT|NBT Tag]]
+
  | Boolean
  | Data to set.  May be a TAG_END (0), in which case the block entity at the given location is removed (though this is not required since the client will remove the block entity automatically on chunk unload or block removal).
+
  |  
 
  |}
 
  |}
  
==== Block Action ====
+
==== Remove Entity Effect ====
 
 
This packet is used for a number of actions and animations performed by blocks, usually non-persistent.  The client ignores the provided block type and instead uses the block state in their world.
 
 
 
See [[Block Actions]] for a list of values.
 
 
 
{{Warning2|This packet uses a block ID, not a block state.}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,228: Line 1,340:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="4"| 0x08
+
  |rowspan="2"| 0x1E
  | rowspan="4"| Play
+
  |rowspan="2"| Play
  | rowspan="4"| Client
+
  |rowspan="2"| Client
  | Location
+
  | Entity ID
  | Position
+
  | VarInt
  | Block coordinates.
+
  |  
 
  |-
 
  |-
  | Action ID (Byte 1)
+
  | Effect ID
  | Unsigned Byte
+
  | Byte
  | Varies depending on block — see [[Block Actions]].
+
  | See {{Minecraft Wiki|Status effect#List of effects|this table}}
|-
 
| Action Parameter (Byte 2)
 
| Unsigned Byte
 
| Varies depending on block — see [[Block Actions]].
 
|-
 
| Block Type
 
| VarInt
 
| The block type ID for the block.  This must match the block at the given coordinates.
 
 
  |}
 
  |}
  
==== Block Update ====
+
==== Set Experience ====
  
Fired whenever a block is changed within the render distance.
+
Sent by the server when the client should change experience levels.
 
 
{{Warning2|Changing a block in a chunk that is not loaded is not a stable action.  The Notchian client currently uses a ''shared'' empty chunk which is modified for all block changes in unloaded chunks; while in 1.9 this chunk never renders in older versions the changed block will appear in all copies of the empty chunk.  Servers should avoid sending block changes in unloaded chunks and clients should ignore such packets.}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,262: Line 1,364:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x09
+
  |rowspan="3"| 0x1F
  | rowspan="2"| Play
+
  |rowspan="3"| Play
  | rowspan="2"| Client
+
  |rowspan="3"| Client
  | Location
+
  | Experience bar
  | Position
+
  | Float
  | Block Coordinates.
+
| Between 0 and 1
 +
|-
 +
| Level
 +
| VarInt
 +
  |  
 
  |-
 
  |-
  | Block ID
+
  | Total Experience
 
  | VarInt
 
  | VarInt
  | The new block state ID for the block as given in the {{Minecraft Wiki|Data values#Block IDs|global palette}}. See that section for more information.
+
  | See {{Minecraft Wiki|Experience#Leveling up}} on the Minecraft Wiki for Total Experience to Level conversion
 
  |}
 
  |}
  
==== Boss Bar ====
+
==== Entity Properties ====
 +
 
 +
Sets {{Minecraft Wiki|Attribute|attributes}} on the given entity.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,280: Line 1,388:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! colspan="2"| Field Name
+
  !colspan="2"| Field Name
  ! Field Type
+
  !colspan="2"| Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="14"| 0x0A
+
  |rowspan="6"| 0x20
  | rowspan="14"| Play
+
  |rowspan="6"| Play
  | rowspan="14"| Client
+
  |rowspan="6"| Client
  | colspan="2"| UUID
+
  |colspan="2"| Entity ID
  | UUID
+
  |colspan="2"| VarInt
  | Unique ID for this bar.
+
  |  
 
  |-
 
  |-
  | colspan="2"| Action
+
  |colspan="2"| Number Of Properties
  | VarInt Enum
+
  |colspan="2"| Int
  | Determines the layout of the remaining packet.
+
  | Number of elements in the following array
 
  |-
 
  |-
  ! Action
+
  |rowspan="4"| Property
  ! Field Name
+
  | Key
  !
+
  |rowspan="4"| Array
  !
+
  | String
 +
| See below
 
  |-
 
  |-
  | rowspan="5"| 0: add
+
  | Value
| Title
+
  | Double
  | [[Chat]]
+
  | See below
  |
 
 
  |-
 
  |-
  | Health
+
  | Number Of Modifiers
  | Float
+
  | VarInt
  | From 0 to 1. Values greater than 1 do not crash a Notchian client, and start [https://i.johni0702.de/nA.png rendering part of a second health bar] at around 1.5.
+
  | Number of elements in the following array
 
  |-
 
  |-
  | Color
+
  | Modifiers
  | VarInt Enum
+
  | Array of Modifier Data
  | Color ID (see below).
+
  | See {{Minecraft Wiki|Attribute#Modifiers}}
 +
|}
 +
 
 +
Known Key values:
 +
 
 +
{| class="wikitable"
 
  |-
 
  |-
  | Division
+
  ! Key
  | VarInt Enum
+
  ! Default
  | Type of division (see below).
+
  ! Min
 +
! Max
 +
! Label
 
  |-
 
  |-
  | Flags
+
  | generic.maxHealth
  | Unsigned Byte
+
  | 20.0
  | Bit mask. 0x1: should darken sky, 0x2: is dragon bar (used to play end music), 0x04: create fog (previously was also controlled by 0x02).
+
  | 0.0
 +
| Double.MaxValue
 +
| Max Health
 
  |-
 
  |-
  | 1: remove
+
  | generic.followRange
  | ''no fields''
+
  | 32.0
  | ''no fields''
+
  | 0.0
  | Removes this boss bar.
+
  | 2048.0
 +
| Follow Range
 
  |-
 
  |-
  | 2: update health
+
  | generic.knockbackResistance
  | Health
+
  | 0.0
  | Float
+
  | 0.0
  | ''as above''
+
  | 1.0
 +
| Knockback Resistance
 
  |-
 
  |-
  | 3: update title
+
  | generic.movementSpeed
  | Title
+
  | 0.699999988079071
  | [[Chat]]
+
  | 0.0
  |
+
  | Double.MaxValue
 +
| Movement Speed
 
  |-
 
  |-
  | rowspan="2"| 4: update style
+
  | generic.attackDamage
  | Color
+
| 2.0
  | VarInt Enum
+
  | 0.0
  | Color ID (see below).
+
  | Double.MaxValue
 +
  |  
 
  |-
 
  |-
  | Dividers
+
  | horse.jumpStrength
  | VarInt Enum
+
  | 0.7
  | ''as above''
+
  | 0.0
 +
| 2.0
 +
| Jump Strength
 
  |-
 
  |-
  | 5: update flags
+
  | zombie.spawnReinforcements
  | Flags
+
  | 0.0
  | Unsigned Byte
+
  | 0.0
  | ''as above''
+
  | 1.0
 +
| Spawn Reinforcements Chance
 
  |}
 
  |}
 +
 +
''Modifier Data'' structure:
  
 
{| class="wikitable"
 
{| class="wikitable"
! ID
 
! Color
 
 
  |-
 
  |-
  | 0
+
  ! Field Name
  | Pink
+
  ! Field Type
 +
! Notes
 
  |-
 
  |-
  | 1
+
  | UUID
  | Blue
+
| UUID
 +
  |  
 
  |-
 
  |-
  | 2
+
  | Amount
  | Red
+
  | Double
 +
| May be positive or negative
 
  |-
 
  |-
  | 3
+
  | Operation
  | Green
+
  | Byte
  |-
+
  | See below
| 4
 
| Yellow
 
|-
 
| 5
 
| Purple
 
|-
 
| 6
 
| White
 
 
  |}
 
  |}
  
{| class="wikitable"
+
The operation controls how the base value of the modifier is changed.
! ID
+
 
! Type of division
+
*0: Add/subtract amount
|-
+
*1: Add/subtract amount percent of the current value
| 0
+
*2: Multiply by amount percent
| No division
+
 
|-
+
All of the 0's are applied first, and then the 1's, and then the 2's.
| 1
+
 
| 6 notches
+
==== Chunk Data ====
|-
+
 
| 2
+
Chunks are not unloaded by the client automatically. To unload chunks, send this packet with Ground-Up Continuous=true and no 16^3 chunks (eg. Primary Bit Mask=0). The server does not send skylight information for nether-chunks, it's up to the client to know if the player is currently in the nether. You can also infer this information from the primary bitmask and the amount of uncompressed bytes sent.
| 10 notches
+
 
|-
+
See also: [[SMP Map Format]]
| 3
 
| 12 notches
 
|-
 
| 4
 
| 20 notches
 
|}
 
  
==== Change Difficulty ====
+
Changes in 1.8:
  
Changes the difficulty setting in the client's option menu
+
* Data value section removed
 +
* Extended id section removed
 +
* Block id section is now a unsigned short (little endian) per a block
 +
* The block id is equal to <code>(id << 4) | data</code>
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,409: Line 1,525:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x0B
+
  |rowspan="6"| 0x21
  | rowspan="2"| Play
+
  |rowspan="6"| Play
  | rowspan="2"| Client
+
  |rowspan="6"| Client
  | Difficulty
+
  | Chunk X
  | Unsigned Byte
+
  | Int
  | 0: peaceful, 1: easy, 2: normal, 3: hard.
+
  | Chunk X coordinate
 +
|-
 +
| Chunk Z
 +
| Int
 +
| Chunk Z coordinate
 
  |-
 
  |-
  | Difficulty locked?
+
  | Ground-Up Continuous
 
  | Boolean
 
  | Boolean
  |
+
  | This is true if the packet represents all sections in this vertical column, where the Primary Bit Mask specifies exactly which sections are included, and which are air
|}
+
|-
 
+
| Primary Bit Mask
==== Clear Titles ====
+
  | Unsigned Short
 
+
  | Bitmask with 1 for every 16x16x16 section whose data follows in the compressed data
Clear the client's current title information, with the option to also reset it.
+
  |-
 
+
  | Size
{| class="wikitable"
+
  | VarInt
  ! Packet ID
+
  | Size of Data
  ! State
 
  ! Bound To
 
  ! Field Name
 
  ! Field Type
 
  ! Notes
 
 
  |-
 
  |-
  | rowspan="1"| 0x0C
+
  | Data
| rowspan="1"| Play
+
  | [[SMP Map Format#Data|Chunk]]
  | rowspan="1"| Client
+
  |  
| Reset
 
| Boolean
 
  |
 
 
  |}
 
  |}
  
==== Command Suggestions Response ====
+
==== Multi Block Change ====
  
The server responds with a list of auto-completions of the last word sent to it. In the case of regular chat, this is a player username. Command names and parameters are also supported. The client sorts these alphabetically before listing them.
+
Fired whenever 2 or more blocks are changed within the render distance.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,449: Line 1,561:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! colspan="2"| Field Name
+
  !colspan="2"| Field Name
  ! colspan="2"| Field Type
+
  !colspan="2"| Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="8"| 0x0D
+
  |rowspan="6"| 0x22
  | rowspan="8"| Play
+
  |rowspan="6"| Play
  | rowspan="8"| Client
+
  |rowspan="6"| Client
 +
|colspan="2"| Chunk X
 +
|colspan="2"| Int
 +
| Chunk X coordinate
 
  |-
 
  |-
  | colspan="2"| ID
+
  |colspan="2"| Chunk Z
  | colspan="2"| VarInt
+
  |colspan="2"| Int
  | Transaction ID.
+
  | Chunk Z coordinate
 
  |-
 
  |-
  | colspan="2"| Start
+
  |colspan="2"| Record Count
  | colspan="2"| VarInt
+
  |colspan="2"| VarInt
  | Start of the text to replace.
+
  | Number of elements in the following array, i.e. the number of blocks affected
 
  |-
 
  |-
  | colspan="2"| Length
+
  |rowspan="3"| Record
  | colspan="2"| VarInt
+
  | Horizontal Position
  | Length of the text to replace.
+
|rowspan="3"| Array
 +
| Unsigned Byte
 +
  | The 4 most significant bits (<code>0xF0</code>) encode the X coordinate, relative to the chunk. The 4 least significant bits (<code>0x0F</code>) encode the Z coordinate, relative to the chunk.
 
  |-
 
  |-
  | colspan="2"| Count
+
  | Y Coordinate
  | colspan="2"| VarInt
+
  | Unsigned Byte
  | Number of elements in the following array.
+
  |  
 
  |-
 
  |-
  | rowspan="3"| Matches
+
  | Block ID
  | Match
+
  | VarInt
  | rowspan="3"| Array
+
  | The new block state ID for the block as given in the {{Minecraft Wiki|Data values#Block IDs|global palette}} (When reading data: <code>type = id &gt;&gt; 4</code>, <code>meta = id & 15</code>, when writing data: <code>id = type &lt;&lt; 4 &#124; (meta &amp; 15)</code>)
| String (32767)
 
| One eligible value to insert, note that each command is sent separately instead of in a single string, hence the need for Count.  Note that for instance this doesn't include a leading <code>/</code> on commands.
 
|-
 
| Has tooltip
 
| Boolean
 
| True if the following is present.
 
|-
 
| Tooltip
 
| Optional [[Chat]]
 
| Tooltip to display; only present if previous boolean is true.
 
 
  |}
 
  |}
  
==== Commands ====
+
==== Block Change ====
  
Lists all of the commands on the server, and how they are parsed.
+
Fired whenever a block is changed within the render distance.
 
 
This is a directed graph, with one root node.  Each redirect or child node must refer only to nodes that have already been declared.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,502: Line 1,607:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x0E
+
  |rowspan="2"| 0x23
  | rowspan="3"| Play
+
  |rowspan="2"| Play
  | rowspan="3"| Client
+
  |rowspan="2"| Client
  | Count
+
  | Location
  | VarInt
+
  | Position
  | Number of elements in the following array.
+
  | Block Coordinates
 
  |-
 
  |-
  | Nodes
+
  | Block ID
| Array of [[Command Data|Node]]
 
| An array of nodes.
 
|-
 
| Root index
 
 
  | VarInt
 
  | VarInt
  | Index of the <code>root</code> node in the previous array.
+
  | The new block state ID for the block as given in the {{Minecraft Wiki|Data values#Block IDs|global palette}} (When reading data: <code>type = id &gt;&gt; 4</code>, <code>meta = id & 15</code>, when writing data: <code>id = type &lt;&lt; 4 &#124; (meta &amp; 15)</code>)
 
  |}
 
  |}
  
For more information on this packet, see the [[Command Data]] article.
+
==== Block Action ====
 +
 
 +
This packet is used for a number of things:
  
==== Close Container ====
+
* Chests opening and closing
 +
* Pistons pushing and pulling
 +
* Note blocks playing
 +
* Updating beacons
  
This packet is sent from the server to the client when a window is forcibly closed, such as when a chest is destroyed while it's open. The notchian client disregards the provided window ID and closes any active window.
+
See also: [[Block Actions]]
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,532: Line 1,638:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x0F
+
  |rowspan="4"| 0x24
  | Play
+
  |rowspan="4"| Play
  | Client
+
  |rowspan="4"| Client
  | Window ID
+
  | Location
 +
| Position
 +
| Block coordinates
 +
|-
 +
| Byte 1
 +
| Unsigned Byte
 +
| Varies depending on block — see [[Block Actions]]
 +
|-
 +
| Byte 2
 
  | Unsigned Byte
 
  | Unsigned Byte
  | This is the ID of the window that was closed. 0 for inventory.
+
  | Varies depending on block — see [[Block Actions]]
 +
|-
 +
| Block Type
 +
| VarInt
 +
| The block type ID for the block, not including metadata/damage value
 
  |}
 
  |}
  
==== Set Container Content ====
+
==== Block Break Animation ====
[[File:Inventory-slots.png|thumb|The inventory slots]]
+
 
 +
0–9 are the displayable destroy stages and each other number means that there is no animation on this coordinate.
 +
 
 +
You can also set an animation to air! The animation will still be visible.
 +
 
 +
If you need to display several break animations at the same time you have to give each of them a unique Entity ID.
  
Sent by the server when items in multiple slots (in a window) are added/removed. This includes the main inventory, equipped armour and crafting slots. This packet with Window ID set to "0" is sent during the player joining sequence to initialise the player's inventory.
+
Also if you set the coordinates to a special block like water etc. it won't show the actual break animation but some other interesting effects. For example, water will lose its transparency.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,553: Line 1,676:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="5"| 0x10
+
  |rowspan="3"| 0x25
  | rowspan="5"| Play
+
  |rowspan="3"| Play
  | rowspan="5"| Client
+
  |rowspan="3"| Client
  | Window ID
+
  | Entity ID
| Unsigned Byte
 
| The ID of window which items are being sent for. 0 for player inventory.
 
|-
 
| State ID
 
 
  | VarInt
 
  | VarInt
  | The last received State ID from either a [[#Set Container Slot|Set Container Slot]] or a [[#Set Container Content|Set Container Content]] packet
+
  | EID for the animation
 
  |-
 
  |-
  | Count
+
  | Location
  | VarInt
+
  | Position
  | Number of elements in the following array.
+
  | Block Position
 
  |-
 
  |-
  | Slot Data
+
  | Destroy Stage
  | Array of [[Slot Data|Slot]]
+
  | Byte
|-
+
  | 0–9 to set it, any other value to remove it
| Carried Item
 
| [[Slot Data|Slot]]
 
  | Item held by player.
 
 
  |}
 
  |}
  
See [[Inventory#Windows|inventory windows]] for further information about how slots are indexed.
+
==== Map Chunk Bulk ====
Use [[#Open Screen|Open Screen]] to open the container on the client.
 
  
==== Set Container Property ====
+
1.8 changes at [[#Chunk Data|Chunk Data]]
  
This packet is used to inform the client that part of a GUI window should be updated.
+
To reduce the number of bytes, this packet is used to send chunks together for better compression results.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,587: Line 1,702:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! Field Name
+
  !colspan="2"| Field Name
  ! Field Type
+
  !colspan="2"| Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x11
+
  |rowspan="6"| 0x26
  | rowspan="3"| Play
+
  |rowspan="6"| Play
  | rowspan="3"| Client
+
  |rowspan="6"| Client
  | Window ID
+
  |colspan="2"| Sky Light Sent
  | Unsigned Byte
+
|colspan="2"| Boolean
  |
+
| Whether or not Chunk Data contains light nibble arrays. This is true in the Overworld, false in the End + Nether
 +
|-
 +
|colspan="2"| Chunk Column Count
 +
  |colspan="2"| VarInt
 +
  | Number of elements in each of the following arrays
 
  |-
 
  |-
  | Property
+
  |rowspan="3"| Chunk Meta
  | Short
+
| Chunk X
  | The property to be updated, see below.
+
|rowspan="3"| Array
 +
  | Int
 +
  | The X coordinate of the chunk
 
  |-
 
  |-
  | Value
+
  | Chunk Z
  | Short
+
  | Int
  | The new value for the property, see below.
+
| The Z coordinate of the chunk
  |}
+
|-
 +
| Primary Bit Mask
 +
| Unsigned Short
 +
  | A bit mask which specifies which sections are not empty in this chunk
 +
|-
 +
|colspan="2"| Chunk Data
 +
|colspan="2"| Array of [[SMP Map Format#Data|Chunk]]
 +
| Each chunk in this array corresponds to the data at the same position in Chunk Meta
 +
  |}
  
The meaning of the Property field depends on the type of the window. The following table shows the known combinations of window type and property, and how the value is to be interpreted.
+
==== Explosion ====
 +
 
 +
Sent when an explosion occurs (creepers, TNT, and ghast fireballs).
 +
 
 +
Each block in Records is set to air. Coordinates for each axis in record is int(X) + record.x
  
 
{| class="wikitable"
 
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  ! Window type
+
  |rowspan="9"| 0x27
  ! Property
+
  |rowspan="9"| Play
  ! Value
+
  |rowspan="9"| Client
 +
| X
 +
| Float
 +
|
 
  |-
 
  |-
  | rowspan="4"| Furnace
+
  | Y
  | 0: Fire icon (fuel left)
+
  | Float
  | counting from fuel burn time down to 0 (in-game ticks)
+
  |  
 
  |-
 
  |-
  | 1: Maximum fuel burn time
+
  | Z
  | fuel burn time or 0 (in-game ticks)
+
| Float
 +
  |  
 
  |-
 
  |-
  | 2: Progress arrow
+
  | Radius
  | counting from 0 to maximum progress (in-game ticks)
+
  | Float
 +
| Currently unused in the client
 
  |-
 
  |-
  | 3: Maximum progress
+
  | Record Count
  | always 200 on the notchian server
+
  | Int
 +
| Number of elements in the following array
 
  |-
 
  |-
  | rowspan="10"| Enchantment Table
+
  | Records
  | 0: Level requirement for top enchantment slot
+
  | Array of (Byte, Byte, Byte)
  | rowspan="3"| The enchantment's xp level requirement
+
  | Each record is 3 signed bytes long, each bytes are the XYZ (respectively) offsets of affected blocks.
 
  |-
 
  |-
  | 1: Level requirement for middle enchantment slot
+
  | Player Motion X
 +
| Float
 +
| X velocity of the player being pushed by the explosion
 
  |-
 
  |-
  | 2: Level requirement for bottom enchantment slot
+
  | Player Motion Y
 +
| Float
 +
| Y velocity of the player being pushed by the explosion
 
  |-
 
  |-
  | 3: The enchantment seed
+
  | Player Motion Z
  | Used for drawing the enchantment names (in [[Wikipedia:Standard Galactic Alphabet|SGA]]) clientside. The same seed ''is'' used to calculate enchantments, but some of the data isn't sent to the client to prevent easily guessing the entire list (the seed value here is the regular seed bitwise and <code>0xFFFFFFF0</code>).
+
| Float
 +
  | Z velocity of the player being pushed by the explosion
 +
|}
 +
 
 +
==== Effect ====
 +
 
 +
Sent when a client is to play a sound or particle effect.
 +
 
 +
By default, the Minecraft client adjusts the volume of sound effects based on distance. The final boolean field is used to disable this, and instead the effect is played from 2 blocks away in the correct direction. Currently this is only used for effect 1013 (mob.wither.spawn), and is ignored for any other value by the client.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | 4: Enchantment ID shown on mouse hover over top enchantment slot
+
  |rowspan="4"| 0x28
  | rowspan="3"| The enchantment id (set to -1 to hide it), see below for values
+
|rowspan="4"| Play
 +
  |rowspan="4"| Client
 +
| Effect ID
 +
| Int
 +
| The ID of the effect, see below
 
  |-
 
  |-
  | 5: Enchantment ID shown on mouse hover over middle enchantment slot
+
  | Location
 +
| Position
 +
| The location of the effect
 
  |-
 
  |-
  | 6: Enchantment ID shown on mouse hover over bottom enchantment slot
+
  | Data
 +
| Int
 +
| Extra data for certain effects, see below
 
  |-
 
  |-
  | 7: Enchantment level shown on mouse hover over the top slot
+
  | Disable Relative Volume
| rowspan="3"| The enchantment level (1 = I, 2 = II, 6 = VI, etc.), or -1 if no enchant
+
| Boolean
 +
| See above
 +
|}
 +
 
 +
Effect IDs:
 +
 
 +
{| class="wikitable"
 +
! ID
 +
! Name
 +
! Data
 
  |-
 
  |-
  | 8: Enchantment level shown on mouse hover over the middle slot
+
  !colspan="3"| Sound
 
  |-
 
  |-
  | 9: Enchantment level shown on mouse hover over the bottom slot
+
  | 1000
 +
| <code>random.click</code>
 +
|
 
  |-
 
  |-
  | rowspan="3"| Beacon
+
  | 1001
  | 0: Power level
+
  | <code>random.click</code>
  | 0-4, controls what effect buttons are enabled
+
  |  
 
  |-
 
  |-
  | 1: First potion effect
+
  | 1002
  | {{Minecraft Wiki|Data values#Status effects|Potion effect ID}} for the first effect, or -1 if no effect
+
  | <code>random.bow</code>
 +
|  
 
  |-
 
  |-
  | 2: Second potion effect
+
  | 1003
  | {{Minecraft Wiki|Data values#Status effects|Potion effect ID}} for the second effect, or -1 if no effect
+
  | <code>random.door_open</code> or <code>random.door_close</code> (50/50 chance)
 +
|  
 
  |-
 
  |-
  | Anvil
+
  | 1004
  | 0: Repair cost
+
  | <code>random.fizz</code>
  | The repair's cost in xp levels
+
  |  
 
  |-
 
  |-
  | rowspan="2"| Brewing Stand
+
  | 1005
  | 0: Brew time
+
  | Play a music disc.
  | 0 – 400, with 400 making the arrow empty, and 0 making the arrow full
+
  | {{Minecraft Wiki|Music Discs|Record ID}}
 
  |-
 
  |-
  | 1: Fuel time
+
  | 1006
  | 0 - 20, with 0 making the arrow empty, and 20 making the arrow full
+
| ''not assigned''
 +
  |  
 
  |-
 
  |-
  | Stonecutter
+
  | 1007
  | 0: Selected recipe
+
  | <code>mob.ghast.charge</code>
  | The index of the selected recipe. -1 means none is selected.
+
  |  
 
  |-
 
  |-
  | Loom
+
  | 1008
  | 0: Selected pattern
+
  | <code>mob.ghast.fireball</code>
  | The index of the selected pattern. 0 means none is selected, 0 is also the internal id of the "base" pattern.
+
  |  
 
  |-
 
  |-
  | Lectern
+
  | 1009
  | 0: Page number
+
  | <code>mob.ghast.fireball</code>, but with a lower volume
| The current page number, starting from 0.
+
  |  
  |}
 
 
 
For an enchanting table, the following numerical IDs are used:
 
 
 
{| class="wikitable"
 
! Numerical ID
 
! Enchantment ID
 
! Enchantment Name
 
 
  |-
 
  |-
  | 0
+
  | 1010
  | minecraft:protection
+
  | <code>mob.zombie.wood</code>
  | Protection
+
  |  
 
  |-
 
  |-
  | 1
+
  | 1011
  | minecraft:fire_protection
+
  | <code>mob.zombie.metal</code>
  | Fire Protection
+
  |  
 
  |-
 
  |-
  | 2
+
  | 1012
  | minecraft:feather_falling
+
  | <code>mob.zombie.woodbreak</code>
  | Feather Falling
+
  |  
 
  |-
 
  |-
  | 3
+
  | 1013
  | minecraft:blast_protection
+
  | <code>mob.wither.spawn</code>
  | Blast Protection
+
  |  
 
  |-
 
  |-
  | 4
+
  | 1014
  | minecraft:projectile_protection
+
  | <code>mob.wither.shoot</code>
  | Projectile Protection
+
  |  
 
  |-
 
  |-
  | 5
+
  | 1015
  | minecraft:respiration
+
  | <code>mob.bat.takeoff</code>
  | Respiration
+
  |  
 
  |-
 
  |-
  | 6
+
  | 1016
  | minecraft:aqua_affinity
+
  | <code>mob.zombie.infect</code>
  | Aqua Affinity
+
  |  
 
  |-
 
  |-
  | 7
+
  | 1017
  | minecraft:thorns
+
  | <code>mob.zombie.unfect</code>
  | Thorns
+
  |  
 
  |-
 
  |-
  | 8
+
  | 1018
  | minecraft:depth_strider
+
  | <code>mob.enderdragon.end</code>
  | Depth Strider
+
  |  
 
  |-
 
  |-
  | 9
+
  | 1020
  | minecraft:frost_walker
+
  | <code>random.anvil_break</code>
  | Frost Walker
+
  |  
 
  |-
 
  |-
  | 10
+
  | 1021
  | minecraft:binding_curse
+
  | <code>random.anvil_use</code>
  | Curse of Binding
+
  |  
 
  |-
 
  |-
  | 11
+
  | 1022
  | minecraft:soul_speed
+
  | <code>random.anvil_land</code>
  | Soul Speed
+
  |  
 
  |-
 
  |-
  | 12
+
  !colspan="3"| Particle
| minecraft:sharpness
 
| Sharpness
 
 
  |-
 
  |-
  | 13
+
  | 2000
  | minecraft:smite
+
  | Spawns 10 smoke particles, e.g. from a fire
  | Smite
+
  | Direction, see below
 
  |-
 
  |-
  | 14
+
  | 2001
  | minecraft:bane_of_arthropods
+
  | Block break
  | Bane of Arthropods
+
  | {{Minecraft Wiki|Data values|Block ID}}
 
  |-
 
  |-
  | 15
+
  | 2002
  | minecraft:knockback
+
  | Splash potion. Particle effect + glass break sound.
  | Knockback
+
  | [http://www.lb-stuff.com/Minecraft/PotionDataValues1.9pre3.txt Potion ID]
 
  |-
 
  |-
  | 16
+
  | 2003
  | minecraft:fire_aspect
+
  | Eye of Ender entity break animation — particles and sound
  | Fire Aspect
+
  |  
 
  |-
 
  |-
  | 17
+
  | 2004
  | minecraft:looting
+
  | Mob spawn particle effect: smoke + flames
  | Looting
+
  |  
 
  |-
 
  |-
  | 18
+
  | 2005
  | minecraft:sweeping
+
  | Spawn “happy villager” effect (green crosses), used for bonemealing vegetation
  | Sweeping Edge
+
  |  
  |-
+
  |}
| 19
+
 
  | minecraft:efficiency
+
Smoke directions:
  | Efficiency
+
 
 +
{| class="wikitable"
 +
  ! ID
 +
  ! Direction
 
  |-
 
  |-
  | 20
+
  | 0
  | minecraft:silk_touch
+
  | South-East
| Silk Touch
 
 
  |-
 
  |-
  | 21
+
  | 1
  | minecraft:unbreaking
+
  | South
| Unbreaking
 
 
  |-
 
  |-
  | 22
+
  | 2
  | minecraft:fortune
+
  | South-West
| Fortune
 
 
  |-
 
  |-
  | 23
+
  | 3
  | minecraft:power
+
  | East
| Power
 
 
  |-
 
  |-
  | 24
+
  | 4
  | minecraft:punch
+
  | (Up or middle ?)
| Punch
 
 
  |-
 
  |-
  | 25
+
  | 5
  | minecraft:flame
+
  | West
| Flame
 
 
  |-
 
  |-
  | 26
+
  | 6
  | minecraft:infinity
+
  | North-East
| Infinity
 
 
  |-
 
  |-
  | 27
+
  | 7
  | minecraft:luck_of_the_sea
+
  | North
| Luck of the Sea
 
 
  |-
 
  |-
  | 28
+
  | 8
  | minecraft:lure
+
  | North-West
  | Lure
+
  |}
 +
 
 +
==== Sound Effect ====
 +
 
 +
Used to play a sound effect on the client.
 +
 
 +
Custom sounds may be added by resource packs.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | 29
+
  |rowspan="6"| 0x29
  | minecraft:loyalty
+
|rowspan="6"| Play
  | Loyalty
+
|rowspan="6"| Client
 +
  | Sound name
 +
| String
 +
  | All known sound effect names can be seen [https://github.com/SirCmpwn/Craft.Net/blob/master/source/Craft.Net.Common/SoundEffect.cs here]
 
  |-
 
  |-
  | 30
+
  | Effect position X
  | minecraft:impaling
+
  | Int
  | Impaling
+
  | Effect X multiplied by 8
 
  |-
 
  |-
  | 31
+
  | Effect position Y
  | minecraft:riptide
+
  | Int
  | Riptide
+
  | Effect Y multiplied by 8
 
  |-
 
  |-
  | 32
+
  | Effect position Z
  | minecraft:channeling
+
  | Int
  | Channeling
+
  | Effect Z multiplied by 8
 
  |-
 
  |-
  | 33
+
  | Volume
  | minecraft:multishot
+
  | Float
  | Multishot
+
  | 1 is 100%, can be more
 
  |-
 
  |-
  | 34
+
  | Pitch
  | minecraft:quick_charge
+
  | Unsigned Byte
  | Quick Charge
+
  | 63 is 100%, can be more
|-
 
| 35
 
| minecraft:piercing
 
| Piercing
 
|-
 
| 36
 
| minecraft:mending
 
| Mending
 
|-
 
| 37
 
| minecraft:vanishing_curse
 
| Curse of Vanishing
 
 
  |}
 
  |}
  
==== Set Container Slot ====
+
==== Particle ====
  
Sent by the server when an item in a slot (in a window) is added/removed.
+
Displays the named particle
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 1,859: Line 2,036:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="4"| 0x12
+
  |rowspan="11"| 0x2A
  | rowspan="4"| Play
+
  |rowspan="11"| Play
  | rowspan="4"| Client
+
  |rowspan="11"| Client
  | Window ID
+
  | Particle ID
  | Byte
+
  | Int
  | The window which is being updated. 0 for player inventory. Note that all known window types include the player inventory. This packet will only be sent for the currently opened window while the player is performing actions, even if it affects the player inventory. After the window is closed, a number of these packets are sent to update the player's inventory window (0).
+
  | See below
 +
|-
 +
| Long Distance
 +
| Boolean
 +
| If true, particle distance increases from 256 to 65536
 
  |-
 
  |-
  | State ID
+
  | X
  | VarInt
+
  | Float
  | The last received State ID from either a [[#Set Container Slot|Set Container Slot]] or a [[#Set Container Content|Set Container Content]] packet
+
  | X position of the particle
 
  |-
 
  |-
  | Slot
+
  | Y
  | Short
+
  | Float
  | The slot that should be updated.
+
  | Y position of the particle
 
  |-
 
  |-
  | Slot Data
+
  | Z
  | [[Slot Data|Slot]]
+
  | Float
  |
+
| Z position of the particle
  |}
+
  |-
 
+
  | Offset X
To set the cursor (the item currently dragged with the mouse), use -1 as Window ID and as Slot.
+
| Float
 
+
| This is added to the X position after being multiplied by random.nextGaussian()
This packet can only be used to edit the hotbar of the player's inventory if window ID is set to 0 (slots 36 through 45) if the player is in creative, with their inventory open, and not in their survival inventory tab. Otherwise, when window ID is 0, it can edit any slot in the player's inventory.  If the window ID is set to -2, then any slot in the inventory can be used but no add item animation will be played.
+
  |-
 
+
| Offset Y
==== Set Cooldown ====
+
| Float
 
+
  | This is added to the Y position after being multiplied by random.nextGaussian()
Applies a cooldown period to all items with the given type.  Used by the Notchian server with enderpearls. This packet should be sent when the cooldown starts and also when the cooldown ends (to compensate for lag), although the client will end the cooldown automatically. Can be applied to any item, note that interactions still get sent to the server with the item but the client does not play the animation nor attempt to predict results (i.e block placing).
+
|-
 
+
| Offset Z
{| class="wikitable"
+
  | Float
  ! Packet ID
+
  | This is added to the Z position after being multiplied by random.nextGaussian()
  ! State
+
  |-
  ! Bound To
+
  | Particle Data
  ! Field Name
+
  | Float
  ! Field Type
+
  | The data of each particle
  ! Notes
 
 
  |-
 
  |-
  | rowspan="2"| 0x13
+
  | Particle Count
  | rowspan="2"| Play
+
  | Int
  | rowspan="2"| Client
+
  | The number of particles to create
| Item ID
 
| VarInt
 
| Numeric ID of the item to apply a cooldown to.
 
 
  |-
 
  |-
  | Cooldown Ticks
+
  | Data
  | VarInt
+
  | Array of VarInt
  | Number of ticks to apply a cooldown for, or 0 to clear the cooldown.
+
  | Length depends on particle. "iconcrack" has length of 2, "blockcrack", and "blockdust" have lengths of 1, the rest have 0.
 
  |}
 
  |}
  
==== Chat Suggestions ====
+
Particle IDs:
 
 
Unused by the Notchian server. Likely provided for custom servers to send chat message completions to clients.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="3"| 0x14
+
  ! Particle Name
  | rowspan="3"| Play
+
  ! Particle ID
| rowspan="3"| Client
 
| Action
 
| VarInt Enum
 
| 0: Add, 1: Remove, 2: Set
 
 
  |-
 
  |-
  | Count
+
  | explode
  | VarInt
+
  | 0
| Number of elements in the following array.
 
 
  |-
 
  |-
  | Entries
+
  | largeexplosion
  | Array of String
+
  | 1
  |
+
  |-
  |}
+
  | hugeexplosion
 
+
| 2
==== Plugin Message ====
+
|-
 
+
| fireworksSpark
{{Main|Plugin channels}}
+
  | 3
 
 
Mods and plugins can use this to send their data. Minecraft itself uses several [[plugin channel]]s. These internal channels are in the <code>minecraft</code> namespace.
 
 
 
More information on how it works on [https://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/ Dinnerbone's blog]. More documentation about internal and popular registered channels are [[plugin channel|here]].
 
 
 
{| class="wikitable"
 
  ! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="2"| 0x15
+
  | bubble
| rowspan="2"| Play
+
  | 4
| rowspan="2"| Client
 
| Channel
 
| Identifier
 
  | Name of the [[plugin channel]] used to send the data.
 
 
  |-
 
  |-
  | Data
+
  | splash
  | Byte Array (1048576)
+
  | 5
| Any data. The length of this array must be inferred from the packet length.
 
|}
 
 
 
In Notchian client, the maximum data length is 1048576 bytes.
 
 
 
==== Delete Message ====
 
 
 
Removes a message from the client's chat. This only works for messages with signatures, system messages cannot be deleted with this packet.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="2"| 0x16
+
  | wake
| rowspan="2"| Play
+
  | 6
| rowspan="2"| Client
 
| Signature Length
 
| VarInt
 
  | Length of Signature.
 
 
  |-
 
  |-
  | Signature
+
  | suspended
  | Byte Array
+
  | 7
  | Bytes of the signature.
+
  |-
  |}
+
  | depthsuspend
 
+
| 8
==== Disconnect (play) ====
+
  |-
 
+
  | crit
Sent by the server before it disconnects a client. The client assumes that the server has already closed the connection by the time the packet arrives.
+
  | 9
 
+
  |-
{| class="wikitable"
+
  | magicCrit
  ! Packet ID
+
  | 10
  ! State
 
  ! Bound To
 
  ! Field Name
 
  ! Field Type
 
  ! Notes
 
 
  |-
 
  |-
  | 0x17
+
  | smoke
  | Play
+
  | 11
| Client
 
| Reason
 
| [[Chat]]
 
| Displayed to the client when the connection terminates.
 
|}
 
 
 
==== Disguised Chat Message ====
 
 
 
Used to send system chat messages to the client.
 
 
 
{| class="wikitable
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="5"| 0x18
+
  | largesmoke
| rowspan="5"| Play
+
  | 12
| rowspan="5"| Client
 
| Message
 
| Chat
 
  |
 
 
  |-
 
  |-
  | Chat Type
+
  | spell
  | VarInt
+
  | 13
| The chat message type.
 
 
  |-
 
  |-
  | Chat Type Name
+
  | instantSpell
  | Chat
+
  | 14
| The name associated with the chat type. Usually the message sender's display name.
 
 
  |-
 
  |-
  | Has Target Name
+
  | mobSpell
  | Boolean
+
  | 15
| True is the following is present.
 
 
  |-
 
  |-
  | Target Name
+
  | mobSpellAmbient
  | Chat
+
  | 16
| The target name associated with the chat type. Usually the message target's display name. Only present if previous boolean is true.
 
|}
 
 
 
==== Entity Event ====
 
 
 
Entity statuses generally trigger an animation for an entity.  The available statuses vary by the entity's type (and are available to subclasses of that type as well).
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="2"| 0x19
+
  | witchMagic
| rowspan="2"| Play
+
  | 17
| rowspan="2"| Client
 
| Entity ID
 
| Int
 
  |
 
 
  |-
 
  |-
  | Entity Status
+
  | dripWater
  | Byte Enum
+
  | 18
| See [[Entity statuses]] for a list of which statuses are valid for each type of entity.
 
|}
 
 
 
==== Explosion ====
 
 
 
Sent when an explosion occurs (creepers, TNT, and ghast fireballs).
 
 
 
Each block in Records is set to air. Coordinates for each axis in record is int(X) + record.x
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="9"| 0x1A
+
  | dripLava
| rowspan="9"| Play
+
  | 19
| rowspan="9"| Client
 
| X
 
| Double
 
  |
 
 
  |-
 
  |-
  | Y
+
  | angryVillager
| Double
+
  | 20
  |
 
 
  |-
 
  |-
  | Z
+
  | happyVillager
| Double
+
  | 21
  |
 
 
  |-
 
  |-
  | Strength
+
  | townaura
  | Float
+
  | 22
| A strength greater than or equal to 2.0 spawns a <code>minecraft:explosion_emitter</code> particle, while a lesser strength spawns a <code>minecraft:explosion</code> particle.
 
 
  |-
 
  |-
  | Record Count
+
  | note
  | VarInt
+
  | 23
| Number of elements in the following array.
 
 
  |-
 
  |-
  | Records
+
  | portal
  | Array of (Byte, Byte, Byte)
+
  | 24
  | Each record is 3 signed bytes long; the 3 bytes are the XYZ (respectively) signed offsets of affected blocks.
+
|-
 +
| enchantmenttable
 +
| 25
 +
|-
 +
| flame
 +
| 26
 +
|-
 +
| lava
 +
| 27
 +
|-
 +
| footstep
 +
| 28
 +
|-
 +
| cloud
 +
| 29
 +
|-
 +
| reddust
 +
| 30
 +
|-
 +
| snowballpoof
 +
| 31
 +
|-
 +
| snowshovel
 +
| 32
 +
|-
 +
| slime
 +
| 33
 +
|-
 +
| heart
 +
| 34
 +
|-
 +
| barrier
 +
| 35
 +
|-
 +
| iconcrack_(id)_(data)
 +
| 36
 +
|-
 +
| blockcrack_(id+(data<<12))
 +
  | 37
 +
|-
 +
| blockdust_(id)
 +
| 38
 
  |-
 
  |-
  | Player Motion X
+
  | droplet
  | Float
+
  | 39
| X velocity of the player being pushed by the explosion.
 
 
  |-
 
  |-
  | Player Motion Y
+
  | take
  | Float
+
  | 40
| Y velocity of the player being pushed by the explosion.
 
 
  |-
 
  |-
  | Player Motion Z
+
  | mobappearance
  | Float
+
  | 41
| Z velocity of the player being pushed by the explosion.
 
 
  |}
 
  |}
  
==== Unload Chunk ====
+
==== Change Game State ====
  
Tells the client to unload a chunk column.
+
It appears when a bed can't be used as a spawn point and when the rain state changes.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,135: Line 2,230:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x1B
+
  |rowspan="2"| 0x2B
  | rowspan="2"| Play
+
  |rowspan="2"| Play
  | rowspan="2"| Client
+
  |rowspan="2"| Client
  | Chunk X
+
  | Reason
| Int
 
| Block coordinate divided by 16, rounded down.
 
|-
 
| Chunk Z
 
| Int
 
| Block coordinate divided by 16, rounded down.
 
|}
 
 
 
It is legal to send this packet even if the given chunk is not currently loaded.
 
 
 
==== Game Event ====
 
 
 
Used for a wide variety of game events, from weather to bed use to gamemode to demo messages.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x1C
 
| rowspan="2"| Play
 
| rowspan="2"| Client
 
| Event
 
 
  | Unsigned Byte
 
  | Unsigned Byte
  | See below.
+
  | See below
 
  |-
 
  |-
 
  | Value
 
  | Value
 
  | Float
 
  | Float
  | Depends on Reason.
+
  | Depends on Reason
 
  |}
 
  |}
  
''Events'':
+
''Reason codes'':
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! Event
+
  ! Reason
 
  ! Effect
 
  ! Effect
 
  ! Value
 
  ! Value
 
  |-
 
  |-
 
  | 0
 
  | 0
  | No respawn block available
+
  | Invalid Bed
  | Note: Sends message 'block.minecraft.spawn.not_valid'(You have no home bed or charged respawn anchor, or it was obstructed) to the client.
+
  |  
 
  |-
 
  |-
 
  | 1
 
  | 1
 
  | End raining
 
  | End raining
  |
+
  |  
 
  |-
 
  |-
 
  | 2
 
  | 2
 
  | Begin raining
 
  | Begin raining
  |
+
  |  
 
  |-
 
  |-
 
  | 3
 
  | 3
  | Change gamemode
+
  | Change game mode
  | 0: Survival, 1: Creative, 2: Adventure, 3: Spectator.
+
  | 0: Survival, 1: Creative, 2: Adventure, 3: Spectator
 
  |-
 
  |-
 
  | 4
 
  | 4
  | Win game
+
  | Enter credits
  | 0: Just respawn player. <br>1: Roll the credits and respawn player. <br> Note that 1 is only sent by notchian server when player has not yet achieved advancement "The end?", else 0 is sent.
+
  |  
 
  |-
 
  |-
 
  | 5
 
  | 5
  | Demo event
+
  | Demo message
  | 0: Show welcome to demo screen<br> 101: Tell movement controls<br> 102: Tell jump control<br> 103: Tell inventory control<br> 104: Tell that the demo is over and print a message about how to take a screenshot.
+
  | 0: Show welcome to demo screen, 101: Tell movement controls, 102: Tell jump control, 103: Tell inventory control
  |-
+
  |-  
 
  | 6
 
  | 6
  | Arrow hit player
+
  | Arrow hitting player
  | Note: Sent when any player is struck by an arrow.
+
  | Appears to be played when an arrow strikes another player in Multiplayer
 
  |-
 
  |-
 
  | 7
 
  | 7
  | Rain level change
+
  | Fade value
  | Note: Seems to change both skycolor and lightning.<br>Rain level starting from 0 to 1.
+
  | The current darkness value. 1 = Dark, 0 = Bright, Setting the value higher causes the game to change color and freeze
 
  |-
 
  |-
 
  | 8
 
  | 8
  | Thunder level change
+
  | Fade time
  | Note: Seems to change both skycolor and lightning (same as Rain level change, but doesn't start rain). It also requires rain to render by notchian client.<br>Thunder level starting from 0 to 1.
+
  | Time in ticks for the sky to fade
|-
 
| 9
 
| Play pufferfish sting sound.
 
 
  |-
 
  |-
 
  | 10
 
  | 10
  | Play elder guardian mob appearance (effect and sound).
+
  | Play mob appearance (effect and sound)
  |
+
  | Unknown
|-
 
| 11
 
| Enable respawn screen
 
|  0: Enable respawn screen, 1: Immediately respawn (sent when the doImmediateRespawn gamerule changes).
 
 
  |}
 
  |}
  
==== Open Horse Screen ====
+
==== Spawn Global Entity ====
  
This packet is used exclusively for opening the horse GUI. [[#Open Screen|Open Screen]] is used for all other GUIs. The client will not open the inventory if the Entity ID does not point to an horse-like animal.
+
With this packet, the server notifies the client of thunderbolts striking within a 512 block radius around the player. The coordinates specify where exactly the thunderbolt strikes.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,240: Line 2,302:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x1D
+
  |rowspan="5"| 0x2C
  | rowspan="3"| Play
+
  |rowspan="5"| Play
  | rowspan="3"| Client
+
  |rowspan="5"| Client
  | Window ID
+
  | Entity ID
  | Unsigned Byte
+
  | VarInt
  |
+
| The EID of the thunderbolt
 +
|-
 +
| Type
 +
| Byte
 +
  | The global entity type, currently always 1 for thunderbolt
 
  |-
 
  |-
  | Slot count
+
  | X
  | VarInt
+
  | Int
  |
+
  | Thunderbolt X, a [[Data Types#Fixed-point numbers|fixed-point number]]
 
  |-
 
  |-
  | Entity ID
+
  | Y
 
  | Int
 
  | Int
  |
+
  | Thunderbolt Y, a [[Data Types#Fixed-point numbers|fixed-point number]]
  |}
+
|-
 
+
| Z
==== Initialize World Border ====
+
| Int
 +
| Thunderbolt Z, a [[Data Types#Fixed-point numbers|fixed-point number]]
 +
  |}
 +
 
 +
==== Open Window ====
 +
 
 +
This is sent to the client when it should open an inventory, such as a chest, workbench, or furnace. This message is not sent anywhere for clients opening their own inventory.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,266: Line 2,338:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="8"| 0x1E
+
  |rowspan="5"| 0x2D
  | rowspan="8"| Play
+
  |rowspan="5"| Play
  | rowspan="8"| Client
+
  |rowspan="5"| Client
  | X
+
  | Window ID
  | Double
+
  | Unsigned Byte
  |
+
  | A unique id number for the window to be displayed. Notchian server implementation is a counter, starting at 1.
 
  |-
 
  |-
  | Z
+
  | Window Type
  | Double
+
  | String
  |
+
  | The window type to use for display. See [[Inventory]] for a list.
 
  |-
 
  |-
  | Old Diameter
+
  | Window Title
  | Double
+
  | [[Chat]]
  | Current length of a single side of the world border, in meters.
+
  | The title of the window
 
  |-
 
  |-
  | New Diameter
+
  | Number Of Slots
  | Double
+
  | Unsigned Byte
  | Target length of a single side of the world border, in meters.
+
  | Number of slots in the window (excluding the number of slots in the player inventory)
 
  |-
 
  |-
  | Speed
+
  | Entity ID
  | VarLong
+
  | Optional Int
  | Number of real-time ''milli''seconds until New Diameter is reached. It appears that Notchian server does not sync world border speed to game ticks, so it gets out of sync with server lag. If the world border is not moving, this is set to 0.
+
  | EntityHorse's EID. Only sent when Window Type is “EntityHorse”
|-
 
| Portal Teleport Boundary
 
| VarInt
 
| Resulting coordinates from a portal teleport are limited to ±value. Usually 29999984.
 
|-
 
| Warning Blocks
 
| VarInt
 
| In meters.
 
|-
 
| Warning Time
 
| VarInt
 
| In seconds as set by <code>/worldborder warning time</code>.
 
 
  |}
 
  |}
  
The Notchian client determines how solid to display the warning by comparing to whichever is higher, the warning distance or whichever is lower, the distance from the current diameter to the target diameter or the place the border will be after warningTime seconds. In pseudocode:
+
See [[Inventory]] for further information.
  
<syntaxhighlight lang="java">
+
==== Close Window ====
distance = max(min(resizeSpeed * 1000 * warningTime, abs(targetDiameter - currentDiameter)), warningDistance);
 
if (playerDistance < distance) {
 
    warning = 1.0 - playerDistance / distance;
 
} else {
 
    warning = 0.0;
 
}
 
</syntaxhighlight>
 
  
==== Keep Alive ====
+
This packet is sent from the server to the client when a window is forcibly closed, such as when a chest is destroyed while it's open.
  
The server will frequently send out a keep-alive, each containing a random ID. The client must respond with the same payload (see [[#Keep Alive|serverbound Keep Alive]]). If the client does not respond to them for over 30 seconds, the server kicks the client. Vice versa, if the server does not send any keep-alives for 20 seconds, the client will disconnect and yields a "Timed out" exception.
+
Note, notchian clients send a close window packet with Window ID 0 to close their inventory even though there is never an [[#Open Window|Open Window]] packet for inventory.  
 
 
The Notchian server uses a system-dependent time in milliseconds to generate the keep alive ID value.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,327: Line 2,378:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x1F
+
  | 0x2E
  | Play
+
  |rowspan="1"| Play
  | Client
+
  |rowspan="1"| Client
  | Keep Alive ID
+
  | Window ID
  | Long
+
  | Unsigned Byte
  |
+
  | This is the ID of the window that was closed. 0 for inventory.
 
  |}
 
  |}
  
==== Chunk Data and Update Light ====
+
==== Set Slot ====
{{Main|Chunk Format}}
 
{{See also|#Unload Chunk}}
 
  
{{Need Info|How do biomes work now?  The biome change happened at the same time as the seed change, but it's not clear how/if biomes could be computed given that it's not the actual seed...  ([https://www.reddit.com/r/Mojira/comments/e5at6i/a_discussion_for_the_changes_to_how_biomes_are/ /r/mojira discussion] which notes that it seems to be some kind of interpolation, and 3D biomes are only used in the nether)}}
+
Sent by the server when an item in a slot (in a window) is added/removed.
 
 
This packet sends all block entities in the chunk (though sending them is not required; it is still legal to send them with [[#Block Entity Data|Block Entity Data]] later). The light data in this packet is the same format as in the [[#Update Light|Update Light]] packet.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,347: Line 2,394:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! colspan="2"| Field Name
+
  ! Field Name
  ! colspan="2"| Field Type
+
  ! Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="21"| 0x20
+
  |rowspan="3"| 0x2F
  | rowspan="21"| Play
+
  |rowspan="3"| Play
  | rowspan="21"| Client
+
  |rowspan="3"| Client
  | colspan="2"| Chunk X
+
  | Window ID
| colspan="2"| Int
 
| Chunk coordinate (block coordinate divided by 16, rounded down)
 
|-
 
| colspan="2"| Chunk Z
 
| colspan="2"| Int
 
| Chunk coordinate (block coordinate divided by 16, rounded down)
 
|-
 
| colspan="2"| Heightmaps
 
| colspan="2"| [[NBT]]
 
| Compound containing one long array named <code>MOTION_BLOCKING</code>, which is a heightmap for the highest solid block at each position in the chunk (as a compacted long array with 256 entries, with the number of bits per entry varying depending on the world's height, defined by the formula <code>ceil(log2(height + 1))</code>). The Notchian server also adds a <code>WORLD_SURFACE</code> long array, the purpose of which is unknown, but it's not required for the chunk to be accepted.
 
|-
 
| colspan="2"| Size
 
| colspan="2"| VarInt
 
| Size of Data in bytes
 
|-
 
| colspan="2"| Data
 
| colspan="2"| Byte array
 
| See [[Chunk Format#Data structure|data structure]] in Chunk Format
 
|-
 
| colspan="2"| Number of block entities
 
| colspan="2"| VarInt
 
| Number of elements in the following array
 
|-
 
| rowspan="4"| Block Entity
 
| Packed XZ
 
| rowspan="4"| Array
 
 
  | Byte
 
  | Byte
  | The packed section coordinates, calculated from <code><nowiki>((blockX & 15) << 4) | (blockZ & 15)</nowiki></code>
+
  | The window which is being updated. 0 for player inventory. Note that all known window types include the player inventory. This packet will only be sent for the currently opened window while the player is performing actions, even if it affects the player inventory. After the window is closed, a number of these packets are sent to update the player's inventory window (0).
 
  |-
 
  |-
  | Y
+
  | Slot
 
  | Short
 
  | Short
  | The height relative to the world
+
  | The slot that should be updated
 
  |-
 
  |-
  | Type
+
  | Slot Data
| VarInt
+
  | [[Slot Data|Slot]]
| The type of block entity
+
  |  
|-
 
| Data
 
  | [[NBT]]
 
  | The block entity's data, without the X, Y, and Z values
 
|-
 
| colspan="2"| Trust Edges
 
| colspan="2"| Boolean
 
| If edges should be trusted for light updates.
 
|-
 
| colspan="2"| Sky Light Mask
 
| colspan="2"| BitSet
 
| BitSet containing bits for each section in the world + 2.  Each set bit indicates that the corresponding 16×16×16 chunk section has data in the Sky Light array below.  The least significant bit is for blocks 16 blocks to 1 block below the min world height (one section below the world), while the most significant bit covers blocks 1 to 16 blocks above the max world height (one section above the world).
 
|-
 
| colspan="2"| Block Light Mask
 
| colspan="2"| BitSet
 
| BitSet containing bits for each section in the world + 2.  Each set bit indicates that the corresponding 16×16×16 chunk section has data in the Block Light array below.  The order of bits is the same as in Sky Light Mask.
 
|-
 
| colspan="2"| Empty Sky Light Mask
 
| colspan="2"| BitSet
 
| BitSet containing bits for each section in the world + 2.  Each set bit indicates that the corresponding 16×16×16 chunk section has all zeros for its Sky Light data.  The order of bits is the same as in Sky Light Mask.
 
|-
 
| colspan="2"| Empty Block Light Mask
 
| colspan="2"| BitSet
 
| BitSet containing bits for each section in the world + 2.  Each set bit indicates that the corresponding 16×16×16 chunk section has all zeros for its Block Light data.  The order of bits is the same as in Sky Light Mask.
 
|-
 
| colspan="2"| Sky Light array count
 
| colspan="2"| VarInt
 
| Number of entries in the following array; should match the number of bits set in Sky Light Mask
 
|-
 
| rowspan="2"| Sky Light arrays
 
| Length
 
| rowspan="2"| Array
 
| VarInt
 
| Length of the following array in bytes (always 2048)
 
|-
 
| Sky Light array
 
| Array of 2048 bytes
 
| There is 1 array for each bit set to true in the sky light mask, starting with the lowest value.  Half a byte per light value. Indexed <code><nowiki>((y<<8) | (z<<4) | x) / 2 </nowiki></code> If there's a remainder, masked 0xF0 else 0x0F.
 
|-
 
| colspan="2"| Block Light array count
 
| colspan="2"| VarInt
 
| Number of entries in the following array; should match the number of bits set in Block Light Mask
 
|-
 
| rowspan="2"| Block Light arrays
 
| Length
 
| rowspan="2"| Array
 
| VarInt
 
| Length of the following array in bytes (always 2048)
 
|-
 
| Block Light array
 
| Array of 2048 bytes
 
| There is 1 array for each bit set to true in the block light mask, starting with the lowest value.  Half a byte per light value. Indexed <code><nowiki>((y<<8) | (z<<4) | x) / 2 </nowiki></code> If there's a remainder, masked 0xF0 else 0x0F.
 
 
  |}
 
  |}
  
Note that the Notchian client requires an [[#Set Center Chunk|Set Center Chunk]] packet when it crosses a chunk border, otherwise it'll only display render distance + 2 chunks around the chunk it spawned in.
+
To set the curser (the item currently dragged with the mouse), use -1 as Window ID and as Slot
  
The compacted array format has been adjusted so that individual entries no longer span across multiple longs, affecting the main data array and heightmaps.
+
==== Window Items ====
  
New format, 5 bits per block, containing the following references to blocks in a palette (not shown): <span style="border: solid 2px hsl(0, 90%, 60%)">1</span><span style="border: solid 2px hsl(30, 90%, 60%)">2</span><span style="border: solid 2px hsl(60, 90%, 60%)">2</span><span style="border: solid 2px hsl(90, 90%, 60%)">3</span><span style="border: solid 2px hsl(120, 90%, 60%)">4</span><span style="border: solid 2px hsl(150, 90%, 60%)">4</span><span style="border: solid 2px hsl(180, 90%, 60%)">5</span><span style="border: solid 2px hsl(210, 90%, 60%)">6</span><span style="border: solid 2px hsl(240, 90%, 60%)">6</span><span style="border: solid 2px hsl(270, 90%, 60%)">4</span><span style="border: solid 2px hsl(300, 90%, 60%)">8</span><span style="border: solid 2px hsl(330, 90%, 60%)">0</span><span style="border: solid 2px hsl(0, 90%, 30%)">7</span><span style="border: solid 2px hsl(30, 90%, 30%)">4</span><span style="border: solid 2px hsl(60, 90%, 30%)">3</span><span style="border: solid 2px hsl(90, 90%, 30%)">13</span><span style="border: solid 2px hsl(120, 90%, 30%)">15</span><span style="border: solid 2px hsl(150, 90%, 30%)">16</span><span style="border: solid 2px hsl(180, 90%, 30%)">9</span><span style="border: solid 2px hsl(210, 90%, 30%)">14</span><span style="border: solid 2px hsl(240, 90%, 30%)">10</span><span style="border: solid 2px hsl(270, 90%, 30%)">12</span><span style="border: solid 2px hsl(300, 90%, 30%)">0</span><span style="border: solid 2px hsl(330, 90%, 30%)">2</span>
+
[[File:Inventory-slots.png|thumb|The inventory slots]]
 
 
<code>0020863148418841</code> <code><span style="outline: dashed 2px black">0000</span><span style="outline: solid 2px hsl(330, 90%, 60%)">00000</span><span style="outline: solid 2px hsl(300, 90%, 60%)">01000</span><span style="outline: solid 2px hsl(270, 90%, 60%)">00100</span><span style="outline: solid 2px hsl(240, 90%, 60%)">00110</span><span style="outline: solid 2px hsl(210, 90%, 60%)">00110</span><span style="outline: solid 2px hsl(180, 90%, 60%)">00101</span><span style="outline: solid 2px hsl(150, 90%, 60%)">00100</span><span style="outline: solid 2px hsl(120, 90%, 60%)">00100</span><span style="outline: solid 2px hsl(90, 90%, 60%)">00011</span><span style="outline: solid 2px hsl(60, 90%, 60%)">00010</span><span style="outline: solid 2px hsl(30, 90%, 60%)">00010</span><span style="outline: solid 2px hsl(0, 90%, 60%)">00001</span></code><br>
 
<code>01018A7260F68C87</code> <code><span style="outline: dashed 2px black">0000</span><span style="outline: solid 2px hsl(330, 90%, 30%)">00010</span><span style="outline: solid 2px hsl(300, 90%, 30%)">00000</span><span style="outline: solid 2px hsl(270, 90%, 30%)">01100</span><span style="outline: solid 2px hsl(240, 90%, 30%)">01010</span><span style="outline: solid 2px hsl(210, 90%, 30%)">01110</span><span style="outline: solid 2px hsl(180, 90%, 30%)">01001</span><span style="outline: solid 2px hsl(150, 90%, 30%)">10000</span><span style="outline: solid 2px hsl(120, 90%, 30%)">01111</span><span style="outline: solid 2px hsl(90, 90%, 30%)">01101</span><span style="outline: solid 2px hsl(60, 90%, 30%)">00011</span><span style="outline: solid 2px hsl(30, 90%, 30%)">00100</span><span style="outline: solid 2px hsl(0, 90%, 30%)">00111</span></code>
 
 
 
==== World Event ====
 
Sent when a client is to play a sound or particle effect.
 
  
By default, the Minecraft client adjusts the volume of sound effects based on distance. The final boolean field is used to disable this, and instead the effect is played from 2 blocks away in the correct direction. Currently this is only used for effect 1023 (wither spawn), effect 1028 (enderdragon death), and effect 1038 (end portal opening); it is ignored on other effects.
+
Sent by the server when items in multiple slots (in a window) are added/removed. This includes the main inventory, equipped armour and crafting slots.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,467: Line 2,430:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="4"| 0x21
+
  |rowspan="3"| 0x30
  | rowspan="4"| Play
+
  |rowspan="3"| Play
  | rowspan="4"| Client
+
  |rowspan="3"| Client
  | Event
+
  | Window ID
  | Int
+
  | Unsigned Byte
  | The event, see below.
+
  | The ID of window which items are being sent for. 0 for player inventory.
 
  |-
 
  |-
  | Location
+
  | Count
  | Position
+
  | Short
  | The location of the event.
+
  | Number of elements in the following array
 
  |-
 
  |-
  | Data
+
  | Slot Data
  | Int
+
  | Array of [[Slot Data|Slot]]
| Extra data for certain events, see below.
+
  |  
|-
 
| Disable Relative Volume
 
| Boolean
 
  | See above.
 
 
  |}
 
  |}
  
Events:
+
See [[Inventory#Windows|inventory windows]] for further information about how slots are indexed.
 +
 
 +
==== Window Property ====
 +
 
 +
This packet is used to inform the client that part of a GUI window should be updated.
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! ID
+
  ! Packet ID
  ! Name
+
  ! State
  ! Data
+
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
! Notes
 
  |-
 
  |-
  ! colspan="3"| Sound
+
  |rowspan="3"| 0x31
 +
|rowspan="3"| Play
 +
|rowspan="3"| Client
 +
| Window ID
 +
| Unsigned Byte
 +
|
 
  |-
 
  |-
  | 1000
+
  | Property
  | Dispenser dispenses
+
  | Short
  |
+
  | The property to be updated, see below
 
  |-
 
  |-
  | 1001
+
  | Value
  | Dispenser fails to dispense
+
  | Short
|
+
| The new value for the property, see below
 +
|}
 +
 
 +
The meaning of the Property field depends on the type of the window. The following table shows the known combinations of window type and property, and how the value is to be interpreted.
 +
 
 +
{| class="wikitable"
 
  |-
 
  |-
  | 1002
+
  ! Window type
  | Dispenser shoots
+
  ! Property
  |
+
  ! Value
 
  |-
 
  |-
  | 1003
+
  |rowspan="4"| Furnace
  | Ender eye launched
+
  | 0: Fire icon (fuel left)
  |
+
  | counting from fuel burn time down to 0 (in-game ticks)
 
  |-
 
  |-
  | 1004
+
  | 1: Maximum fuel burn time
| Firework shot
+
  | fuel burn time or 0 (in-game ticks)
  |
 
 
  |-
 
  |-
  | 1005
+
  | 2: Progress arrow
| Iron door opened
+
  | 0–200 (in-game ticks)
  |
 
 
  |-
 
  |-
  | 1006
+
  | 3: Maximum progress
| Wooden door opened
+
  | always 200
  |
 
 
  |-
 
  |-
  | 1007
+
  |rowspan="7"| Enchantment Table
  | Wooden trapdoor opened
+
  | 0: Level requirement for top enchantment slot
  |
+
  |rowspan="3"| The enchantment's xp level requirement
 
  |-
 
  |-
  | 1008
+
  | 1: Level requirement for middle enchantment slot
| Fence gate opened
 
|
 
 
  |-
 
  |-
  | 1009
+
  | 2: Level requirement for bottom enchantment slot
| Fire extinguished
 
|
 
|-
 
| 1010
 
| Play record
 
| Special case, see below for more info.
 
 
  |-
 
  |-
  | 1011
+
  | 3: The seed for generating the enchantments view for the client
| Iron door closed
+
  | Unknown
  |
 
 
  |-
 
  |-
  | 1012
+
  | 4: Enchantment shown on mouse hover over top enchantment slot
  | Wooden door closed
+
  |rowspan="3"| The enchantment id (set to -1 to hide it)
|
 
 
  |-
 
  |-
  | 1013
+
  | 5: Enchantment shown on mouse hover over middle enchantment slot
| Wooden trapdoor closed
 
|
 
 
  |-
 
  |-
  | 1014
+
  | 6: Enchantment shown on mouse hover over bottom enchantment slot
| Fence gate closed
 
|
 
 
  |-
 
  |-
  | 1015
+
  |rowspan="3"| Beacon
  | Ghast warns
+
  | 0: Power level
  |
+
  | Unknown
 
  |-
 
  |-
  | 1016
+
  | 1: First potion effect
| Ghast shoots
+
  | Unknown
  |
 
 
  |-
 
  |-
  | 1017
+
  | 2: Second potion effect
| Enderdragon shoots
+
  | Unknown
  |
 
 
  |-
 
  |-
  | 1018
+
  | Anvil
  | Blaze shoots
+
  | 0: Repair cost
  |
+
  | The repair's cost in xp levels
 
  |-
 
  |-
  | 1019
+
  | Brewing Stand
  | Zombie attacks wood door
+
  | 0: Brew time
  |
+
  | 0–400, with 400 making the arrow empty, and 0 making the arrow full
  |-
+
  |}
  | 1020
+
 
  | Zombie attacks iron door
+
==== Confirm Transaction ====
  |
+
 
 +
A packet from the server indicating whether a request from the client was accepted, or whether there was a conflict (due to lag).
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
  ! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | 1021
+
  |rowspan="3"| 0x32
  | Zombie breaks wood door
+
|rowspan="3"| Play
  |
+
|rowspan="3"| Client
 +
| Window ID
 +
  | Byte
 +
  | The ID of the window that the action occurred in
 
  |-
 
  |-
  | 1022
+
  | Action Number
  | Wither breaks block
+
  | Short
  |
+
  | Every action that is to be accepted has a unique number. This field corresponds to that number.
 
  |-
 
  |-
  | 1023
+
  | Accepted
  | Wither spawned
+
  | Boolean
  |
+
  | Whether the action was accepted
 +
|}
 +
 
 +
==== Update Sign ====
 +
 
 +
This message is sent from the server to the client whenever a sign is discovered or created. This message is NOT sent when a sign is destroyed or unloaded.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | 1024
+
  |rowspan="5"| 0x33
  | Wither shoots
+
|rowspan="5"| Play
  |
+
|rowspan="5"| Client
 +
| Location
 +
  | Position
 +
  |  
 
  |-
 
  |-
  | 1025
+
  | Line 1
  | Bat takes off
+
  | [[Chat]]
  |
+
  | First line of text in the sign
 
  |-
 
  |-
  | 1026
+
  | Line 2
  | Zombie infects
+
  | [[Chat]]
  |
+
  | Second line of text in the sign
 
  |-
 
  |-
  | 1027
+
  | Line 3
  | Zombie villager converted
+
  | [[Chat]]
  |
+
  | Third line of text in the sign
 
  |-
 
  |-
  | 1028
+
  | Line 4
  | Ender dragon death
+
  | [[Chat]]
  |
+
  | Fourth line of text in the sign
  |-
+
  |}
| 1029
+
 
| Anvil destroyed
+
==== Map ====
|
+
 
|-
+
Updates a rectangular area on a map.
| 1030
+
 
  | Anvil used
+
{| class="wikitable"
  |
+
  ! Packet ID
  |-
+
  ! State
  | 1031
+
  ! Bound To
  | Anvil landed
+
  !colspan="2"| Field Name
  |
+
  !colspan="2"| Field Type
 +
  ! Notes
 
  |-
 
  |-
  | 1032
+
  |rowspan="12"| 0x34
  | Portal travel
+
|rowspan="12"| Play
  |
+
|rowspan="12"| Client
 +
  |colspan="2"| Item Damage
 +
|colspan="2"| VarInt
 +
  | The damage value (map ID) of the map being modified
 
  |-
 
  |-
  | 1033
+
  |colspan="2"| Scale
  | Chorus flower grown
+
|colspan="2"| Byte
  |
+
|
 +
|-
 +
|colspan="2"| Icon Count
 +
  |colspan="2"| VarInt
 +
  | Number of elements in the following array
 
  |-
 
  |-
  | 1034
+
  |rowspan="3"| Icon
  | Chorus flower died
+
| Direction And Type
  |
+
|rowspan="3"| Array
 +
  | Byte
 +
  | 0xF0 = Direction, 0x0F = Type
 
  |-
 
  |-
  | 1035
+
  | X
  | Brewing stand brewed
+
  | Byte
  |
+
  |  
 
  |-
 
  |-
  | 1036
+
  | Z
  | Iron trapdoor opened
+
  | Byte
  |
+
  |  
 +
|-
 +
|colspan="2"| Columns
 +
|colspan="2"| Byte
 +
| Number of columns updated
 
  |-
 
  |-
  | 1037
+
  |colspan="2"| Rows
  | Iron trapdoor closed
+
  |colspan="2"| Optional Byte
  |
+
  | Only if Columns is more than 0; number of rows updated
 
  |-
 
  |-
  | 1038
+
  |colspan="2"| X
  | End portal created in overworld
+
  |colspan="2"| Optional Byte
  |
+
  | Only if Columns is more than 0; x offset of the westernmost column
 
  |-
 
  |-
  | 1039
+
  |colspan="2"| Z
  | Phantom bites
+
  |colspan="2"| Optional Byte
  |
+
  | Only if Columns is more than 0; z offset of the northernmost row
 
  |-
 
  |-
  | 1040
+
  |colspan="2"| Length
  | Zombie converts to drowned
+
  |colspan="2"| Optional VarInt
  |
+
  | Only if Columns is more than 0; length of the following array
 
  |-
 
  |-
  | 1041
+
  |colspan="2"| Data
  | Husk converts to zombie by drowning
+
  |colspan="2"| Optional Array of Unsigned Byte
  |
+
  | Only if Columns is more than 0; see {{Minecraft Wiki|Map item format}}
 +
|}
 +
 
 +
==== Update Block Entity ====
 +
 
 +
Essentially a block update on a block entity.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | 1042
+
  |rowspan="3"| 0x35
  | Grindstone used
+
|rowspan="3"| Play
  |
+
|rowspan="3"| Client
 +
| Location
 +
  | Position
 +
  |  
 
  |-
 
  |-
  | 1043
+
  | Action
  | Book page turned
+
  | Unsigned Byte
  |
+
  | The type of update to perform, see below
 
  |-
 
  |-
 +
| NBT Data
 +
| Optional [[NBT|NBT Tag]]
 +
| If not present then it's a TAG_END (0)
 +
|}
 +
 +
''Action'' field:
 +
 +
* '''1''': Set SpawnPotentials of a mob spawner
 +
* '''2''': Set command block text (command and last execution status)
 +
* '''3''': Set the level, primary, and secondary powers of a beacon
 +
* '''4''': Set rotation and skin of mob head
 +
* '''5''': Set type of flower in flower pot
 +
* '''6''': Set base color and patterns on a banner
 +
 +
==== Open Sign Editor ====
 +
 +
Sent when the client has placed a sign and is allowed to send [[#Update Sign 2|Update Sign]].
 +
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  ! colspan="3"| Particle
+
  |rowspan="1"| 0x36
  |-
+
  |rowspan="1"| Play
  | 1500
+
  |rowspan="1"| Client
  | Composter composts
+
  | Location
  |
+
  | Position
  |-
+
  |  
  | 1501
+
  |}
  | Lava converts block (either water to stone, or removes existing blocks such as torches)
+
 
  |
+
==== Statistics ====
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
  !colspan="2"| Field Name
 +
  !colspan="2"| Field Type
 +
! Notes
 
  |-
 
  |-
  | 1502
+
  |rowspan="3"| 0x37
  | Redstone torch burns out
+
|rowspan="3"| Play
  |
+
|rowspan="3"| Client
 +
  |colspan="2"| Count
 +
|colspan="2"| VarInt
 +
  | Number of elements in the following array
 
  |-
 
  |-
  | 1503
+
  |rowspan="2"| Statistic
  | Ender eye placed
+
| Name
  |
+
|rowspan="2"| Array
 +
  | String
 +
  | [https://gist.github.com/thinkofname/a1842c21a0cf2e1fb5e0 https://gist.github.com/thinkofname/a1842c21a0cf2e1fb5e0]
 
  |-
 
  |-
  | 2000
+
  | Value
  | Spawns 10 smoke particles, e.g. from a fire
+
  | VarInt
  | Direction, see below.
+
| The amount to set it to
 +
|}
 +
 
 +
==== Player List Item ====
 +
 
 +
Sent by the notchian server to update the user list (<tab> in the client).
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
!colspan="4"| Field Name
 +
  !colspan="3"| Field Type
 +
! Notes
 
  |-
 
  |-
  | 2001
+
  |rowspan="19"| 0x38
  | Block break + block break sound
+
|rowspan="19"| Play
  | Block state, as an index into the global palette.
+
|rowspan="19"| Client
 +
|colspan="4"| Action
 +
  |colspan="3"| VarInt
 +
  | Determines the rest of the Player format after the UUID
 
  |-
 
  |-
  | 2002
+
  |colspan="4"| Number Of Players
  | Splash potion. Particle effect + glass break sound.
+
|colspan="3"| VarInt
  | RGB color as an integer (e.g. 8364543 for #7FA1FF).
+
  | Number of elements in the following array
 +
  |-
 +
|rowspan="17"| Player
 +
|colspan="3"| UUID
 +
|rowspan="17"| Array
 +
|colspan="2"| UUID
 +
|
 +
|-
 +
! Action
 +
!colspan="2"| Field Name
 +
!colspan="2"|
 +
!
 
  |-
 
  |-
  | 2003
+
  |rowspan="10"| 0: add player
  | Eye of Ender entity break animation — particles and sound
+
|colspan="2"| Name
  |
+
  |colspan="2"| String
 +
  |  
 
  |-
 
  |-
  | 2004
+
  |colspan="2"| Number Of Properties
  | Mob spawn particle effect: smoke + flames
+
  |colspan="2"| VarInt
  |
+
  | Number of elements in the following array
 
  |-
 
  |-
  | 2005
+
  |rowspan="4"| Property
  | Bonemeal particles
+
| Name
  | How many particles to spawn (if set to 0, 15 are spawned).
+
|rowspan="4"| Array
 +
  | String
 +
  |  
 
  |-
 
  |-
  | 2006
+
  | Value
  | Dragon breath
+
  | String
  |
+
|
 +
|-
 +
| Is Signed
 +
| Boolean
 +
  |  
 
  |-
 
  |-
  | 2007
+
  | Signature
  | Instant splash potion. Particle effect + glass break sound.
+
  | Optional String
  | RGB color as an integer (e.g. 8364543 for #7FA1FF).
+
  | Only if Is Signed is true
 
  |-
 
  |-
  | 2008
+
  |colspan="2"| Gamemode
  | Ender dragon destroys block
+
  |colspan="2"| VarInt
  |
+
  |  
 
  |-
 
  |-
  | 2009
+
  |colspan="2"| Ping
  | Wet sponge vaporizes in nether
+
  |colspan="2"| VarInt
  |
+
  |  
 
  |-
 
  |-
  | 3000
+
  |colspan="2"| Has Display Name
  | End gateway spawn
+
  |colspan="2"| Boolean
  |
+
  |  
 
  |-
 
  |-
  | 3001
+
  |colspan="2"| Display Name
  | Enderdragon growl
+
  |colspan="2"| Optional [[Chat]]
  |
+
  | Only if Has Display Name is true
 
  |-
 
  |-
  | 3002
+
  | 1: update gamemode
  | Electric spark
+
  |colspan="2"| Gamemode
  |
+
|colspan="2"| VarInt
 +
|
 +
|-
 +
| 2: update latency
 +
|colspan="2"| Ping
 +
|colspan="2"| VarInt
 +
  |  
 
  |-
 
  |-
  | 3003
+
  |rowspan="2"| 3: update display name
  | Copper apply wax
+
|colspan="2"| Has Display Name
  |
+
  |colspan="2"| Boolean
 +
  |  
 
  |-
 
  |-
  | 3004
+
  |colspan="2"| Display Name
  | Copper remove wax
+
  |colspan="2"| Optional [[Chat]]
  |
+
  | Only send if Has Display Name is true
 
  |-
 
  |-
  | 3005
+
  | 4: remove player
  | Copper scrape oxidation
+
  |colspan="2"| ''no fields''
  |
+
|colspan="2"| ''no fields''
 +
  |  
 
  |}
 
  |}
  
Smoke directions:
+
The Property field looks as in the response of [[Mojang API#UUID -> Profile + Skin/Cape]], except of course using the protocol format instead of JSON. That is, each player will usually have one property with Name “textures” and Value being a base64-encoded JSON string as documented at [[Mojang API#UUID -> Profile + Skin/Cape]]. An empty properties array is also acceptable, and will cause clients to display the player with one of the two default skins depending on UUID.
 +
 
 +
==== Player Abilities ====
 +
 
 +
The latter 2 floats are used to indicate the field of view and flying speed respectively, while the first byte is used to determine the value of 4 booleans.
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! ID
+
  ! Packet ID
  ! Direction
+
  ! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | 0
+
  |rowspan="3"| 0x39
  | Down
+
|rowspan="3"| Play
 +
|rowspan="3"| Client
 +
| Flags
 +
| Byte
 +
| Bit field, see below
 +
|-
 +
  | Flying Speed
 +
| Float
 +
|
 +
|-
 +
| Field of View Modifier
 +
| Float
 +
| Modifies the field of view, like a speed potion. A Notchian server will use the same value as the movement speed (send in the [[Protocol#Entity_Properties|Entity Properties]] packet).
 +
|}
 +
 
 +
About the flags:
 +
{| class="wikitable"
 
  |-
 
  |-
  | 1
+
  ! Field
  | Up
+
  ! Bit
 
  |-
 
  |-
  | 2
+
  | Invulnerable
  | North
+
  | 0x01
 
  |-
 
  |-
  | 3
+
  | Flying
  | South
+
  | 0x02
 
  |-
 
  |-
  | 4
+
  | Allow Flying
  | West
+
  | 0x04
 
  |-
 
  |-
  | 5
+
  | Creative Mode
  | East
+
  | 0x08
 
  |}
 
  |}
  
Play record: This is actually a special case within this packet. You can start/stop a record at a specific location. Use a valid {{Minecraft Wiki|Music Discs|Record ID}} to start a record (or overwrite a currently playing one), any other value will stop the record.  See [[Data Generators]] for information on item IDs.
+
==== Tab-Complete ====
  
==== Particle ====
+
The server responds with a list of auto-completions of the last word sent to it. In the case of regular chat, this is a player username. Command names and parameters are also supported.
 
 
Displays the named particle
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,795: Line 2,912:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="11"| 0x22
+
  |rowspan="2"| 0x3A
  | rowspan="11"| Play
+
  |rowspan="2"| Play
  | rowspan="11"| Client
+
  |rowspan="2"| Client
  | Particle ID
+
  | Count
 
  | VarInt
 
  | VarInt
  | The particle ID listed in [[#Particle|the particle data type]].
+
  | Number of elements in the following array
 
  |-
 
  |-
  | Long Distance
+
  | Matches
  | Boolean
+
  | Array of String
  | If true, particle distance increases from 256 to 65536.
+
  | One eligible command, note that each command is sent separately instead of in a single string, hence the need for Count
 +
|}
 +
 
 +
==== Scoreboard Objective ====
 +
 
 +
This is sent to the client when it should create a new {{Minecraft Wiki|scoreboard}} objective or remove one.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | X
+
  |rowspan="4"| 0x3B
  | Double
+
|rowspan="4"| Play
  | X position of the particle.
+
|rowspan="4"| Client
 +
| Objective Name
 +
  | String
 +
  | An unique name for the objective
 
  |-
 
  |-
  | Y
+
  | Mode
  | Double
+
  | Byte
  | Y position of the particle.
+
  | 0 to create the scoreboard. 1 to remove the scoreboard. 2 to update the display text.  
 
  |-
 
  |-
  | Z
+
  | Objective Value
  | Double
+
  | Optional String
  | Z position of the particle.
+
  | Only if mode is 0 or 2. The text to be displayed for the score
 
  |-
 
  |-
  | Offset X
+
  | Type
  | Float
+
  | Optional String
  | This is added to the X position after being multiplied by <code>random.nextGaussian()</code>.
+
  | Only if mode is 0 or 2. “integer” or “hearts”
|-
 
| Offset Y
 
| Float
 
| This is added to the Y position after being multiplied by <code>random.nextGaussian()</code>.
 
|-
 
| Offset Z
 
| Float
 
| This is added to the Z position after being multiplied by <code>random.nextGaussian()</code>.
 
|-
 
| Max Speed
 
| Float
 
|
 
|-
 
| Particle Count
 
| Int
 
| The number of particles to create.
 
|-
 
| Data
 
| Varies
 
| The variable data listed in [[#Particle|the particle data type]].
 
 
  |}
 
  |}
  
==== Update Light ====
+
==== Update Score ====
  
Updates light levels for a chunk.  See {{Minecraft Wiki|Light}} for information on how lighting works in Minecraft.
+
This is sent to the client when it should update a scoreboard item.  
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,851: Line 2,964:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! colspan="2"| Field Name
+
  ! Field Name
  ! colspan="2"| Field Type
+
  ! Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="13"| 0x23
+
  |rowspan="4"| 0x3C
  | rowspan="13"| Play
+
  |rowspan="4"| Play
  | rowspan="13"| Client
+
  |rowspan="4"| Client
  | colspan="2"| Chunk X
+
  | Score Name
  | colspan="2"| VarInt
+
  | String
  | Chunk coordinate (block coordinate divided by 16, rounded down)
+
  | The name of the score to be updated or removed
 
  |-
 
  |-
  | colspan="2"| Chunk Z
+
  | Action
  | colspan="2"| VarInt
+
  | Byte
  | Chunk coordinate (block coordinate divided by 16, rounded down)
+
  | 0 to create/update an item. 1 to remove an item.
 
  |-
 
  |-
  | colspan="2"| Trust Edges
+
  | Objective Name
  | colspan="2"| Boolean
+
  | String
  | If edges should be trusted for light updates.
+
  | The name of the objective the score belongs to
 
  |-
 
  |-
  | colspan="2"| Sky Light Mask
+
  | Value
  | colspan="2"| BitSet
+
  | Optional VarInt
  | BitSet containing bits for each section in the world + 2.  Each set bit indicates that the corresponding 16×16×16 chunk section has data in the Sky Light array below.  The least significant bit is for blocks 16 blocks to 1 block below the min world height (one section below the world), while the most significant bit covers blocks 1 to 16 blocks above the max world height (one section above the world).
+
  | The score to be displayed next to the entry. Only sent when Action does not equal 1.
|-
 
| colspan="2"| Block Light Mask
 
| colspan="2"| BitSet
 
| BitSet containing bits for each section in the world + 2.  Each set bit indicates that the corresponding 16×16×16 chunk section has data in the Block Light array below.  The order of bits is the same as in Sky Light Mask.
 
|-
 
| colspan="2"| Empty Sky Light Mask
 
| colspan="2"| BitSet
 
| BitSet containing bits for each section in the world + 2.  Each set bit indicates that the corresponding 16×16×16 chunk section has all zeros for its Sky Light data.  The order of bits is the same as in Sky Light Mask.
 
|-
 
| colspan="2"| Empty Block Light Mask
 
| colspan="2"| BitSet
 
| BitSet containing bits for each section in the world + 2.  Each set bit indicates that the corresponding 16×16×16 chunk section has all zeros for its Block Light data.  The order of bits is the same as in Sky Light Mask.
 
|-
 
| colspan="2"| Sky Light array count
 
| colspan="2"| VarInt
 
| Number of entries in the following array; should match the number of bits set in Sky Light Mask
 
|-
 
| rowspan="2"| Sky Light arrays
 
| Length
 
| rowspan="2"| Array
 
| VarInt
 
| Length of the following array in bytes (always 2048)
 
|-
 
| Sky Light array
 
| Array of 2048 bytes
 
| There is 1 array for each bit set to true in the sky light mask, starting with the lowest value.  Half a byte per light value.
 
|-
 
| colspan="2"| Block Light array count
 
| colspan="2"| VarInt
 
| Number of entries in the following array; should match the number of bits set in Block Light Mask
 
|-
 
| rowspan="2"| Block Light arrays
 
| Length
 
| rowspan="2"| Array
 
| VarInt
 
| Length of the following array in bytes (always 2048)
 
|-
 
| Block Light array
 
| Array of 2048 bytes
 
| There is 1 array for each bit set to true in the block light mask, starting with the lowest value.  Half a byte per light value.
 
 
  |}
 
  |}
  
A bit will never be set in both the block light mask and the empty block light mask, though it may be present in neither of them (if the block light does not need to be updated for the corresponding chunk section).  The same applies to the sky light mask and the empty sky light mask.
+
==== Display Scoreboard ====
  
==== Login (play) ====
+
This is sent to the client when it should display a scoreboard.
 
 
See [[Protocol Encryption]] for information on logging in.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 2,929: Line 3,000:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="20"| 0x24
+
  |rowspan="2"| 0x3D
  | rowspan="20"| Play
+
  |rowspan="2"| Play
  | rowspan="20"| Client
+
  |rowspan="2"| Client
  | Entity ID
+
  | Position
| Int
 
| The player's Entity ID (EID).
 
|-
 
| Is hardcore
 
| Boolean
 
|
 
|-
 
| Gamemode
 
| Unsigned Byte
 
| 0: Survival, 1: Creative, 2: Adventure, 3: Spectator.
 
|-
 
| Previous Gamemode
 
 
  | Byte
 
  | Byte
  | 0: survival, 1: creative, 2: adventure, 3: spectator. The hardcore flag is not included. The previous gamemode. Defaults to -1 if there is no previous gamemode. (More information needed)
+
  | The position of the scoreboard. 0: list, 1: sidebar, 2: below name.
 
  |-
 
  |-
  | Dimension Count
+
  | Score Name
  | VarInt
+
  | String
  | Size of the following array.
+
  | The unique name for the scoreboard to be displayed.
  |-
+
  |}
  | Dimension Names
+
 
  | Array of Identifier
+
==== Teams ====
  | Identifiers for all dimensions on the server.
+
 
 +
Creates and updates teams.
 +
 
 +
{| class="wikitable"
 +
  ! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | Registry Codec
+
  |rowspan="10"| 0x3E
  | [[NBT|NBT Tag Compound]]
+
|rowspan="10"| Play
  | Represents certain registries that are sent from the server and are applied on the client.
+
|rowspan="10"| Client
 +
  | Team Name
 +
| String
 +
  | A unique name for the team. (Shared with scoreboard).
 
  |-
 
  |-
  | Dimension Type
+
  | Mode
  | Identifier
+
  | Byte
  | Name of the dimension type being spawned into.
+
  | If 0 then the team is created.
 +
 
 +
If 1 then the team is removed.
 +
 
 +
If 2 the team team information is updated.
 +
 
 +
If 3 then new players are added to the team.
 +
 
 +
If 4 then players are removed from the team.
 
  |-
 
  |-
  | Dimension Name
+
  | Team Display Name
  | Identifier
+
  | Optional String
  | Name of the dimension being spawned into.
+
  | Only if Mode = 0 or 2.
 
  |-
 
  |-
  | Hashed seed
+
  | Team Prefix
  | Long
+
  | Optional String
  | First 8 bytes of the SHA-256 hash of the world's seed. Used client side for biome noise
+
  | Only if Mode = 0 or 2. Displayed before the players' name that are part of this team
 
  |-
 
  |-
  | Max Players
+
  | Team Suffix
  | VarInt
+
  | Optional String
  | Was once used by the client to draw the player list, but now is ignored.
+
  | Only if Mode = 0 or 2. Displayed after the players' name that are part of this team
 
  |-
 
  |-
  | View Distance
+
  | Friendly Fire
  | VarInt
+
  | Optional Byte
  | Render distance (2-32).
+
  | Only if Mode = 0 or 2. 0 for off, 1 for on, 3 for seeing friendly invisibles
 
  |-
 
  |-
  | Simulation Distance
+
  | Name Tag Visibility
  | VarInt
+
  | Optional String
  | The distance that the client will process specific things, such as entities.
+
  | Only if Mode = 0 or 2. always, hideForOtherTeams, hideForOwnTeam, never
 
  |-
 
  |-
  | Reduced Debug Info
+
  | Color
  | Boolean
+
  | Optional Byte
  | If true, a Notchian client shows reduced information on the {{Minecraft Wiki|debug screen}}.  For servers in development, this should almost always be false.
+
  | Only if Mode = 0 or 2. Same as [[Chat]] colors
 
  |-
 
  |-
  | Enable respawn screen
+
  | Player Count
  | Boolean
+
  | Optional VarInt
  | Set to false when the doImmediateRespawn gamerule is true.
+
  | Only if Mode = 0 or 3 or 4. Number of players in the array
 
  |-
 
  |-
  | Is Debug
+
  | Players
  | Boolean
+
  | Optional Array of String
  | True if the world is a {{Minecraft Wiki|debug mode}} world; debug mode worlds cannot be modified and have predefined blocks.
+
  | Only if Mode = 0 or 3 or 4. Players to be added/remove from the team. Max 40 characters so may be uuid's later
|-
 
| Is Flat
 
| Boolean
 
| True if the world is a {{Minecraft Wiki|superflat}} world; flat worlds have different void fog and a horizon at y=0 instead of y=63.
 
|-
 
| Has death location
 
| Boolean
 
| If true, then the next two fields are present.
 
|-
 
| Death dimension name
 
| Identifier
 
| Name of the dimension the player died in.
 
|-
 
| Death location
 
| Position
 
| The location that the player died at.
 
 
  |}
 
  |}
  
 +
==== Plugin Message ====
  
The '''Registry Codec''' NBT Tag Compound ([https://gist.github.com/rj00a/f2970a8ce4d09477ec8f16003b9dce86 Default value in JSON as of 1.19], [https://gist.github.com/nikes/aff59b758a807858da131a1881525b14 1.19.2]) includes three registries: "minecraft:dimension_type", "minecraft:worldgen/biome", and "minecraft:chat_type".
+
Mods and plugins can use this to send their data. Minecraft itself uses a number of [[plugin channel]]s. These internal channels are prefixed with <code>MC|</code>.
 +
 
 +
More documentation on this: [http://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/ http://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/]
  
 
{| class="wikitable"
 
{| class="wikitable"
  !Name
+
  ! Packet ID
  !Type
+
! State
  !style="width: 250px;" colspan="2"| Notes
+
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | minecraft:dimension_type
+
  |rowspan="2"| 0x3F
  | TAG_Compound
+
|rowspan="2"| Play
  | The dimension type registry (see below).
+
|rowspan="2"| Client
 +
| Channel
 +
  | String
 +
  | Name of the [[plugin channel]] used to send the data
 
  |-
 
  |-
  | minecraft:worldgen/biome
+
  | Data
  | TAG_Compound
+
  | Byte Array
  | The biome registry (see below).
+
  | Any data, depending on the channel. <code><nowiki>MC|</nowiki></code> channels are documented [[plugin channel|here]].
|-
 
| minecraft:chat_type
 
| TAG_Compound
 
| The chat type registry (see below).
 
 
  |}
 
  |}
  
Dimension type registry:
+
==== Disconnect ====
 +
 
 +
Sent by the server before it disconnects a client. The client assumes that the server has already closed the connection by the time the packet arrives.
  
 
{| class="wikitable"
 
{| class="wikitable"
  !Name
+
  ! Packet ID
  !Type
+
! State
  !style="width: 250px;" colspan="2"| Notes
+
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | type
+
  | 0x40
  | TAG_String
+
  |rowspan="1"| Play
  | The name of the registry. Always "minecraft:dimension_type".
+
  |rowspan="1"| Client
|-
+
  | Reason
  | value
+
  | [[Chat]]
  | TAG_List
+
  | Displayed to the client when the connection terminates.
  | List of dimension types registry entries (see below).
 
 
  |}
 
  |}
  
Dimension type registry entry:
+
==== Server Difficulty ====
 +
 
 +
Changes the difficulty setting in the client's option menu
  
 
{| class="wikitable"
 
{| class="wikitable"
  !Name
+
  ! Packet ID
  !Type
+
! State
  !style="width: 250px;" colspan="2"| Notes
+
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | name
+
  |rowspan="1"| 0x41
| TAG_String
+
  |rowspan="1"| Play
  | The name of the dimension type (for example, "minecraft:overworld").
+
  |rowspan="1"| Client
|-
+
  | Difficulty
  | id
+
  | Unsigned Byte
| TAG_Int
+
  | 0: peaceful, 1: easy, 2: normal, 3: hard
  | The protocol ID of the dimension (matches the index of the element in the registry list).
 
  |-
 
  | element
 
| TAG_Compound
 
| The dimension type (see below).
 
 
  |}
 
  |}
  
Dimension type:
+
==== Combat Event ====
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! Name
+
  ! Packet ID
  ! Type
+
! State
  !style="width: 250px;" colspan="2"| Meaning
+
! Bound To
  ! Values
+
  ! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | piglin_safe
+
  |rowspan="5"| 0x42
  | TAG_Byte
+
  |rowspan="5"| Play
  | colspan="2"| Whether piglins shake and transform to zombified piglins.
+
  |rowspan="5"| Client
  | 1: true, 0: false.
+
| Event
 +
| VarInt
 +
  | 0: enter combat, 1: end combat, 2: entity dead
 
  |-
 
  |-
  | has_raids
+
  | Duration
  | TAG_Byte
+
  | Optional VarInt
  | colspan="2"| Whether players with the Bad Omen effect can cause a raid.
+
  | Only for end combat
| 1: true, 0: false.
 
 
  |-
 
  |-
  | monster_spawn_light_level
+
  | Player ID
  | TAG_Int or TAG_Compound
+
  | Optional VarInt
  | Possibly the light level(s) at which monsters can spawn.
+
  | Only for entity dead
| colspan="2"| When TAG_Int, 0 - 15. When TAG_Compound, contains the fields: type (TAG_String), appears to be always "minecraft:uniform", and value (TAG_Compound), which contains the fields: max_inclusive (TAG_Int), min_inclusive (TAG_Int).
 
 
  |-
 
  |-
  | monster_spawn_block_light_limit
+
  | Entity ID
  | TAG_Int
+
  | Optional Int
| colspan="2"|
+
  | Only for end combat and entity dead
  |
 
 
  |-
 
  |-
  | natural
+
  | Message
  | TAG_Byte
+
  | String
  | colspan="2"| When false, compasses spin randomly. When true, nether portals can spawn zombified piglins.
+
  | Only for entity dead
| 1: true, 0: false.
 
|-
 
| ambient_light
 
| TAG_Float
 
| colspan="2"| How much light the dimension has.
 
| 0.0 to 1.0.
 
|-
 
| fixed_time
 
| Optional TAG_Long
 
| colspan="2"| If set, the time of the day is the specified value.
 
| If set, 0 to 24000.
 
|-
 
| infiniburn
 
| TAG_String
 
| colspan="2"| A resource location defining what block tag to use for infiniburn.
 
| "#" or minecraft resource "#minecraft:...".
 
|-
 
| respawn_anchor_works
 
| TAG_Byte
 
| colspan="2"| Whether players can charge and use respawn anchors.
 
| 1: true, 0: false.
 
|-
 
| has_skylight
 
| TAG_Byte
 
| colspan="2"| Whether the dimension has skylight access or not.
 
| 1: true, 0: false.
 
|-
 
| bed_works
 
| TAG_Byte
 
| colspan="2"| Whether players can use a bed to sleep.
 
| 1: true, 0: false.
 
|-
 
| effects
 
| TAG_String
 
| colspan="2"| ?
 
| "minecraft:overworld", "minecraft:the_nether", "minecraft:the_end" or something else.
 
|-
 
| min_y
 
| TAG_Int
 
| colspan="2"| The minimum Y level.
 
| A multiple of 16. Example: -64
 
|-
 
| height
 
| TAG_Int
 
| colspan="2"| The maximum height.
 
| A multiple of 16. Example: 256
 
|-
 
| logical_height
 
| TAG_Int
 
| colspan="2"| The maximum height to which chorus fruits and nether portals can bring players within this dimension.
 
| 0-384.
 
|-
 
| coordinate_scale
 
| TAG_Double
 
| colspan="2"| The multiplier applied to coordinates when traveling to the dimension.
 
| 0.00001 - 30000000.0
 
|-
 
| ultrawarm
 
| TAG_Byte
 
| colspan="2"| Whether the dimensions behaves like the nether (water evaporates and sponges dry) or not. Also causes lava to spread thinner.
 
| 1: true, 0: false.
 
|-
 
| has_ceiling
 
| TAG_Byte
 
| colspan="2"| Whether the dimension has a bedrock ceiling or not. When true, causes lava to spread faster.
 
| 1: true, 0: false.
 
 
  |}
 
  |}
  
Biome registry:
+
==== Camera ====
 +
 
 +
Sets the entity that the player renders from.  This is normally used when the left-clicks an entity while in spectator mode.
 +
 
 +
The player's camera will move with the entity and look where it is looking. The entity is often another player, but can be any type of entity.  The player is unable to move this entity (move packets will act as if they are coming from the other entity).
  
{| class="wikitable"
+
If the given entity is not loaded by the player, this packet is ignoredTo return control to the player, send this packet with their entity ID.
!Name
 
!Type
 
!style="width: 250px;" colspan="2"| Notes
 
|-
 
| type
 
| TAG_String
 
| The name of the registry. Always "minecraft:worldgen/biome".
 
  |-
 
| value
 
| TAG_List
 
| List of biome registry entries (see below).
 
|}
 
  
Biome registry entry:
+
The Notchian server resets this (sends it back to the default entity) whenever the spectated entity is killed or the player sneaks, but only if they were spectating an entity. It also sends this packet whenever the player switches out of spectator mode (even if they weren't spectating an entity).
  
 
{| class="wikitable"
 
{| class="wikitable"
  !Name
+
  ! Packet ID
  !Type
+
! State
  !style="width: 250px;" colspan="2"| Notes
+
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | name
+
  |rowspan="1"| 0x43
  | TAG_String
+
  |rowspan="1"| Play
  | The name of the biome (for example, "minecraft:ocean").
+
  |rowspan="1"| Client
|-
+
  | Camera ID
  | id
+
  | VarInt
  | TAG_Int
+
  | ID of the entity to set the client's camera to
  | The protocol ID of the biome (matches the index of the element in the registry list).
 
|-
 
| element
 
| TAG_Compound
 
| The biome properties (see below).
 
 
  |}
 
  |}
  
Biome properties:
+
The notchian also loads certain shaders for given entities:
 +
 
 +
* Creeper &rarr; <code>shaders/post/creeper.json</code>
 +
* Spider (and cave spider) &rarr; <code>shaders/post/spider.json</code>
 +
* Enderman &rarr; <code>shaders/post/invert.json</code>
 +
* Anything else &rarr; the current shader is unloaded
 +
 
 +
==== World Border ====
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! colspan="3"|Name
+
  ! Packet ID
  ! colspan="2"|Type
+
! State
  !style="width: 250px;" colspan="2"| Meaning
+
! Bound To
  ! colspan="2"|Values
+
  !colspan="2"| Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | colspan="3"|precipitation
+
  |rowspan="18"| 0x44
  | colspan="2"|TAG_String
+
  |rowspan="18"| Play
  | colspan="2"| The type of precipitation in the biome.
+
  |rowspan="18"| Client
  | colspan="2"|"rain", "snow", or "none".
+
  |colspan="2"| Action
 +
| VarInt
 +
| Determines the format of the rest of the packet
 
  |-
 
  |-
  | colspan="3"| depth
+
  ! Action
  | colspan="2"| Optional TAG_Float
+
  ! Field Name
  | colspan="2"| The depth factor of the biome.
+
  !
  | colspan="2"| The default values vary between 1.5 and -1.8.
+
  !
 
  |-
 
  |-
  | colspan="3"| temperature
+
  | 0: set size
  | colspan="2"| TAG_Float
+
  | Radius
  | colspan="2"| The temperature factor of the biome.
+
  | Double
  | colspan="2"| The default values vary between 2.0 and -0.5.
+
  | meters
 
  |-
 
  |-
  | colspan="3"| scale
+
  |rowspan="3"| 1: lerp size
  | colspan="2"| Optional TAG_Float
+
  | Old Radius
  | colspan="2"| ?
+
  | Double
  | colspan="2"| The default values vary between 1.225 and 0.0.
+
  | meters
 
  |-
 
  |-
  | colspan="3"| downfall
+
  | New Radius
  | colspan="2"| TAG_Float
+
  | Double
  | colspan="2"| ?
+
  | meters
| colspan="2"| The default values vary between 1.0 and 0.0.
 
 
  |-
 
  |-
  | colspan="3"| category
+
  | Speed
  | colspan="2"| Optional TAG_String
+
  | VarLong
  | colspan="2"| The category of the biome.
+
  | number of real-time ticks/seconds (?) until New Radius is reached. From experiments, it appears that Notchian server does not sync world border speed to game ticks, so it gets out of sync with server lag
| colspan="2"| Known values are "ocean", "plains", "desert", "forest", "extreme_hills", "taiga", "swamp", "river", "nether", "the_end", "icy", "mushroom", "beach", "jungle", "mesa", "savanna", and "none".
 
 
  |-
 
  |-
  | colspan="3"| temperature_modifier
+
  |rowspan="2"| 2: set center
  | colspan="2"| Optional TAG_String
+
  | X
  | colspan="2"| ?
+
  | Double
  | colspan="2"| The only known value is "frozen".
+
  |  
 
  |-
 
  |-
  | rowspan="13"| effects
+
  | Z
  | colspan="2"| sky_color
+
  | Double
| rowspan="11"| TAG_Compound
+
  |  
| TAG_Int
 
| colspan="2"| The color of the sky.
 
  | Example: 8364543, which is #7FA1FF in RGB.
 
 
  |-
 
  |-
  | colspan="2"| water_fog_color
+
  |rowspan="8"| 3: initialize
  | TAG_Int
+
  | X
  | colspan="2"| Possibly the tint color when swimming.
+
  | Double
  | Example: 8364543, which is #7FA1FF in RGB.
+
  |  
 
  |-
 
  |-
  | colspan="2"| fog_color
+
  | Z
  | TAG_Int
+
  | Double
| colspan="2"| Possibly the color of the fog effect when looking past the view distance.
+
  |  
  | Example: 8364543, which is #7FA1FF in RGB.
 
 
  |-
 
  |-
  | colspan="2"| water_color
+
  | Old Radius
  | TAG_Int
+
  | Double
| colspan="2"| The tint color of the water blocks.
+
  |  
  | Example: 8364543, which is #7FA1FF in RGB.
 
 
  |-
 
  |-
  | colspan="2"| foliage_color
+
  | New Radius
  | Optional TAG_Int
+
  | Double
| colspan="2"| The tint color of the grass.
+
  |  
  | Example: 8364543, which is #7FA1FF in RGB.
 
 
  |-
 
  |-
  | colspan="2"| grass_color
+
  | Speed
  | Optional TAG_Int
+
  | VarLong
| colspan="2"| ?
+
  |  
  | Example: 8364543, which is #7FA1FF in RGB.
 
 
  |-
 
  |-
  | colspan="2"| grass_color_modifier
+
  | Portal Teleport Boundary
  | Optional TAG_String
+
  | VarInt
  | colspan="2"| Unknown, likely affects foliage color.
+
  | Resulting coordinates from a portal teleport are limited to +-value. Usually 29999984.
| If set, known values are "swamp" and "dark_forest".
 
 
  |-
 
  |-
  | colspan="2"| music
+
  | Warning Time
  | Optional TAG_Compound
+
  | VarInt
| colspan="2"| Music properties for the biome.
+
  |  
  | If present, contains the fields: replace_current_music (TAG_Byte), sound (TAG_String), max_delay (TAG_Int), min_delay (TAG_Int).
 
 
  |-
 
  |-
  | colspan="2"| ambient_sound
+
  | Warning Blocks
| Optional TAG_String
+
  | VarInt
| colspan="2"| Ambient soundtrack.
 
| If present, the ID of a soundtrack. Example: "minecraft:ambient.basalt_deltas.loop".
 
|-
 
| colspan="2"| additions_sound
 
| Optional TAG_Compound
 
| colspan="2"| Additional ambient sound that plays randomly.
 
| If present, contains the fields: sound (TAG_String), tick_chance (TAG_Double).
 
|-
 
| colspan="2"| mood_sound
 
| Optional TAG_Compound
 
| colspan="2"| Additional ambient sound that plays at an interval.
 
| If present, contains the fields: sound (TAG_String), tick_delay (TAG_Int), offset (TAG_Double), block_search_extent (TAG_Int).
 
|-
 
| rowspan="2"| particle
 
| probability
 
| rowspan="2"| Optional TAG_Compound
 
| TAG_FLOAT
 
| rowspan="2"| Particles that appear randomly in the biome.
 
| Possibly the probability of spawning the particle.
 
| ?
 
|-
 
| options
 
| TAG_COMPOUND
 
| The properties of the particle to spawn.
 
| Contains the field "type" (TAG_String), which identifies the particle type.
 
|}
 
 
 
Chat registry:
 
 
 
{| class="wikitable"
 
!Name
 
!Type
 
!style="width: 250px;" colspan="2"| Notes
 
|-
 
| type
 
| TAG_String
 
| The name of the registry. Always "minecraft:chat_type".
 
|-
 
| value
 
| TAG_List
 
| List of chat type registry entries (see below).
 
|}
 
 
 
Chat type:
 
 
 
{| class="wikitable"
 
!Name
 
!Type
 
!style="width: 250px;" colspan="2"| Notes
 
|-
 
| name
 
| TAG_String
 
| The type's name (eg "minecraft:chat")
 
|-
 
| id
 
  | TAG_Int
 
 
  |  
 
  |  
 
  |-
 
  |-
  | elements
+
  |rowspan="1"| 4: set warning time
| TAG_Compound
+
| Warning Time
| "chat" and "narration" TAG_Compound's (see below)
+
  | VarInt
|}
+
  | unit?
 
 
Chat type "chat" and "narration":
 
 
 
{| class="wikitable"
 
  !Name
 
!Type
 
  !style="width: 250px;" colspan="2"| Notes
 
 
  |-
 
  |-
  | translation_key
+
  |rowspan="1"| 5: set warning blocks
  | TAG_String
+
| Warning Blocks
 +
  | VarInt
 
  |  
 
  |  
|-
 
| style
 
| TAG_Compound
 
| Similar to Chat JSON (only present in "chat" TAG_Compound)
 
|-
 
| parameters
 
| TAG_List of TAG_String
 
| Values can be "sender", "target" and "content"
 
 
  |}
 
  |}
  
==== Map Data ====
+
==== Title ====  
 
 
Updates a rectangular area on a {{Minecraft Wiki|map}} item.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,383: Line 3,308:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! colspan="2"| Field Name
+
  !colspan="2"| Field Name
  ! colspan="2"| Field Type
+
  ! Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="17"| 0x25
+
  |rowspan="9"| 0x45
  | rowspan="17"| Play
+
  |rowspan="9"| Play
  | rowspan="17"| Client
+
  |rowspan="9"| Client
  | colspan="2"| Map ID
+
  |colspan="2"| Action
  | colspan="2"| VarInt
+
  | VarInt
  | Map ID of the map being modified
+
  |  
 
  |-
 
  |-
  | colspan="2"| Scale
+
  ! Action
  | colspan="2"| Byte
+
  ! Field Name
  | From 0 for a fully zoomed-in map (1 block per pixel) to 4 for a fully zoomed-out map (16 blocks per pixel)
+
  !
 +
!
 
  |-
 
  |-
  | colspan="2"| Locked
+
  | 0: set title
  | colspan="2"| Boolean
+
| Title Text
  | True if the map has been locked in a cartography table
+
  | [[Chat]]
 +
  |  
 
  |-
 
  |-
  | colspan="2"| Icon Count
+
  | 1: set subtitle
  | colspan="2"| VarInt
+
| Subtitle Text
  | Number of elements in the following array. Only present if "Tracking Position" is true.
+
  | [[Chat]]
 +
  |  
 
  |-
 
  |-
  | rowspan="6"| Icon
+
  |rowspan="3"| 2: set times and display
  | Type
+
  | Fade In
  | rowspan="6"| Array
+
  | Int
| VarInt Enum
+
  | ticks
  | See below
 
 
  |-
 
  |-
  | X
+
  | Stay
  | Byte
+
  | Int
  | Map coordinates: -128 for furthest left, +127 for furthest right
+
  | ticks
 
  |-
 
  |-
  | Z
+
  | Fade Out
  | Byte
+
  | Int
  | Map coordinates: -128 for highest, +127 for lowest
+
  | ticks
 
  |-
 
  |-
  | Direction
+
  | 3: hide
  | Byte
+
  | ''no fields''
  | 0-15
+
| ''no fields''
 +
  |  
 
  |-
 
  |-
  | Has Display Name
+
  | 4: reset
  | Boolean
+
  | ''no fields''
  |
+
  | ''no fields''
  |-
+
  |  
| Display Name
 
| Optional [[Chat]]
 
| Only present if previous Boolean is true
 
|-
 
| colspan="2"| Columns
 
| colspan="2"| Unsigned Byte
 
| Number of columns updated
 
|-
 
| colspan="2"| Rows
 
| colspan="2"| Optional Unsigned Byte
 
| Only if Columns is more than 0; number of rows updated
 
|-
 
| colspan="2"| X
 
| colspan="2"| Optional Byte
 
| Only if Columns is more than 0; x offset of the westernmost column
 
|-
 
| colspan="2"| Z
 
| colspan="2"| Optional Byte
 
| Only if Columns is more than 0; z offset of the northernmost row
 
|-
 
| colspan="2"| Length
 
| colspan="2"| Optional VarInt
 
| Only if Columns is more than 0; length of the following array
 
|-
 
| colspan="2"| Data
 
| colspan="2"| Optional Array of Unsigned Byte
 
| Only if Columns is more than 0; see {{Minecraft Wiki|Map item format}}
 
 
  |}
 
  |}
  
For icons, a direction of 0 is a vertical icon and increments by 22.5&deg; (360/16).
+
“Hide” makes the title disappear, but if you run times again the same title will appear. “Reset” erases the text.
  
Types are based off of rows and columns in <code>map_icons.png</code>:
+
==== Set Compression ====
 +
 
 +
{{Warning|This packet is completely broken and has been removed in the 1.9 snapshots. The packet [[#Set Compression 2|Set Compression]] ([[#Login|Login]], 0x03, clientbound) should be used instead.}}
  
 
{| class="wikitable"
 
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  ! Icon type
+
|rowspan="1"| 0x46
  ! Result
+
|rowspan="1"| Play
 +
|rowspan="1"| Client
 +
| Threshold
 +
| VarInt
 +
| Packets of this size or higher ''may'' be compressed
 +
|}
 +
 
 +
==== Player List Header And Footer ====
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | 0
+
  |rowspan="2"| 0x47
  | White arrow (players)
+
|rowspan="2"| Play
 +
|rowspan="2"| Client
 +
| Header
 +
| [[Chat]]
 +
  |  
 
  |-
 
  |-
  | 1
+
  | Footer
  | Green arrow (item frames)
+
  | [[Chat]]
 +
|
 +
|}
 +
 
 +
==== Resource Pack Send ====
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | 2
+
  |rowspan="2"| 0x48
  | Red arrow
+
|rowspan="2"| Play
 +
|rowspan="2"| Client
 +
| URL
 +
| String
 +
  | The URL to the resource pack.
 
  |-
 
  |-
  | 3
+
  | Hash
  | Blue arrow
+
  | String
  |-
+
  | A 40 character hexadecimal and lowercase [[wikipedia:SHA-1|SHA-1]] hash of the resource pack file. (must be lower case in order to work)<br />If it's not a 40 character hexadecimal string, the client will not use it for hash verification and likely waste bandwidth — but it will still treat it as a unique id
  | 4
+
  |}
  | White cross
+
 
  |-
+
==== Update Entity NBT ====
  | 5
+
 
  | Red pointer
+
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
  ! Bound To
 +
  ! Field Name
 +
  ! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | 6
+
  |rowspan="2"| 0x49
  | White circle (off-map players)
+
|rowspan="2"| Play
 +
|rowspan="2"| Client
 +
| Entity ID
 +
| VarInt
 +
  |  
 
  |-
 
  |-
  | 7
+
  | Tag
  | Small white circle (far-off-map players)
+
  | [[NBT|NBT Tag]]
 +
|
 +
|}
 +
 
 +
=== Serverbound ===
 +
 
 +
==== Keep Alive ====
 +
 
 +
The server will frequently send out a keep-alive, each containing a random ID. The client must respond with the same packet.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | 8
+
  |rowspan="1"| 0x00
| Mansion
+
  |rowspan="1"| Play
|-
+
  |rowspan="1"| Server
  | 9
+
  | Keep Alive ID
| Temple
+
  | VarInt
  |-
+
  |  
| 10
+
  |}
  | White Banner
+
 
  |-
+
==== Chat Message ====
  | 11
 
  | Orange Banner
 
|-
 
| 12
 
| Magenta Banner
 
|-
 
| 13
 
| Light Blue Banner
 
|-
 
| 14
 
| Yellow Banner
 
|-
 
| 15
 
| Lime Banner
 
|-
 
| 16
 
| Pink Banner
 
|-
 
| 17
 
| Gray Banner
 
|-
 
| 18
 
| Light Gray Banner
 
|-
 
| 19
 
| Cyan Banner
 
|-
 
| 20
 
| Purple Banner
 
|-
 
| 21
 
| Blue Banner
 
|-
 
| 22
 
| Brown Banner
 
|-
 
| 23
 
| Green Banner
 
|-
 
| 24
 
| Red Banner
 
|-
 
| 25
 
| Black Banner
 
|-
 
| 26
 
| Treasure marker
 
|}
 
  
==== Merchant Offers ====
+
The default server will check the message to see if it begins with a '/'. If it doesn't, the username of the sender is prepended and sent to all other clients (including the original sender). If it does, the server assumes it to be a command and attempts to process it. A message longer than 100 characters will cause the server to kick the client. This change was initially done by allowing the client to not slice the message up to 119 (the previous limit), without changes to the server. For this reason, the vanilla server kept the code to cut messages at 119, but this isn't a protocol limitation and can be ignored.
 
 
The list of trades a villager NPC is offering.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,556: Line 3,476:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! colspan="2"| Field Name
+
  ! Field Name
  ! colspan="2"| Field Type
+
  ! Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="18"| 0x26
+
  |rowspan="1"| 0x01
  | rowspan="18"| Play
+
  |rowspan="1"| Play
  | rowspan="18"| Client
+
  |rowspan="1"| Server
|-
+
  | Message
| colspan="2"| Window ID
+
  | String
| colspan="2"| VarInt
+
  | The client sends the raw input, not [[Chat]]
| The ID of the window that is open; this is an int rather than a byte.
+
  |}
|-
+
 
| colspan="2"| Size
+
==== Use Entity ====
| colspan="2"| VarInt
 
| The number of trades in the following array.
 
|-
 
| rowspan="10"| Trades
 
| Input item 1
 
| rowspan="10"| Array
 
| [[Slot]]
 
| The first item the player has to supply for this villager trade. The count of the item stack is the default "price" of this trade.
 
|-
 
  | Output item
 
  | [[Slot]]
 
  | The item the player will receive from this villager trade.
 
|-
 
| Input item 2
 
| [[Slot]]
 
  | The second item the player has to supply for this villager trade; only present if has a second item is true.
 
|-
 
| Trade disabled
 
| Boolean
 
| True if the trade is disabled; false if the trade is enabled.
 
|-
 
| Number of trade uses
 
| Int
 
| Number of times the trade has been used so far. If equal to the maximum number of trades, the client will display a red X.
 
|-
 
| Maximum number of trade uses
 
| Int
 
| Number of times this trade can be used before it's exhausted.
 
|-
 
| XP
 
| Int
 
| Amount of XP the villager will earn each time the trade is used.
 
|-
 
| Special Price
 
| Int
 
| Can be zero or negative. The number is added to the price when an item is discounted due to player reputation or other effects.
 
|-
 
| Price Multiplier
 
| Float
 
| Can be low (0.05) or high (0.2). Determines how much demand, player reputation, and temporary effects will adjust the price.
 
|-
 
| Demand
 
| Int
 
| If positive, causes the price to increase. Negative values seem to be treated the same as zero.
 
|-
 
| colspan="2"| Villager level
 
| colspan="2"| VarInt
 
| Appears on the trade GUI; meaning comes from the translation key <code>merchant.level.</code> + level.
 
1: Novice, 2: Apprentice, 3: Journeyman, 4: Expert, 5: Master.
 
|-
 
| colspan="2"| Experience
 
| colspan="2"| VarInt
 
| Total experience for this villager (always 0 for the wandering trader).
 
|-
 
| colspan="2"| Is regular villager
 
| colspan="2"| Boolean
 
| True if this is a regular villager; false for the wandering trader.  When false, hides the villager level and some other GUI elements.
 
|-
 
| colspan="2"| Can restock
 
| colspan="2"| Boolean
 
| True for regular villagers and false for the wandering trader. If true, the "Villagers restock up to two times per day." message is displayed when hovering over disabled trades.
 
|}
 
  
Modifiers can increase or decrease the number of items for the first input slot. The second input slot and the output slot never change the nubmer of items. The number of items may never be less than 1, and never more than the stack size. If special price and demand are both zero, only the default price is displayed. If either is non-zero, then the adjusted price is displayed next to the crossed-out default price. The adjusted prices is calculated as follows:
+
This packet is sent from the client to the server when the client attacks or right-clicks another entity (a player, minecart, etc).
  
Adjusted price = default price + floor(default price x multiplier x demand) + special price
+
A Notchian server only accepts this packet if the entity being attacked/used is visible without obstruction and within a 4-unit radius of the player's position.
 
 
[[File:1.14-merchant-slots.png|thumb|The merchant UI, for reference]]
 
{{-}}
 
 
 
==== Update Entity Position ====
 
  
This packet is sent by the server when an entity moves less then 8 blocks; if an entity moves more than 8 blocks [[#Teleport Entity|Teleport Entity]] should be sent instead.
+
Note that middle-click in creative mode is interpreted by the client and sent as a [[#Creative Inventory Action|Creative Inventory Action]] packet instead.
 
 
This packet allows at most 8 blocks movement in any direction, because short range is from -32768 to 32767. And <code>32768 / (128 * 32)</code> = 8.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,653: Line 3,504:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="5"| 0x27
+
  |rowspan="5"| 0x02
  | rowspan="5"| Play
+
  |rowspan="5"| Play
  | rowspan="5"| Client
+
  |rowspan="5"| Server
  | Entity ID
+
  | Target
 
  | VarInt
 
  | VarInt
  |
+
  |  
 
  |-
 
  |-
  | Delta X
+
  | Type
  | Short
+
  | VarInt
  | Change in X position as <code>(currentX * 32 - prevX * 32) * 128</code>.
+
  | 0: interact, 1: attack, 2: interact at
 
  |-
 
  |-
  | Delta Y
+
  | Target X
  | Short
+
  | Optional Float
  | Change in Y position as <code>(currentY * 32 - prevY * 32) * 128</code>.
+
  | Only if Type is interact at
 
  |-
 
  |-
  | Delta Z
+
  | Target Y
  | Short
+
  | Optional Float
  | Change in Z position as <code>(currentZ * 32 - prevZ * 32) * 128</code>.
+
  | Only if Type is interact at
 
  |-
 
  |-
  | On Ground
+
  | Target Z
  | Boolean
+
  | Optional Float
  |
+
  | Only if Type is interact at
 
  |}
 
  |}
  
==== Update Entity Position and Rotation ====
+
==== Player ====
 +
 
 +
This packet as well as [[#Player Position|Player Position]] ([[#Play|Play]], 0x04, serverbound), [[#Player Look|Player Look]] ([[#Play|Play]], 0x05, serverbound), and [[#Player Position And Look 2|Player Position And Look]] ([[#Play|Play]], 0x06, serverbound) are called the “serverbound movement packets”. At least one of them must be sent on each tick to ensure that servers will update things like player health correctly. Vanilla clients will send Player Position once every 20 ticks even for a stationary player, and Player on every other tick.
  
This packet is sent by the server when an entity rotates and moves. Since a short range is limited from -32768 to 32767, and movement is offset of fixed-point numbers, this packet allows at most 8 blocks movement in any direction. (<code>-32768 / (32 * 128) == -8</code>)
+
This packet is used to indicate whether the player is on ground (walking/swimming), or airborne (jumping/falling).
 +
 
 +
When dropping from sufficient height, fall damage is applied when this state goes from false to true. The amount of damage applied is based on the point where it last changed from true to false. Note that there are several movement related packets containing this state.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,689: Line 3,544:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="7"| 0x28
+
  |rowspan="1"| 0x03
  | rowspan="7"| Play
+
  |rowspan="1"| Play
  | rowspan="7"| Client
+
  |rowspan="1"| Server
| Entity ID
 
| VarInt
 
|
 
|-
 
| Delta X
 
| Short
 
| Change in X position as <code>(currentX * 32 - prevX * 32) * 128</code>.
 
|-
 
| Delta Y
 
| Short
 
| Change in Y position as <code>(currentY * 32 - prevY * 32) * 128</code>.
 
|-
 
| Delta Z
 
| Short
 
| Change in Z position as <code>(currentZ * 32 - prevZ * 32) * 128</code>.
 
|-
 
| Yaw
 
| Angle
 
| New angle, not a delta.
 
|-
 
| Pitch
 
| Angle
 
| New angle, not a delta.
 
|-
 
 
  | On Ground
 
  | On Ground
 
  | Boolean
 
  | Boolean
  |
+
  | True if the client is on the ground, false otherwise
 
  |}
 
  |}
  
==== Update Entity Rotation ====
+
==== Player Position ====
  
This packet is sent by the server when an entity rotates.
+
Updates the player's XYZ position on the server.
 +
 
 +
If the distance between the last known position of the player on the server and the new position set by this packet is greater than 100 units, this will result in the client being kicked for “You moved too quickly :( (Hacking?)”
 +
 
 +
If the distance is greater than 10 units, the server will log the warning message "<name> moved too quickly!", followed by two coordinate triples (maybe movement delta?), but will not kick the client.
 +
 
 +
Also if the fixed-point number of X or Z is set greater than 3.2×10<sup>7</sup> the client will be kicked for “Illegal position”.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,733: Line 3,570:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="4"| 0x29
+
  |rowspan="4"| 0x04
  | rowspan="4"| Play
+
  |rowspan="4"| Play
  | rowspan="4"| Client
+
  |rowspan="4"| Server
  | Entity ID
+
  | X
  | VarInt
+
  | Double
  |
+
  | Absolute position
 
  |-
 
  |-
  | Yaw
+
  | Feet Y
  | Angle
+
  | Double
  | New angle, not a delta.
+
  | Absolute position, normally Head Y - 1.62
 
  |-
 
  |-
  | Pitch
+
  | Z
  | Angle
+
  | Double
  | New angle, not a delta.
+
  | Absolute position
 
  |-
 
  |-
 
  | On Ground
 
  | On Ground
 
  | Boolean
 
  | Boolean
  |
+
  | True if the client is on the ground, false otherwise
 
  |}
 
  |}
  
==== Move Vehicle ====
+
==== Player Look ====
 +
[[File:Minecraft-trig-yaw.png|thumb|The unit circle for yaw]]
 +
[[File:Yaw.png|thumb|The unit circle of yaw, redrawn]]
 +
 
 +
Updates the direction the player is looking in.
  
Note that all fields use absolute positioning and do not allow for relative positioning.
+
Yaw is measured in degrees, and does not follow classical trigonometry rules. The unit circle of yaw on the XZ-plane starts at (0, 1) and turns counterclockwise, with 90 at (-1, 0), 180 at (0,-1) and 270 at (1, 0). Additionally, yaw is not clamped to between 0 and 360 degrees; any number is valid, including negative numbers and numbers greater than 360.
 +
 
 +
Pitch is measured in degrees, where 0 is looking straight ahead, -90 is looking straight up, and 90 is looking straight down.
 +
 
 +
The yaw and pitch of player (in degrees), standing at point (x0, y0, z0) and looking towards point (x, y, z) one can be calculated with:
 +
 
 +
dx = x-x0
 +
dy = y-y0
 +
dz = z-z0
 +
r = sqrt( dx*dx + dy*dy + dz*dz )
 +
yaw = -atan2(dx,dz)/PI*180
 +
if yaw < 0 then
 +
    yaw = 360 - yaw
 +
pitch = -arcsin(dy/r)/PI*180
 +
 
 +
You can get a unit vector from a given yaw/pitch via:
 +
 
 +
x = -cos(pitch) * sin(yaw)
 +
y = -sin(pitch)
 +
z =  cos(pitch) * cos(yaw)
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,765: Line 3,625:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="5"| 0x2A
+
  |rowspan="3"| 0x05
  | rowspan="5"| Play
+
  |rowspan="3"| Play
  | rowspan="5"| Client
+
  |rowspan="3"| Server
| X
 
| Double
 
| Absolute position (X coordinate).
 
|-
 
| Y
 
| Double
 
| Absolute position (Y coordinate).
 
|-
 
| Z
 
| Double
 
| Absolute position (Z coordinate).
 
|-
 
 
  | Yaw
 
  | Yaw
 
  | Float
 
  | Float
  | Absolute rotation on the vertical axis, in degrees.
+
  | Absolute rotation on the X Axis, in degrees
 
  |-
 
  |-
 
  | Pitch
 
  | Pitch
 
  | Float
 
  | Float
  | Absolute rotation on the horizontal axis, in degrees.
+
  | Absolute rotation on the Y Axis, in degrees
 +
|-
 +
| On Ground
 +
| Boolean
 +
| True if the client is on the ground, False otherwise
 
  |}
 
  |}
  
==== Open Book ====
+
==== Player Position And Look ====
  
Sent when a player right clicks with a signed book. This tells the client to open the book GUI.
+
A combination of [[#Player Look|Player Look]] and [[#Player Position|Player Position]].
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,801: Line 3,653:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x2B
+
  |rowspan="6"| 0x06
  | Play
+
  |rowspan="6"| Play
  | Client
+
  |rowspan="6"| Server
  | Hand
+
  | X
  | VarInt Enum
+
  | Double
  | 0: Main hand, 1: Off hand .
+
  | Absolute position
  |}
+
  |-
 
+
| Feet Y
==== Open Screen ====
+
| Double
 
+
  | Absolute feet position, normally Head Y - 1.62
This is sent to the client when it should open an inventory, such as a chest, workbench, furnace, or other container. This message is not sent anywhere for clients opening their own inventory. Resending this packet with already existing window id, will update the window title and window type without closing the window.
+
  |-
For horses, use [[#Open Horse Screen|Open Horse Screen]].
+
  | Z
 
+
  | Double
{| class="wikitable"
+
  | Absolute position
  ! Packet ID
 
  ! State
 
  ! Bound To
 
  ! Field Name
 
  ! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="3"| 0x2C
+
  | Yaw
| rowspan="3"| Play
+
  | Float
| rowspan="3"| Client
+
  | Absolute rotation on the X Axis, in degrees
| Window ID
 
  | VarInt
 
  | A unique id number for the window to be displayed. Notchian server implementation is a counter, starting at 1.
 
 
  |-
 
  |-
  | Window Type
+
  | Pitch
  | VarInt
+
  | Float
  | The window type to use for display. Contained in the <code>minecraft:menu</code> registry; see [[Inventory]] for the different values.
+
  | Absolute rotation on the Y Axis, in degrees
 
  |-
 
  |-
  | Window Title
+
  | On Ground
  | [[Chat]]
+
  | Boolean
  | The title of the window.
+
  | True if the client is on the ground, false otherwise
 
  |}
 
  |}
  
==== Open Sign Editor ====
+
==== Player Digging ====
  
Sent when the client has placed a sign and is allowed to send [[#Update Sign|Update Sign]]. There must already be a sign at the given location (which the client does not do automatically) - send a [[#Block Update|Block Update]] first.
+
Sent when the player mines a block. A Notchian server only accepts digging packets with coordinates within a 6-unit radius of the player's position.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,850: Line 3,693:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x2D
+
  |rowspan="3"| 0x07
  | Play
+
  |rowspan="3"| Play
  | Client
+
  |rowspan="3"| Server
 +
| Status
 +
| Byte
 +
| The action the player is taking against the block (see below)
 +
|-
 
  | Location
 
  | Location
 
  | Position
 
  | Position
  |
+
  | Block position
 +
|-
 +
| Face
 +
| Byte
 +
| The face being hit (see below)
 
  |}
 
  |}
  
==== Ping (play) ====
+
Status can (currently) be one of six values:
 
 
Packet is not used by the Notchian server. When sent to the client, client responds with a [[#Pong (play)|Pong]] packet with the same id.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! Packet ID
+
  ! Meaning
  ! State
+
  ! Value
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | 0x2E
+
  | Started digging
  | Play
+
  | <code>0</code>
  | Client
+
  |-
  | ID
+
  | Cancelled digging
  | Int
+
  | <code>1</code>
  |
+
  |-
 +
| Finished digging
 +
| <code>2</code>
 +
|-
 +
| Drop item stack
 +
| <code>3</code>
 +
|-
 +
| Drop item
 +
| <code>4</code>
 +
|-
 +
| Shoot arrow / finish eating
 +
| <code>5</code>
 
  |}
 
  |}
  
==== Place Ghost Recipe ====
+
Notchian clients send a 0 (started digging) when they start digging and a 2 (finished digging) once they think they are finished. If digging is aborted, the client simply send a 1 (cancel digging).
  
Response to the serverbound packet ([[#Place Recipe|Place Recipe]]), with the same recipe ID. Appears to be used to notify the UI.
+
Status code 4 (drop item) is a special case. In-game, when you use the Drop Item command (keypress 'q'), a dig packet with a status of 4, and all other values set to 0, is sent from client to server. Status code 3 is similar, but drops the entire stack.
 +
 
 +
Status code 5 (shoot arrow / finish eating) is also a special case. The x, y and z fields are all set to 0 like above, with the exception of the face field, which is set to 255.
 +
 
 +
The face can be one of six values, representing the face being hit:
  
 
{| class="wikitable"
 
{| class="wikitable"
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="2"| 0x2F
+
! Value
  | rowspan="2"| Play
+
  | 0
  | rowspan="2"| Client
+
  | 1
  | Window ID
+
  | 2
  | Byte
+
  | 3
  |
+
  | 4
 +
  | 5
 
  |-
 
  |-
  | Recipe
+
! Offset
  | Identifier
+
| -Y
  | A recipe ID.
+
| +Y
 +
| -Z
 +
  | +Z
 +
  | -X
 +
  | +X
 
  |}
 
  |}
  
==== Player Abilities ====
+
==== Player Block Placement ====
 
 
The latter 2 floats are used to indicate the flying speed and field of view respectively, while the first byte is used to determine the value of 4 booleans.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
 +
|-
 
  ! Packet ID
 
  ! Packet ID
 
  ! State
 
  ! State
Line 3,914: Line 3,772:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x30
+
  |rowspan="6"| 0x08
  | rowspan="3"| Play
+
  |rowspan="6"| Play
  | rowspan="3"| Client
+
  |rowspan="6"| Server
  | Flags
+
  | Location
 +
| Position
 +
| Block position
 +
|-
 +
| Face
 
  | Byte
 
  | Byte
  | Bit field, see below.
+
  | The face on which the block is placed (see above)
 +
|-
 +
| Held Item
 +
| [[Slot Data|Slot]]
 +
|
 
  |-
 
  |-
  | Flying Speed
+
  | Cursor Position X
  | Float
+
  | Byte
  | 0.05 by default.
+
| The position of the crosshair on the block
 +
|-
 +
| Cursor Position Y
 +
| Byte
 +
  |  
 
  |-
 
  |-
  | Field of View Modifier
+
  | Cursor Position Z
  | Float
+
  | Byte
  | Modifies the field of view, like a speed potion. A Notchian server will use the same value as the movement speed sent in the [[#Update Attributes|Update Attributes]] packet, which defaults to 0.1 for players.
+
  |  
 
  |}
 
  |}
  
About the flags:
+
In normal operation (i.e. placing a block), this packet is sent once, with the values set normally.
 +
 
 +
This packet has a special case where X, Y, Z, and Face are all -1. (Note that Y is unsigned so set to 255.) This special packet indicates that the currently held item for the player should have its state updated such as eating food, pulling back bows, using buckets, etc.
  
{| class="wikitable"
+
In a Notchian Beta client, the block or item ID corresponds to whatever the client is currently holding, and the client sends one of these packets any time a right-click is issued on a surface, so no assumptions can be made about the safety of the ID. However, with the implementation of server-side inventory, a Notchian server seems to ignore the item ID, instead operating on server-side inventory information and holding selection. The client has been observed (1.2.5 and 1.3.2) to send both real item IDs and -1 in a single session.
|-
 
! Field
 
! Bit
 
|-
 
| Invulnerable
 
| 0x01
 
|-
 
| Flying
 
| 0x02
 
|-
 
| Allow Flying
 
| 0x04
 
|-
 
| Creative Mode (Instant Break)
 
| 0x08
 
|}
 
  
==== Player Chat Message ====
+
Special note on using buckets: When using buckets, the Notchian client might send two packets: first a normal and then a special case. The first normal packet is sent when you're looking at a block (e.g. the water you want to scoop up). This normal packet does not appear to do anything with a Notchian server. The second, special case packet appears to perform the action — based on current position/orientation and with a distance check — it appears that buckets can only be used within a radius of 6 units.
  
Sends the client a message from a player.
+
==== Held Item Change ====
  
Currently a lot is unknown about this packet, blank descriptions are for those that are unknown
+
Sent when the player changes the slot selection
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 3,960: Line 3,816:
 
  ! State
 
  ! State
 
  ! Bound To
 
  ! Bound To
  ! Sector
+
  ! Field Name
! colspan="2"| Field Name
 
 
  ! Field Type
 
  ! Field Type
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="26"| 0x31
+
  |rowspan="1"| 0x09
  | rowspan="26"| Play
+
  |rowspan="1"| Play
  | rowspan="26"| Client
+
  |rowspan="1"| Server
  | rowspan="4"| Header
+
  | Slot
  | colspan="2"| Sender
+
  | Short
  | UUID
+
  | The slot which the player has selected (0–8)
  | Used by the Notchian client for the disableChat launch option. Setting both longs to 0 will always display the message regardless of the setting.
+
  |}
|-
+
 
| colspan="2"| Index
+
==== Animation ====
  | VarInt
+
 
  |
+
Sent when the player's arm swings
 +
 
 +
{| class="wikitable"
 +
  ! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
  ! Notes
 
  |-
 
  |-
  | colspan="2"| Message Signature Present
+
  |rowspan="1"| 0x0A
  | Boolean
+
|rowspan="1"| Play
  | States if a message signature is present
+
|rowspan="1"| Server
 +
  |colspan="3"| ''no fields''
 +
  |}
 +
 
 +
==== Entity Action ====
 +
 
 +
Sent by the client to indicate that it has performed certain actions: sneaking (crouching), sprinting, exiting a bed, jumping with a horse, and opening a horse's inventory while riding it.
 +
 
 +
{| class="wikitable"
 +
! Packet ID
 +
! State
 +
! Bound To
 +
! Field Name
 +
! Field Type
 +
! Notes
 
  |-
 
  |-
  | colspan="2"| Message Signature bytes
+
  |rowspan="3"| 0x0B
  | Optional Byte Array
+
  |rowspan="3"| Play
  | Only present if <code>Message Signature Present</code> is true. Cryptography, the signature consists of the Sender UUID, Timestamp and Original Chat Content. Modifying any of these values in the packet will cause this signature to fail. This buffer should(?) always be 256 bytes long.
+
|rowspan="3"| Server
 +
| Entity ID
 +
| VarInt
 +
  | Player ID
 
  |-
 
  |-
  | rowspan="3"| Body
+
  | Action ID
| colspan="2"| Message
 
| String
 
|
 
|-
 
| colspan="2"| Timestamp
 
| Long
 
| Represents the time the message was signed as milliseconds since the [https://en.wikipedia.org/wiki/Unix_time epoch], used to check if the message was received within 2 minutes of it being sent.
 
|-
 
| colspan="2"| Salt
 
| Long
 
| Cryptography, used for validating the message signature.
 
|-
 
| rowspan="3"| Previous Messages
 
| colspan="2"| Total Previous Messages
 
 
  | VarInt
 
  | VarInt
  |
+
  | The ID of the action, see below
 
  |-
 
  |-
  | rowspan="2"| Array
+
  | Action Parameter
| Message ID
 
 
  | VarInt
 
  | VarInt
<!-- TODO: Find out if this is length or message ID -->
+
  | Only used by Horse Jump Boost, in which case it ranges from 0 to 100In all other cases it is 0.
  | Note: This could be length.
+
  |}
  |-
+
 
  | Signature
+
Action ID can be one of the following values:
| Optional Byte Array
+
 
| The previous message's signature
+
{| class="wikitable"
|-
+
  ! ID
| rowspan="4"| Other
+
  ! Action
  | colspan="2"| Unsigned Content Present
 
  | Boolean
 
|
 
 
  |-
 
  |-
  | colspan="2"| Unsigned Content
+
  | 0
| Optional Chat
+
  | Start sneaking
  |  
 
 
  |-
 
  |-
  | colspan="2"| Filter Type
+
  | 1
| Enum VarInt
+
  | Stop sneaking
  | If the message has been filtered
 
 
  |-
 
  |-
  | colspan="2"| Filter Type Bits
+
  | 2
| Optional BitSet
+
  | Leave bed
  |
 
 
  |-
 
  |-
  | rowspan="4"| Network target
+
  | 3
  | colspan="2"| Chat Type
+
  | Start sprinting
| VarInt
 
| The chat type from the [[#Login (play)|Login (play)]] packet used for this message
 
 
  |-
 
  |-
  | colspan="2"| Network name
+
  | 4
| Chat
+
  | Stop sprinting
  |
 
 
  |-
 
  |-
  | colspan="2"| Network target name present
+
  | 5
| Boolean
+
  | Jump with horse
  |  
 
 
  |-
 
  |-
  | colspan="2"| Network target name
+
  | 6
| Optional Chat
+
  | Open ridden horse inventory
  |
 
 
  |}
 
  |}
[[File:MinecraftChat.drawio4.png|thumb|Player Chat Handling Logic]]
 
  
Filter Types:
+
Leave Bed is only sent when the "Leave Bed" button is clicked on the sleep GUI, not when waking up due today time.
 +
 
 +
Open ridden horse inventory is only sent when pressing the inventory key on a horse - all other methods of opening a horse's inventory (involving right-clicking or shift-right-clicking it) do not use this packet.
  
The filter type mask should NOT be specified unless partially filtered is selected
+
==== Steer Vehicle ====
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! ID
+
  ! Packet ID
  ! Name
+
  ! State
  ! Description
+
! Bound To
 +
! Field Name
 +
  ! Field Type
 +
! Notes
 
  |-
 
  |-
  | 0
+
  |rowspan="3"| 0x0C
  | PASS_THROUGH
+
|rowspan="3"| Play
  | No filters applied
+
|rowspan="3"| Server
 +
| Sideways
 +
  | Float
 +
  | Positive to the left of the player
 
  |-
 
  |-
  | 1
+
  | Forward
  | FULLY_FILTERED
+
  | Float
  | All filters applied
+
  | Positive forward
 
  |-
 
  |-
  | 2
+
  | Flags
  | PARTIALLY_FILTERED
+
  | Unsigned Byte
  | Only some filters are applied.  
+
  | Bit mask. 0x1: jump, 0x2: unmount
 
  |}
 
  |}
  
==== End Combat ====
+
==== Close Window ====
  
Unused by the Notchain client. This data was once used for twitch.tv metadata circa 1.8.f
+
This packet is sent by the client when closing a window.
 +
 
 +
Notchian clients send a Close Window packet with Window ID 0 to close their inventory even though there is never an [[#Open Window|Open Window]] packet for the inventory.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,083: Line 3,946:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x32
+
  | 0x0D
  | rowspan="2"| Play
+
  |rowspan="1"| Play
  | rowspan="2"| Client
+
  |rowspan="1"| Server
  | Duration
+
  | Window ID
  | VarInt
+
  | Unsigned Byte
  | Length of the combat in ticks.
+
  | This is the ID of the window that was closed. 0 for player inventory.
|-
 
| Entity ID
 
| Int
 
| ID of the primary opponent of the ended combat, or -1 if there is no obvious primary opponent.
 
 
  |}
 
  |}
  
==== Enter Combat ====
+
==== Click Window ====
  
Unused by the Notchain client.  This data was once used for twitch.tv metadata circa 1.8.
+
This packet is sent by the player when it clicks on a slot in a window.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,107: Line 3,966:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="1"| 0x33
+
  |rowspan="6"| 0x0E
  | rowspan="1"| Play
+
  |rowspan="6"| Play
  | rowspan="1"| Client
+
  |rowspan="6"| Server
  | colspan="3"| ''no fields''
+
  | Window ID
  |}
+
| Unsigned Byte
 
+
  | The ID of the window which was clicked. 0 for player inventory.
==== Combat Death ====
+
|-
 
+
| Slot
Used to send a respawn screen.
+
  | Short
 
+
  | The clicked slot number, see below
{| class="wikitable"
+
  |-
  ! Packet ID
+
  | Button
  ! State
+
  | Byte
  ! Bound To
+
  | The button used in the click, see below
  ! Field Name
 
  ! Field Type
 
  ! Notes
 
 
  |-
 
  |-
  | rowspan="3"| 0x34
+
  | Action Number
  | rowspan="3"| Play
+
  | Short
  | rowspan="3"| Client
+
  | A unique number for the action, implemented by Notchian as a counter, starting at 1. Used by the server to send back a [[#Confirm Transaction|Confirm Transaction]].
| Player ID
 
| VarInt
 
| Entity ID of the player that died (should match the client's entity ID).
 
 
  |-
 
  |-
  | Entity ID
+
  | Mode
  | Int
+
  | Byte Enum
  | The killer entity's ID, or -1 if there is no obvious killer.
+
  | Inventory operation mode, see below
 
  |-
 
  |-
  | Message
+
  | Clicked item
  | [[Chat]]
+
  | [[Slot Data|Slot]]
  | The death message.
+
  | The clicked slot. Has to be empty (item ID = -1) for drop mode.
 
  |}
 
  |}
  
==== Player Info Remove ====
+
See [[Inventory]] for further information about how slots are indexed.
 +
 
 +
When right-clicking on a stack of items, half the stack will be picked up and half left in the slot. If the stack is an odd number, the half left in the slot will be smaller of the amounts.
  
Used by the server to remove players from the player list.
+
The distinct type of click performed by the client is determined by the combination of the Mode and Button fields.
  
 
{| class="wikitable"
 
{| class="wikitable"
  ! Packet ID
+
  ! Mode
  ! State
+
  ! Button
  ! Bound To
+
  ! Slot
  ! colspan="2"| Field Name
+
  ! Trigger
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="2"| 0x35
+
  !rowspan="2"| 0
| rowspan="2"| Play
+
  | 0
| rowspan="2"| Client
+
  | Normal
  | colspan="2"| Number of Players
+
  | Left mouse click
  | VarInt
 
  | Number of elements in the following array.
 
 
  |-
 
  |-
  | Player
+
  | 1
| Player Id
+
  | Normal
| Array of UUID
+
  | Right mouse click
| UUIDs of players to remove.
 
|}
 
 
 
==== Player Info Update ====
 
 
 
Sent by the server to update the user list (<tab> in the client).
 
 
 
Multiple actions can be sent per player. The actions that are present are determined by the Actions bit set.
 
For example, if bit 0 and 1 are set, each entry in the player list will have the player's UUID, followed by the data for add player, followed by the data for initialize chat.
 
 
 
{| class="wikitable"
 
  ! Packet ID
 
! State
 
! Bound To
 
! colspan="4"| Field Name
 
  ! colspan="3"| Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="23"| 0x36
+
  !rowspan="2"| 1
  | rowspan="23"| Play
+
  | 0
  | rowspan="23"| Client
+
| Normal
 +
  | Shift + left mouse click
 
  |-
 
  |-
  | colspan="4"| Actions
+
  | 1
  | colspan="3"| BitSet
+
  | Normal
  | The actions to process. This must have a bit set for every action below, whether it's true or false.
+
  | Shift + right mouse click ''(identical behavior)''
 
  |-
 
  |-
  | colspan="4"| Number Of Actions
+
  !rowspan="5"| 2
  | colspan="3"| VarInt
+
  | 0
  | Number of elements in the following array.
+
| Normal
 +
  | Number key 1
 
  |-
 
  |-
  | rowspan="20"| Action
+
  | 1
| colspan="3"| UUID
+
  | Normal
  | rowspan="20"| Array
+
  | Number key 2
  | colspan="2"| UUID
 
| The player UUID
 
 
  |-
 
  |-
  ! Action
+
  | 2
  ! colspan="2"| Field Name
+
  | Normal
  ! colspan="2"|
+
  | Number key 3
!
 
 
  |-
 
  |-
  | rowspan="6"| Actions bit 0: add player
+
  |
| colspan="2"| Name
+
  |
| colspan="2"| String (16)
+
  |
|
 
|-
 
  | colspan="2"| Number Of Properties
 
| colspan="2"| VarInt
 
  | Number of elements in the following array.
 
 
  |-
 
  |-
  | rowspan="4"| Property
+
  | 8
| Name
+
  | Normal
| rowspan="4"| Array
+
  | Number key 9
  | String (32767)
 
  |
 
 
  |-
 
  |-
  | Value
+
  !rowspan="1"| 3
  | String (32767)
+
  | 2
  |
+
  | Normal
 +
| Middle click
 
  |-
 
  |-
  | Is Signed
+
  !rowspan="4"| 4
  | Boolean
+
  | 0
  |
+
  | Normal*
 +
| Drop key (Q) (* Clicked item is different, see above)
 
  |-
 
  |-
  | Signature
+
  | 1
  | Optional String (32767)
+
  | Normal*
  | Only if Is Signed is true.
+
  | Ctrl + Drop key (Ctrl-Q) ''(drops full stack)''
 
  |-
 
  |-
  | rowspan="7"| Actions bit 1: initialize chat
+
  | 0
| colspan="2"| Has Signature Data
+
  | -999
  | colspan="2"| Boolean
+
  | Left click outside inventory holding nothing ''(no-op)''
  |
 
 
  |-
 
  |-
  | colspan="2"| Chat session ID
+
  | 1
  | colspan="2"| UUID
+
  | -999
  | colspan="2"| Only send if Has Signature Data is true.
+
  | Right click outside inventory holding nothing ''(no-op)''
 
  |-
 
  |-
  | colspan="2"| Public key expiry time
+
  !rowspan="6"| 5
  | colspan="2"| Long
+
  | 0
  | colspan="2"| Key expiry time, as a UNIX timestamp in milliseconds. Only send if Has Signature Data is true.
+
| -999
 +
  | Starting left mouse drag ''(or middle mouse)''
 
  |-
 
  |-
  | colspan="2"| Encoded public key size
+
  | 4
  | colspan="2"| VarInt
+
  | -999
  | colspan="2"| Size of the following array. Only send if Has Signature Data is true.
+
  | Starting right mouse drag
 
  |-
 
  |-
  | colspan="2"| Encoded public key
+
  | 1
  | colspan="2"| Byte Array
+
  | Normal
  | colspan="2"| The player's public key, in bytes. Only send if Has Signature Data is true.
+
  | Add slot for left-mouse drag
 
  |-
 
  |-
  | colspan="2"| Public key signature size
+
  | 5
  | colspan="2"| VarInt
+
  | Normal
  | colspan="2"| Size of the following array. Only send if Has Signature Data is true.
+
  | Add slot for right-mouse drag
 
  |-
 
  |-
  | colspan="2"| Public key signature
+
  | 2
  | colspan="2"| Byte Array
+
  | -999
  | colspan="2"| The public key's digital signature. Only send if Has Signature Data is true.
+
  | Ending left mouse drag
 
  |-
 
  |-
  | Actions bit 2: update gamemode
+
  | 6
  | colspan="2"| Gamemode
+
  | -999
| colspan="2"| VarInt
+
  | Ending right mouse drag
  |
 
 
  |-
 
  |-
  | Actions bit 3: update listed
+
  ! 6
| colspan="2"| Listed
+
  | 0
| colspan="2"| Boolean
+
  | Normal
| Whether the player should be listed on the player list.
+
  | Double click
|-
 
| Actions bit 4: update latency
 
| colspan="2"| Ping
 
| colspan="2"| VarInt
 
| Measured in milliseconds.
 
|-
 
| rowspan="2"| Actions bit 5: update display name
 
| colspan="2"| Has Display Name
 
  | colspan="2"| Boolean
 
  |
 
  |-
 
| colspan="2"| Display Name
 
| colspan="2"| Optional [[Chat]]
 
| Only send if Has Display Name is true.
 
 
  |}
 
  |}
  
The Property field looks as in the response of [[Mojang API#UUID -> Profile + Skin/Cape]], except of course using the protocol format instead of JSON. That is, each player will usually have one property with Name “textures” and Value being a base64-encoded JSON string as documented at [[Mojang API#UUID -> Profile + Skin/Cape]]. An empty properties array is also acceptable, and will cause clients to display the player with one of the two default skins depending on UUID.
+
Starting from version 1.5, “painting mode” is available for use in inventory windows. It is done by picking up stack of something (more than 1 item), then holding mouse button (left, right or middle) and dragging held stack over empty (or same type in case of right button) slots. In that case client sends the following to server after mouse button release (omitting first pickup packet which is sent as usual):
 +
 
 +
# packet with mode 5, slot -999, button (0 for left | 4 for right);
 +
# packet for every slot painted on, mode is still 5, button (1 | 5);
 +
# packet with mode 5, slot -999, button (2 | 6);
 +
 
 +
If any of the painting packets other than the “progress” ones are sent out of order (for example, a start, some slots, then another start; or a left-click in the middle) the painting status will be reset.
  
Ping values correspond with icons in the following way:
+
The server will send back a [[#Confirm Transaction|Confirm Transaction]] packet. If the click was not accepted, the client must reflect that packet before sending more [[#Click Window|Click Window]] packets, otherwise the server will reject them silently. The Notchian server also sends a [[#Window Items|Window Items]] packet for the open window and [[#Set Slot|Set Slot]] packets for the clicked and cursor slot, but only when the click was not accepted, probably to resynchronize client and server.
* A ping that negative (i.e. not known to the server yet) will result in the no connection icon.
 
* A ping under 150 milliseconds will result in 5 bars
 
* A ping under 300 milliseconds will result in 4 bars
 
* A ping under 600 milliseconds will result in 3 bars
 
* A ping under 1000 milliseconds (1 second) will result in 2 bars
 
* A ping greater than or equal to 1 second will result in 1 bar.
 
  
==== Look At ====
+
==== Confirm Transaction ====
  
Used to rotate the client player to face the given location or entity (for <code>/teleport [<targets>] <x> <y> <z> facing</code>).
+
If a transaction sent by the client was not accepted, the server will reply with a [[#Confirm Transaction|Confirm Transaction]] ([[#Play|Play]], 0x32, clientbound) packet with the Accepted field set to false. When this happens, the client must reflect the packet to apologize (as with movement), otherwise the server ignores any successive transactions.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,307: Line 4,120:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="8"| 0x37
+
  |rowspan="3"| 0x0F
  | rowspan="8"| Play
+
  |rowspan="3"| Play
  | rowspan="8"| Client
+
  |rowspan="3"| Server
 +
| Window ID
 +
| Byte
 +
| The ID of the window that the action occurred in
 
  |-
 
  |-
  | Feet/eyes
+
  | Action Number
  | VarInt Enum
+
  | Short
  | Values are feet=0, eyes=1.  If set to eyes, aims using the head position; otherwise aims using the feet position.
+
  | Every action that is to be accepted has a unique number. This field corresponds to that number.
|-
 
| Target x
 
| Double
 
| x coordinate of the point to face towards.
 
|-
 
| Target y
 
| Double
 
| y coordinate of the point to face towards.
 
 
  |-
 
  |-
  | Target z
+
  | Accepted
| Double
 
| z coordinate of the point to face towards.
 
|-
 
| Is entity
 
 
  | Boolean
 
  | Boolean
| If true, additional information about an entity is provided.
+
  | Whether the action was accepted
|-
 
| Entity ID
 
| Optional VarInt
 
| Only if is entity is true &mdash; the entity to face towards.
 
|-
 
| Entity feet/eyes
 
| Optional VarInt Enum
 
  | Whether to look at the entity's eyes or feet.  Same values and meanings as before, just for the entity's head/feet.
 
 
  |}
 
  |}
  
If the entity given by entity ID cannot be found, this packet should be treated as if is entity was false.
+
==== Creative Inventory Action ====
  
==== Synchronize Player Position ====
+
While the user is in the standard inventory (i.e., not a crafting bench) in Creative mode, the player will send this packet.
  
Updates the player's position on the server. This packet will also close the “Downloading Terrain” screen when joining/respawning.
+
Clicking in the creative inventory menu is quite different from non-creative inventory management. Picking up an item with the mouse actually deletes the item from the server, and placing an item into a slot or dropping it out of the inventory actually tells the server to create the item from scratch. (This can be verified by clicking an item that you don't mind deleting, then severing the connection to the server; the item will be nowhere to be found when you log back in.) As a result of this implementation strategy, the "Destroy Item" slot is just a client-side implementation detail that means "I don't intend to recreate this item.". Additionally, the long listings of items (by category, etc.) are a client-side interface for choosing which item to create. Picking up an item from such listings sends no packets to the server; only when you put it somewhere does it tell the server to create the item in that location.
  
If the distance between the last known position of the player on the server and the new position set by this packet is greater than 100 meters, the client will be kicked for “You moved too quickly :( (Hacking?)”.
+
This action can be described as "set inventory slot". Picking up an item sets the slot to item ID -1. Placing an item into an inventory slot sets the slot to the specified item. Dropping an item (by clicking outside the window) effectively sets slot -1 to the specified item, which causes the server to spawn the item entity, etc.. All other inventory slots are numbered the same as the non-creative inventory (including slots for the 2x2 crafting menu, even though they aren't visible in the vanilla client).
 
 
Also if the fixed-point number of X or Z is set greater than <code>3.2E7D</code> the client will be kicked for “Illegal position”.
 
 
 
Yaw is measured in degrees, and does not follow classical trigonometry rules. The unit circle of yaw on the XZ-plane starts at (0, 1) and turns counterclockwise, with 90 at (-1, 0), 180 at (0, -1) and 270 at (1, 0). Additionally, yaw is not clamped to between 0 and 360 degrees; any number is valid, including negative numbers and numbers greater than 360.
 
 
 
Pitch is measured in degrees, where 0 is looking straight ahead, -90 is looking straight up, and 90 is looking straight down.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,362: Line 4,152:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="8"| 0x38
+
  |rowspan="2"| 0x10
  | rowspan="8"| Play
+
  |rowspan="2"| Play
  | rowspan="8"| Client
+
  |rowspan="2"| Server
  | X
+
  | Slot
  | Double
+
  | Short
  | Absolute or relative position, depending on Flags.
+
  | Inventory slot
 
  |-
 
  |-
  | Y
+
  | Clicked Item
  | Double
+
  | [[Slot Data|Slot]]
| Absolute or relative position, depending on Flags.
+
  |  
|-
 
| Z
 
| Double
 
| Absolute or relative position, depending on Flags.
 
|-
 
| Yaw
 
| Float
 
| Absolute or relative rotation on the X axis, in degrees.
 
|-
 
| Pitch
 
| Float
 
| Absolute or relative rotation on the Y axis, in degrees.
 
|-
 
| Flags
 
| Byte
 
| Bit field, see below.
 
|-
 
| Teleport ID
 
| VarInt
 
| Client should confirm this packet with [[#Confirm Teleportation|Confirm Teleportation]] containing the same Teleport ID.
 
|-
 
| Dismount Vehicle
 
| Boolean
 
| True if the player should dismount their vehicle.
 
|}
 
 
 
About the Flags field:
 
 
 
<Dinnerbone> It's a bitfield, X/Y/Z/Y_ROT/X_ROT. If X is set, the x value is relative and not absolute.
 
 
 
{| class="wikitable"
 
|-
 
! Field
 
! Bit
 
|-
 
| X
 
| 0x01
 
|-
 
| Y
 
| 0x02
 
|-
 
| Z
 
| 0x04
 
|-
 
| Y_ROT
 
| 0x08
 
|-
 
| X_ROT
 
  | 0x10
 
 
  |}
 
  |}
  
==== Update Recipe Book ====
+
==== Enchant Item ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,433: Line 4,174:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="14"| 0x39
+
  |rowspan="2"| 0x11
  | rowspan="14"| Play
+
  |rowspan="2"| Play
  | rowspan="14"| Client
+
  |rowspan="2"| Server
 +
| Window ID
 +
| Byte
 +
| The ID of the enchantment table window sent by [[#Open Window|Open Window]]
 
  |-
 
  |-
  | Action
+
  | Enchantment
  | VarInt
+
  | Byte
  | 0: init, 1: add, 2: remove.
+
  | The position of the enchantment on the enchantment table window, starting with 0 as the topmost one
|-
 
| Crafting Recipe Book Open
 
| Boolean
 
| If true, then the crafting recipe book will be open when the player opens its inventory.
 
|-
 
| Crafting Recipe Book Filter Active
 
| Boolean
 
| If true, then the filtering option is active when the players opens its inventory.
 
|-
 
| Smelting Recipe Book Open
 
| Boolean
 
| If true, then the smelting recipe book will be open when the player opens its inventory.
 
|-
 
| Smelting Recipe Book Filter Active
 
| Boolean
 
| If true, then the filtering option is active when the players opens its inventory.
 
|-
 
| Blast Furnace Recipe Book Open
 
| Boolean
 
| If true, then the blast furnace recipe book will be open when the player opens its inventory.
 
|-
 
| Blast Furnace Recipe Book Filter Active
 
| Boolean
 
| If true, then the filtering option is active when the players opens its inventory.
 
|-
 
| Smoker Recipe Book Open
 
| Boolean
 
| If true, then the smoker recipe book will be open when the player opens its inventory.
 
|-
 
| Smoker Recipe Book Filter Active
 
| Boolean
 
| If true, then the filtering option is active when the players opens its inventory.
 
|-
 
| Array size 1
 
| VarInt
 
| Number of elements in the following array.
 
|-
 
| Recipe IDs
 
| Array of Identifier
 
|
 
|-
 
| Array size 2
 
| Optional VarInt
 
| Number of elements in the following array, only present if mode is 0 (init).
 
|-
 
| Recipe IDs
 
| Optional Array of Identifier
 
| Only present if mode is 0 (init)
 
 
  |}
 
  |}
Action:
 
* 0 (init) = All the recipes in list 1 will be tagged as displayed, and all the recipes in list 2 will be added to the recipe book. Recipes that aren't tagged will be shown in the notification.
 
* 1 (add) = All the recipes in the list are added to the recipe book and their icons will be shown in the notification.
 
* 2 (remove) = Remove all the recipes in the list. This allows them to be re-displayed when they are re-added.
 
  
==== Remove Entities ====
+
==== Update Sign ====
  
Sent by the server when an entity is to be destroyed on the client.
+
This message is sent from the client to the server when the “Done” button is pushed after placing a sign.
 +
 
 +
The server only accepts this packet after [[#Open Sign Editor|Open Sign Editor]], otherwise this packet is silently ignored.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,506: Line 4,200:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x3A
+
  |rowspan="5"| 0x12
  | rowspan="2"| Play
+
  |rowspan="5"| Play
  | rowspan="2"| Client
+
  |rowspan="5"| Server
  | Count
+
  | Location
  | VarInt
+
  | Position
  | Number of elements in the following array.
+
  | Block Coordinates
 +
|-
 +
| Line 1
 +
| [[Chat]]
 +
| First line of text in the sign
 
  |-
 
  |-
  | Entity IDs
+
  | Line 2
  | Array of VarInt
+
  | [[Chat]]
  | The list of entities to destroy.
+
| Second line of text in the sign
  |}
+
|-
 +
| Line 3
 +
| [[Chat]]
 +
| Third line of text in the sign
 +
|-
 +
| Line 4
 +
| [[Chat]]
 +
  | Fourth line of text in the sign
 +
  |}
  
==== Remove Entity Effect ====
+
==== Player Abilities ====
 +
 
 +
The latter 2 bytes are used to indicate the walking and flying speeds respectively, while the first byte is used to determine the value of 4 booleans.
 +
 
 +
The vanilla client sends this packet when the player starts/stops flying with the Flags parameter changed accordingly. All other parameters are ignored by the vanilla server.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,528: Line 4,238:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x3B
+
  |rowspan="3"| 0x13
  | rowspan="2"| Play
+
  |rowspan="3"| Play
  | rowspan="2"| Client
+
  |rowspan="3"| Server
  | Entity ID
+
  | Flags
  | VarInt
+
  | Byte
  |
+
| Bit mask. 0x08: damage disabled (god mode), 0x04: can fly, 0x02: is flying, 0x01: is Creative
 +
|-
 +
| Flying Speed
 +
| Float
 +
  |  
 
  |-
 
  |-
  | Effect ID
+
  | Walking Speed
  | VarInt
+
  | Float
  | See {{Minecraft Wiki|Status effect#Effect IDs|this table}}.
+
  |  
 
  |}
 
  |}
  
==== Resource Pack ====
+
==== Tab-Complete ====
 +
 
 +
Sent when the user presses ''tab'' while writing text.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,550: Line 4,266:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="5"| 0x3C
+
  |rowspan="3"| 0x14
  | rowspan="5"| Play
+
  |rowspan="3"| Play
  | rowspan="5"| Client
+
  |rowspan="3"| Server
  | URL
+
  | Text
  | String (32767)
+
  | String
  | The URL to the resource pack.
+
  | All text behind the cursor
 
  |-
 
  |-
  | Hash
+
  | Has Position
| String (40)
 
| A 40 character hexadecimal and lowercase [[wikipedia:SHA-1|SHA-1]] hash of the resource pack file.<br />If it's not a 40 character hexadecimal string, the client will not use it for hash verification and likely waste bandwidth — but it will still treat it as a unique id
 
|-
 
| Forced
 
 
  | Boolean
 
  | Boolean
  | The notchian client will be forced to use the resource pack from the server. If they decline they will be kicked from the server.
+
  |  
 
  |-
 
  |-
  | Has Prompt Message
+
  | Looked At Block
  | Boolean
+
  | Optional Position
  | <code>true</code> If the next field will be sent <code>false</code> otherwise. When <code>false</code>, this is the end of the packet
+
  | The position of the block being looked at. Only sent if Has Position is true.
|-
 
| Prompt Message
 
| Optional [[Chat]]
 
| This is shown in the prompt making the client accept or decline the resource pack.
 
 
  |}
 
  |}
  
==== Respawn ====
+
==== Client Settings ====
  
To change the player's dimension (overworld/nether/end), send them a respawn packet with the appropriate dimension, followed by prechunks/chunks for the new dimension, and finally a position and look packet. You do not need to unload chunks, the client will do it automatically.
+
Sent when the player connects, or when settings are changed.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,586: Line 4,294:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="11"| 0x3D
+
  |rowspan="5"| 0x15
  | rowspan="11"| Play
+
  |rowspan="5"| Play
  | rowspan="11"| Client
+
  |rowspan="5"| Server
  | Dimension Type
+
  | Locale
  | Identifier
+
  | String
  | Valid dimensions are defined per dimension registry sent in [[#Login (play)|Login (play)]]
+
  | e.g. en_GB
 
  |-
 
  |-
  | Dimension Name
+
  | View Distance
  | Identifier
+
  | Byte
  | Name of the dimension being spawned into.
+
  | Client-side render distance, in chunks
 
  |-
 
  |-
  | Hashed seed
+
  | Chat Mode
| Long
 
| First 8 bytes of the SHA-256 hash of the world's seed. Used client side for biome noise
 
|-
 
| Gamemode
 
| Unsigned Byte
 
| 0: survival, 1: creative, 2: adventure, 3: spectator. The hardcore flag is not included
 
|-
 
| Previous Gamemode
 
 
  | Byte
 
  | Byte
  | -1: null 0: survival, 1: creative, 2: adventure, 3: spectator. The hardcore flag is not included. The previous gamemode. (More information needed)
+
  | 0: enabled, 1: commands only, 2: hidden
 
  |-
 
  |-
  | Is Debug
+
  | Chat Colors
 
  | Boolean
 
  | Boolean
  | True if the world is a {{Minecraft Wiki|debug mode}} world; debug mode worlds cannot be modified and have predefined blocks.
+
  | “Colors” multiplayer setting
 
  |-
 
  |-
  | Is Flat
+
  | Displayed Skin Parts
  | Boolean
+
  | Unsigned Byte
  | True if the world is a {{Minecraft Wiki|superflat}} world; flat worlds have different void fog and a horizon at y=0 instead of y=63.
+
  | Skin parts, see note below
|-
 
| Copy metadata
 
| Boolean
 
| If false, metadata is reset on the respawned player entity.  Set to true for dimension changes (including the dimension change triggered by sending client status perform respawn to exit the end poem/credits), and false for normal respawns.
 
|-
 
| Has death location
 
| Boolean
 
| If true, then the next two fields are present.
 
|-
 
| Death dimension Name
 
| Identifier
 
| Name of the dimension the player died in.
 
|-
 
| Death location
 
| Position
 
| The location that the player died at.
 
 
  |}
 
  |}
  
{{Warning2|Avoid changing player's dimension to same dimension they were already in unless they are dead. If you change the dimension to one they are already in, weird bugs can occur, such as the player being unable to attack other players in new world (until they die and respawn).
+
''Displayed Skin Parts'' flags:
  
Before 1.16, if you must respawn a player in the same dimension without killing them, send two respawn packets, one to a different world and then another to the world you want. You do not need to complete the first respawn; it only matters that you send two packets.}}
+
* Bit 0 (0x01): Cape enabled
 +
* Bit 1 (0x02): Jacket enabled
 +
* Bit 2 (0x04): Left Sleeve enabled
 +
* Bit 3 (0x08): Right Sleeve enabled
 +
* Bit 4 (0x10): Left Pants Leg enabled
 +
* Bit 5 (0x20): Right Pants Leg enabled
 +
* Bit 6 (0x40): Hat enabled
  
==== Set Head Rotation ====
+
The most significant bit (bit 7, 0x80) appears to be unused.
  
Changes the direction an entity's head is facing.
+
==== Client Status ====
  
While sending the Entity Look packet changes the vertical rotation of the head, sending this packet appears to be necessary to rotate the head horizontally.
+
Sent when the client is ready to complete login and when the client is ready to respawn after death.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,652: Line 4,342:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x3E
+
  |rowspan="1"| 0x16
  | rowspan="2"| Play
+
  |rowspan="1"| Play
  | rowspan="2"| Client
+
  |rowspan="1"| Server
  | Entity ID
+
  | Action ID
 
  | VarInt
 
  | VarInt
  |
+
  | See below
|-
 
| Head Yaw
 
| Angle
 
| New angle, not a delta.
 
 
  |}
 
  |}
  
==== Update Section Blocks ====
+
''Action ID'' values:
 
 
Fired whenever 2 or more blocks are changed within the same chunk on the same tick.
 
 
 
{{Warning|Changing blocks in chunks not loaded by the client is unsafe (see note on [[#Block Update|Block Update]]).}}
 
  
 
{| class="wikitable"
 
{| class="wikitable"
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="4"| 0x3F
+
  ! Action ID
  | rowspan="4"| Play
+
  ! Action
| rowspan="4"| Client
 
| Chunk section position
 
| Long
 
| Chunk section coordinate (encoded chunk x and z with each 22 bits, and section y with 20 bits, from left to right).
 
 
  |-
 
  |-
  | Suppress Light Updates
+
  | 0
  | Boolean
+
  | Perform respawn
| Whether to ignore light updates caused by the contained changes. Always inverse the preceding Update Light packet's "Trust Edges" bool
 
 
  |-
 
  |-
  | Blocks array size
+
  | 1
  | VarInt
+
  | Request stats
| Number of elements in the following array.
 
 
  |-
 
  |-
  | Blocks
+
  | 2
  | Array of VarLong
+
  | ''Taking Inventory'' achievement
| Each entry is composed of the block state id, shifted left by 12, and the relative block position in the chunk section (4 bits for x, z, and y, from left to right).
 
 
  |}
 
  |}
  
Chunk section position is encoded:
+
==== Plugin Message ====
<syntaxhighlight lang="java">
 
((sectionX & 0x3FFFFF) << 42) | (sectionY & 0xFFFFF) | ((sectionZ & 0x3FFFFF) << 20);
 
</syntaxhighlight>
 
and decoded:
 
<syntaxhighlight lang="java">
 
sectionX = long >> 42;
 
sectionY = long << 44 >> 44;
 
sectionZ = long << 22 >> 42;
 
</syntaxhighlight>
 
  
Blocks are encoded:
+
Mods and plugins can use this to send their data. Minecraft itself uses a number of [[plugin channel]]s. These internal channels are prefixed with <code>MC|</code>.
<syntaxhighlight lang="java">
 
blockStateId << 12 | (blockLocalX << 8 | blockLocalZ << 4 | blockLocalY)
 
//Uses the local position of the given block position relative to its respective chunk section
 
</syntaxhighlight>
 
  
==== Select Advancements Tab ====
+
More documentation on this: [http://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/ http://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/]
  
Sent by the server to indicate that the client should switch advancement tab. Sent either when the client switches tab in the GUI or when an advancement in another tab is made.
+
Note that the length of Data is known only from the packet length, since the packet has no length field of any kind.
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,727: Line 4,383:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x40
+
  |rowspan="2"| 0x17
  | rowspan="2"| Play
+
  |rowspan="2"| Play
  | rowspan="2"| Client
+
  |rowspan="2"| Server
  | Has id
+
  | Channel
  | Boolean
+
  | String
  | Indicates if the next field is present.
+
  | Name of the [[plugin channel]] used to send the data
 
  |-
 
  |-
  | Optional Identifier
+
  | Data
  | [[Identifier]]
+
  | Byte Array
| See below.
+
| Any data, depending on the channel. <code><nowiki>MC|</nowiki></code> channels are documented [[plugin channel|here]].
 
  |}
 
  |}
  
The Identifier can be one of the following:
+
==== Spectate ====
  
{| class="wikitable"
+
Teleports the player to the given entity. The player must be in spectator mode.
  ! Optional Identifier
 
|-
 
| minecraft:story/root
 
|-
 
| minecraft:nether/root
 
|-
 
| minecraft:end/root
 
|-
 
| minecraft:adventure/root
 
|-
 
| minecraft:husbandry/root
 
|}
 
  
If no or an invalid identifier is sent, the client will switch to the first tab in the GUI.
+
The Notchian client only uses this to teleport to players, but it appears to accept any type of entity.  The entity does not need to be in the same dimension as the player; if necessary, the player will be respawned in the right world.  If the given entity cannot be found (or isn't loaded), this packet will be ignored.  It will also be ignored if the player attempts to teleport to themselves.
 
 
==== Server Data ====
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,767: Line 4,409:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="6"| 0x41
+
  |rowspan="1"| 0x18
  | rowspan="6"| Play
+
  |rowspan="1"| Play
  | rowspan="6"| Client
+
  |rowspan="1"| Server
  | Has MOTD
+
  | Target Player
  | Boolean
+
  | UUID
  |
+
  | UUID of the player to teleport to (can also be an entity UUID)
|-
 
| MOTD
 
| Optional Chat
 
|
 
|-
 
| Has Icon
 
| Boolean
 
|
 
|-
 
| Icon
 
| Optional String (32767)
 
| Icon PNG base64 String
 
|-
 
| Enforces Secure Chat
 
| Boolean
 
|
 
 
  |}
 
  |}
  
==== Set Action Bar Text ====
+
==== Resource Pack Status ====  
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,801: Line 4,427:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="1"| 0x42
+
  |rowspan="2"| 0x19
  | rowspan="1"| Play
+
  |rowspan="2"| Play
  | rowspan="1"| Client
+
  |rowspan="2"| Server
  | Action bar text
+
  | Hash
  | [[Chat]]
+
  | String
  | Displays a message above the hotbar (the same as position 2 in [[#Player Chat Message|Player Chat Message]].
+
  | The hash sent in the [[#Resource Pack Send|Resource Pack Send]] packet.
 +
|-
 +
| Result
 +
| VarInt Enum
 +
| 0: successfully loaded, 1: declined, 2: failed download, 3: accepted
 
  |}
 
  |}
  
==== Set Border Center ====
+
== Status ==
 +
{{Main|Server List Ping}}
  
{| class="wikitable"
+
=== Clientbound ===
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x43
 
| rowspan="2"| Play
 
| rowspan="2"| Client
 
| X
 
| Double
 
|
 
|-
 
| Z
 
| Double
 
|
 
|}
 
  
==== Set Border Lerp Size ====
+
==== Response ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,841: Line 4,454:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="3"| 0x44
+
  |rowspan="1"| 0x00
  | rowspan="3"| Play
+
  |rowspan="1"| Status
  | rowspan="3"| Client
+
  |rowspan="1"| Client
  | Old Diameter
+
  | JSON Response
  | Double
+
  | String
  | Current length of a single side of the world border, in meters.
+
  | See [[Server List Ping#Response]]
|-
 
| New Diameter
 
| Double
 
| Target length of a single side of the world border, in meters.
 
|-
 
| Speed
 
| VarLong
 
| Number of real-time ''milli''seconds until New Diameter is reached. It appears that Notchian server does not sync world border speed to game ticks, so it gets out of sync with server lag. If the world border is not moving, this is set to 0.
 
 
  |}
 
  |}
  
==== Set Border Size ====
+
==== Pong ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,867: Line 4,472:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="1"| 0x45
+
  |rowspan="1"| 0x01
  | rowspan="1"| Play
+
  |rowspan="1"| Status
  | rowspan="1"| Client
+
  |rowspan="1"| Client
  | Diameter
+
  | Payload
  | Double
+
  | Long
  | Length of a single side of the world border, in meters.
+
  | Should be the same as sent by the client
 
  |}
 
  |}
  
==== Set Border Warning Delay ====
+
=== Serverbound ===
 +
 
 +
==== Request ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,885: Line 4,492:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="1"| 0x46
+
  |rowspan="1"| 0x00
  | rowspan="1"| Play
+
  | Status
  | rowspan="1"| Client
+
| Server
| Warning Time
+
  |colspan="3"| ''no fields''
| VarInt
 
| In seconds as set by <code>/worldborder warning time</code>.
 
 
  |}
 
  |}
  
==== Set Border Warning Distance ====
+
==== Ping ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,903: Line 4,508:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="1"| 0x47
+
  |rowspan="1"| 0x01
  | rowspan="1"| Play
+
  |rowspan="1"| Status
  | rowspan="1"| Client
+
  |rowspan="1"| Server
  | Warning Blocks
+
  | Payload
  | VarInt
+
  | Long
  | In meters.
+
  | May be any number. Notchian clients use a system-dependent time value which is counted in milliseconds.
 
  |}
 
  |}
  
==== Set Camera ====
+
== Login ==
  
Sets the entity that the player renders from. This is normally used when the player left-clicks an entity while in spectator mode.
+
The login process is as follows:
  
The player's camera will move with the entity and look where it is looking. The entity is often another player, but can be any type of entity.  The player is unable to move this entity (move packets will act as if they are coming from the other entity).
+
# C→S: [[#Handshake|Handshake]] with Next State set to 2 (login)
 +
# C→S: [[#Login Start|Login Start]]
 +
# S→C: [[#Encryption Request|Encryption Request]]
 +
# Client auth
 +
# C→S: [[#Encryption Response|Encryption Response]]
 +
# Server auth, both enable encryption
 +
# S→C: [[#Login Success|Login Success]] and Set Compression
  
If the given entity is not loaded by the player, this packet is ignored.  To return control to the player, send this packet with their entity ID.
+
Login Success and Set Compression can be sent in either order, but anything after Set Compression must use the [[#With_compression|Post Compression packet format]]. The packet ID for Set Compression also depends on the current connection state, and Login Success switches the state to [[#Play|play]], meaning that the correct packet ID must be used depending on the order chosen.
  
The Notchian server resets this (sends it back to the default entity) whenever the spectated entity is killed or the player sneaks, but only if they were spectating an entity. It also sends this packet whenever the player switches out of spectator mode (even if they weren't spectating an entity).
+
For unauthenticated and localhost connections (either of the two conditions is enough for an unencrypted connection) there is no encryption. In that case [[#Login Start|Login Start]] is directly followed by [[#Login Success|Login Success]].
  
{| class="wikitable"
+
See [[Protocol Encryption]] for details.
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x48
 
| Play
 
| Client
 
| Camera ID
 
| VarInt
 
| ID of the entity to set the client's camera to.
 
|}
 
  
The notchian client also loads certain shaders for given entities:
+
=== Clientbound ===
 
 
* Creeper &rarr; <code>shaders/post/creeper.json</code>
 
* Spider (and cave spider) &rarr; <code>shaders/post/spider.json</code>
 
* Enderman &rarr; <code>shaders/post/invert.json</code>
 
* Anything else &rarr; the current shader is unloaded
 
  
==== Set Held Item ====
+
==== Disconnect ====
 
 
Sent to change the player's slot selection.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,956: Line 4,546:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x49
+
  |rowspan="1"| 0x00
  | Play
+
  |rowspan="1"| Login
  | Client
+
  |rowspan="1"| Client
  | Slot
+
  | Reason
  | Byte
+
  | [[Chat]]
  | The slot which the player has selected (0–8).
+
  |  
 
  |}
 
  |}
  
==== Set Center Chunk ====
+
==== Encryption Request ====
 
 
{{Need Info|Why is this even needed?  Is there a better name for it?  My guess is that it's something to do with logical behavior with latency, but it still seems weird.}}
 
 
 
Updates the client's location.  This is used to determine what chunks should remain loaded and if a chunk load should be ignored; chunks outside of the view distance may be unloaded.
 
 
 
Sent whenever the player moves across a chunk border horizontally, and also (according to testing) for any integer change in the vertical axis, even if it doesn't go across a chunk section border.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 4,980: Line 4,564:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x4A
+
  |rowspan="5"| 0x01
  | rowspan="2"| Play
+
  |rowspan="5"| Login
  | rowspan="2"| Client
+
  |rowspan="5"| Client
  | Chunk X
+
  | Server ID
 +
| String
 +
| Appears to be empty
 +
|-
 +
| Public Key Length
 
  | VarInt
 
  | VarInt
  | Chunk X coordinate of the player's position.
+
  | Length of Public Key
 
  |-
 
  |-
  | Chunk Z
+
  | Public Key
 +
| Byte Array
 +
|
 +
|-
 +
| Verify Token Length
 
  | VarInt
 
  | VarInt
  | Chunk Z coordinate of the player's position.
+
  | Length of Verify Token
 +
|-
 +
| Verify Token
 +
| Byte Array
 +
|
 
  |}
 
  |}
  
==== Set Render Distance ====
+
See [[Protocol Encryption]] for details.
  
Sent by the integrated singleplayer server when changing render distance.  This packet is sent by the server when the client reappears in the overworld after leaving the end.
+
==== Login Success ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 5,004: Line 4,600:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | 0x4B
+
  |rowspan="2"| 0x02
  | Play
+
  |rowspan="2"| Login
  | Client
+
  |rowspan="2"| Client
  | View Distance
+
  | UUID
  | VarInt
+
  | String
  | Render distance (2-32).
+
| Unlike in other packets, this field contains the UUID as a string with hyphens.
 +
  |-
 +
| Username
 +
| String
 +
|
 
  |}
 
  |}
  
==== Set Default Spawn Position ====
+
This packet switches the connection state to [[#Play|play]].
  
Sent by the server after login to specify the coordinates of the spawn point (the point at which players spawn at, and which the compass points to). It can be sent at any time to update the point compasses point at.
+
==== Set Compression ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 5,024: Line 4,624:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x4C
+
  |rowspan="1"| 0x03
  | rowspan="2"| Play
+
  |rowspan="1"| Login
  | rowspan="2"| Client
+
  |rowspan="1"| Client
  | Location
+
  | Threshold
  | Position
+
  | VarInt
  | Spawn location.
+
  | Maximum size of a packet before its compressed
|-
 
| Angle
 
| Float
 
| The angle at which to respawn at.
 
 
  |}
 
  |}
  
==== Display Objective ====
+
=== Serverbound ===
  
This is sent to the client when it should display a scoreboard.
+
==== Login Start  ====
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 5,048: Line 4,644:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x4D
+
  |rowspan="1"| 0x00
  | rowspan="2"| Play
+
  |rowspan="1"| Login
  | rowspan="2"| Client
+
  |rowspan="1"| Server
| Position
+
  | Name
| Byte
+
  | String
| The position of the scoreboard. 0: list, 1: sidebar, 2: below name, 3 - 18: team specific sidebar, indexed as 3 + team color.
+
  |  
|-
 
  | Score Name
 
  | String (16)
 
  | The unique name for the scoreboard to be displayed.
 
 
  |}
 
  |}
  
==== Set Entity Metadata ====
+
==== Encryption Response ====
 
 
Updates one or more [[Entity_metadata#Entity Metadata Format|metadata]] properties for an existing entity. Any properties not included in the Metadata field are left unchanged.
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 5,072: Line 4,662:
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | rowspan="2"| 0x4E
+
  |rowspan="4"| 0x01
  | rowspan="2"| Play
+
  |rowspan="4"| Login
  | rowspan="2"| Client
+
  |rowspan="4"| Server
  | Entity ID
+
  | Shared Secret Length
 
  | VarInt
 
  | VarInt
  |
+
  | Length of Shared Secret
 
  |-
 
  |-
  | Metadata
+
  | Shared Secret
| [[Entity_metadata#Entity Metadata Format|Entity Metadata]]
+
  | Byte Array
  |
+
  |  
  |}
 
 
 
==== Link Entities ====
 
 
 
This packet is sent when an entity has been {{Minecraft Wiki|Lead|leashed}} to another entity.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
 
  |-
 
  |-
  | rowspan="2"| 0x4F
+
  | Verify Token Length
| rowspan="2"| Play
+
  | VarInt
| rowspan="2"| Client
+
  | Length of Verify Token
| Attached Entity ID
 
  | Int
 
  | Attached entity's EID.
 
 
  |-
 
  |-
  | Holding Entity ID
+
  | Verify Token
  | Int
+
  | Byte Array
  | ID of the entity holding the lead. Set to -1 to detach.
+
  |  
 
  |}
 
  |}
  
==== Set Entity Velocity ====
+
See [[Protocol Encryption]] for details.
 
 
Velocity is believed to be in units of 1/8000 of a block per server tick (50ms); for example, -1343 would move (-1343 / 8000) = −0.167875 blocks per tick (or −3,3575 blocks per second).
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="4"| 0x50
 
| rowspan="4"| Play
 
| rowspan="4"| Client
 
| Entity ID
 
| VarInt
 
|
 
|-
 
| Velocity X
 
| Short
 
| Velocity on the X axis.
 
|-
 
| Velocity Y
 
| Short
 
| Velocity on the Y axis.
 
|-
 
| Velocity Z
 
| Short
 
| Velocity on the Z axis.
 
|}
 
 
 
==== Set Equipment ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x51
 
| rowspan="3"| Play
 
| rowspan="3"| Client
 
| colspan="2"| Entity ID
 
| colspan="2"| VarInt
 
| Entity's ID.
 
|-
 
| rowspan="2"| Equipment
 
| Slot
 
| rowspan="2"| Array
 
| Byte Enum
 
| Equipment slot. 0: main hand, 1: off hand, 2–5: armor slot (2: boots, 3: leggings, 4: chestplate, 5: helmet).  Also has the top bit set if another entry follows, and otherwise unset if this is the last item in the array.
 
|-
 
| Item
 
| [[Slot Data|Slot]]
 
|
 
|}
 
 
 
==== Set Experience ====
 
 
 
Sent by the server when the client should change experience levels.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x52
 
| rowspan="3"| Play
 
| rowspan="3"| Client
 
| Experience bar
 
| Float
 
| Between 0 and 1.
 
|-
 
| Total Experience
 
| VarInt
 
| See {{Minecraft Wiki|Experience#Leveling up}} on the Minecraft Wiki for Total Experience to Level conversion.
 
|-
 
| Level
 
| VarInt
 
|
 
|}
 
 
 
==== Set Health ====
 
 
 
Sent by the server to set the health of the player it is sent to.
 
 
 
Food {{Minecraft Wiki|Food#Hunger vs. Saturation|saturation}} acts as a food “overcharge”. Food values will not decrease while the saturation is over zero. New players logging in or respawning automatically get a saturation of 5.0. Eating food increases the saturation as well as the food bar.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x53
 
| rowspan="3"| Play
 
| rowspan="3"| Client
 
| Health
 
| Float
 
| 0 or less = dead, 20 = full HP.
 
|-
 
| Food
 
| VarInt
 
| 0–20.
 
|-
 
| Food Saturation
 
| Float
 
| Seems to vary from 0.0 to 5.0 in integer increments.
 
|}
 
 
 
==== Update Objectives ====
 
 
 
This is sent to the client when it should create a new {{Minecraft Wiki|scoreboard}} objective or remove one.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="4"| 0x54
 
| rowspan="4"| Play
 
| rowspan="4"| Client
 
| Objective Name
 
| String (16)
 
| A unique name for the objective.
 
|-
 
| Mode
 
| Byte
 
| 0 to create the scoreboard. 1 to remove the scoreboard. 2 to update the display text.
 
|-
 
| Objective Value
 
| Optional Chat
 
| Only if mode is 0 or 2. The text to be displayed for the score.
 
|-
 
| Type
 
| Optional VarInt Enum
 
| Only if mode is 0 or 2. 0 = "integer", 1 = "hearts".
 
|}
 
 
 
==== Set Passengers ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x55
 
| rowspan="3"| Play
 
| rowspan="3"| Client
 
| Entity ID
 
| VarInt
 
| Vehicle's EID.
 
|-
 
| Passenger Count
 
| VarInt
 
| Number of elements in the following array.
 
|-
 
| Passengers
 
| Array of VarInt
 
| EIDs of entity's passengers.
 
|}
 
 
 
==== Update Teams ====
 
 
 
Creates and updates teams.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="23"| 0x56
 
| rowspan="23"| Play
 
| rowspan="23"| Client
 
| colspan="2"| Team Name
 
| String (16)
 
| A unique name for the team. (Shared with scoreboard).
 
|-
 
| colspan="2"| Mode
 
| Byte
 
| Determines the layout of the remaining packet.
 
|-
 
| rowspan="9"| 0: create team
 
| Team Display Name
 
| Chat
 
|
 
|-
 
| Friendly Flags
 
| Byte
 
| Bit mask. 0x01: Allow friendly fire, 0x02: can see invisible players on same team.
 
|-
 
| Name Tag Visibility
 
| String Enum (32)
 
| <code>always</code>, <code>hideForOtherTeams</code>, <code>hideForOwnTeam</code>, <code>never</code>.
 
|-
 
| Collision Rule
 
| String Enum (32)
 
| <code>always</code>, <code>pushOtherTeams</code>, <code>pushOwnTeam</code>, <code>never</code>.
 
|-
 
| Team Color
 
| VarInt Enum
 
| Used to color the name of players on the team; see below.
 
|-
 
| Team Prefix
 
| Chat
 
| Displayed before the names of players that are part of this team.
 
|-
 
| Team Suffix
 
| Chat
 
| Displayed after the names of players that are part of this team.
 
|-
 
| Entity Count
 
| VarInt
 
| Number of elements in the following array.
 
|-
 
| Entities
 
| Array of String (40)
 
| Identifiers for the entities in this team.  For players, this is their username; for other entities, it is their UUID.
 
|-
 
| 1: remove team
 
| ''no fields''
 
| ''no fields''
 
|
 
|-
 
| rowspan="7"| 2: update team info
 
| Team Display Name
 
| Chat
 
|
 
|-
 
| Friendly Flags
 
| Byte
 
| Bit mask. 0x01: Allow friendly fire, 0x02: can see invisible entities on same team.
 
|-
 
| Name Tag Visibility
 
| String Enum (32)
 
| <code>always</code>, <code>hideForOtherTeams</code>, <code>hideForOwnTeam</code>, <code>never</code>
 
|-
 
| Collision Rule
 
| String Enum (32)
 
| <code>always</code>, <code>pushOtherTeams</code>, <code>pushOwnTeam</code>, <code>never</code>
 
|-
 
| Team Color
 
| VarInt Enum
 
| Used to color the name of players on the team; see below.
 
|-
 
| Team Prefix
 
| Chat
 
| Displayed before the names of players that are part of this team.
 
|-
 
| Team Suffix
 
| Chat
 
| Displayed after the names of players that are part of this team.
 
|-
 
| rowspan="2"| 3: add entities to team
 
| Entity Count
 
| VarInt
 
| Number of elements in the following array.
 
|-
 
| Entities
 
| Array of String (40)
 
| Identifiers for the added entities.  For players, this is their username; for other entities, it is their UUID.
 
|-
 
| rowspan="2"| 4: remove entities from team
 
| Entity Count
 
| VarInt
 
| Number of elements in the following array.
 
|-
 
| Entities
 
| Array of String (40)
 
| Identifiers for the removed entities.  For players, this is their username; for other entities, it is their UUID.
 
|}
 
 
 
Team Color: The color of a team defines how the names of the team members are visualized; any formatting code can be used. The following table lists all the possible values.
 
 
 
{| class="wikitable"
 
! ID
 
! Formatting
 
|-
 
| 0-15
 
| Color formatting, same values as [[Chat]] colors.
 
|-
 
| 16
 
| Obfuscated
 
|-
 
| 17
 
| Bold
 
|-
 
| 18
 
| Strikethrough
 
|-
 
| 19
 
| Underlined
 
|-
 
| 20
 
| Italic
 
|-
 
| 21
 
| Reset
 
|}
 
 
 
==== Update Score ====
 
 
 
This is sent to the client when it should update a scoreboard item.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="4"| 0x57
 
| rowspan="4"| Play
 
| rowspan="4"| Client
 
| Entity Name
 
| String (40)
 
| The entity whose score this is.  For players, this is their username; for other entities, it is their UUID.
 
|-
 
| Action
 
| VarInt Enum
 
| 0 to create/update an item. 1 to remove an item.
 
|-
 
| Objective Name
 
| String (16)
 
| The name of the objective the score belongs to.
 
|-
 
| Value
 
| Optional VarInt
 
| The score to be displayed next to the entry. Only sent when Action does not equal 1.
 
|}
 
 
 
==== Set Simulation Distance ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x58
 
| Play
 
| Client
 
| Simulation Distance
 
| VarInt
 
| The distance that the client will process specific things, such as entities.
 
|}
 
 
 
==== Set Subtitle Text ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="1"| 0x59
 
| rowspan="1"| Play
 
| rowspan="1"| Client
 
| Subtitle Text
 
| [[Chat]]
 
|
 
|}
 
 
 
==== Update Time ====
 
 
 
Time is based on ticks, where 20 ticks happen every second. There are 24000 ticks in a day, making Minecraft days exactly 20 minutes long.
 
 
 
The time of day is based on the timestamp modulo 24000. 0 is sunrise, 6000 is noon, 12000 is sunset, and 18000 is midnight.
 
 
 
The default SMP server increments the time by <code>20</code> every second.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x5A
 
| rowspan="2"| Play
 
| rowspan="2"| Client
 
| World Age
 
| Long
 
| In ticks; not changed by server commands.
 
|-
 
| Time of day
 
| Long
 
| The world (or region) time, in ticks. If negative the sun will stop moving at the Math.abs of the time.
 
|}
 
 
 
==== Set Title Text ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="1"| 0x5B
 
| rowspan="1"| Play
 
| rowspan="1"| Client
 
| Title Text
 
| [[Chat]]
 
|
 
|}
 
 
 
==== Set Title Animation Times ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x5C
 
| rowspan="3"| Play
 
| rowspan="3"| Client
 
| Fade In
 
| Int
 
| Ticks to spend fading in.
 
|-
 
| Stay
 
| Int
 
| Ticks to keep the title displayed.
 
|-
 
| Fade Out
 
| Int
 
| Ticks to spend fading out, not when to start fading out.
 
|}
 
 
 
==== Entity Sound Effect ====
 
 
 
Plays a sound effect from an entity.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="6"| 0x5D
 
| rowspan="6"| Play
 
| rowspan="6"| Client
 
| Sound ID
 
| VarInt
 
| ID of hardcoded sound event ([https://pokechu22.github.io/Burger/1.19.html#sounds events]).
 
|-
 
| Sound Category
 
| VarInt Enum
 
| The category that this sound will be played from ([https://gist.github.com/konwboj/7c0c380d3923443e9d55 current categories]).
 
|-
 
| Entity ID
 
| VarInt
 
|
 
|-
 
| Volume
 
| Float
 
| 1.0 is 100%, capped between 0.0 and 1.0 by Notchian clients.
 
|-
 
| Pitch
 
| Float
 
| Float between 0.5 and 2.0 by Notchian clients.
 
|-
 
| Seed
 
| Long
 
| Seed used to pick sound variant.
 
|}
 
 
 
==== Sound Effect ====
 
 
 
This packet is used to play a number of hardcoded sound events. For custom sounds, use [[#Custom Sound Effect|Custom Sound Effect]].
 
 
 
{{Warning|Numeric sound effect IDs are liable to change between versions}}
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="8"| 0x5E
 
| rowspan="8"| Play
 
| rowspan="8"| Client
 
| Sound ID
 
| VarInt
 
| ID of hardcoded sound event ([https://pokechu22.github.io/Burger/1.19.html#sounds events]).
 
|-
 
| Sound Category
 
| VarInt Enum
 
| The category that this sound will be played from ([https://gist.github.com/konwboj/7c0c380d3923443e9d55 current categories]).
 
|-
 
| Effect Position X
 
| Int
 
| Effect X multiplied by 8 ([[Data types#Fixed-point numbers|fixed-point number]] with only 3 bits dedicated to the fractional part).
 
|-
 
| Effect Position Y
 
| Int
 
| Effect Y multiplied by 8 ([[Data types#Fixed-point numbers|fixed-point number]] with only 3 bits dedicated to the fractional part).
 
|-
 
| Effect Position Z
 
| Int
 
| Effect Z multiplied by 8 ([[Data types#Fixed-point numbers|fixed-point number]] with only 3 bits dedicated to the fractional part).
 
|-
 
| Volume
 
| Float
 
| 1.0 is 100%, capped between 0.0 and 1.0 by Notchian clients.
 
|-
 
| Pitch
 
| Float
 
| Float between 0.5 and 2.0 by Notchian clients.
 
|-
 
| Seed
 
| Long
 
| Seed used to pick sound variant.
 
|}
 
 
 
==== Stop Sound ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x5F
 
| rowspan="3"| Play
 
| rowspan="3"| Client
 
| Flags
 
| Byte
 
| Controls which fields are present.
 
|-
 
| Source
 
| Optional VarInt Enum
 
| Only if flags is 3 or 1 (bit mask 0x1). See below. If not present, then sounds from all sources are cleared.
 
|-
 
| Sound
 
| Optional Identifier
 
| Only if flags is 2 or 3 (bit mask 0x2).  A sound effect name, see [[#Custom Sound Effect|Custom Sound Effect]]. If not present, then all sounds are cleared.
 
|}
 
 
 
Categories:
 
 
 
{| class="wikitable"
 
! Name !! Value
 
|-
 
| master || 0
 
|-
 
| music || 1
 
|-
 
| record || 2
 
|-
 
| weather || 3
 
|-
 
| block || 4
 
|-
 
| hostile || 5
 
|-
 
| neutral || 6
 
|-
 
| player || 7
 
|-
 
| ambient || 8
 
|-
 
| voice || 9
 
|}
 
 
 
==== System Chat Message ====
 
 
 
Identifying the difference between Chat/System Message is important as it helps respect the user's chat visibility options.  See [[Chat#Processing chat|processing chat]] for more info about these positions.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x60
 
| rowspan="2"| Play
 
| rowspan="2"| Client
 
| Content
 
| [[Chat]]
 
| Limited to 262144 bytes.
 
|-
 
| Overlay
 
| Boolean
 
| Whether the message is an actionbar or chat message.
 
|}
 
 
 
==== Set Tab List Header And Footer ====
 
 
 
This packet may be used by custom servers to display additional information above/below the player list. It is never sent by the Notchian server.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x61
 
| rowspan="2"| Play
 
| rowspan="2"| Client
 
| Header
 
| [[Chat]]
 
| To remove the header, send a empty text component: <code>{"text":""}</code>.
 
|-
 
| Footer
 
| [[Chat]]
 
| To remove the footer, send a empty text component: <code>{"text":""}</code>.
 
|}
 
 
 
==== Tag Query Response ====
 
 
 
Sent in response to [[#Query Block Entity Tag|Query Block Entity Tag]] or [[#Query Entity Tag|Query Entity Tag]].
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x62
 
| rowspan="2"| Play
 
| rowspan="2"| Client
 
| Transaction ID
 
| VarInt
 
| Can be compared to the one sent in the original query packet.
 
|-
 
| NBT
 
| [[NBT|NBT Tag]]
 
| The NBT of the block or entity.  May be a TAG_END (0) in which case no NBT is present.
 
|}
 
 
 
==== Pickup Item ====
 
 
 
Sent by the server when someone picks up an item lying on the ground — its sole purpose appears to be the animation of the item flying towards you. It doesn't destroy the entity in the client memory, and it doesn't add it to your inventory. The server only checks for items to be picked up after each [[#Set Player Position|Set Player Position]] (and [[#Set Player Position And Rotation|Set Player Position And Rotation]]) packet sent by the client. The collector entity can be any entity; it does not have to be a player. The collected entity also can be any entity, but the Notchian server only uses this for items, experience orbs, and the different varieties of arrows.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x63
 
| rowspan="3"| Play
 
| rowspan="3"| Client
 
| Collected Entity ID
 
| VarInt
 
|
 
|-
 
| Collector Entity ID
 
| VarInt
 
|
 
|-
 
| Pickup Item Count
 
| VarInt
 
| Seems to be 1 for XP orbs, otherwise the number of items in the stack.
 
|}
 
 
 
==== Teleport Entity ====
 
 
 
This packet is sent by the server when an entity moves more than 8 blocks.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="7"| 0x64
 
| rowspan="7"| Play
 
| rowspan="7"| Client
 
| Entity ID
 
| VarInt
 
|
 
|-
 
| X
 
| Double
 
|
 
|-
 
| Y
 
| Double
 
|
 
|-
 
| Z
 
| Double
 
|
 
|-
 
| Yaw
 
| Angle
 
| (Y Rot)New angle, not a delta.
 
|-
 
| Pitch
 
| Angle
 
| (X Rot)New angle, not a delta.
 
|-
 
| On Ground
 
| Boolean
 
|
 
|}
 
 
 
==== Update Advancements ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| rowspan="9"| 0x65
 
| rowspan="9"| Play
 
| rowspan="9"| Client
 
| colspan="2"| Reset/Clear
 
| colspan="2"| Boolean
 
| Whether to reset/clear the current advancements.
 
|-
 
| colspan="2"| Mapping size
 
| colspan="2"| VarInt
 
| Size of the following array.
 
|-
 
| rowspan="2"| Advancement mapping
 
| Key
 
| rowspan="2"| Array
 
| Identifier
 
| The identifier of the advancement.
 
|-
 
| Value
 
| Advancement
 
| See below
 
|-
 
| colspan="2"| List size
 
| colspan="2"| VarInt
 
| Size of the following array.
 
|-
 
| colspan="2"| Identifiers
 
| colspan="2"| Array of Identifier
 
| The identifiers of the advancements that should be removed.
 
|-
 
| colspan="2"| Progress size
 
| colspan="2"| VarInt
 
| Size of the following array.
 
|-
 
| rowspan="2"| Progress mapping
 
| Key
 
| rowspan="2"| Array
 
| Identifier
 
| The identifier of the advancement.
 
|-
 
| Value
 
| Advancement progress
 
| See below.
 
|}
 
 
 
Advancement structure:
 
 
 
{| class="wikitable"
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| colspan="2"| Has parent
 
| colspan="2"| Boolean
 
| Indicates whether the next field exists.
 
|-
 
| colspan="2"| Parent id
 
| colspan="2"| Optional Identifier
 
| The identifier of the parent advancement.
 
|-
 
| colspan="2"| Has display
 
| colspan="2"| Boolean
 
| Indicates whether the next field exists.
 
|-
 
| colspan="2"| Display data
 
| colspan="2"| Optional advancement display
 
| See below.
 
|-
 
| colspan="2"| Number of criteria
 
| colspan="2"| VarInt
 
| Size of the following array.
 
|-
 
| rowspan="2"| Criteria
 
| Key
 
| rowspan="2"| Array
 
| Identifier
 
| The identifier of the criterion.
 
|-
 
| Value
 
| '''Void'''
 
| There is ''no'' content written here. Perhaps this will be expanded in the future?
 
|-
 
| colspan="2"| Array length
 
| colspan="2"| VarInt
 
| Number of arrays in the following array.
 
|-
 
| rowspan="2"| Requirements
 
| Array length 2
 
| rowspan="2"| Array
 
| VarInt
 
| Number of elements in the following array.
 
|-
 
| Requirement
 
| Array of String
 
| Array of required criteria.
 
|}
 
 
 
Advancement display:
 
 
 
{| class="wikitable"
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| Title
 
| Chat
 
|
 
|-
 
| Description
 
| Chat
 
|
 
|-
 
| Icon
 
| [[Slot]]
 
|
 
|-
 
| Frame type
 
| VarInt Enum
 
| 0 = <code>task</code>, 1 = <code>challenge</code>, 2 = <code>goal</code>.
 
|-
 
| Flags
 
| Int
 
| 0x01: has background texture; 0x02: <code>show_toast</code>; 0x04: <code>hidden</code>.
 
|-
 
| Background texture
 
| Optional Identifier
 
| Background texture location.  Only if flags indicates it.
 
|-
 
| X coord
 
| Float
 
|
 
|-
 
| Y coord
 
| Float
 
|
 
|}
 
 
 
Advancement progress:
 
 
 
{| class="wikitable"
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| colspan="2"| Size
 
| colspan="2"| VarInt
 
| Size of the following array.
 
|-
 
| rowspan="2"| Criteria
 
| Criterion identifier
 
| rowspan="2"| Array
 
| Identifier
 
| The identifier of the criterion.
 
|-
 
| Criterion progress
 
| Criterion progress
 
|
 
|}
 
 
 
Criterion progress:
 
 
 
{| class="wikitable"
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| Achieved
 
| Boolean
 
| If true, next field is present.
 
|-
 
| Date of achieving
 
| Optional Long
 
| As returned by [https://docs.oracle.com/javase/6/docs/api/java/util/Date.html#getTime() <code>Date.getTime</code>].
 
|}
 
 
 
==== Update Attributes ====
 
 
 
Sets {{Minecraft Wiki|Attribute|attributes}} on the given entity.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| rowspan="6"| 0x66
 
| rowspan="6"| Play
 
| rowspan="6"| Client
 
| colspan="2"| Entity ID
 
| colspan="2"| VarInt
 
|
 
|-
 
| colspan="2"| Number Of Properties
 
| colspan="2"| VarInt
 
| Number of elements in the following array.
 
|-
 
| rowspan="4"| Property
 
| Key
 
| rowspan="4"| Array
 
| Identifier
 
| See below.
 
|-
 
| Value
 
| Double
 
| See below.
 
|-
 
| Number Of Modifiers
 
| VarInt
 
| Number of elements in the following array.
 
|-
 
| Modifiers
 
| Array of Modifier Data
 
| See {{Minecraft Wiki|Attribute#Modifiers}}. Modifier Data defined below.
 
|}
 
 
 
Known Key values (see also {{Minecraft Wiki|Attribute#Modifiers}}):
 
 
 
{| class="wikitable"
 
|-
 
! Key
 
! Default
 
! Min
 
! Max
 
! Label
 
|-
 
| generic.max_health
 
| 20.0
 
| 1.0
 
| 1024.0
 
| Max Health.
 
|-
 
| generic.follow_range
 
| 32.0
 
| 0.0
 
| 2048.0
 
| Follow Range.
 
|-
 
| generic.knockback_resistance
 
| 0.0
 
| 0.0
 
| 1.0
 
| Knockback Resistance.
 
|-
 
| generic.movement_speed
 
| 0.7
 
| 0.0
 
| 1024.0
 
| Movement Speed.
 
|-
 
| generic.flying_speed
 
| 0.4
 
| 0.0
 
| 1024.0
 
| Flying Speed.
 
|-
 
| generic.attack_damage
 
| 2.0
 
| 0.0
 
| 2048.0
 
| Attack Damage.
 
|-
 
| generic.attack_knockback
 
| 0.0
 
| 0.0
 
| 5.0
 
| &mdash;
 
|-
 
| generic.attack_speed
 
| 4.0
 
| 0.0
 
| 1024.0
 
| Attack Speed.
 
|-
 
| generic.armor
 
| 0.0
 
| 0.0
 
| 30.0
 
| Armor.
 
|-
 
| generic.armor_toughness
 
| 0.0
 
| 0.0
 
| 20.0
 
| Armor Toughness.
 
|-
 
| generic.luck
 
| 0.0
 
| -1024.0
 
| 1024.0
 
| Luck.
 
|-
 
| zombie.spawn_reinforcements
 
| 0.0
 
| 0.0
 
| 1.0
 
| Spawn Reinforcements Chance.
 
|-
 
| horse.jump_strength
 
| 0.7
 
| 0.0
 
| 2.0
 
| Jump Strength.
 
|-
 
| generic.reachDistance
 
| 5.0
 
| 0.0
 
| 1024.0
 
| Player Reach Distance (Forge only).
 
|-
 
| forge.swimSpeed
 
| 1.0
 
| 0.0
 
| 1024.0
 
| Swimming Speed (Forge only).
 
|}
 
 
 
''Modifier Data'' structure:
 
 
 
{| class="wikitable"
 
|-
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| UUID
 
| UUID
 
|
 
|-
 
| Amount
 
| Double
 
| May be positive or negative.
 
|-
 
| Operation
 
| Byte
 
| See below.
 
|}
 
 
 
The operation controls how the base value of the modifier is changed.
 
 
 
* 0: Add/subtract amount
 
* 1: Add/subtract amount percent of the current value
 
* 2: Multiply by amount percent
 
 
 
All of the 0's are applied first, and then the 1's, and then the 2's.
 
 
 
==== Feature Flags ====
 
 
 
Used to enable and disable features, generally experimental ones, on the client.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x67
 
| rowspan="2"| Play
 
| rowspan="2"| Client
 
| Total Features
 
| VarInt
 
| Number of features that appear in the array below.
 
|-
 
| Feature Flags
 
| Identifier Array
 
|
 
|}
 
 
 
As of 1.19.3, the following feature flags are available:
 
 
 
* minecraft:vanilla - enables vanilla features</li>
 
* minecraft:bundle - enables support for the bundle</li>
 
* minecraft:update_1_20 - enables all the Minecraft 1.20 features that are available in 1.19.3</li>
 
 
 
==== Entity Effect ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="7"| 0x68
 
| rowspan="7"| Play
 
| rowspan="7"| Client
 
| Entity ID
 
| VarInt
 
|
 
|-
 
| Effect ID
 
| VarInt
 
| See {{Minecraft Wiki|Status effect#Effect IDs|this table}}.
 
|-
 
| Amplifier
 
| Byte
 
| Notchian client displays effect level as Amplifier + 1.
 
|-
 
| Duration
 
| VarInt
 
| Duration in ticks.
 
|-
 
| Flags
 
| Byte
 
| Bit field, see below.
 
|-
 
| Has Factor Data
 
| Boolean
 
| Used in DARKNESS effect
 
|-
 
| Factor Codec
 
| NBT Tag
 
| See below
 
|}
 
 
 
Within flags:
 
 
 
* 0x01: Is ambient - was the effect spawned from a beacon?  All beacon-generated effects are ambient.  Ambient effects use a different icon in the HUD (blue border rather than gray).  If all effects on an entity are ambient, the [[Entity_metadata#Living Entity|"Is potion effect ambient" living metadata field]] should be set to true.  Usually should not be enabled.
 
* 0x02: Show particles - should all particles from this effect be hidden?  Effects with particles hidden are not included in the calculation of the effect color, and are not rendered on the HUD (but are still rendered within the inventory).  Usually should be enabled.
 
* 0x04: Show icon - should the icon be displayed on the client?  Usually should be enabled.
 
 
 
Factor Data
 
{| class="wikitable"
 
!Name
 
!Type
 
!style="width: 250px;" colspan="2"| Notes
 
|-
 
| padding_duration
 
| TAG_INT
 
|
 
|-
 
| factor_start
 
| TAG_FLOAT
 
|
 
|-
 
| factor_target
 
| TAG_FLOAT
 
|
 
|-
 
| factor_current
 
| TAG_FLOAT
 
|
 
|-
 
| effect_changed_timestamp
 
| TAG_INT
 
|-
 
| factor_previous_frame
 
| TAG_FLOAT
 
|-
 
| had_effect_last_tick
 
| TAG_BOOLEAN
 
|}
 
 
 
==== Update Recipes ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| rowspan="4"| 0x69
 
| rowspan="4"| Play
 
| rowspan="4"| Client
 
| colspan="2"| Num Recipes
 
| colspan="2"| VarInt
 
| Number of elements in the following array.
 
|-
 
| rowspan="3"| Recipe
 
| Type
 
| rowspan="3"| Array
 
| Identifier
 
| The recipe type, see below.
 
|-
 
| Recipe ID
 
| Identifier
 
|
 
|-
 
| Data
 
| Optional, varies
 
| Additional data for the recipe.  For some types, there will be no data.
 
|}
 
 
 
Recipe types:
 
 
 
{| class="wikitable"
 
! Type
 
! Description
 
! Data
 
|-
 
| <code>crafting_shapeless</code>
 
| Shapeless crafting recipe. All items in the ingredient list must be present, but in any order/slot.
 
| As follows:
 
  {| class="wikitable"
 
    ! Name
 
    ! Type
 
    ! Description
 
    |-
 
    | Group
 
    | String
 
    | Used to group similar recipes together in the recipe book. Tag is present in recipe JSON.
 
    |-
 
    |Category
 
    |VarInt Enum
 
    |Building = 0, Redstone = 1, Equipment = 2, Misc = 3
 
    |-
 
    | Ingredient count
 
    | VarInt
 
    | Number of elements in the following array.
 
    |-
 
    | Ingredients
 
    | Array of Ingredient.
 
    |
 
    |-
 
    | Result
 
    | [[Slot]]
 
    |
 
    |}
 
|-
 
| <code>crafting_shaped</code>
 
| Shaped crafting recipe. All items must be present in the same pattern (which may be flipped horizontally or translated).
 
| As follows:
 
  {| class="wikitable"
 
    ! Name
 
    ! Type
 
    ! Description
 
    |-
 
    | Width
 
    | VarInt
 
    |
 
    |-
 
    | Height
 
    | VarInt
 
    |
 
    |-
 
    | Group
 
    | String
 
    | Used to group similar recipes together in the recipe book. Tag is present in recipe JSON.
 
    |-
 
    |Category
 
    |VarInt Enum
 
    |Building = 0, Redstone = 1, Equipment = 2, Misc = 3
 
    |-
 
    | Ingredients
 
    | Array of Ingredient
 
    | Length is <code>width * height</code>. Indexed by <code>x + (y * width)</code>.
 
    |-
 
    | Result
 
    | [[Slot]]
 
    |
 
    |}
 
|-
 
| <code>crafting_special_armordye</code>
 
| Recipe for dying leather armor
 
| rowspan="14" | As follows:
 
  {| class="wikitable"
 
    ! Name
 
    ! Type
 
    ! Description
 
    |-
 
    |Category
 
    |VarInt Enum
 
    |Building = 0, Redstone = 1, Equipment = 2, Misc = 3
 
    |}
 
|-
 
| <code>crafting_special_bookcloning</code>
 
| Recipe for copying contents of written books
 
|-
 
| <code>crafting_special_mapcloning</code>
 
| Recipe for copying maps
 
|-
 
| <code>crafting_special_mapextending</code>
 
| Recipe for adding paper to maps
 
|-
 
| <code>crafting_special_firework_rocket</code>
 
| Recipe for making firework rockets
 
|-
 
| <code>crafting_special_firework_star</code>
 
| Recipe for making firework stars
 
|-
 
| <code>crafting_special_firework_star_fade</code>
 
| Recipe for making firework stars fade between multiple colors
 
|-
 
| <code>crafting_special_repairitem</code>
 
| Recipe for repairing items via crafting
 
|-
 
| <code>crafting_special_tippedarrow</code>
 
| Recipe for crafting tipped arrows
 
|-
 
| <code>crafting_special_bannerduplicate</code>
 
| Recipe for copying banner patterns
 
|-
 
| <code>crafting_special_banneraddpattern</code>
 
| Recipe for adding patterns to banners
 
|-
 
| <code>crafting_special_shielddecoration</code>
 
| Recipe for applying a banner's pattern to a shield
 
|-
 
| <code>crafting_special_shulkerboxcoloring</code>
 
| Recipe for recoloring a shulker box
 
|-
 
| <code>crafting_special_suspiciousstew</code>
 
|
 
|-
 
| <code>smelting</code>
 
| Smelting recipe
 
| rowspan="4"| As follows:
 
  {| class="wikitable"
 
    ! Name
 
    ! Type
 
    ! Description
 
    |-
 
    | Group
 
    | String
 
    | Used to group similar recipes together in the recipe book.
 
    |-
 
    |Category
 
    |VarInt Enum
 
    |Food = 0, Blocks = 1, Misc = 2
 
    |-
 
    | Ingredient
 
    | Ingredient
 
    |
 
    |-
 
    | Result
 
    | [[Slot]]
 
    |
 
    |-
 
    | Experience
 
    | Float
 
    |
 
    |-
 
    | Cooking time
 
    | VarInt
 
    |
 
    |}
 
|-
 
| <code>blasting</code>
 
| Blast furnace recipe
 
|-
 
| <code>smoking</code>
 
| Smoker recipe
 
|-
 
| <code>campfire_cooking</code>
 
| Campfire recipe
 
|-
 
| <code>stonecutting</code>
 
| Stonecutter recipe
 
| As follows:
 
  {| class="wikitable"
 
    ! Name
 
    ! Type
 
    ! Description
 
    |-
 
    | Group
 
    | String
 
    | Used to group similar recipes together in the recipe book.  Tag is present in recipe JSON.
 
    |-
 
    | Ingredient
 
    | Ingredient
 
    |
 
    |-
 
    | Result
 
    | [[Slot]]
 
    |
 
    |}
 
|-
 
| <code>smithing</code>
 
| Smithing table recipe
 
| As follows:
 
  {| class="wikitable"
 
    ! Name
 
    ! Type
 
    ! Description
 
    |-
 
    | Base
 
    | Ingredient
 
    | First item.
 
    |-
 
    | Addition
 
    | Ingredient
 
    | Second item.
 
    |-
 
    | Result
 
    | [[Slot]]
 
    |
 
    |}
 
|}
 
 
 
Ingredient is defined as:
 
 
 
{| class="wikitable"
 
! Name
 
! Type
 
! Description
 
|-
 
| Count
 
| VarInt
 
| Number of elements in the following array.
 
|-
 
| Items
 
| Array of [[Slot]]
 
| Any item in this array may be used for the recipe.  The count of each item should be 1.
 
|}
 
 
 
==== Update Tags ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x6A
 
| rowspan="3"| Play
 
| rowspan="3"| Client
 
| colspan="2"| Length of the array
 
| colspan="2"| VarInt
 
|
 
|-
 
| rowspan="2"| Array of tags
 
| Tag type
 
| rowspan="2"| Array
 
| Identifier
 
| Tag identifier (Vanilla required tags are <code>minecraft:block</code>, <code>minecraft:item</code>, <code>minecraft:fluid</code>, <code>minecraft:entity_type</code>, and <code>minecraft:game_event</code>)
 
|-
 
| Array of Tag
 
| (See below)
 
|
 
|}
 
 
 
Tags look like:
 
 
 
{| class="wikitable"
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| colspan="2"| Length
 
| colspan="2"| VarInt
 
| Number of elements in the following array
 
|-
 
| rowspan="3"| Tags
 
| Tag name
 
| rowspan="3"| Array
 
| Identifier
 
|
 
|-
 
| Count
 
| VarInt
 
| Number of elements in the following array
 
|-
 
| Entries
 
| Array of VarInt
 
| Numeric ID of the given type (block, item, etc.).
 
|}
 
 
 
More information on tags is available at: https://minecraft.gamepedia.com/Tag
 
 
 
And a list of all tags is here: https://minecraft.gamepedia.com/Tag#List_of_tags
 
 
 
=== Serverbound ===
 
 
 
==== Confirm Teleportation ====
 
 
 
Sent by client as confirmation of [[#Synchronize Player Position|Synchronize Player Position]].
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x00
 
| Play
 
| Server
 
| Teleport ID
 
| VarInt
 
| The ID given by the [[#Synchronize Player Position|Synchronize Player Position]] packet.
 
|}
 
 
 
==== Query Block Entity Tag ====
 
 
 
Used when <kbd>Shift</kbd>+<kbd>F3</kbd>+<kbd>I</kbd> is pressed while looking at a block.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x01
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Transaction ID
 
| VarInt
 
| An incremental ID so that the client can verify that the response matches.
 
|-
 
| Location
 
| Position
 
| The location of the block to check.
 
|}
 
 
 
==== Change Difficulty ====
 
 
 
Must have at least op level 2 to use.  Appears to only be used on singleplayer; the difficulty buttons are still disabled in multiplayer.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x02
 
| Play
 
| Server
 
| New difficulty
 
| Byte
 
| 0: peaceful, 1: easy, 2: normal, 3: hard .
 
|}
 
 
 
==== Message Acknowledgment ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="1"| 0x03
 
| rowspan="1"| Play
 
| rowspan="1"| Server
 
| Message Count
 
| VarInt
 
|
 
|}
 
 
 
==== Chat Command ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| rowspan="8"| 0x04
 
| rowspan="8"| Play
 
| rowspan="8"| Server
 
| colspan="2"| Command
 
| colspan="2"| String (256)
 
| colspan="2"| The command typed by the client.
 
|-
 
| colspan="2"| Timestamp
 
| colspan="2"| Long
 
| colspan="2"| The timestamp that the command was executed.
 
|-
 
| colspan="2"| Salt
 
| colspan="2"| Long
 
| colspan="2"| The salt for the following argument signatures.
 
|-
 
| colspan="2"| Array length
 
| colspan="2"| VarInt
 
| colspan="2"| The length of the following array
 
|-
 
| rowspan="2"| Array of argument signatures
 
| Argument name
 
| rowspan="2"| Array
 
| String
 
| The name of the argument that is signed by the following signature.
 
|-
 
| Signature
 
| Byte Array
 
| The signature that verifies the argument.
 
|-
 
| colspan="2"| Message Count
 
| colspan="2"| VarInt
 
| colspan="2"|
 
|-
 
| colspan="2"| Acknowledged
 
| colspan="2"| BitSet (20)
 
| colspan="2"|
 
|}
 
 
 
==== Chat Message ====
 
 
 
Used to send a chat message to the server.  The message may not be longer than 256 characters or else the server will kick the client.
 
 
 
The server will broadcast the same chat message to all players on the server (including the player that sent the message), prepended with player's name.  Specifically, it will respond with a translate [[chat]] component, "<code>chat.type.text</code>" with the first parameter set to the display name of the player (including some chat component logic to support clicking the name to send a PM) and the second parameter set to the message.  See [[Chat#Processing chat|processing chat]] for more information.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="7"| 0x05
 
| rowspan="7"| Play
 
| rowspan="7"| Server
 
| Message
 
| String (256 chars)
 
|
 
|-
 
| Timestamp
 
| Long
 
|
 
|-
 
| Salt
 
| Long
 
| The salt used to verify the signature hash.
 
|-
 
| Has Signature
 
| Boolean
 
| Whether the next field is present.
 
|-
 
| Signature
 
| Optional Byte Array
 
| The signature used to verify the chat message's authentication.
 
|-
 
| Message Count
 
| VarInt
 
|
 
|-
 
| Acknowledged
 
| BitSet (20)
 
|
 
|}
 
 
 
==== Client Command ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x06
 
| Play
 
| Server
 
| Action ID
 
| VarInt Enum
 
| See below
 
|}
 
 
 
''Action ID'' values:
 
 
 
{| class="wikitable"
 
|-
 
! Action ID
 
! Action
 
! Notes
 
|-
 
| 0
 
| Perform respawn
 
| Sent when the client is ready to complete login and when the client is ready to respawn after death.
 
|-
 
| 1
 
| Request stats
 
| Sent when the client opens the Statistics menu.
 
|}
 
 
 
==== Client Information ====
 
 
 
Sent when the player connects, or when settings are changed.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="8"| 0x07
 
| rowspan="8"| Play
 
| rowspan="8"| Server
 
| Locale
 
| String (16)
 
| e.g. <code>en_GB</code>.
 
|-
 
| View Distance
 
| Byte
 
| Client-side render distance, in chunks.
 
|-
 
| Chat Mode
 
| VarInt Enum
 
| 0: enabled, 1: commands only, 2: hidden.  See [[Chat#Processing chat|processing chat]] for more information.
 
|-
 
| Chat Colors
 
| Boolean
 
| “Colors” multiplayer setting. Can the chat be colored?
 
|-
 
| Displayed Skin Parts
 
| Unsigned Byte
 
| Bit mask, see below.
 
|-
 
| Main Hand
 
| VarInt Enum
 
| 0: Left, 1: Right.
 
|-
 
| Enable text filtering
 
| Boolean
 
| Enables filtering of text on signs and written book titles. Currently always false (i.e. the filtering is disabled)
 
|-
 
| Allow server listings
 
| Boolean
 
| Servers usually list online players, this option should let you not show up in that list.
 
|}
 
 
 
''Displayed Skin Parts'' flags:
 
 
 
* Bit 0 (0x01): Cape enabled
 
* Bit 1 (0x02): Jacket enabled
 
* Bit 2 (0x04): Left Sleeve enabled
 
* Bit 3 (0x08): Right Sleeve enabled
 
* Bit 4 (0x10): Left Pants Leg enabled
 
* Bit 5 (0x20): Right Pants Leg enabled
 
* Bit 6 (0x40): Hat enabled
 
 
 
The most significant bit (bit 7, 0x80) appears to be unused.
 
 
 
==== Command Suggestions Request ====
 
 
 
Sent when the client needs to tab-complete a <code>minecraft:ask_server</code> suggestion type.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x08
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Transaction Id
 
| VarInt
 
| The id of the transaction that the server will send back to the client in the response of this packet. Client generates this and increments it each time it sends another tab completion that doesn't get a response.
 
|-
 
| Text
 
| String (32500)
 
| All text behind the cursor without the <code>/</code> (e.g. to the left of the cursor in left-to-right languages like English).
 
|}
 
 
 
==== Click Container Button ====
 
 
 
Used when clicking on window buttons.  Until 1.14, this was only used by enchantment tables.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x09
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Window ID
 
| Byte
 
| The ID of the window sent by [[#Open Screen|Open Screen]].
 
|-
 
| Button ID
 
| Byte
 
| Meaning depends on window type; see below.
 
|}
 
 
 
{| class="wikitable"
 
! Window type
 
! ID
 
! Meaning
 
|-
 
| rowspan="3"| Enchantment Table
 
| 0 || Topmost enchantment.
 
|-
 
| 1 || Middle enchantment.
 
|-
 
| 2 || Bottom enchantment.
 
|-
 
| rowspan="4"| Lectern
 
| 1 || Previous page (which does give a redstone output).
 
|-
 
| 2 || Next page.
 
|-
 
| 3 || Take Book.
 
|-
 
| 100+page || Opened page number - 100 + number.
 
|-
 
| Stonecutter
 
| colspan="2"| Recipe button number - 4*row + col.  Depends on the item.
 
|-
 
| Loom
 
| colspan="2"| Recipe button number - 4*row + col.  Depends on the item.
 
|}
 
 
 
==== Click Container ====
 
 
 
This packet is sent by the client when the player clicks on a slot in a window.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! colspan="2"| Field Type
 
! Notes
 
|-
 
| rowspan="9"| 0x0A
 
| rowspan="9"| Play
 
| rowspan="9"| Server
 
| colspan="2"| Window ID
 
| colspan="2"| Unsigned Byte
 
| colspan="2"| The ID of the window which was clicked. 0 for player inventory.
 
|-
 
| colspan="2"| State ID
 
| colspan="2"| VarInt
 
| colspan="2"| The last recieved State ID from either a [[#Set Container Slot|Set Container Slot]] or a [[#Set Container Content|Set Container Content]] packet
 
|-
 
| colspan="2"| Slot
 
| colspan="2"| Short
 
| colspan="2"| The clicked slot number, see below.
 
|-
 
| colspan="2"| Button
 
| colspan="2"| Byte
 
| colspan="2"| The button used in the click, see below.
 
|-
 
| colspan="2"| Mode
 
| colspan="2"| VarInt Enum
 
| colspan="2"| Inventory operation mode, see below.
 
|-
 
| colspan="2"| Length of the array
 
| colspan="2"| VarInt
 
|
 
|-
 
| rowspan="2"| Array of slots
 
| Slot number
 
| rowspan="2"| Array
 
| Short
 
|
 
|-
 
| Slot data
 
| Slot
 
| New data for this slot
 
|-
 
| colspan="2"| Carried item
 
| colspan="2"| [[Slot Data|Slot]]
 
| colspan="2"| Item carried by the cursor. Has to be empty (item ID = -1) for drop mode, otherwise nothing will happen.
 
|}
 
 
 
See [[Inventory]] for further information about how slots are indexed.
 
 
 
When right-clicking on a stack of items, half the stack will be picked up and half left in the slot. If the stack is an odd number, the half left in the slot will be smaller of the amounts.
 
 
 
The distinct type of click performed by the client is determined by the combination of the Mode and Button fields.
 
 
 
{| class="wikitable"
 
! Mode
 
! Button
 
! Slot
 
! Trigger
 
|-
 
! rowspan="4"| 0
 
| 0
 
| Normal
 
| Left mouse click
 
|-
 
| 1
 
| Normal
 
| Right mouse click
 
|-
 
| 0
 
| -999
 
| Left click outside inventory (drop cursor stack)
 
|-
 
| 1
 
| -999
 
| Right click outside inventory (drop cursor single item)
 
|-
 
! rowspan="2"| 1
 
| 0
 
| Normal
 
| Shift + left mouse click
 
|-
 
| 1
 
| Normal
 
| Shift + right mouse click ''(identical behavior)''
 
|-
 
! rowspan="6"| 2
 
| 0
 
| Normal
 
| Number key 1
 
|-
 
| 1
 
| Normal
 
| Number key 2
 
|-
 
| 2
 
| Normal
 
| Number key 3
 
|-
 
| ⋮
 
| ⋮
 
| ⋮
 
|-
 
| 8
 
| Normal
 
| Number key 9
 
|-
 
| 40
 
| Normal
 
| Offhand swap key F
 
|-
 
! 3
 
| 2
 
| Normal
 
| Middle click, only defined for creative players in non-player inventories.
 
|-
 
! rowspan="2"| 4
 
| 0
 
| Normal*
 
| Drop key (Q) (* Clicked item is always empty)
 
|-
 
| 1
 
| Normal*
 
| Control + Drop key (Q) (* Clicked item is always empty)
 
|-
 
! rowspan="9"| 5
 
| 0
 
| -999
 
| Starting left mouse drag
 
|-
 
| 4
 
| -999
 
| Starting right mouse drag
 
|-
 
| 8
 
| -999
 
| Starting middle mouse drag, only defined for creative players in non-player inventories.
 
|-
 
| 1
 
| Normal
 
| Add slot for left-mouse drag
 
|-
 
| 5
 
| Normal
 
| Add slot for right-mouse drag
 
|-
 
| 9
 
| Normal
 
| Add slot for middle-mouse drag, only defined for creative players in non-player inventories.
 
|-
 
| 2
 
| -999
 
| Ending left mouse drag
 
|-
 
| 6
 
| -999
 
| Ending right mouse drag
 
|-
 
| 10
 
| -999
 
| Ending middle mouse drag, only defined for creative players in non-player inventories.
 
|-
 
! 6
 
| 0
 
| Normal
 
| Double click
 
|}
 
 
 
Starting from version 1.5, “painting mode” is available for use in inventory windows. It is done by picking up stack of something (more than 1 item), then holding mouse button (left, right or middle) and dragging held stack over empty (or same type in case of right button) slots. In that case client sends the following to server after mouse button release (omitting first pickup packet which is sent as usual):
 
 
 
# packet with mode 5, slot -999, button (0 for left | 4 for right);
 
# packet for every slot painted on, mode is still 5, button (1 | 5);
 
# packet with mode 5, slot -999, button (2 | 6);
 
 
 
If any of the painting packets other than the “progress” ones are sent out of order (for example, a start, some slots, then another start; or a left-click in the middle) the painting status will be reset.
 
 
 
==== Close Container ====
 
 
 
This packet is sent by the client when closing a window.
 
 
 
Notchian clients send a Close Window packet with Window ID 0 to close their inventory even though there is never an [[#Open Screen|Open Screen]] packet for the inventory.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x0B
 
| Play
 
| Server
 
| Window ID
 
| Unsigned Byte
 
| This is the ID of the window that was closed. 0 for player inventory.
 
|}
 
 
 
==== Plugin Message ====
 
 
 
{{Main|Plugin channels}}
 
 
 
Mods and plugins can use this to send their data. Minecraft itself uses some [[plugin channel]]s. These internal channels are in the <code>minecraft</code> namespace.
 
 
 
More documentation on this: [https://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/ https://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/]
 
 
 
Note that the length of Data is known only from the packet length, since the packet has no length field of any kind.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x0C
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Channel
 
| Identifier
 
| Name of the [[plugin channel]] used to send the data.
 
|-
 
| Data
 
| Byte Array (32767)
 
| Any data, depending on the channel. <code>minecraft:</code> channels are documented [[plugin channel|here]]. The length of this array must be inferred from the packet length.
 
|}
 
 
 
In Notchian server, the maximum data length is 32767 bytes.
 
 
 
==== Edit Book ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="5"| 0x0D
 
| rowspan="5"| Play
 
| rowspan="5"| Server
 
| Slot
 
| VarInt
 
| The hotbar slot where the written book is located
 
|-
 
| Count
 
| VarInt
 
| Number of elements in the following array
 
|-
 
| Entries
 
| Array of Strings (8192 chars)
 
| Text from each page.
 
|-
 
| Has title
 
| Boolean
 
| If true, the next field is present.
 
|-
 
| Title
 
| Optional String (128 chars)
 
| Title of book.
 
|}
 
 
 
When editing a draft, the [[NBT]] section of the Slot contains this:
 
 
 
<pre>
 
TAG_Compound(<nowiki>''</nowiki>): 1 entry
 
{
 
  TAG_List('pages'): 2 entries
 
  {
 
    TAG_String(0): 'Something on Page 1'
 
    TAG_String(1): 'Something on Page 2'
 
  }
 
}
 
</pre>
 
 
 
When signing the book, it instead looks like this:
 
 
 
<pre>
 
TAG_Compound(<nowiki>''</nowiki>): 3 entires
 
{
 
  TAG_String('author'): 'Steve'
 
  TAG_String('title'): 'A Wonderful Book'
 
  TAG_List('pages'): 2 entries
 
  {
 
    TAG_String(0): 'Something on Page 1'
 
    TAG_String(1): 'Something on Page 2'
 
  }
 
}
 
</pre>
 
 
 
==== Query Entity Tag ====
 
 
 
Used when <kbd>Shift</kbd>+<kbd>F3</kbd>+<kbd>I</kbd> is pressed while looking at an entity.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x0E
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Transaction ID
 
| VarInt
 
| An incremental ID so that the client can verify that the response matches.
 
|-
 
| Entity ID
 
| VarInt
 
| The ID of the entity to query.
 
|}
 
 
 
==== Interact ====
 
 
 
This packet is sent from the client to the server when the client attacks or right-clicks another entity (a player, minecart, etc).
 
 
 
A Notchian server only accepts this packet if the entity being attacked/used is visible without obstruction and within a 4-unit radius of the player's position.
 
 
 
The target X, Y, and Z fields represent the difference between the vector location of the cursor at the time of the packet and the entity's position.
 
 
 
Note that middle-click in creative mode is interpreted by the client and sent as a [[#Set Creative Mode Slot|Set Creative Mode Slot]] packet instead.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="7"| 0x0F
 
| rowspan="7"| Play
 
| rowspan="7"| Server
 
| Entity ID
 
| VarInt
 
| The ID of the entity to interact.
 
|-
 
| Type
 
| VarInt Enum
 
| 0: interact, 1: attack, 2: interact at.
 
|-
 
| Target X
 
| Optional Float
 
| Only if Type is interact at.
 
|-
 
| Target Y
 
| Optional Float
 
| Only if Type is interact at.
 
|-
 
| Target Z
 
| Optional Float
 
| Only if Type is interact at.
 
|-
 
| Hand
 
| Optional VarInt Enum
 
| Only if Type is interact or interact at; 0: main hand, 1: off hand.
 
|-
 
| Sneaking
 
| Boolean
 
| If the client is sneaking.
 
|}
 
 
 
==== Jigsaw Generate ====
 
 
 
Sent when Generate is pressed on the {{Minecraft Wiki|Jigsaw Block}} interface.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x10
 
| rowspan="3"| Play
 
| rowspan="3"| Server
 
| Location
 
| Position
 
| Block entity location.
 
|-
 
| Levels
 
| VarInt
 
| Value of the levels slider/max depth to generate.
 
|-
 
| Keep Jigsaws
 
| Boolean
 
|
 
|}
 
 
 
==== Keep Alive ====
 
 
 
The server will frequently send out a keep-alive, each containing a random ID. The client must respond with the same packet.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x11
 
| Play
 
| Server
 
| Keep Alive ID
 
| Long
 
|
 
|}
 
 
 
==== Lock Difficulty ====
 
 
 
Must have at least op level 2 to use.  Appears to only be used on singleplayer; the difficulty buttons are still disabled in multiplayer.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x12
 
| Play
 
| Server
 
| Locked
 
| Boolean
 
|
 
|}
 
 
 
==== Set Player Position ====
 
 
 
Updates the player's XYZ position on the server.
 
 
 
Checking for moving too fast is achieved like this:
 
 
 
* Each server tick, the player's current position is stored
 
* When a player moves, the changes in x, y, and z coordinates are compared with the positions from the previous tick (&Delta;x, &Delta;y, &Delta;z)
 
* Total movement distance squared is computed as &Delta;x&sup2; + &Delta;y&sup2; + &Delta;z&sup2;
 
* The expected movement distance squared is computed as velocityX&sup2; + velocityY&sup2; + velocityZ&sup2;
 
* If the total movement distance squared value minus the expected movement distance squared value is more than 100 (300 if the player is using an elytra), they are moving too fast.
 
 
 
If the player is moving too fast, it will be logged that "<player> moved too quickly! " followed by the change in x, y, and z, and the player will be teleported back to their current (before this packet) serverside position.
 
 
 
Also, if the absolute value of X or the absolute value of Z is a value greater than 3.2×10<sup>7</sup>, or X, Y, or Z are not finite (either positive infinity, negative infinity, or NaN), the client will be kicked for “Invalid move player packet received”.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="4"| 0x13
 
| rowspan="4"| Play
 
| rowspan="4"| Server
 
| X
 
| Double
 
| Absolute position.
 
|-
 
| Feet Y
 
| Double
 
| Absolute feet position, normally Head Y - 1.62.
 
|-
 
| Z
 
| Double
 
| Absolute position.
 
|-
 
| On Ground
 
| Boolean
 
| True if the client is on the ground, false otherwise.
 
|}
 
 
 
==== Set Player Position and Rotation ====
 
 
 
A combination of [[#Set Player Rotation|Move Player Rotation]] and [[#Set Player Position|Move Player Position]].
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="6"| 0x14
 
| rowspan="6"| Play
 
| rowspan="6"| Server
 
| X
 
| Double
 
| Absolute position.
 
|-
 
| Feet Y
 
| Double
 
| Absolute feet position, normally Head Y - 1.62.
 
|-
 
| Z
 
| Double
 
| Absolute position.
 
|-
 
| Yaw
 
| Float
 
| Absolute rotation on the X Axis, in degrees.
 
|-
 
| Pitch
 
| Float
 
| Absolute rotation on the Y Axis, in degrees.
 
|-
 
| On Ground
 
| Boolean
 
| True if the client is on the ground, false otherwise.
 
|}
 
 
 
==== Set Player Rotation ====
 
[[File:Minecraft-trig-yaw.png|thumb|The unit circle for yaw]]
 
[[File:Yaw.png|thumb|The unit circle of yaw, redrawn]]
 
 
 
Updates the direction the player is looking in.
 
 
 
Yaw is measured in degrees, and does not follow classical trigonometry rules. The unit circle of yaw on the XZ-plane starts at (0, 1) and turns counterclockwise, with 90 at (-1, 0), 180 at (0,-1) and 270 at (1, 0). Additionally, yaw is not clamped to between 0 and 360 degrees; any number is valid, including negative numbers and numbers greater than 360.
 
 
 
Pitch is measured in degrees, where 0 is looking straight ahead, -90 is looking straight up, and 90 is looking straight down.
 
 
 
The yaw and pitch of player (in degrees), standing at point (x0, y0, z0) and looking towards point (x, y, z) can be calculated with:
 
 
 
dx = x-x0
 
dy = y-y0
 
dz = z-z0
 
r = sqrt( dx*dx + dy*dy + dz*dz )
 
yaw = -atan2(dx,dz)/PI*180
 
if yaw < 0 then
 
    yaw = 360 + yaw
 
pitch = -arcsin(dy/r)/PI*180
 
 
 
You can get a unit vector from a given yaw/pitch via:
 
 
 
x = -cos(pitch) * sin(yaw)
 
y = -sin(pitch)
 
z =  cos(pitch) * cos(yaw)
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x15
 
| rowspan="3"| Play
 
| rowspan="3"| Server
 
| Yaw
 
| Float
 
| Absolute rotation on the X Axis, in degrees.
 
|-
 
| Pitch
 
| Float
 
| Absolute rotation on the Y Axis, in degrees.
 
|-
 
| On Ground
 
| Boolean
 
| True if the client is on the ground, false otherwise.
 
|}
 
 
 
==== Set Player On Ground ====
 
 
 
This packet as well as [[#Set Player Position|Set Player Position]], [[#Set Player Rotation|Set Player Rotation]], and [[#Set Player Position and Rotation|Set Player Position and Rotation]] are called the “serverbound movement packets”. Vanilla clients will send Move Player Position once every 20 ticks even for a stationary player.
 
 
 
This packet is used to indicate whether the player is on ground (walking/swimming), or airborne (jumping/falling).
 
 
 
When dropping from sufficient height, fall damage is applied when this state goes from false to true. The amount of damage applied is based on the point where it last changed from true to false. Note that there are several movement related packets containing this state.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x16
 
| Play
 
| Server
 
| On Ground
 
| Boolean
 
| True if the client is on the ground, false otherwise.
 
|}
 
 
 
==== Move Vehicle ====
 
 
 
Sent when a player moves in a vehicle. Fields are the same as in [[#Set Player Position and Rotation|Set Player Position and Rotation]]. Note that all fields use absolute positioning and do not allow for relative positioning.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="5"| 0x17
 
| rowspan="5"| Play
 
| rowspan="5"| Server
 
| X
 
| Double
 
| Absolute position (X coordinate).
 
|-
 
| Y
 
| Double
 
| Absolute position (Y coordinate).
 
|-
 
| Z
 
| Double
 
| Absolute position (Z coordinate).
 
|-
 
| Yaw
 
| Float
 
| Absolute rotation on the vertical axis, in degrees.
 
|-
 
| Pitch
 
| Float
 
| Absolute rotation on the horizontal axis, in degrees.
 
|}
 
 
 
==== Paddle Boat ====
 
 
 
Used to ''visually'' update whether boat paddles are turning.  The server will update the [[Entity_metadata#Boat|Boat entity metadata]] to match the values here.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x18
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Left paddle turning
 
| Boolean
 
|
 
|-
 
| Right paddle turning
 
| Boolean
 
|
 
|}
 
 
 
Right paddle turning is set to true when the left button or forward button is held, left paddle turning is set to true when the right button or forward button is held.
 
 
 
==== Pick Item ====
 
 
 
Used to swap out an empty space on the hotbar with the item in the given inventory slot.  The Notchain client uses this for pick block functionality (middle click) to retrieve items from the inventory.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x19
 
| Play
 
| Server
 
| Slot to use
 
| VarInt
 
| See [[Inventory]].
 
|}
 
 
 
The server will first search the player's hotbar for an empty slot, starting from the current slot and looping around to the slot before it.  If there are no empty slots, it will start a second search from the current slot and find the first slot that does not contain an enchanted item.  If there still are no slots that meet that criteria, then the server will use the currently selected slot.
 
 
 
After finding the appropriate slot, the server swaps the items and then send 3 packets:
 
 
 
* [[#Set Container Slot|Set Container Slot]], with window ID set to -2 and slot set to the newly chosen slot and the item set to the item that is now in that slot (which was previously at the slot the client requested)
 
* Set Slot, with window ID set to -2 and slot set to the slot the player requested, with the item that is now in that slot and was previously on the hotbar slot
 
* [[#Set Held Item|Set Held Item]], with the slot set to the newly chosen slot.
 
 
 
==== Place Recipe ====
 
 
 
This packet is sent when a player clicks a recipe in the crafting book that is craftable (white border).
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x1A
 
| rowspan="3"| Play
 
| rowspan="3"| Server
 
| Window ID
 
| Byte
 
|
 
|-
 
| Recipe
 
| Identifier
 
| A recipe ID.
 
|-
 
| Make all
 
| Boolean
 
| Affects the amount of items processed; true if shift is down when clicked.
 
|}
 
 
 
==== Player Abilities ====
 
 
 
The vanilla client sends this packet when the player starts/stops flying with the Flags parameter changed accordingly.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x1B
 
| Play
 
| Server
 
| Flags
 
| Byte
 
| Bit mask. 0x02: is flying.
 
|}
 
 
 
==== Player Action ====
 
 
 
Sent when the player mines a block. A Notchian server only accepts digging packets with coordinates within a 6-unit radius between the center of the block and 1.5 units from the player's feet (''not'' their eyes).
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="4"| 0x1C
 
| rowspan="4"| Play
 
| rowspan="4"| Server
 
| Status
 
| VarInt Enum
 
| The action the player is taking against the block (see below).
 
|-
 
| Location
 
| Position
 
| Block position.
 
|-
 
| Face
 
| Byte Enum
 
| The face being hit (see below).
 
|-
 
| Sequence
 
| VarInt
 
|}
 
 
 
Status can be one of seven values:
 
 
 
{| class="wikitable"
 
! Value
 
! Meaning
 
! Notes
 
|-
 
| 0
 
| Started digging
 
|
 
|-
 
| 1
 
| Cancelled digging
 
| Sent when the player lets go of the Mine Block key (default: left click).
 
|-
 
| 2
 
| Finished digging
 
| Sent when the client thinks it is finished.
 
|-
 
| 3
 
| Drop item stack
 
| Triggered by using the Drop Item key (default: Q) with the modifier to drop the entire selected stack (default: Control or Command, depending on OS). Location is always set to 0/0/0, Face is always set to -Y.
 
|-
 
| 4
 
| Drop item
 
| Triggered by using the Drop Item key (default: Q). Location is always set to 0/0/0, Face is always set to -Y.
 
|-
 
| 5
 
| Shoot arrow / finish eating
 
| Indicates that the currently held item should have its state updated such as eating food, pulling back bows, using buckets, etc. Location is always set to 0/0/0, Face is always set to -Y.
 
|-
 
| 6
 
| Swap item in hand
 
| Used to swap or assign an item to the second hand. Location is always set to 0/0/0, Face is always set to -Y.
 
|}
 
 
 
The Face field can be one of the following values, representing the face being hit:
 
 
 
{| class="wikitable"
 
|-
 
! Value
 
! Offset
 
! Face
 
|-
 
| 0
 
| -Y
 
| Bottom
 
|-
 
| 1
 
| +Y
 
| Top
 
|-
 
| 2
 
| -Z
 
| North
 
|-
 
| 3
 
| +Z
 
| South
 
|-
 
| 4
 
| -X
 
| West
 
|-
 
| 5
 
| +X
 
| East
 
|}
 
 
 
==== Player Command ====
 
 
 
Sent by the client to indicate that it has performed certain actions: sneaking (crouching), sprinting, exiting a bed, jumping with a horse, and opening a horse's inventory while riding it.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x1D
 
| rowspan="3"| Play
 
| rowspan="3"| Server
 
| Entity ID
 
| VarInt
 
| Player ID
 
|-
 
| Action ID
 
| VarInt Enum
 
| The ID of the action, see below.
 
|-
 
| Jump Boost
 
| VarInt
 
| Only used by the “start jump with horse” action, in which case it ranges from 0 to 100. In all other cases it is 0.
 
|}
 
 
 
Action ID can be one of the following values:
 
 
 
{| class="wikitable"
 
! ID
 
! Action
 
|-
 
| 0
 
| Start sneaking
 
|-
 
| 1
 
| Stop sneaking
 
|-
 
| 2
 
| Leave bed
 
|-
 
| 3
 
| Start sprinting
 
|-
 
| 4
 
| Stop sprinting
 
|-
 
| 5
 
| Start jump with horse
 
|-
 
| 6
 
| Stop jump with horse
 
|-
 
| 7
 
| Open horse inventory
 
|-
 
| 8
 
| Start flying with elytra
 
|}
 
 
 
Leave bed is only sent when the “Leave Bed” button is clicked on the sleep GUI, not when waking up due today time.
 
 
 
Open horse inventory is only sent when pressing the inventory key (default: E) while on a horse — all other methods of opening a horse's inventory (involving right-clicking or shift-right-clicking it) do not use this packet.
 
 
 
==== Player Input ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x1E
 
| rowspan="3"| Play
 
| rowspan="3"| Server
 
| Sideways
 
| Float
 
| Positive to the left of the player.
 
|-
 
| Forward
 
| Float
 
| Positive forward.
 
|-
 
| Flags
 
| Unsigned Byte
 
| Bit mask. 0x1: jump, 0x2: unmount.
 
|}
 
 
 
Also known as 'Input' packet.
 
 
 
==== Pong (play) ====
 
 
 
Response to the clientbound packet ([[#Ping (play)|Ping]]) with the same id.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x1F
 
| Play
 
| Server
 
| ID
 
| Int
 
| id is the same as the ping packet
 
|}
 
 
 
==== Player Session ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! colspan="2"| Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="6"| 0x20
 
| rowspan="6"| Play
 
| rowspan="6"| Server
 
| colspan="2"| Session Id
 
| UUID
 
|
 
|-
 
| rowspan="5"| Public Key
 
| Expires At
 
| long
 
|
 
|-
 
| Public Key Length
 
| VarInt
 
| Length of the proceeding public key.
 
|-
 
| Public Key
 
| Byte Array
 
| A byte array of an X.509-encoded public key.
 
|-
 
| Key Signature Length
 
| VarInt
 
| Length of the proceeding key signature array.
 
|-
 
| Key Signature
 
| Byte Array
 
|
 
|}
 
 
 
==== Change Recipe Book Settings ====
 
 
 
Replaces Recipe Book Data, type 1.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x21
 
| rowspan="3"| Play
 
| rowspan="3"| Server
 
| Book ID
 
| VarInt Enum
 
| 0: crafting, 1: furnace, 2: blast furnace, 3: smoker.
 
|-
 
| Book Open
 
| Boolean
 
|
 
|-
 
| Filter Active
 
| Boolean
 
|
 
|}
 
 
 
==== Set Seen Recipe ====
 
 
 
Sent when recipe is first seen in recipe book. Replaces Recipe Book Data, type 0.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x22
 
| Play
 
| Server
 
| Recipe ID
 
| Identifier
 
|
 
|}
 
 
 
==== Rename Item ====
 
 
 
Sent as a player is renaming an item in an anvil (each keypress in the anvil UI sends a new Rename Item packet). If the new name is empty, then the item loses its custom name (this is different from setting the custom name to the normal name of the item). The item name may be no longer than 50 characters long, and if it is longer than that, then the rename is silently ignored.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x23
 
| Play
 
| Server
 
| Item name
 
| String (32767)
 
| The new name of the item.
 
|}
 
 
 
==== Resource Pack ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x24
 
| Play
 
| Server
 
| Result
 
| VarInt Enum
 
| 0: successfully loaded, 1: declined, 2: failed download, 3: accepted.
 
|}
 
 
 
==== Seen Advancements ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x25
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Action
 
| VarInt Enum
 
| 0: Opened tab, 1: Closed screen.
 
|-
 
| Tab ID
 
| Optional identifier
 
| Only present if action is Opened tab.
 
|}
 
 
 
==== Select Trade ====
 
 
 
When a player selects a specific trade offered by a villager NPC.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x26
 
| Play
 
| Server
 
| Selected slot
 
| VarInt
 
| The selected slot in the players current (trading) inventory. (Was a full Integer for the plugin message).
 
|}
 
 
 
==== Set Beacon Effect ====
 
 
 
Changes the effect of the current beacon.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="5"| 0x27
 
| rowspan="5"| Play
 
| rowspan="5"| Server
 
|-
 
| Has Primary Effect
 
| Boolean
 
|-
 
| Primary Effect
 
| VarInt
 
| A [https://minecraft.gamepedia.com/Data_values#Potions Potion ID]. (Was a full Integer for the plugin message).
 
|-
 
| Has Secondary Effect
 
| Boolean
 
|
 
|-
 
| Secondary Effect
 
| VarInt
 
| A [https://minecraft.gamepedia.com/Data_values#Potions Potion ID]. (Was a full Integer for the plugin message).
 
|}
 
 
 
==== Set Held Item ====
 
 
 
Sent when the player changes the slot selection
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x28
 
| Play
 
| Server
 
| Slot
 
| Short
 
| The slot which the player has selected (0–8).
 
|}
 
 
 
==== Program Command Block ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="5"| 0x29
 
| rowspan="5"| Play
 
| rowspan="5"| Server
 
|-
 
| Location
 
| Position
 
|
 
|-
 
| Command
 
| String (32767)
 
|
 
|-
 
| Mode || VarInt Enum || One of SEQUENCE (0), AUTO (1), or REDSTONE (2).
 
|-
 
| Flags
 
| Byte
 
| 0x01: Track Output (if false, the output of the previous command will not be stored within the command block); 0x02: Is conditional; 0x04: Automatic.
 
|}
 
 
 
==== Program Command Block Minecart ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="3"| 0x2A
 
| rowspan="3"| Play
 
| rowspan="3"| Server
 
| Entity ID
 
| VarInt
 
|
 
|-
 
| Command
 
| String (32767)
 
|
 
|-
 
| Track Output
 
| Boolean
 
| If false, the output of the previous command will not be stored within the command block.
 
|}
 
 
 
==== Set Creative Mode Slot ====
 
 
 
While the user is in the standard inventory (i.e., not a crafting bench) in Creative mode, the player will send this packet.
 
 
 
Clicking in the creative inventory menu is quite different from non-creative inventory management. Picking up an item with the mouse actually deletes the item from the server, and placing an item into a slot or dropping it out of the inventory actually tells the server to create the item from scratch. (This can be verified by clicking an item that you don't mind deleting, then severing the connection to the server; the item will be nowhere to be found when you log back in.) As a result of this implementation strategy, the "Destroy Item" slot is just a client-side implementation detail that means "I don't intend to recreate this item.". Additionally, the long listings of items (by category, etc.) are a client-side interface for choosing which item to create. Picking up an item from such listings sends no packets to the server; only when you put it somewhere does it tell the server to create the item in that location.
 
 
 
This action can be described as "set inventory slot". Picking up an item sets the slot to item ID -1. Placing an item into an inventory slot sets the slot to the specified item. Dropping an item (by clicking outside the window) effectively sets slot -1 to the specified item, which causes the server to spawn the item entity, etc.. All other inventory slots are numbered the same as the non-creative inventory (including slots for the 2x2 crafting menu, even though they aren't visible in the vanilla client).
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x2B
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Slot
 
| Short
 
| Inventory slot.
 
|-
 
| Clicked Item
 
| [[Slot Data|Slot]]
 
|
 
|}
 
 
 
==== Program Jigsaw Block ====
 
 
 
Sent when Done is pressed on the {{Minecraft Wiki|Jigsaw Block}} interface.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="6"| 0x2C
 
| rowspan="6"| Play
 
| rowspan="6"| Server
 
| Location
 
| Position
 
| Block entity location
 
|-
 
| Name
 
| Identifier
 
|
 
|-
 
| Target
 
| Identifier
 
|
 
|-
 
| Pool
 
| Identifier
 
|
 
|-
 
| Final state
 
| String (32767)
 
| "Turns into" on the GUI, <code>final_state</code> in NBT.
 
|-
 
| Joint type
 
| String
 
| <code>rollable</code> if the attached piece can be rotated, else <code>aligned</code>.
 
|}
 
 
 
==== Program Structure Block ====
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="17"| 0x2D
 
| rowspan="17"| Play
 
| rowspan="17"| Server
 
|-
 
| Location
 
| Position
 
| Block entity location.
 
|-
 
| Action
 
| VarInt Enum
 
| An additional action to perform beyond simply saving the given data; see below.
 
|-
 
| Mode
 
| VarInt Enum
 
| One of SAVE (0), LOAD (1), CORNER (2), DATA (3).
 
|-
 
| Name
 
| String (32767)
 
|
 
|-
 
| Offset X || Byte
 
| Between -32 and 32.
 
|-
 
| Offset Y || Byte
 
| Between -32 and 32.
 
|-
 
| Offset Z || Byte
 
| Between -32 and 32.
 
|-
 
| Size X || Byte
 
| Between 0 and 32.
 
|-
 
| Size Y || Byte
 
| Between 0 and 32.
 
|-
 
| Size Z || Byte
 
| Between 0 and 32.
 
|-
 
| Mirror
 
| VarInt Enum
 
| One of NONE (0), LEFT_RIGHT (1), FRONT_BACK (2).
 
|-
 
| Rotation
 
| VarInt Enum
 
| One of NONE (0), CLOCKWISE_90 (1), CLOCKWISE_180 (2), COUNTERCLOCKWISE_90 (3).
 
|-
 
| Metadata
 
| String (128)
 
|
 
|-
 
| Integrity
 
| Float
 
| Between 0 and 1.
 
|-
 
|Seed
 
|VarLong
 
|
 
|-
 
| Flags
 
| Byte
 
| 0x01: Ignore entities; 0x02: Show air; 0x04: Show bounding box.
 
|}
 
 
 
Possible actions:
 
 
 
* 0 - Update data
 
* 1 - Save the structure
 
* 2 - Load the structure
 
* 3 - Detect size
 
 
 
The Notchian client uses update data to indicate no special action should be taken (i.e. the done button).
 
 
 
==== Update Sign ====
 
 
 
This message is sent from the client to the server when the “Done” button is pushed after placing a sign.
 
 
 
The server only accepts this packet after [[#Open Sign Editor|Open Sign Editor]], otherwise this packet is silently ignored.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="5"| 0x2E
 
| rowspan="5"| Play
 
| rowspan="5"| Server
 
| Location
 
| Position
 
| Block Coordinates.
 
|-
 
| Line 1
 
| String (384)
 
| First line of text in the sign.
 
|-
 
| Line 2
 
| String (384)
 
| Second line of text in the sign.
 
|-
 
| Line 3
 
| String (384)
 
| Third line of text in the sign.
 
|-
 
| Line 4
 
| String (384)
 
| Fourth line of text in the sign.
 
|}
 
 
 
==== Swing Arm ====
 
 
 
Sent when the player's arm swings.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x2F
 
| Play
 
| Server
 
| Hand
 
| VarInt Enum
 
| Hand used for the animation. 0: main hand, 1: off hand.
 
|}
 
 
 
==== Teleport To Entity ====
 
 
 
Teleports the player to the given entity.  The player must be in spectator mode.
 
 
 
The Notchian client only uses this to teleport to players, but it appears to accept any type of entity.  The entity does not need to be in the same dimension as the player; if necessary, the player will be respawned in the right world.  If the given entity cannot be found (or isn't loaded), this packet will be ignored.  It will also be ignored if the player attempts to teleport to themselves.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| 0x30
 
| Play
 
| Server
 
| Target Player
 
| UUID
 
| UUID of the player to teleport to (can also be an entity UUID).
 
|}
 
 
 
==== Use Item On ====
 
 
 
{| class="wikitable"
 
|-
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="8"| 0x31
 
| rowspan="8"| Play
 
| rowspan="8"| Server
 
| Hand
 
| VarInt Enum
 
| The hand from which the block is placed; 0: main hand, 1: off hand.
 
|-
 
| Location
 
| Position
 
| Block position.
 
|-
 
| Face
 
| VarInt Enum
 
| The face on which the block is placed (as documented at [[#Player Action|Player Action]]).
 
|-
 
| Cursor Position X
 
| Float
 
| The position of the crosshair on the block, from 0 to 1 increasing from west to east.
 
|-
 
| Cursor Position Y
 
| Float
 
| The position of the crosshair on the block, from 0 to 1 increasing from bottom to top.
 
|-
 
| Cursor Position Z
 
| Float
 
| The position of the crosshair on the block, from 0 to 1 increasing from north to south.
 
|-
 
| Inside block
 
| Boolean
 
| True when the player's head is inside of a block.
 
|-
 
| Sequence
 
| VarInt
 
|}
 
 
 
Upon placing a block, this packet is sent once.
 
 
 
The Cursor Position X/Y/Z fields (also known as in-block coordinates) are calculated using raytracing. The unit corresponds to sixteen pixels in the default resource pack. For example, let's say a slab is being placed against the south face of a full block. The Cursor Position X will be higher if the player was pointing near the right (east) edge of the face, lower if pointing near the left. The Cursor Position Y will be used to determine whether it will appear as a bottom slab (values 0.0–0.5) or as a top slab (values 0.5-1.0). The Cursor Position Z should be 1.0 since the player was looking at the southernmost part of the block.
 
 
 
Inside block is true when a player's head (specifically eyes) are inside of a block's collision. In 1.13 and later versions, collision is rather complicated and individual blocks can have multiple collision boxes. For instance, a ring of vines has a non-colliding hole in the middle. This value is only true when the player is directly in the box. In practice, though, this value is only used by scaffolding to place in front of the player when sneaking inside of it (other blocks will place behind when you intersect with them -- try with glass for instance).
 
 
 
==== Use Item ====
 
 
 
Sent when pressing the Use Item key (default: right click) with an item in hand.
 
 
 
{| class="wikitable"
 
! Packet ID
 
! State
 
! Bound To
 
! Field Name
 
! Field Type
 
! Notes
 
|-
 
| rowspan="2"| 0x32
 
| rowspan="2"| Play
 
| rowspan="2"| Server
 
| Hand
 
| VarInt Enum
 
| Hand used for the animation. 0: main hand, 1: off hand.
 
|-
 
| Sequence
 
| VarInt
 
|}
 
  
 
[[Category:Protocol Details]]
 
[[Category:Protocol Details]]
 
[[Category:Minecraft Modern]]
 
[[Category:Minecraft Modern]]

Revision as of 21:24, 3 February 2023

Heads up!

This article is about the protocol for the latest stable release of Minecraft computer edition. For the computer edition pre-releases, see Pre-release protocol. For Pocket Edition, see Pocket Minecraft Protocol.

This page presents a dissection of the current Minecraft protocol.

If you're having trouble, check out the FAQ or ask for help in the IRC channel (#mcdevs on chat.freenode.net).

Note: While you may use the contents of this page without restriction to create servers, clients, bots, etc… you still need to provide attribution to #mcdevs if you copy any of the contents of this page for publication elsewhere.

The changes between versions may be viewed at Protocol History.

Contents

Definitions

The Minecraft server accepts connections from TCP clients and communicates with them using packets. A packet is a sequence of bytes sent over the TCP connection. The meaning of a packet depends both on its packet ID and the current state of the connection. The initial state of each connection is Handshaking, and state is switched using the packets Handshake (Handshaking, 0x00, serverbound) and Login Success (Login, 0x02, clientbound).

Data types

All data sent over the network (except for VarInt and VarLong) is big-endian, that is the bytes are sent from most significant byte to least significant byte. The majority of everyday computers are little-endian, therefore it may be necessary to change the endianness before sending data over the network.


Name Size (bytes) Encodes Notes
Boolean 1 Either false or true True is encoded as 0x01, false as 0x00.
Byte 1 An integer between -128 and 127 Signed 8-bit integer, two's complement
Unsigned Byte 1 An integer between 0 and 255 Unsigned 8-bit integer
Short 2 An integer between -32768 and 32767 Signed 16-bit integer, two's complement
Unsigned Short 2 An integer between 0 and 65535 Unsigned 16-bit integer
Int 4 An integer between -2147483648 and 2147483647 Signed 32-bit integer, two's complement
Long 8 An integer between -9223372036854775808 and 9223372036854775807 Signed 64-bit integer, two's complement
Float 4 A single-precision 32-bit IEEE 754 floating point number
Double 8 A double-precision 64-bit IEEE 754 floating point number
String (n) ≥ 1
≤ (n×3) + 3
A sequence of Unicode scalar values UTF-8 string prefixed with its size in bytes as a VarInt. Maximum length of n characters, which varies by context. The encoding used on the wire is regular UTF-8, not Java's "slight modification". However, the length of the string for purposes of the length limit is its number of UTF-16 code units, that is, scalar values > U+FFFF are counted as two. Up to n × 3 bytes can be used to encode a UTF-8 string comprising n code units when converted to UTF-16, and both of those limits are checked. Maximum n value is 32767. The + 3 is due to the max size of a valid length VarInt.
Text Component Varies See Text formatting#Text components Encoded as a NBT Tag, with the type of tag used depending on the case:
  • As a String Tag: For components only containing text (no styling, no events etc.).
  • As a Compound Tag: Every other case.
JSON Text Component ≥ 1
≤ (262144×3) + 3
See Text formatting#Text components Encoded as a String with max length of 262144.
Identifier ≥ 1
≤ (32767×3) + 3
See Identifier below Encoded as a String with max length of 32767.
VarInt ≥ 1
≤ 5
An integer between -2147483648 and 2147483647 Variable-length data encoding a two's complement signed 32-bit integer; more info in their section
VarLong ≥ 1
≤ 10
An integer between -9223372036854775808 and 9223372036854775807 Variable-length data encoding a two's complement signed 64-bit integer; more info in their section
Entity Metadata Varies Miscellaneous information about an entity See Entity_metadata#Entity Metadata Format
Slot Varies An item stack in an inventory or container See Slot Data
NBT Varies Depends on context See NBT
Position 8 An integer/block position: x (-33554432 to 33554431), z (-33554432 to 33554431), y (-2048 to 2047) x as a 26-bit integer, followed by z as a 26-bit integer, followed by y as a 12-bit integer (all signed, two's complement). See also the section below.
Angle 1 A rotation angle in steps of 1/256 of a full turn Whether or not this is signed does not matter, since the resulting angles are the same.
UUID 16 A UUID Encoded as an unsigned 128-bit integer (or two unsigned 64-bit integers: the most significant 64 bits and then the least significant 64 bits)
BitSet Varies See #BitSet below A length-prefixed bit set.
Fixed BitSet (n) n See #Fixed BitSet below A bit set with a fixed length of n bits.
Optional X 0 or size of X A field of type X, or nothing Whether or not the field is present must be known from the context.
Array of X count times size of X Zero or more fields of type X The count must be known from the context.
X Enum size of X A specific value from a given list The list of possible values and how each is encoded as an X must be known from the context. An invalid value sent by either side will usually result in the client being disconnected with an error or even crashing.
Byte Array Varies Depends on context This is just a sequence of zero or more bytes, its meaning should be explained somewhere else, e.g. in the packet description. The length must also be known from the context.

Identifier

Identifiers are a namespaced location, in the form of minecraft:thing. If the namespace is not provided, it defaults to minecraft (i.e. thing is minecraft:thing). Custom content should always be in its own namespace, not the default one. Both the namespace and value can use all lowercase alphanumeric characters (a-z and 0-9), dot (.), dash (-), and underscore (_). In addition, values can use slash (/). The naming convention is lower_case_with_underscores. More information. For ease of determining whether a namespace or value is valid, here are regular expressions for each:

  • Namespace: [a-z0-9.-_]
  • Value: [a-z0-9.-_/]

VarInt and VarLong

Variable-length format such that smaller numbers use fewer bytes. These are very similar to Protocol Buffer Varints: the 7 least significant bits are used to encode the value and the most significant bit indicates whether there's another byte after it for the next part of the number. The least significant group is written first, followed by each of the more significant groups; thus, VarInts are effectively little endian (however, groups are 7 bits, not 8).

VarInts are never longer than 5 bytes, and VarLongs are never longer than 10 bytes. Within these limits, unnecessarily long encodings (e.g. 81 00 to encode 1) are allowed.

Pseudocode to read and write VarInts and VarLongs:

private static final int SEGMENT_BITS = 0x7F;
private static final int CONTINUE_BIT = 0x80;
public int readVarInt() {
    int value = 0;
    int position = 0;
    byte currentByte;

    while (true) {
        currentByte = readByte();
        value |= (currentByte & SEGMENT_BITS) << position;

        if ((currentByte & CONTINUE_BIT) == 0) break;

        position += 7;

        if (position >= 32) throw new RuntimeException("VarInt is too big");
    }

    return value;
}
public long readVarLong() {
    long value = 0;
    int position = 0;
    byte currentByte;

    while (true) {
        currentByte = readByte();
        value |= (long) (currentByte & SEGMENT_BITS) << position;

        if ((currentByte & CONTINUE_BIT) == 0) break;

        position += 7;

        if (position >= 64) throw new RuntimeException("VarLong is too big");
    }

    return value;
}
public void writeVarInt(int value) {
    while (true) {
        if ((value & ~SEGMENT_BITS) == 0) {
            writeByte(value);
            return;
        }

        writeByte((value & SEGMENT_BITS) | CONTINUE_BIT);

        // Note: >>> means that the sign bit is shifted with the rest of the number rather than being left alone
        value >>>= 7;
    }
}
public void writeVarLong(long value) {
    while (true) {
        if ((value & ~((long) SEGMENT_BITS)) == 0) {
            writeByte(value);
            return;
        }

        writeByte((value & SEGMENT_BITS) | CONTINUE_BIT);

        // Note: >>> means that the sign bit is shifted with the rest of the number rather than being left alone
        value >>>= 7;
    }
}

Warning.png Note Minecraft's VarInts are identical to LEB128 with the slight change of throwing a exception if it goes over a set amount of bytes.

Warning.png Note that Minecraft's VarInts are not encoded using Protocol Buffers; it's just similar. If you try to use Protocol Buffers Varints with Minecraft's VarInts, you'll get incorrect results in some cases. The major differences:

  • Minecraft's VarInts are all signed, but do not use the ZigZag encoding. Protocol buffers have 3 types of Varints: uint32 (normal encoding, unsigned), sint32 (ZigZag encoding, signed), and int32 (normal encoding, signed). Minecraft's are the int32 variety. Because Minecraft uses the normal encoding instead of ZigZag encoding, negative values always use the maximum number of bytes.
  • Minecraft's VarInts are never longer than 5 bytes and its VarLongs will never be longer than 10 bytes, while Protocol Buffer Varints will always use 10 bytes when encoding negative numbers, even if it's an int32.

Sample VarInts:

Value Hex bytes Decimal bytes
0 0x00 0
1 0x01 1
2 0x02 2
127 0x7f 127
128 0x80 0x01 128 1
255 0xff 0x01 255 1
25565 0xdd 0xc7 0x01 221 199 1
2097151 0xff 0xff 0x7f 255 255 127
2147483647 0xff 0xff 0xff 0xff 0x07 255 255 255 255 7
-1 0xff 0xff 0xff 0xff 0x0f 255 255 255 255 15
-2147483648 0x80 0x80 0x80 0x80 0x08 128 128 128 128 8

Sample VarLongs:

Value Hex bytes Decimal bytes
0 0x00 0
1 0x01 1
2 0x02 2
127 0x7f 127
128 0x80 0x01 128 1
255 0xff 0x01 255 1
2147483647 0xff 0xff 0xff 0xff 0x07 255 255 255 255 7
9223372036854775807 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x7f 255 255 255 255 255 255 255 255 127
-1 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0xff 0x01 255 255 255 255 255 255 255 255 255 1
-2147483648 0x80 0x80 0x80 0x80 0xf8 0xff 0xff 0xff 0xff 0x01 128 128 128 128 248 255 255 255 255 1
-9223372036854775808 0x80 0x80 0x80 0x80 0x80 0x80 0x80 0x80 0x80 0x01 128 128 128 128 128 128 128 128 128 1

Position

Note: What you are seeing here is the latest version of the Data types article, but the position type was different before 1.14.

64-bit value split into three signed integer parts:

  • x: 26 MSBs
  • z: 26 middle bits
  • y: 12 LSBs

For example, a 64-bit position can be broken down as follows:

Example value (big endian): 01000110000001110110001100 10110000010101101101001000 001100111111

  • The red value is the X coordinate, which is 18357644 in this example.
  • The blue value is the Z coordinate, which is -20882616 in this example.
  • The green value is the Y coordinate, which is 831 in this example.

Encoded as follows:

((x & 0x3FFFFFF) << 38) | ((z & 0x3FFFFFF) << 12) | (y & 0xFFF)

And decoded as:

val = read_long();
x = val >> 38;
y = val << 52 >> 52;
z = val << 26 >> 38;

Note: The above assumes that the right shift operator sign extends the value (this is called an arithmetic shift), so that the signedness of the coordinates is preserved. In many languages, this requires the integer type of val to be signed. In the absence of such an operator, the following may be useful:

if x >= 1 << 25 { x -= 1 << 26 }
if y >= 1 << 11 { y -= 1 << 12 }
if z >= 1 << 25 { z -= 1 << 26 }

Fixed-point numbers

Some fields may be stored as fixed-point numbers, where a certain number of bits represents the signed integer part (number to the left of the decimal point) and the rest represents the fractional part (to the right). Floating points (float and double), in contrast, keep the number itself (mantissa) in one chunk, while the location of the decimal point (exponent) is stored beside it.

Essentially, while fixed-point numbers have lower range than floating points, their fractional precision is greater for higher values. This makes them ideal for representing global coordinates of an entity in Minecraft, as it's more important to store the integer part accurately than position them more precisely within a single block (or meter).

Coordinates are often represented as a 32-bit integer, where 5 of the least-significant bits are dedicated to the fractional part, and the rest store the integer part.

Java lacks support for fractional integers directly, but you can represent them as integers. To convert from a double to this integer representation, use the following formulas:

 abs_int = (int) (double * 32.0D);

And back again:

 double = (double) (abs_int / 32.0D);

Bit sets

The types BitSet and Fixed BitSet represent packed lists of bits. The Notchian implementation uses Java's BitSet class.

BitSet

Bit sets of type BitSet are prefixed by their length in longs.

Field Name Field Type Meaning
Length VarInt Number of longs in the following array. May be 0 (if no bits are set).
Data Array of Long A packed representation of the bit set as created by BitSet.toLongArray.

The ith bit is set when (Data[i / 64] & (1 << (i % 64))) != 0, where i starts at 0.

Fixed BitSet

Bit sets of type Fixed BitSet (n) have a fixed length of n bits, encoded as ceil(n / 8) bytes. Note that this is different from BitSet, which uses longs.

Field Name Field Type Meaning
Data Byte Array (n) A packed representation of the bit set as created by BitSet.toByteArray.

The ith bit is set when (Data[i / 8] & (1 << (i % 8))) != 0, where i starts at 0. This encoding is not equivalent to the long array in BitSet.


Other definitions

Term Definition
Player When used in the singular, Player always refers to the client connected to the server.
Entity Entity refers to any item, player, mob, minecart or boat etc. See the Minecraft Wiki article for a full list.
EID An EID — or Entity ID — is a 4-byte sequence used to identify a specific entity. An entity's EID is unique on the entire server.
XYZ In this document, the axis names are the same as those shown in the debug screen (F3). Y points upwards, X points east, and Z points south.
Meter The meter is Minecraft's base unit of length, equal to the length of a vertex of a solid block. The term “block” may be used to mean “meter” or “cubic meter”.
Global palette A table/dictionary/palette mapping nonnegative integers to block states. The block state IDs can be constructed from this table by multiplying what the Minecraft Wiki calls “block IDs” by 16 and adding the metadata/damage value (or in most programming languages block_id << 4 | metadata).

Packet format

Without compression

Field Name Field Type Notes
Length VarInt Length of packet data + length of the packet ID
Packet ID VarInt
Data Byte Array Depends on the connection state and packet ID, see the sections below

With compression

Once a Set Compression packet is sent, zlib compression is enabled for all following packets. The format of a packet changes slighty to include the size of the uncompressed packet.

Compressed? Field Name Field Type Notes
No Packet Length VarInt Length of Data Length + compressed length of (Packet ID + Data)
No Data Length VarInt Length of uncompressed (Packet ID + Data) or 0
Yes Packet ID Varint zlib compressed packet ID (see the sections below)
Data Byte Array zlib compressed packet data (see the sections below)

The length given by the Packet Length field is the number of bytes that remain in that packet, including the Data Length field.

If Data Length is set to zero, then the packet is uncompressed; otherwise it is the size of the uncompressed packet.

If compressed, the uncompressed length of (Packet ID + Data) must be equal to or over the threshold set in the packet Set Compression (Login, 0x03, clientbound), otherwise the receiving party will disconnect.

Compression can be disabled by sending the packet Set Compression (Login, 0x03, clientbound) with a Threshold of -1.

Handshaking

Clientbound

There are no clientbound packets in the Handshaking state, since the protocol immediately switches to a different state after the client sends the first packet.

Serverbound

Handshake

This causes the server to switch into the target state.

Packet ID State Bound To Field Name Field Type Notes
0x00 Handshaking Server Protocol Version VarInt See protocol version numbers (currently 47)
Server Address String hostname or IP, e.g. localhost or 127.0.0.1
Server Port Unsigned Short default is 25565
Next State VarInt 1 for status, 2 for login

Legacy Server List Ping

Warning.png This packet uses a nonstandard format. It is never length-prefixed, and the packet ID is an Unsigned Byte instead of a VarInt.

While not technically part of the current protocol, legacy clients may send this packet to initiate Server List Ping, and modern servers should handle it correctly.

Packet ID State Bound To Field Name Field Type Notes
0xFE Handshaking Server Payload Unsigned Byte always 1 (0x01)

See Server List Ping#1.6 for the details of the protocol that follows this packet.

Play

Clientbound

Keep Alive

The server will frequently send out a keep-alive, each containing a random ID. The client must respond with the same packet. If the client does not respond to them for over 30 seconds, the server kicks the client. Vice versa, if the server does not send any keep-alives for 20 seconds, the client will disconnect and yields a "Timed out" exception.

Packet ID State Bound To Field Name Field Type Notes
0x00 Play Client Keep Alive ID VarInt

Join Game

See Protocol Encryption for information on logging in.

Packet ID State Bound To Field Name Field Type Notes
0x01 Play Client Entity ID Int The player's Entity ID (EID)
Gamemode Unsigned Byte 0: Survival, 1: Creative, 2: Adventure, 3: Spectator. Bit 3 (0x8) is the hardcore flag.
Dimension Byte -1: Nether, 0: Overworld, 1: End
Difficulty Unsigned Byte 0: peaceful, 1: easy, 2: normal, 3: hard
Max Players Unsigned Byte Used by the client to draw the player list
Level Type String default, flat, largeBiomes, amplified, default_1_1
Reduced Debug Info Boolean If true, a Notchian client shows reduced information on the debug screen.

Warning.png If the Dimension isn't valid then the client will crash

Chat Message

Identifying the difference between Chat/System Message is important as it helps respect the user's chat visibility options. While Position 2 accepts json formatting it will not display, old style formatting works

Packet ID State Bound To Field Name Field Type Notes
0x02 Play Client JSON Data Chat Limited to 32767 bytes
Position Byte 0: chat (chat box), 1: system message (chat box), 2: above hotbar

Warning.png Malformed JSON will disconnect the client

Time Update

Time is based on ticks, where 20 ticks happen every second. There are 24000 ticks in a day, making Minecraft days exactly 20 minutes long.

The time of day is based on the timestamp modulo 24000. 0 is sunrise, 6000 is noon, 12000 is sunset, and 18000 is midnight.

The default SMP server increments the time by 20 every second.

Packet ID State Bound To Field Name Field Type Notes
0x03 Play Client World Age Long In ticks; not changed by server commands
Time of day Long The world (or region) time, in ticks. If negative the sun will stop moving at the Math.abs of the time

Entity Equipment

Packet ID State Bound To Field Name Field Type Notes
0x04 Play Client Entity ID VarInt Entity's EID
Slot Short Equipment slot. 0: held, 1–4: armor slot (1: boots, 2: leggings, 3: chestplate, 4: helmet)
Item Slot Item in slot format

Spawn Position

Sent by the server after login to specify the coordinates of the spawn point (the point at which players spawn at, and which the compass points to). It can be sent at any time to update the point compasses point at.

Packet ID State Bound To Field Name Field Type Notes
0x05 Play Client Location Position Spawn location

Update Health

Sent by the server to update/set the health of the player it is sent to.

Food saturation acts as a food “overcharge”. Food values will not decrease while the saturation is over zero. Players logging in automatically get a saturation of 5.0. Eating food increases the saturation as well as the food bar.

Packet ID State Bound To Field Name Field Type Notes
0x06 Play Client Health Float 0 or less = dead, 20 = full HP
Food VarInt 0–20
Food Saturation Float Seems to vary from 0.0 to 5.0 in integer increments

Respawn

To change the player's dimension (overworld/nether/end), send them a respawn packet with the appropriate dimension, followed by prechunks/chunks for the new dimension, and finally a position and look packet. You do not need to unload chunks, the client will do it automatically.

Packet ID State Bound To Field Name Field Type Notes
0x07 Play Client Dimension Int -1: The Nether, 0: The Overworld, 1: The End
Difficulty Unsigned Byte 0: Peaceful, 1: Easy, 2: Normal, 3: Hard
Gamemode Unsigned Byte 0: survival, 1: creative, 2: adventure. The hardcore flag is not included
Level Type String Same as Join Game

Warning.png If the Dimension isn't valid then the client will crash

Warning.png Avoid changing player's dimension to same dimension they were already in, weird bugs can occur i.e. such player will be unable to attack other players in new world (fixes after their death and respawn)

Player Position And Look

Updates the player's position on the server. This packet will also close the "Downloading Terrain" screen when joining/respawning.

If the distance between the last known position of the player on the server and the new position set by this packet is greater than 100 meters, the client will be kicked for “You moved too quickly :( (Hacking?)”.

Also if the fixed-point number of X or Z is set greater than 3.2E7D the client will be kicked for “Illegal position”.

Yaw is measured in degrees, and does not follow classical trigonometry rules. The unit circle of yaw on the XZ-plane starts at (0, 1) and turns counterclockwise, with 90 at (-1, 0), 180 at (0, -1) and 270 at (1, 0). Additionally, yaw is not clamped to between 0 and 360 degrees; any number is valid, including negative numbers and numbers greater than 360.

Pitch is measured in degrees, where 0 is looking straight ahead, -90 is looking straight up, and 90 is looking straight down.

The yaw and pitch of player (in degrees), standing at point (x0, y0, z0) and looking towards point (x, y, z) one can be calculated with:

dx = x-x0
dy = y-y0
dz = z-z0
r = sqrt( dx*dx + dy*dy + dz*dz )
yaw = -atan2(dx,dz)/PI*180
if yaw < 0 then
    yaw = 360 - yaw
pitch = -arcsin(dy/r)/PI*180

You can get a unit vector from a given yaw/pitch via:

x = -cos(pitch) * sin(yaw)
y = -sin(pitch)
z =  cos(pitch) * cos(yaw)
Packet ID State Bound To Field Name Field Type Notes
0x08 Play Client X Double Absolute or relative position, depending on Flags
Y Double Absolute or relative position, depending on Flags
Z Double Absolute or relative position, depending on Flags
Yaw Float Absolute or relative rotation on the X Axis, in degrees
Pitch Float Absolute or relative rotation on the Y Axis, in degrees
Flags Byte Bit field, see below

About the Flags field:

<Dinnerbone> It's a bitfield, X/Y/Z/Y_ROT/X_ROT. If X is set, the x value is relative and not absolute.
Field Bit
X 0x01
Y 0x02
Z 0x04
Y_ROT 0x08
X_ROT 0x10

Held Item Change

Sent to change the player's slot selection.

Packet ID State Bound To Field Name Field Type Notes
0x09 Play Client Slot Byte The slot which the player has selected (0–8)

Use Bed

This packet tells that a player goes to bed.

The client with the matching Entity ID will go into bed mode.

This Packet is sent to all nearby players including the one sent to bed.

Packet ID State Bound To Field Name Field Type Notes
0x0A Play Client Entity ID VarInt Sleeping player's EID
Location Position Block location of the head part of the bed

Animation

Sent whenever an entity should change animation.

Packet ID State Bound To Field Name Field Type Notes
0x0B Play Client Entity ID VarInt Player ID
Animation Unsigned Byte Animation ID (see below)

Animation can be one of the following values:

ID Animation
0 Swing arm
1 Take damage
2 Leave bed
3 Eat food
4 Critical effect
5 Magic critical effect

Spawn Player

This packet is sent by the server when a player comes into visible range, not when a player joins.

This packet must be sent after the Player List Item (Play, 0x38, clientbound) packet that adds the player data for the client to use when spawning a player. If the tab list entry for the UUID included in this packet is not present when this packet arrives, the entity will not be spawned. The tab includes skin/cape data.

Servers can, however, safely spawn player entities for players not in visible range. The client appears to handle it correctly.

When in online-mode the UUIDs must be valid and have valid skin blobs, in offline-mode UUID v3 is used.

For NPCs UUID v2 should be used. Note:

<+Grum> i will never confirm this as a feature you know that :)

In an example UUID, xxxxxxxx-xxxx-Yxxx-xxxx-xxxxxxxxxxxx, the UUID version is specified by Y. So, for UUID v3, Y will always be 3, and for UUID v2, Y will always be 2.

Packet ID State Bound To Field Name Field Type Notes
0x0C Play Client Entity ID VarInt Player's EID
Player UUID UUID
X Int Player X as a Fixed-Point number
Y Int Player Y as a Fixed-Point number
Z Int Player Z as a Fixed-Point number
Yaw Angle
Pitch Angle
Current Item Short The item the player is currently holding. Note that this should be 0 for “no item”, unlike -1 used in other packets.
Metadata Metadata

Warning.png A negative Current Item crashes clients

Warning.png The client will crash if no Metadata is sent

Collect Item

Sent by the server when someone picks up an item lying on the ground — its sole purpose appears to be the animation of the item flying towards you. It doesn't destroy the entity in the client memory, and it doesn't add it to your inventory. The server only checks for items to be picked up after each Player Position (and Player Position And Look) packet sent by the client.

Packet ID State Bound To Field Name Field Type Notes
0x0D Play Client Collected Entity ID VarInt
Collector Entity ID VarInt

Spawn Object

Sent by the server when a vehicle or other object is created.

Packet ID State Bound To Field Name Field Type Notes
0x0E Play Client Entity ID VarInt EID of the object
Type Byte The type of object (see Entities#Objects)
X Int X position as a Fixed-Point number
Y Int Y position as a Fixed-Point number
Z Int Z position as a Fixed-Point number
Pitch Angle
Yaw Angle
Data Int Meaning dependent on the value of the Type field, see Object Data for details.
Velocity X Optional Short Only sent if the Data field is nonzero. Same units as Entity Velocity.
Velocity Y Optional Short Only sent if the Data field is nonzero. Same units as Entity Velocity.
Velocity Z Optional Short Only sent if the Data field is nonzero. Same units as Entity Velocity.

Spawn Mob

Sent by the server when a Mob Entity is Spawned

Packet ID State Bound To Field Name Field Type Notes
0x0F Play Client Entity ID VarInt
Type Unsigned Byte The type of mob. See Mobs
X Int X position as a Fixed-Point number
Y Int Y position as a Fixed-Point number
Z Int Z position as a Fixed-Point number
Yaw Angle
Pitch Angle
Head Pitch Angle
Velocity X Short Same units as Entity Velocity
Velocity Y Short Same units as Entity Velocity
Velocity Z Short Same units as Entity Velocity
Metadata Metadata

Spawn Painting

This packet shows location, name, and type of painting.

Calculating the center of an image: given a (width x height) grid of cells, with (0, 0) being the top left corner, the center is (max(0, width / 2 - 1), height / 2). E.g.

2x1 (1, 0)
4x4 (1, 2)
Packet ID State Bound To Field Name Field Type Notes
0x10 Play Client Entity ID VarInt
Title String Name of the painting. Max length 13
Location Position Center coordinates
Direction Unsigned Byte Direction the painting faces. 0: north (-z), 1: west (-x), 2: south (+z), 3: east (+x)

Spawn Experience Orb

Spawns one or more experience orbs.

Packet ID State Bound To Field Name Field Type Notes
0x11 Play Client Entity ID VarInt Entity's ID
X Int X position as a Fixed-Point number
Y Int Y position as a Fixed-Point number
Z Int Z position as a Fixed-Point number
Count Short The amount of experience this orb will reward once collected

Entity Velocity

Velocity is believed to be in units of 1/8000 of a block per server tick (50ms); for example, -1343 would move (-1343 / 8000) = −0.167875 blocks per tick (or −3,3575 blocks per second).

Packet ID State Bound To Field Name Field Type Notes
0x12 Play Client Entity ID VarInt
Velocity X Short Velocity on the X axis
Velocity Y Short Velocity on the Y axis
Velocity Z Short Velocity on the Z axis

Destroy Entities

Sent by the server when a list of entities is to be destroyed on the client.

Packet ID State Bound To Field Name Field Type Notes
0x13 Play Client Count VarInt Number of elements in the following array
Entity IDs Array of VarInt The list of entities of destroy

Entity

This packet may be used to initialize an entity.

For player entities, either this packet or any move/look packet is sent every game tick. So the meaning of this packet is basically that the entity did not move/look since the last such packet.

Packet ID State Bound To Field Name Field Type Notes
0x14 Play Client Entity ID VarInt

Entity Relative Move

This packet is sent by the server when an entity moves less then 4 blocks; if an entity moves more than 4 blocks Entity Teleport should be sent instead.

This packet allows at most four blocks movement in any direction, because byte range is from -128 to 127.

Packet ID State Bound To Field Name Field Type Notes
0x15 Play Client Entity ID VarInt
Delta X Byte Change in X position as a Fixed-Point number
Delta Y Byte Change in Y position as a Fixed-Point number
Delta Z Byte Change in Z position as a Fixed-Point number
On Ground Boolean

Entity Look

This packet is sent by the server when an entity rotates.

Packet ID State Bound To Field Name Field Type Notes
0x16 Play Client Entity ID VarInt
Yaw Angle New angle, not a delta
Pitch Angle New angle, not a delta
On Ground Boolean

Entity Look And Relative Move

This packet is sent by the server when an entity rotates and moves. Since a byte range is limited from -128 to 127, and movement is offset of fixed-point numbers, this packet allows at most four blocks movement in any direction. (-128/32 == -4)

Packet ID State Bound To Field Name Field Type Notes
0x17 Play Client Entity ID VarInt
Delta X Byte Change in X position as a Fixed-Point number
Delta Y Byte Change in Y position as a Fixed-Point number
Delta Z Byte Change in Z position as a Fixed-Point number
Yaw Angle New angle, not a delta
Pitch Angle New angle, not a delta
On Ground Boolean

Entity Teleport

This packet is sent by the server when an entity moves more than 4 blocks.

Packet ID State Bound To Field Name Field Type Notes
0x18 Play Client Entity ID VarInt
X Int X position as a Fixed-Point number
Y Int Y position as a Fixed-Point number
Z Int Z position as a Fixed-Point number
Yaw Angle New angle, not a delta
Pitch Angle New angle, not a delta
On Ground Boolean

Entity Head Look

Changes the direction an entity's head is facing.

Packet ID State Bound To Field Name Field Type Notes
0x19 Play Client Entity ID VarInt
Head Yaw Angle New angle, not a delta

Entity Status

Packet ID State Bound To Field Name Field Type Notes
0x1A Play Client Entity ID Int
Entity Status Byte See below
Entity Status Meaning
1 Sent when resetting a mob spawn minecart's timer / Rabbit jump animation
2 Living Entity hurt
3 Living Entity dead
4 Iron Golem throwing up arms
6 Wolf/Ocelot/Horse taming — Spawn “heart” particles
7 Wolf/Ocelot/Horse tamed — Spawn “smoke” particles
8 Wolf shaking water — Trigger the shaking animation
9 (of self) Eating accepted by server
10 Sheep eating grass
10 Play TNT ignite sound
11 Iron Golem handing over a rose
12 Villager mating — Spawn “heart” particles
13 Spawn particles indicating that a villager is angry and seeking revenge
14 Spawn happy particles near a villager
15 Witch animation — Spawn “magic” particles
16 Play zombie converting into a villager sound
17 Firework exploding
18 Animal in love (ready to mate) — Spawn “heart” particles
19 Reset squid rotation
20 Spawn explosion particle — works for some living entities
21 Play guardian sound — works for only for guardians
22 Enables reduced debug for players
23 Disables reduced debug for players

Attach Entity

This packet is sent when a player has been attached to an entity (e.g. Minecart).

Packet ID State Bound To Field Name Field Type Notes
0x1B Play Client Entity ID Int Attached entity's EID
Vehicle ID Int Vechicle's Entity ID. Set to -1 to detach
Leash Boolean If true leashes the entity to the vehicle

Entity Metadata

Updates one or more metadata properties for an existing entity. Any properties not included in the Metadata field are left unchanged.

Packet ID State Bound To Field Name Field Type Notes
0x1C Play Client Entity ID VarInt
Metadata Metadata

Entity Effect

Packet ID State Bound To Field Name Field Type Notes
0x1D Play Client Entity ID VarInt
Effect ID Byte See this table
Amplifier Byte Notchian client displays effect level as Amplifier + 1
Duration VarInt Seconds
Hide Particles Boolean

Remove Entity Effect

Packet ID State Bound To Field Name Field Type Notes
0x1E Play Client Entity ID VarInt
Effect ID Byte See this table

Set Experience

Sent by the server when the client should change experience levels.

Packet ID State Bound To Field Name Field Type Notes
0x1F Play Client Experience bar Float Between 0 and 1
Level VarInt
Total Experience VarInt See Experience#Leveling up on the Minecraft Wiki for Total Experience to Level conversion

Entity Properties

Sets attributes on the given entity.

Packet ID State Bound To Field Name Field Type Notes
0x20 Play Client Entity ID VarInt
Number Of Properties Int Number of elements in the following array
Property Key Array String See below
Value Double See below
Number Of Modifiers VarInt Number of elements in the following array
Modifiers Array of Modifier Data See Attribute#Modifiers

Known Key values:

Key Default Min Max Label
generic.maxHealth 20.0 0.0 Double.MaxValue Max Health
generic.followRange 32.0 0.0 2048.0 Follow Range
generic.knockbackResistance 0.0 0.0 1.0 Knockback Resistance
generic.movementSpeed 0.699999988079071 0.0 Double.MaxValue Movement Speed
generic.attackDamage 2.0 0.0 Double.MaxValue
horse.jumpStrength 0.7 0.0 2.0 Jump Strength
zombie.spawnReinforcements 0.0 0.0 1.0 Spawn Reinforcements Chance

Modifier Data structure:

Field Name Field Type Notes
UUID UUID
Amount Double May be positive or negative
Operation Byte See below

The operation controls how the base value of the modifier is changed.

  • 0: Add/subtract amount
  • 1: Add/subtract amount percent of the current value
  • 2: Multiply by amount percent

All of the 0's are applied first, and then the 1's, and then the 2's.

Chunk Data

Chunks are not unloaded by the client automatically. To unload chunks, send this packet with Ground-Up Continuous=true and no 16^3 chunks (eg. Primary Bit Mask=0). The server does not send skylight information for nether-chunks, it's up to the client to know if the player is currently in the nether. You can also infer this information from the primary bitmask and the amount of uncompressed bytes sent.

See also: SMP Map Format

Changes in 1.8:

  • Data value section removed
  • Extended id section removed
  • Block id section is now a unsigned short (little endian) per a block
  • The block id is equal to (id << 4) | data
Packet ID State Bound To Field Name Field Type Notes
0x21 Play Client Chunk X Int Chunk X coordinate
Chunk Z Int Chunk Z coordinate
Ground-Up Continuous Boolean This is true if the packet represents all sections in this vertical column, where the Primary Bit Mask specifies exactly which sections are included, and which are air
Primary Bit Mask Unsigned Short Bitmask with 1 for every 16x16x16 section whose data follows in the compressed data
Size VarInt Size of Data
Data Chunk

Multi Block Change

Fired whenever 2 or more blocks are changed within the render distance.

Packet ID State Bound To Field Name Field Type Notes
0x22 Play Client Chunk X Int Chunk X coordinate
Chunk Z Int Chunk Z coordinate
Record Count VarInt Number of elements in the following array, i.e. the number of blocks affected
Record Horizontal Position Array Unsigned Byte The 4 most significant bits (0xF0) encode the X coordinate, relative to the chunk. The 4 least significant bits (0x0F) encode the Z coordinate, relative to the chunk.
Y Coordinate Unsigned Byte
Block ID VarInt The new block state ID for the block as given in the global palette (When reading data: type = id >> 4, meta = id & 15, when writing data: id = type << 4 | (meta & 15))

Block Change

Fired whenever a block is changed within the render distance.

Packet ID State Bound To Field Name Field Type Notes
0x23 Play Client Location Position Block Coordinates
Block ID VarInt The new block state ID for the block as given in the global palette (When reading data: type = id >> 4, meta = id & 15, when writing data: id = type << 4 | (meta & 15))

Block Action

This packet is used for a number of things:

  • Chests opening and closing
  • Pistons pushing and pulling
  • Note blocks playing
  • Updating beacons

See also: Block Actions

Packet ID State Bound To Field Name Field Type Notes
0x24 Play Client Location Position Block coordinates
Byte 1 Unsigned Byte Varies depending on block — see Block Actions
Byte 2 Unsigned Byte Varies depending on block — see Block Actions
Block Type VarInt The block type ID for the block, not including metadata/damage value

Block Break Animation

0–9 are the displayable destroy stages and each other number means that there is no animation on this coordinate.

You can also set an animation to air! The animation will still be visible.

If you need to display several break animations at the same time you have to give each of them a unique Entity ID.

Also if you set the coordinates to a special block like water etc. it won't show the actual break animation but some other interesting effects. For example, water will lose its transparency.

Packet ID State Bound To Field Name Field Type Notes
0x25 Play Client Entity ID VarInt EID for the animation
Location Position Block Position
Destroy Stage Byte 0–9 to set it, any other value to remove it

Map Chunk Bulk

1.8 changes at Chunk Data

To reduce the number of bytes, this packet is used to send chunks together for better compression results.

Packet ID State Bound To Field Name Field Type Notes
0x26 Play Client Sky Light Sent Boolean Whether or not Chunk Data contains light nibble arrays. This is true in the Overworld, false in the End + Nether
Chunk Column Count VarInt Number of elements in each of the following arrays
Chunk Meta Chunk X Array Int The X coordinate of the chunk
Chunk Z Int The Z coordinate of the chunk
Primary Bit Mask Unsigned Short A bit mask which specifies which sections are not empty in this chunk
Chunk Data Array of Chunk Each chunk in this array corresponds to the data at the same position in Chunk Meta

Explosion

Sent when an explosion occurs (creepers, TNT, and ghast fireballs).

Each block in Records is set to air. Coordinates for each axis in record is int(X) + record.x

Packet ID State Bound To Field Name Field Type Notes
0x27 Play Client X Float
Y Float
Z Float
Radius Float Currently unused in the client
Record Count Int Number of elements in the following array
Records Array of (Byte, Byte, Byte) Each record is 3 signed bytes long, each bytes are the XYZ (respectively) offsets of affected blocks.
Player Motion X Float X velocity of the player being pushed by the explosion
Player Motion Y Float Y velocity of the player being pushed by the explosion
Player Motion Z Float Z velocity of the player being pushed by the explosion

Effect

Sent when a client is to play a sound or particle effect.

By default, the Minecraft client adjusts the volume of sound effects based on distance. The final boolean field is used to disable this, and instead the effect is played from 2 blocks away in the correct direction. Currently this is only used for effect 1013 (mob.wither.spawn), and is ignored for any other value by the client.

Packet ID State Bound To Field Name Field Type Notes
0x28 Play Client Effect ID Int The ID of the effect, see below
Location Position The location of the effect
Data Int Extra data for certain effects, see below
Disable Relative Volume Boolean See above

Effect IDs:

ID Name Data
Sound
1000 random.click
1001 random.click
1002 random.bow
1003 random.door_open or random.door_close (50/50 chance)
1004 random.fizz
1005 Play a music disc. Record ID
1006 not assigned
1007 mob.ghast.charge
1008 mob.ghast.fireball
1009 mob.ghast.fireball, but with a lower volume
1010 mob.zombie.wood
1011 mob.zombie.metal
1012 mob.zombie.woodbreak
1013 mob.wither.spawn
1014 mob.wither.shoot
1015 mob.bat.takeoff
1016 mob.zombie.infect
1017 mob.zombie.unfect
1018 mob.enderdragon.end
1020 random.anvil_break
1021 random.anvil_use
1022 random.anvil_land
Particle
2000 Spawns 10 smoke particles, e.g. from a fire Direction, see below
2001 Block break Block ID
2002 Splash potion. Particle effect + glass break sound. Potion ID
2003 Eye of Ender entity break animation — particles and sound
2004 Mob spawn particle effect: smoke + flames
2005 Spawn “happy villager” effect (green crosses), used for bonemealing vegetation

Smoke directions:

ID Direction
0 South-East
1 South
2 South-West
3 East
4 (Up or middle ?)
5 West
6 North-East
7 North
8 North-West

Sound Effect

Used to play a sound effect on the client.

Custom sounds may be added by resource packs.

Packet ID State Bound To Field Name Field Type Notes
0x29 Play Client Sound name String All known sound effect names can be seen here
Effect position X Int Effect X multiplied by 8
Effect position Y Int Effect Y multiplied by 8
Effect position Z Int Effect Z multiplied by 8
Volume Float 1 is 100%, can be more
Pitch Unsigned Byte 63 is 100%, can be more

Particle

Displays the named particle

Packet ID State Bound To Field Name Field Type Notes
0x2A Play Client Particle ID Int See below
Long Distance Boolean If true, particle distance increases from 256 to 65536
X Float X position of the particle
Y Float Y position of the particle
Z Float Z position of the particle
Offset X Float This is added to the X position after being multiplied by random.nextGaussian()
Offset Y Float This is added to the Y position after being multiplied by random.nextGaussian()
Offset Z Float This is added to the Z position after being multiplied by random.nextGaussian()
Particle Data Float The data of each particle
Particle Count Int The number of particles to create
Data Array of VarInt Length depends on particle. "iconcrack" has length of 2, "blockcrack", and "blockdust" have lengths of 1, the rest have 0.

Particle IDs:

Particle Name Particle ID
explode 0
largeexplosion 1
hugeexplosion 2
fireworksSpark 3
bubble 4
splash 5
wake 6
suspended 7
depthsuspend 8
crit 9
magicCrit 10
smoke 11
largesmoke 12
spell 13
instantSpell 14
mobSpell 15
mobSpellAmbient 16
witchMagic 17
dripWater 18
dripLava 19
angryVillager 20
happyVillager 21
townaura 22
note 23
portal 24
enchantmenttable 25
flame 26
lava 27
footstep 28
cloud 29
reddust 30
snowballpoof 31
snowshovel 32
slime 33
heart 34
barrier 35
iconcrack_(id)_(data) 36
blockcrack_(id+(data<<12)) 37
blockdust_(id) 38
droplet 39
take 40
mobappearance 41

Change Game State

It appears when a bed can't be used as a spawn point and when the rain state changes.

Packet ID State Bound To Field Name Field Type Notes
0x2B Play Client Reason Unsigned Byte See below
Value Float Depends on Reason

Reason codes:

Reason Effect Value
0 Invalid Bed
1 End raining
2 Begin raining
3 Change game mode 0: Survival, 1: Creative, 2: Adventure, 3: Spectator
4 Enter credits
5 Demo message 0: Show welcome to demo screen, 101: Tell movement controls, 102: Tell jump control, 103: Tell inventory control
6 Arrow hitting player Appears to be played when an arrow strikes another player in Multiplayer
7 Fade value The current darkness value. 1 = Dark, 0 = Bright, Setting the value higher causes the game to change color and freeze
8 Fade time Time in ticks for the sky to fade
10 Play mob appearance (effect and sound) Unknown

Spawn Global Entity

With this packet, the server notifies the client of thunderbolts striking within a 512 block radius around the player. The coordinates specify where exactly the thunderbolt strikes.

Packet ID State Bound To Field Name Field Type Notes
0x2C Play Client Entity ID VarInt The EID of the thunderbolt
Type Byte The global entity type, currently always 1 for thunderbolt
X Int Thunderbolt X, a fixed-point number
Y Int Thunderbolt Y, a fixed-point number
Z Int Thunderbolt Z, a fixed-point number

Open Window

This is sent to the client when it should open an inventory, such as a chest, workbench, or furnace. This message is not sent anywhere for clients opening their own inventory.

Packet ID State Bound To Field Name Field Type Notes
0x2D Play Client Window ID Unsigned Byte A unique id number for the window to be displayed. Notchian server implementation is a counter, starting at 1.
Window Type String The window type to use for display. See Inventory for a list.
Window Title Chat The title of the window
Number Of Slots Unsigned Byte Number of slots in the window (excluding the number of slots in the player inventory)
Entity ID Optional Int EntityHorse's EID. Only sent when Window Type is “EntityHorse”

See Inventory for further information.

Close Window

This packet is sent from the server to the client when a window is forcibly closed, such as when a chest is destroyed while it's open.

Note, notchian clients send a close window packet with Window ID 0 to close their inventory even though there is never an Open Window packet for inventory.

Packet ID State Bound To Field Name Field Type Notes
0x2E Play Client Window ID Unsigned Byte This is the ID of the window that was closed. 0 for inventory.

Set Slot

Sent by the server when an item in a slot (in a window) is added/removed.

Packet ID State Bound To Field Name Field Type Notes
0x2F Play Client Window ID Byte The window which is being updated. 0 for player inventory. Note that all known window types include the player inventory. This packet will only be sent for the currently opened window while the player is performing actions, even if it affects the player inventory. After the window is closed, a number of these packets are sent to update the player's inventory window (0).
Slot Short The slot that should be updated
Slot Data Slot

To set the curser (the item currently dragged with the mouse), use -1 as Window ID and as Slot

Window Items

The inventory slots

Sent by the server when items in multiple slots (in a window) are added/removed. This includes the main inventory, equipped armour and crafting slots.

Packet ID State Bound To Field Name Field Type Notes
0x30 Play Client Window ID Unsigned Byte The ID of window which items are being sent for. 0 for player inventory.
Count Short Number of elements in the following array
Slot Data Array of Slot

See inventory windows for further information about how slots are indexed.

Window Property

This packet is used to inform the client that part of a GUI window should be updated.

Packet ID State Bound To Field Name Field Type Notes
0x31 Play Client Window ID Unsigned Byte
Property Short The property to be updated, see below
Value Short The new value for the property, see below

The meaning of the Property field depends on the type of the window. The following table shows the known combinations of window type and property, and how the value is to be interpreted.

Window type Property Value
Furnace 0: Fire icon (fuel left) counting from fuel burn time down to 0 (in-game ticks)
1: Maximum fuel burn time fuel burn time or 0 (in-game ticks)
2: Progress arrow 0–200 (in-game ticks)
3: Maximum progress always 200
Enchantment Table 0: Level requirement for top enchantment slot The enchantment's xp level requirement
1: Level requirement for middle enchantment slot
2: Level requirement for bottom enchantment slot
3: The seed for generating the enchantments view for the client Unknown
4: Enchantment shown on mouse hover over top enchantment slot The enchantment id (set to -1 to hide it)
5: Enchantment shown on mouse hover over middle enchantment slot
6: Enchantment shown on mouse hover over bottom enchantment slot
Beacon 0: Power level Unknown
1: First potion effect Unknown
2: Second potion effect Unknown
Anvil 0: Repair cost The repair's cost in xp levels
Brewing Stand 0: Brew time 0–400, with 400 making the arrow empty, and 0 making the arrow full

Confirm Transaction

A packet from the server indicating whether a request from the client was accepted, or whether there was a conflict (due to lag).

Packet ID State Bound To Field Name Field Type Notes
0x32 Play Client Window ID Byte The ID of the window that the action occurred in
Action Number Short Every action that is to be accepted has a unique number. This field corresponds to that number.
Accepted Boolean Whether the action was accepted

Update Sign

This message is sent from the server to the client whenever a sign is discovered or created. This message is NOT sent when a sign is destroyed or unloaded.

Packet ID State Bound To Field Name Field Type Notes
0x33 Play Client Location Position
Line 1 Chat First line of text in the sign
Line 2 Chat Second line of text in the sign
Line 3 Chat Third line of text in the sign
Line 4 Chat Fourth line of text in the sign

Map

Updates a rectangular area on a map.

Packet ID State Bound To Field Name Field Type Notes
0x34 Play Client Item Damage VarInt The damage value (map ID) of the map being modified
Scale Byte
Icon Count VarInt Number of elements in the following array
Icon Direction And Type Array Byte 0xF0 = Direction, 0x0F = Type
X Byte
Z Byte
Columns Byte Number of columns updated
Rows Optional Byte Only if Columns is more than 0; number of rows updated
X Optional Byte Only if Columns is more than 0; x offset of the westernmost column
Z Optional Byte Only if Columns is more than 0; z offset of the northernmost row
Length Optional VarInt Only if Columns is more than 0; length of the following array
Data Optional Array of Unsigned Byte Only if Columns is more than 0; see Map item format

Update Block Entity

Essentially a block update on a block entity.

Packet ID State Bound To Field Name Field Type Notes
0x35 Play Client Location Position
Action Unsigned Byte The type of update to perform, see below
NBT Data Optional NBT Tag If not present then it's a TAG_END (0)

Action field:

  • 1: Set SpawnPotentials of a mob spawner
  • 2: Set command block text (command and last execution status)
  • 3: Set the level, primary, and secondary powers of a beacon
  • 4: Set rotation and skin of mob head
  • 5: Set type of flower in flower pot
  • 6: Set base color and patterns on a banner

Open Sign Editor

Sent when the client has placed a sign and is allowed to send Update Sign.

Packet ID State Bound To Field Name Field Type Notes
0x36 Play Client Location Position

Statistics

Packet ID State Bound To Field Name Field Type Notes
0x37 Play Client Count VarInt Number of elements in the following array
Statistic Name Array String https://gist.github.com/thinkofname/a1842c21a0cf2e1fb5e0
Value VarInt The amount to set it to

Player List Item

Sent by the notchian server to update the user list (<tab> in the client).

Packet ID State Bound To Field Name Field Type Notes
0x38 Play Client Action VarInt Determines the rest of the Player format after the UUID
Number Of Players VarInt Number of elements in the following array
Player UUID Array UUID
Action Field Name
0: add player Name String
Number Of Properties VarInt Number of elements in the following array
Property Name Array String
Value String
Is Signed Boolean
Signature Optional String Only if Is Signed is true
Gamemode VarInt
Ping VarInt
Has Display Name Boolean
Display Name Optional Chat Only if Has Display Name is true
1: update gamemode Gamemode VarInt
2: update latency Ping VarInt
3: update display name Has Display Name Boolean
Display Name Optional Chat Only send if Has Display Name is true
4: remove player no fields no fields

The Property field looks as in the response of Mojang API#UUID -> Profile + Skin/Cape, except of course using the protocol format instead of JSON. That is, each player will usually have one property with Name “textures” and Value being a base64-encoded JSON string as documented at Mojang API#UUID -> Profile + Skin/Cape. An empty properties array is also acceptable, and will cause clients to display the player with one of the two default skins depending on UUID.

Player Abilities

The latter 2 floats are used to indicate the field of view and flying speed respectively, while the first byte is used to determine the value of 4 booleans.

Packet ID State Bound To Field Name Field Type Notes
0x39 Play Client Flags Byte Bit field, see below
Flying Speed Float
Field of View Modifier Float Modifies the field of view, like a speed potion. A Notchian server will use the same value as the movement speed (send in the Entity Properties packet).

About the flags:

Field Bit
Invulnerable 0x01
Flying 0x02
Allow Flying 0x04
Creative Mode 0x08

Tab-Complete

The server responds with a list of auto-completions of the last word sent to it. In the case of regular chat, this is a player username. Command names and parameters are also supported.

Packet ID State Bound To Field Name Field Type Notes
0x3A Play Client Count VarInt Number of elements in the following array
Matches Array of String One eligible command, note that each command is sent separately instead of in a single string, hence the need for Count

Scoreboard Objective

This is sent to the client when it should create a new scoreboard objective or remove one.

Packet ID State Bound To Field Name Field Type Notes
0x3B Play Client Objective Name String An unique name for the objective
Mode Byte 0 to create the scoreboard. 1 to remove the scoreboard. 2 to update the display text.
Objective Value Optional String Only if mode is 0 or 2. The text to be displayed for the score
Type Optional String Only if mode is 0 or 2. “integer” or “hearts”

Update Score

This is sent to the client when it should update a scoreboard item.

Packet ID State Bound To Field Name Field Type Notes
0x3C Play Client Score Name String The name of the score to be updated or removed
Action Byte 0 to create/update an item. 1 to remove an item.
Objective Name String The name of the objective the score belongs to
Value Optional VarInt The score to be displayed next to the entry. Only sent when Action does not equal 1.

Display Scoreboard

This is sent to the client when it should display a scoreboard.

Packet ID State Bound To Field Name Field Type Notes
0x3D Play Client Position Byte The position of the scoreboard. 0: list, 1: sidebar, 2: below name.
Score Name String The unique name for the scoreboard to be displayed.

Teams

Creates and updates teams.

Packet ID State Bound To Field Name Field Type Notes
0x3E Play Client Team Name String A unique name for the team. (Shared with scoreboard).
Mode Byte If 0 then the team is created.

If 1 then the team is removed.

If 2 the team team information is updated.

If 3 then new players are added to the team.

If 4 then players are removed from the team.

Team Display Name Optional String Only if Mode = 0 or 2.
Team Prefix Optional String Only if Mode = 0 or 2. Displayed before the players' name that are part of this team
Team Suffix Optional String Only if Mode = 0 or 2. Displayed after the players' name that are part of this team
Friendly Fire Optional Byte Only if Mode = 0 or 2. 0 for off, 1 for on, 3 for seeing friendly invisibles
Name Tag Visibility Optional String Only if Mode = 0 or 2. always, hideForOtherTeams, hideForOwnTeam, never
Color Optional Byte Only if Mode = 0 or 2. Same as Chat colors
Player Count Optional VarInt Only if Mode = 0 or 3 or 4. Number of players in the array
Players Optional Array of String Only if Mode = 0 or 3 or 4. Players to be added/remove from the team. Max 40 characters so may be uuid's later

Plugin Message

Mods and plugins can use this to send their data. Minecraft itself uses a number of plugin channels. These internal channels are prefixed with MC|.

More documentation on this: http://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/

Packet ID State Bound To Field Name Field Type Notes
0x3F Play Client Channel String Name of the plugin channel used to send the data
Data Byte Array Any data, depending on the channel. MC| channels are documented here.

Disconnect

Sent by the server before it disconnects a client. The client assumes that the server has already closed the connection by the time the packet arrives.

Packet ID State Bound To Field Name Field Type Notes
0x40 Play Client Reason Chat Displayed to the client when the connection terminates.

Server Difficulty

Changes the difficulty setting in the client's option menu

Packet ID State Bound To Field Name Field Type Notes
0x41 Play Client Difficulty Unsigned Byte 0: peaceful, 1: easy, 2: normal, 3: hard

Combat Event

Packet ID State Bound To Field Name Field Type Notes
0x42 Play Client Event VarInt 0: enter combat, 1: end combat, 2: entity dead
Duration Optional VarInt Only for end combat
Player ID Optional VarInt Only for entity dead
Entity ID Optional Int Only for end combat and entity dead
Message String Only for entity dead

Camera

Sets the entity that the player renders from. This is normally used when the left-clicks an entity while in spectator mode.

The player's camera will move with the entity and look where it is looking. The entity is often another player, but can be any type of entity. The player is unable to move this entity (move packets will act as if they are coming from the other entity).

If the given entity is not loaded by the player, this packet is ignored. To return control to the player, send this packet with their entity ID.

The Notchian server resets this (sends it back to the default entity) whenever the spectated entity is killed or the player sneaks, but only if they were spectating an entity. It also sends this packet whenever the player switches out of spectator mode (even if they weren't spectating an entity).

Packet ID State Bound To Field Name Field Type Notes
0x43 Play Client Camera ID VarInt ID of the entity to set the client's camera to

The notchian also loads certain shaders for given entities:

  • Creeper → shaders/post/creeper.json
  • Spider (and cave spider) → shaders/post/spider.json
  • Enderman → shaders/post/invert.json
  • Anything else → the current shader is unloaded

World Border

Packet ID State Bound To Field Name Field Type Notes
0x44 Play Client Action VarInt Determines the format of the rest of the packet
Action Field Name
0: set size Radius Double meters
1: lerp size Old Radius Double meters
New Radius Double meters
Speed VarLong number of real-time ticks/seconds (?) until New Radius is reached. From experiments, it appears that Notchian server does not sync world border speed to game ticks, so it gets out of sync with server lag
2: set center X Double
Z Double
3: initialize X Double
Z Double
Old Radius Double
New Radius Double
Speed VarLong
Portal Teleport Boundary VarInt Resulting coordinates from a portal teleport are limited to +-value. Usually 29999984.
Warning Time VarInt
Warning Blocks VarInt
4: set warning time Warning Time VarInt unit?
5: set warning blocks Warning Blocks VarInt

Title

Packet ID State Bound To Field Name Field Type Notes
0x45 Play Client Action VarInt
Action Field Name
0: set title Title Text Chat
1: set subtitle Subtitle Text Chat
2: set times and display Fade In Int ticks
Stay Int ticks
Fade Out Int ticks
3: hide no fields no fields
4: reset no fields no fields

“Hide” makes the title disappear, but if you run times again the same title will appear. “Reset” erases the text.

Set Compression

Warning.png This packet is completely broken and has been removed in the 1.9 snapshots. The packet Set Compression (Login, 0x03, clientbound) should be used instead.

Packet ID State Bound To Field Name Field Type Notes
0x46 Play Client Threshold VarInt Packets of this size or higher may be compressed

Player List Header And Footer

Packet ID State Bound To Field Name Field Type Notes
0x47 Play Client Header Chat
Footer Chat

Resource Pack Send

Packet ID State Bound To Field Name Field Type Notes
0x48 Play Client URL String The URL to the resource pack.
Hash String A 40 character hexadecimal and lowercase SHA-1 hash of the resource pack file. (must be lower case in order to work)
If it's not a 40 character hexadecimal string, the client will not use it for hash verification and likely waste bandwidth — but it will still treat it as a unique id

Update Entity NBT

Packet ID State Bound To Field Name Field Type Notes
0x49 Play Client Entity ID VarInt
Tag NBT Tag

Serverbound

Keep Alive

The server will frequently send out a keep-alive, each containing a random ID. The client must respond with the same packet.

Packet ID State Bound To Field Name Field Type Notes
0x00 Play Server Keep Alive ID VarInt

Chat Message

The default server will check the message to see if it begins with a '/'. If it doesn't, the username of the sender is prepended and sent to all other clients (including the original sender). If it does, the server assumes it to be a command and attempts to process it. A message longer than 100 characters will cause the server to kick the client. This change was initially done by allowing the client to not slice the message up to 119 (the previous limit), without changes to the server. For this reason, the vanilla server kept the code to cut messages at 119, but this isn't a protocol limitation and can be ignored.

Packet ID State Bound To Field Name Field Type Notes
0x01 Play Server Message String The client sends the raw input, not Chat

Use Entity

This packet is sent from the client to the server when the client attacks or right-clicks another entity (a player, minecart, etc).

A Notchian server only accepts this packet if the entity being attacked/used is visible without obstruction and within a 4-unit radius of the player's position.

Note that middle-click in creative mode is interpreted by the client and sent as a Creative Inventory Action packet instead.

Packet ID State Bound To Field Name Field Type Notes
0x02 Play Server Target VarInt
Type VarInt 0: interact, 1: attack, 2: interact at
Target X Optional Float Only if Type is interact at
Target Y Optional Float Only if Type is interact at
Target Z Optional Float Only if Type is interact at

Player

This packet as well as Player Position (Play, 0x04, serverbound), Player Look (Play, 0x05, serverbound), and Player Position And Look (Play, 0x06, serverbound) are called the “serverbound movement packets”. At least one of them must be sent on each tick to ensure that servers will update things like player health correctly. Vanilla clients will send Player Position once every 20 ticks even for a stationary player, and Player on every other tick.

This packet is used to indicate whether the player is on ground (walking/swimming), or airborne (jumping/falling).

When dropping from sufficient height, fall damage is applied when this state goes from false to true. The amount of damage applied is based on the point where it last changed from true to false. Note that there are several movement related packets containing this state.

Packet ID State Bound To Field Name Field Type Notes
0x03 Play Server On Ground Boolean True if the client is on the ground, false otherwise

Player Position

Updates the player's XYZ position on the server.

If the distance between the last known position of the player on the server and the new position set by this packet is greater than 100 units, this will result in the client being kicked for “You moved too quickly :( (Hacking?)”

If the distance is greater than 10 units, the server will log the warning message "<name> moved too quickly!", followed by two coordinate triples (maybe movement delta?), but will not kick the client.

Also if the fixed-point number of X or Z is set greater than 3.2×107 the client will be kicked for “Illegal position”.

Packet ID State Bound To Field Name Field Type Notes
0x04 Play Server X Double Absolute position
Feet Y Double Absolute position, normally Head Y - 1.62
Z Double Absolute position
On Ground Boolean True if the client is on the ground, false otherwise

Player Look

The unit circle for yaw
The unit circle of yaw, redrawn

Updates the direction the player is looking in.

Yaw is measured in degrees, and does not follow classical trigonometry rules. The unit circle of yaw on the XZ-plane starts at (0, 1) and turns counterclockwise, with 90 at (-1, 0), 180 at (0,-1) and 270 at (1, 0). Additionally, yaw is not clamped to between 0 and 360 degrees; any number is valid, including negative numbers and numbers greater than 360.

Pitch is measured in degrees, where 0 is looking straight ahead, -90 is looking straight up, and 90 is looking straight down.

The yaw and pitch of player (in degrees), standing at point (x0, y0, z0) and looking towards point (x, y, z) one can be calculated with:

dx = x-x0
dy = y-y0
dz = z-z0
r = sqrt( dx*dx + dy*dy + dz*dz )
yaw = -atan2(dx,dz)/PI*180
if yaw < 0 then
    yaw = 360 - yaw
pitch = -arcsin(dy/r)/PI*180

You can get a unit vector from a given yaw/pitch via:

x = -cos(pitch) * sin(yaw)
y = -sin(pitch)
z =  cos(pitch) * cos(yaw)
Packet ID State Bound To Field Name Field Type Notes
0x05 Play Server Yaw Float Absolute rotation on the X Axis, in degrees
Pitch Float Absolute rotation on the Y Axis, in degrees
On Ground Boolean True if the client is on the ground, False otherwise

Player Position And Look

A combination of Player Look and Player Position.

Packet ID State Bound To Field Name Field Type Notes
0x06 Play Server X Double Absolute position
Feet Y Double Absolute feet position, normally Head Y - 1.62
Z Double Absolute position
Yaw Float Absolute rotation on the X Axis, in degrees
Pitch Float Absolute rotation on the Y Axis, in degrees
On Ground Boolean True if the client is on the ground, false otherwise

Player Digging

Sent when the player mines a block. A Notchian server only accepts digging packets with coordinates within a 6-unit radius of the player's position.

Packet ID State Bound To Field Name Field Type Notes
0x07 Play Server Status Byte The action the player is taking against the block (see below)
Location Position Block position
Face Byte The face being hit (see below)

Status can (currently) be one of six values:

Meaning Value
Started digging 0
Cancelled digging 1
Finished digging 2
Drop item stack 3
Drop item 4
Shoot arrow / finish eating 5

Notchian clients send a 0 (started digging) when they start digging and a 2 (finished digging) once they think they are finished. If digging is aborted, the client simply send a 1 (cancel digging).

Status code 4 (drop item) is a special case. In-game, when you use the Drop Item command (keypress 'q'), a dig packet with a status of 4, and all other values set to 0, is sent from client to server. Status code 3 is similar, but drops the entire stack.

Status code 5 (shoot arrow / finish eating) is also a special case. The x, y and z fields are all set to 0 like above, with the exception of the face field, which is set to 255.

The face can be one of six values, representing the face being hit:

Value 0 1 2 3 4 5
Offset -Y +Y -Z +Z -X +X

Player Block Placement

Packet ID State Bound To Field Name Field Type Notes
0x08 Play Server Location Position Block position
Face Byte The face on which the block is placed (see above)
Held Item Slot
Cursor Position X Byte The position of the crosshair on the block
Cursor Position Y Byte
Cursor Position Z Byte

In normal operation (i.e. placing a block), this packet is sent once, with the values set normally.

This packet has a special case where X, Y, Z, and Face are all -1. (Note that Y is unsigned so set to 255.) This special packet indicates that the currently held item for the player should have its state updated such as eating food, pulling back bows, using buckets, etc.

In a Notchian Beta client, the block or item ID corresponds to whatever the client is currently holding, and the client sends one of these packets any time a right-click is issued on a surface, so no assumptions can be made about the safety of the ID. However, with the implementation of server-side inventory, a Notchian server seems to ignore the item ID, instead operating on server-side inventory information and holding selection. The client has been observed (1.2.5 and 1.3.2) to send both real item IDs and -1 in a single session.

Special note on using buckets: When using buckets, the Notchian client might send two packets: first a normal and then a special case. The first normal packet is sent when you're looking at a block (e.g. the water you want to scoop up). This normal packet does not appear to do anything with a Notchian server. The second, special case packet appears to perform the action — based on current position/orientation and with a distance check — it appears that buckets can only be used within a radius of 6 units.

Held Item Change

Sent when the player changes the slot selection

Packet ID State Bound To Field Name Field Type Notes
0x09 Play Server Slot Short The slot which the player has selected (0–8)

Animation

Sent when the player's arm swings

Packet ID State Bound To Field Name Field Type Notes
0x0A Play Server no fields

Entity Action

Sent by the client to indicate that it has performed certain actions: sneaking (crouching), sprinting, exiting a bed, jumping with a horse, and opening a horse's inventory while riding it.

Packet ID State Bound To Field Name Field Type Notes
0x0B Play Server Entity ID VarInt Player ID
Action ID VarInt The ID of the action, see below
Action Parameter VarInt Only used by Horse Jump Boost, in which case it ranges from 0 to 100. In all other cases it is 0.

Action ID can be one of the following values:

ID Action
0 Start sneaking
1 Stop sneaking
2 Leave bed
3 Start sprinting
4 Stop sprinting
5 Jump with horse
6 Open ridden horse inventory

Leave Bed is only sent when the "Leave Bed" button is clicked on the sleep GUI, not when waking up due today time.

Open ridden horse inventory is only sent when pressing the inventory key on a horse - all other methods of opening a horse's inventory (involving right-clicking or shift-right-clicking it) do not use this packet.

Steer Vehicle

Packet ID State Bound To Field Name Field Type Notes
0x0C Play Server Sideways Float Positive to the left of the player
Forward Float Positive forward
Flags Unsigned Byte Bit mask. 0x1: jump, 0x2: unmount

Close Window

This packet is sent by the client when closing a window.

Notchian clients send a Close Window packet with Window ID 0 to close their inventory even though there is never an Open Window packet for the inventory.

Packet ID State Bound To Field Name Field Type Notes
0x0D Play Server Window ID Unsigned Byte This is the ID of the window that was closed. 0 for player inventory.

Click Window

This packet is sent by the player when it clicks on a slot in a window.

Packet ID State Bound To Field Name Field Type Notes
0x0E Play Server Window ID Unsigned Byte The ID of the window which was clicked. 0 for player inventory.
Slot Short The clicked slot number, see below
Button Byte The button used in the click, see below
Action Number Short A unique number for the action, implemented by Notchian as a counter, starting at 1. Used by the server to send back a Confirm Transaction.
Mode Byte Enum Inventory operation mode, see below
Clicked item Slot The clicked slot. Has to be empty (item ID = -1) for drop mode.

See Inventory for further information about how slots are indexed.

When right-clicking on a stack of items, half the stack will be picked up and half left in the slot. If the stack is an odd number, the half left in the slot will be smaller of the amounts.

The distinct type of click performed by the client is determined by the combination of the Mode and Button fields.

Mode Button Slot Trigger
0 0 Normal Left mouse click
1 Normal Right mouse click
1 0 Normal Shift + left mouse click
1 Normal Shift + right mouse click (identical behavior)
2 0 Normal Number key 1
1 Normal Number key 2
2 Normal Number key 3
8 Normal Number key 9
3 2 Normal Middle click
4 0 Normal* Drop key (Q) (* Clicked item is different, see above)
1 Normal* Ctrl + Drop key (Ctrl-Q) (drops full stack)
0 -999 Left click outside inventory holding nothing (no-op)
1 -999 Right click outside inventory holding nothing (no-op)
5 0 -999 Starting left mouse drag (or middle mouse)
4 -999 Starting right mouse drag
1 Normal Add slot for left-mouse drag
5 Normal Add slot for right-mouse drag
2 -999 Ending left mouse drag
6 -999 Ending right mouse drag
6 0 Normal Double click

Starting from version 1.5, “painting mode” is available for use in inventory windows. It is done by picking up stack of something (more than 1 item), then holding mouse button (left, right or middle) and dragging held stack over empty (or same type in case of right button) slots. In that case client sends the following to server after mouse button release (omitting first pickup packet which is sent as usual):

  1. packet with mode 5, slot -999, button (0 for left | 4 for right);
  2. packet for every slot painted on, mode is still 5, button (1 | 5);
  3. packet with mode 5, slot -999, button (2 | 6);

If any of the painting packets other than the “progress” ones are sent out of order (for example, a start, some slots, then another start; or a left-click in the middle) the painting status will be reset.

The server will send back a Confirm Transaction packet. If the click was not accepted, the client must reflect that packet before sending more Click Window packets, otherwise the server will reject them silently. The Notchian server also sends a Window Items packet for the open window and Set Slot packets for the clicked and cursor slot, but only when the click was not accepted, probably to resynchronize client and server.

Confirm Transaction

If a transaction sent by the client was not accepted, the server will reply with a Confirm Transaction (Play, 0x32, clientbound) packet with the Accepted field set to false. When this happens, the client must reflect the packet to apologize (as with movement), otherwise the server ignores any successive transactions.

Packet ID State Bound To Field Name Field Type Notes
0x0F Play Server Window ID Byte The ID of the window that the action occurred in
Action Number Short Every action that is to be accepted has a unique number. This field corresponds to that number.
Accepted Boolean Whether the action was accepted

Creative Inventory Action

While the user is in the standard inventory (i.e., not a crafting bench) in Creative mode, the player will send this packet.

Clicking in the creative inventory menu is quite different from non-creative inventory management. Picking up an item with the mouse actually deletes the item from the server, and placing an item into a slot or dropping it out of the inventory actually tells the server to create the item from scratch. (This can be verified by clicking an item that you don't mind deleting, then severing the connection to the server; the item will be nowhere to be found when you log back in.) As a result of this implementation strategy, the "Destroy Item" slot is just a client-side implementation detail that means "I don't intend to recreate this item.". Additionally, the long listings of items (by category, etc.) are a client-side interface for choosing which item to create. Picking up an item from such listings sends no packets to the server; only when you put it somewhere does it tell the server to create the item in that location.

This action can be described as "set inventory slot". Picking up an item sets the slot to item ID -1. Placing an item into an inventory slot sets the slot to the specified item. Dropping an item (by clicking outside the window) effectively sets slot -1 to the specified item, which causes the server to spawn the item entity, etc.. All other inventory slots are numbered the same as the non-creative inventory (including slots for the 2x2 crafting menu, even though they aren't visible in the vanilla client).

Packet ID State Bound To Field Name Field Type Notes
0x10 Play Server Slot Short Inventory slot
Clicked Item Slot

Enchant Item

Packet ID State Bound To Field Name Field Type Notes
0x11 Play Server Window ID Byte The ID of the enchantment table window sent by Open Window
Enchantment Byte The position of the enchantment on the enchantment table window, starting with 0 as the topmost one

Update Sign

This message is sent from the client to the server when the “Done” button is pushed after placing a sign.

The server only accepts this packet after Open Sign Editor, otherwise this packet is silently ignored.

Packet ID State Bound To Field Name Field Type Notes
0x12 Play Server Location Position Block Coordinates
Line 1 Chat First line of text in the sign
Line 2 Chat Second line of text in the sign
Line 3 Chat Third line of text in the sign
Line 4 Chat Fourth line of text in the sign

Player Abilities

The latter 2 bytes are used to indicate the walking and flying speeds respectively, while the first byte is used to determine the value of 4 booleans.

The vanilla client sends this packet when the player starts/stops flying with the Flags parameter changed accordingly. All other parameters are ignored by the vanilla server.

Packet ID State Bound To Field Name Field Type Notes
0x13 Play Server Flags Byte Bit mask. 0x08: damage disabled (god mode), 0x04: can fly, 0x02: is flying, 0x01: is Creative
Flying Speed Float
Walking Speed Float

Tab-Complete

Sent when the user presses tab while writing text.

Packet ID State Bound To Field Name Field Type Notes
0x14 Play Server Text String All text behind the cursor
Has Position Boolean
Looked At Block Optional Position The position of the block being looked at. Only sent if Has Position is true.

Client Settings

Sent when the player connects, or when settings are changed.

Packet ID State Bound To Field Name Field Type Notes
0x15 Play Server Locale String e.g. en_GB
View Distance Byte Client-side render distance, in chunks
Chat Mode Byte 0: enabled, 1: commands only, 2: hidden
Chat Colors Boolean “Colors” multiplayer setting
Displayed Skin Parts Unsigned Byte Skin parts, see note below

Displayed Skin Parts flags:

  • Bit 0 (0x01): Cape enabled
  • Bit 1 (0x02): Jacket enabled
  • Bit 2 (0x04): Left Sleeve enabled
  • Bit 3 (0x08): Right Sleeve enabled
  • Bit 4 (0x10): Left Pants Leg enabled
  • Bit 5 (0x20): Right Pants Leg enabled
  • Bit 6 (0x40): Hat enabled

The most significant bit (bit 7, 0x80) appears to be unused.

Client Status

Sent when the client is ready to complete login and when the client is ready to respawn after death.

Packet ID State Bound To Field Name Field Type Notes
0x16 Play Server Action ID VarInt See below

Action ID values:

Action ID Action
0 Perform respawn
1 Request stats
2 Taking Inventory achievement

Plugin Message

Mods and plugins can use this to send their data. Minecraft itself uses a number of plugin channels. These internal channels are prefixed with MC|.

More documentation on this: http://dinnerbone.com/blog/2012/01/13/minecraft-plugin-channels-messaging/

Note that the length of Data is known only from the packet length, since the packet has no length field of any kind.

Packet ID State Bound To Field Name Field Type Notes
0x17 Play Server Channel String Name of the plugin channel used to send the data
Data Byte Array Any data, depending on the channel. MC| channels are documented here.

Spectate

Teleports the player to the given entity. The player must be in spectator mode.

The Notchian client only uses this to teleport to players, but it appears to accept any type of entity. The entity does not need to be in the same dimension as the player; if necessary, the player will be respawned in the right world. If the given entity cannot be found (or isn't loaded), this packet will be ignored. It will also be ignored if the player attempts to teleport to themselves.

Packet ID State Bound To Field Name Field Type Notes
0x18 Play Server Target Player UUID UUID of the player to teleport to (can also be an entity UUID)

Resource Pack Status

Packet ID State Bound To Field Name Field Type Notes
0x19 Play Server Hash String The hash sent in the Resource Pack Send packet.
Result VarInt Enum 0: successfully loaded, 1: declined, 2: failed download, 3: accepted

Status

Main article: Server List Ping

Clientbound

Response

Packet ID State Bound To Field Name Field Type Notes
0x00 Status Client JSON Response String See Server List Ping#Response

Pong

Packet ID State Bound To Field Name Field Type Notes
0x01 Status Client Payload Long Should be the same as sent by the client

Serverbound

Request

Packet ID State Bound To Field Name Field Type Notes
0x00 Status Server no fields

Ping

Packet ID State Bound To Field Name Field Type Notes
0x01 Status Server Payload Long May be any number. Notchian clients use a system-dependent time value which is counted in milliseconds.

Login

The login process is as follows:

  1. C→S: Handshake with Next State set to 2 (login)
  2. C→S: Login Start
  3. S→C: Encryption Request
  4. Client auth
  5. C→S: Encryption Response
  6. Server auth, both enable encryption
  7. S→C: Login Success and Set Compression

Login Success and Set Compression can be sent in either order, but anything after Set Compression must use the Post Compression packet format. The packet ID for Set Compression also depends on the current connection state, and Login Success switches the state to play, meaning that the correct packet ID must be used depending on the order chosen.

For unauthenticated and localhost connections (either of the two conditions is enough for an unencrypted connection) there is no encryption. In that case Login Start is directly followed by Login Success.

See Protocol Encryption for details.

Clientbound

Disconnect

Packet ID State Bound To Field Name Field Type Notes
0x00 Login Client Reason Chat

Encryption Request

Packet ID State Bound To Field Name Field Type Notes
0x01 Login Client Server ID String Appears to be empty
Public Key Length VarInt Length of Public Key
Public Key Byte Array
Verify Token Length VarInt Length of Verify Token
Verify Token Byte Array

See Protocol Encryption for details.

Login Success

Packet ID State Bound To Field Name Field Type Notes
0x02 Login Client UUID String Unlike in other packets, this field contains the UUID as a string with hyphens.
Username String

This packet switches the connection state to play.

Set Compression

Packet ID State Bound To Field Name Field Type Notes
0x03 Login Client Threshold VarInt Maximum size of a packet before its compressed

Serverbound

Login Start

Packet ID State Bound To Field Name Field Type Notes
0x00 Login Server Name String

Encryption Response

Packet ID State Bound To Field Name Field Type Notes
0x01 Login Server Shared Secret Length VarInt Length of Shared Secret
Shared Secret Byte Array
Verify Token Length VarInt Length of Verify Token
Verify Token Byte Array

See Protocol Encryption for details.