Difference between revisions of "Object Data"

From wiki.vg
Jump to navigation Jump to search
Line 27: Line 27:
  
 
== Meaning of int field ==
 
== Meaning of int field ==
 +
 +
 +
=== Minecarts (id 10)===
 +
 +
The int value itself specifies the minecart's functionality:
 +
 +
{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Value
 +
! class="col1" | Minecart functionality
 +
|- class="row1"
 +
| class="col0 centeralign" | 0
 +
| class="col1 centeralign" | Empty (ride-able) minecart
 +
|- class="row2"
 +
| class="col0 centeralign" | 1
 +
| class="col1 centeralign" | Chest minecart
 +
|- class="row3"
 +
| class="col0 centeralign" | 2
 +
| class="col1 centeralign" | Furnace (powered) minecart
 +
|- class="row4"
 +
| class="col0 centeralign" | 3
 +
| class="col1 centeralign" | TNT minecart
 +
|- class="row5"
 +
| class="col0 centeralign" | 5
 +
| class="col1 centeralign" | Hopper minecart
 +
|}
  
 
=== Item Frame (id 71) ===
 
=== Item Frame (id 71) ===
Line 58: Line 84:
 
|}
 
|}
  
=== Projectiles ===
+
=== Splash Potions (id 73) ===
 
 
This includes ghast fireballs, arrows, and fishhooks (probably more).
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 72: Line 96:
 
| class="col1 centeralign" | int
 
| class="col1 centeralign" | int
 
| class="col2 centeralign" | <code>64</code>
 
| class="col2 centeralign" | <code>64</code>
| class="col3" | The entity ID of the thrower
+
| class="col3" | Potion data value
 +
|}
 +
 
 +
For more information on potion data values, see [http://www.minecraftwiki.net/wiki/Data_values#Potions].
 +
 
 +
=== Fishing Float (id 90) ===
 +
{| class="wikitable"
 +
! Field Name !! Field Type !! Example !! Notes
 +
|-
 +
| Owner || int ||  || The entity ID of the owner
 
|}
 
|}
  
=== Splash Potions ===
+
 
 +
 
 +
=== Projectiles ([[Entities#Objects|Any projectile]])===
 +
 
 +
This includes ghast fireballs, arrows, and fishhooks (probably more).
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 87: Line 124:
 
| class="col1 centeralign" | int
 
| class="col1 centeralign" | int
 
| class="col2 centeralign" | <code>64</code>
 
| class="col2 centeralign" | <code>64</code>
| class="col3" | Potion data value
+
| class="col3" | The entity ID of the thrower
|}
 
 
 
For more information on potion data values, see [http://www.minecraftwiki.net/wiki/Data_values#Potions].
 
 
 
=== Minecarts (id 10)===
 
 
 
The int value itself specifies the minecart's functionality:
 
 
 
{| class="wikitable"
 
|- class="row0"
 
! class="col0" | Value
 
! class="col1" | Minecart functionality
 
|- class="row1"
 
| class="col0 centeralign" | 0
 
| class="col1 centeralign" | Empty (ride-able) minecart
 
|- class="row2"
 
| class="col0 centeralign" | 1
 
| class="col1 centeralign" | Chest minecart
 
|- class="row3"
 
| class="col0 centeralign" | 2
 
| class="col1 centeralign" | Furnace (powered) minecart
 
|- class="row4"
 
| class="col0 centeralign" | 3
 
| class="col1 centeralign" | TNT minecart
 
|- class="row5"
 
| class="col0 centeralign" | 5
 
| class="col1 centeralign" | Hopper minecart
 
 
|}
 
|}

Revision as of 21:25, 29 October 2013

Object Data

In the "Spawn Object/Vehicle" 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:

Field Name Field Type Example Notes
Speed X short 0 The speed of the object
Speed Y short 0 The speed of the object
Speed Z short 0 The speed of the object

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
5 Hopper 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 BlockID | (Metadata << 0xC)

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 [1].

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