Object Data: Difference between revisions
Jump to navigation
Jump to search
imported>Md 5 No edit summary |
imported>Raphfrk No edit summary |
||
| Line 72: | Line 72: | ||
| class="col2 centeralign" | <code>64</code> | | class="col2 centeralign" | <code>64</code> | ||
| class="col3" | Potion data value | | class="col3" | Potion data value | ||
|} | |||
=== Arrows === | |||
{| class="wikitable" | |||
|- class="row0" | |||
! class="col0" | Field Name | |||
! class="col1" | Field Type | |||
! class="col2" | Example | |||
! class="col3" | Notes | |||
|- class="row1" | |||
| class="col0 centeralign" | Entity ID | |||
| class="col1 centeralign" | int | |||
| class="col2 centeralign" | <code>1234</code> | |||
| class="col3" | Entity id of the target | |||
|} | |} | ||
For more information on potion data values, see [http://www.minecraftwiki.net/wiki/Data_values#Potions]. | For more information on potion data values, see [http://www.minecraftwiki.net/wiki/Data_values#Potions]. | ||
Revision as of 20:40, 24 October 2012
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, you 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
Falling Block (id 70)
| Field Name | Field Type | Example | Notes |
|---|---|---|---|
| Block Type | int | 12
|
BlockID | (Metadata << 0xC)
|
Projectiles
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 |
Splash Potions
| Field Name | Field Type | Example | Notes |
|---|---|---|---|
| Entity ID | int | 64
|
Potion data value |
Arrows
| Field Name | Field Type | Example | Notes |
|---|---|---|---|
| Entity ID | int | 1234
|
Entity id of the target |
For more information on potion data values, see [1].