Difference between revisions of "Object Data"
Jump to navigation
Jump to search
(Undo revision 7192 by Javaprophet (talk) pretty sure that's not how it works) |
(formatting) |
||
Line 1: | Line 1: | ||
− | + | In the [[Protocol#Spawn Object|Spawn Object]] packet, additional metadata about the spawned entity may be provided. The length and contents of this extra data depend on the type of object being spawned. No matter what, the server must send at least one integer to the client, although 0 is a valid value. If a number other than zero is provided (for all entities), the following data is appended to the end of the object data (as of [[Protocol version numbers|15w31a, protocol 49]] this data is always required): | |
− | |||
− | In the | ||
{| class="wikitable" | {| class="wikitable" | ||
− | |- | + | |- |
− | ! | + | ! Field name |
− | ! | + | ! Field type |
− | ! | + | ! Example |
− | ! | + | ! Notes |
− | |- | + | |- |
− | + | | Speed X | |
− | + | | Short | |
− | + | | <code>0</code> | |
− | + | | The speed of the object, same units as [[Protocol#Entity Velocity|Entity Velocity]] | |
− | |- | + | |-� |
− | + | | Speed Y | |
− | + | | Short | |
− | + | | <code>0</code> | |
− | + | | The speed of the object, same units as [[Protocol#Entity Velocity|Entity Velocity]] | |
− | |- | + | |- |
− | + | | Speed Z | |
− | + | | Short | |
− | + | | <code>0</code> | |
− | + | | The speed of the object, same units as [[Protocol#Entity Velocity|Entity Velocity]] | |
− | |} | + | |} |
== Meaning of int field == | == Meaning of int field == | ||
− | + | === Minecarts (id 10) === | |
− | === Minecarts (id 10)=== | ||
The int value itself specifies the minecart's functionality: | The int value itself specifies the minecart's functionality: | ||
{| class="wikitable" | {| class="wikitable" | ||
− | |- | + | |- |
− | ! | + | ! Value |
− | ! | + | ! Minecart functionality |
− | |- | + | |- |
− | + | | 0 | |
− | + | | Empty (ride-able) minecart | |
− | |- | + | |- |
− | + | | 1 | |
− | + | | Chest minecart | |
− | |- | + | |- |
− | + | | 2 | |
− | + | | Furnace (powered) minecart | |
− | |- | + | |- |
− | + | | 3 | |
− | + | | TNT minecart | |
− | |- | + | |- |
− | + | | 4 | |
− | + | | Spawner minecart | |
− | |- | + | |-� |
− | + | | 5 | |
− | + | | Hopper minecart | |
− | |- | + | |- |
− | + | | 6 | |
− | + | | Command Block minecart | |
− | |} | + | |} |
=== Item Frame (id 71) === | === Item Frame (id 71) === | ||
{| class="wikitable" | {| class="wikitable" | ||
− | |- | + | |- |
− | ! | + | ! Field name |
− | ! | + | ! Field type |
− | ! | + | ! Example |
− | ! | + | ! Notes |
− | |- | + | |- |
− | + | | Orientation | |
− | | | + | | Int |
− | + | | <code>3</code> | |
− | | | + | | 0–3: South, West, North, East |
− | |} | + | |} |
=== Falling Block (id 70) === | === Falling Block (id 70) === | ||
{| class="wikitable" | {| class="wikitable" | ||
− | |- | + | |- |
− | ! | + | ! Field name |
− | ! | + | ! Field type |
− | ! | + | ! Example |
− | ! | + | ! Notes |
− | |- | + | |- |
− | + | | Block type | |
− | | | + | | Int |
− | + | | <code>12</code> | |
− | + | | <code>BlockID | (Metadata << 0x10)</code> | |
− | |} | + | |} |
=== Splash Potions (id 73) === | === Splash Potions (id 73) === | ||
{| class="wikitable" | {| class="wikitable" | ||
− | |- | + | |- |
− | ! | + | ! Field name |
− | ! | + | ! Field type |
− | ! | + | ! Example |
− | ! | + | ! Notes |
− | |- | + | |- |
− | + | | Entity ID | |
− | | | + | | Int |
− | + | | <code>64</code> | |
− | + | | Potion data value | |
− | |} | + | |} |
− | For more information on potion data values, see | + | For more information on potion data values, see {{Minecraft Wiki|Data values#Potions}}. |
=== Fishing Float (id 90) === | === Fishing Float (id 90) === | ||
+ | |||
{| class="wikitable" | {| class="wikitable" | ||
− | ! Field | + | ! Field name |
− | |- | + | ! Field type |
− | | Owner || | + | ! Example |
− | |} | + | ! Notes |
− | + | |- | |
− | + | | Owner | |
+ | | Int | ||
+ | | | ||
+ | | The entity ID of the owner | ||
+ | |} | ||
− | === Projectiles ([[Entities#Objects|Any projectile]])=== | + | === Projectiles ([[Entities#Objects|Any projectile]]) === |
This includes ghast fireballs, arrows, and fishhooks (probably more). | This includes ghast fireballs, arrows, and fishhooks (probably more). | ||
{| class="wikitable" | {| class="wikitable" | ||
− | |- | + | |- |
− | ! | + | ! Field name |
− | ! | + | ! Field type |
− | ! | + | ! Example |
− | ! | + | ! Notes |
− | |- | + | |- |
− | + | | Entity ID | |
− | | | + | | Int |
− | + | | <code>64</code> | |
− | + | | The entity ID of the thrower | |
− | |} | + | |} |
Revision as of 06:18, 7 January 2016
In the Spawn Object packet, additional metadata about the spawned entity may be provided. The length and contents of this extra data depend on the type of object being spawned. No matter what, the server must send at least one integer to the client, although 0 is a valid value. If a number other than zero is provided (for all entities), the following data is appended to the end of the object data (as of 15w31a, protocol 49 this data is always required):
Field name | Field type | Example | Notes |
---|---|---|---|
Speed X | Short | 0
|
The speed of the object, same units as Entity Velocity |
Speed Y | Short | 0
|
The speed of the object, same units as Entity Velocity |
Speed Z | Short | 0
|
The speed of the object, same units as Entity Velocity |
Contents
Meaning of int field
Minecarts (id 10)
The int value itself specifies the minecart's functionality:
Value | Minecart functionality |
---|---|
0 | Empty (ride-able) minecart |
1 | Chest minecart |
2 | Furnace (powered) minecart |
3 | TNT minecart |
4 | Spawner minecart |
5 | Hopper minecart |
6 | Command Block minecart |
Item Frame (id 71)
Field name | Field type | Example | Notes |
---|---|---|---|
Orientation | Int | 3
|
0–3: South, West, North, East |
Falling Block (id 70)
Field name | Field type | Example | Notes |
---|---|---|---|
Block type | Int | 12
|
(Metadata << 0x10) |
Splash Potions (id 73)
Field name | Field type | Example | Notes |
---|---|---|---|
Entity ID | Int | 64
|
Potion data value |
For more information on potion data values, see Data values#Potions.
Fishing Float (id 90)
Field name | Field type | Example | Notes |
---|---|---|---|
Owner | Int | The entity ID of the owner |
Projectiles (Any projectile)
This includes ghast fireballs, arrows, and fishhooks (probably more).
Field name | Field type | Example | Notes |
---|---|---|---|
Entity ID | Int | 64
|
The entity ID of the thrower |