Difference between revisions of "Classic Protocol Extension/Proposals"

From wiki.vg
Jump to navigation Jump to search
(→‎HackControl v2: Improve stuff)
(→‎Proposals: Propose SoundControl Extension)
Line 818: Line 818:
 
| class="rightalign" colspan="4" | 8 bytes
 
| class="rightalign" colspan="4" | 8 bytes
 
|}
 
|}
 +
 +
 +
===SoundControl===
 +
:Proposed by Cheesse
 +
:This extension allows the client to play music and sounds defined by the server. (Currently a work in progress.)
 +
:'''Motivation''': To create a more stimulating experience by adding custom sounds and music to the game.
 +
:'''Client Behavior''': The client must be able to receive any packets defined by this extension at any time. It must not play any music unless ordered by the server. The client must distinguish global sounds from level sounds; it must unload and dispose level sounds when changing levels, and it must unload and dispose global sounds when disconnecting. Block loops and ambient noises must be played on a loop. The client should play SFX ordered by the server immediately after receiving a '''''PlaySFX''''' packet.
 +
:'''Server Behavior''': The server may send any packets defined by this extension at any time, however, it is recommended that the server defines all sounds during the level loading phase. All audio files linked by the server must be in .ogg format. All loops MUST have a length longer than 10 seconds. The server is responsible for not infringing upon copyright laws and licensing.
 +
:<h4>DefineGlobalMusic packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="3" | 0x??
 +
(??)
 +
| class="col1 centeralign" | SongCategory 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>1</code>
 +
| class="col4 centeralign" | Valid categories are from 0-127. Category 0 is reserved for the default music. Custom music may be defined within Category 0.
 +
|- class="row2"
 +
| class="col1 centeralign" | SongID
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid IDs are from 0-254. IDs for Category 0 are as follows: 0=calm1, 1=calm2, 2=calm3, 3=hal1, 4=hal2, 5=hal3, 6=hal4.
 +
|- class="row3"
 +
| class="col1 centeralign" | SongSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/song.ogg</code>
 +
| class="col4 centeralign" | The location of the music file online. The link must lead to a .ogg file. If this field is blank, the music for the SongID within the SongCategory must be unloaded.
 +
|- class="row4"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 67 bytes
 +
|}
 +
:<h4>DefineLevelMusic packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="3" | 0x??
 +
(??)
 +
| class="col1 centeralign" | SongCategory 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>128</code>
 +
| class="col4 centeralign" | Valid categories are from 128-255.
 +
|- class="row2"
 +
| class="col1 centeralign" | SongID
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid IDs are from 0-254.
 +
|- class="row3"
 +
| class="col1 centeralign" | SongSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/song.ogg</code>
 +
| class="col4 centeralign" | The location of the music file online. The link must lead to a .ogg file. If this field is blank, the music for the SongID within the SongCategory must be unloaded.
 +
|- class="row4"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 67 bytes
 +
|}
 +
:<h4>DefineGlobalBlockLoop packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="2" | 0x??
 +
(??)
 +
| class="col1 centeralign" | BlockID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>8</code>
 +
| class="col4 centeralign" | BlockID must correspond to a valid block.
 +
|- class="row2"
 +
| class="col1 centeralign" | LoopSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/water.ogg</code>
 +
| class="col4 centeralign" | The location of the loop file online. The link must lead to a .ogg file. If this field is blank, the loop for the BlockID must be unloaded.
 +
|- class="row3"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 66 bytes
 +
|}
 +
:<h4>DefineLevelBlockLoop packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="2" | 0x??
 +
(??)
 +
| class="col1 centeralign" | BlockID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>10</code>
 +
| class="col4 centeralign" | BlockID must correspond to a valid block.
 +
|- class="row2"
 +
| class="col1 centeralign" | LoopSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/lava.ogg</code>
 +
| class="col4 centeralign" | The location of the loop file online. The link must lead to a .ogg file. If this field is blank, the loop for the BlockID must be unloaded.
 +
|- class="row3"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 66 bytes
 +
|}
 +
:<h4>DefineLevelAmbientNoise packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="8" | 0x??
 +
(??)
 +
| class="col1 centeralign" | SoundID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>3</code>
 +
| class="col4 centeralign" | Valid IDs are from 0-255.
 +
|- class="row2"
 +
| class="col1 centeralign" | RangeStartX
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>10</code>
 +
| class="col4 centeralign" | The lower X coordinate of the range of blocks where the sound should be played. Valid from 0-2047.
 +
|- class="row3"
 +
| class="col1 centeralign" | RangeStartY
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>32</code>
 +
| class="col4 centeralign" | The lower Y coordinate of the range of blocks where the sound should be played. Valid from 0-2047.
 +
|- class="row4"
 +
| class="col1 centeralign" | RangeStartZ
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>10</code>
 +
| class="col4 centeralign" | The lower Z coordinate of the range of blocks where the sound should be played. Valid from 0-2047.
 +
|- class="row5"
 +
| class="col1 centeralign" | RangeEndX
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>20</code>
 +
| class="col4 centeralign" | The higher X coordinate of the range of blocks where the sound should be played. Valid from 0-2047. Must be greater than RangeStartX.
 +
|- class="row6"
 +
| class="col1 centeralign" | RangeEndY
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>40</code>
 +
| class="col4 centeralign" | The higher Y coordinate of the range of blocks where the sound should be played. Valid from 0-2047. Must be greater than RangeStartY.
 +
|- class="row7"
 +
| class="col1 centeralign" | RangeEndZ
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>20</code>
 +
| class="col4 centeralign" | The higher Z coordinate of the range of blocks where the sound should be played. Valid from 0-2047. Must be greater than RangeStartZ.
 +
|- class="row8"
 +
| class="col1 centeralign" | LoopSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/cavenoise.ogg</code>
 +
| class="col4 centeralign" | The location of the loop file online. The link must lead to a .ogg file. If this field is blank, the loop for the BlockID must be unloaded.
 +
|- class="row9"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 78 bytes
 +
|}
 +
:<h4>DefineGlobalBlockSound packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="3" | 0x??
 +
(??)
 +
| class="col1 centeralign" | BlockID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>1</code>
 +
| class="col4 centeralign" | BlockID must correspond to a valid block.
 +
|- class="row2"
 +
| class="col1 centeralign" | SoundID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid from 0 to 127.
 +
|- class="row3"
 +
| class="col1 centeralign" | SoundSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/stone.ogg</code>
 +
| class="col4 centeralign" | The location of the sound file online. The link must lead to a .ogg file. If this field is blank, the sound for the SoundID must be unloaded.
 +
|- class="row4"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 67 bytes
 +
|}
 +
:<h4>DefineLevelBlockSound packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="3" | 0x??
 +
(??)
 +
| class="col1 centeralign" | BlockID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>1</code>
 +
| class="col4 centeralign" | BlockID must correspond to a valid block.
 +
|- class="row2"
 +
| class="col1 centeralign" | SoundID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid from 128 to 255.
 +
|- class="row3"
 +
| class="col1 centeralign" | SoundSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/dirt.ogg</code>
 +
| class="col4 centeralign" | The location of the sound file online. The link must lead to a .ogg file. If this field is blank, the sound for the SoundID must be unloaded.
 +
|- class="row4"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 67 bytes
 +
|}
 +
:<h4>DefineGlobalBlockChangeSound packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="3" | 0x??
 +
(??)
 +
| class="col1 centeralign" | InitialBlockID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>46</code>
 +
| class="col4 centeralign" | BlockIDs must correspond to a valid block.
 +
|- class="row2"
 +
| class="col1 centeralign" | FinalBlockID
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>11</code>
 +
| class="col4 centeralign" | BlockIDs must correspond to a valid block.
 +
|- class="row3"
 +
| class="col1 centeralign" | SoundSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/explosion.ogg</code>
 +
| class="col4 centeralign" | The location of the sound file online. The link must lead to a .ogg file. If this field is blank, the sound for this specific block change must be unloaded.
 +
 +
|- class="row4"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 67 bytes
 +
|}
 +
:<h4>DefineLevelBlockChangeSound packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="3" | 0x??
 +
(??)
 +
| class="col1 centeralign" | InitialBlockID 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>46</code>
 +
| class="col4 centeralign" | BlockIDs must correspond to a valid block.
 +
|- class="row2"
 +
| class="col1 centeralign" | FinalBlockID
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>11</code>
 +
| class="col4 centeralign" | BlockIDs must correspond to a valid block.
 +
|- class="row3"
 +
| class="col1 centeralign" | SoundSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/explosion.ogg</code>
 +
| class="col4 centeralign" | The location of the sound file online. The link must lead to a .ogg file. If this field is blank, the sound for this specific block change must be unloaded.
 +
 +
|- class="row4"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 67 bytes
 +
|}
 +
:<h4>DefineGlobalSFX packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="3" | 0x??
 +
(??)
 +
| class="col1 centeralign" | SFXCategory 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid categories are from 0-127.
 +
|- class="row2"
 +
| class="col1 centeralign" | SFXID
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid IDs are from 0-254.
 +
|- class="row3"
 +
| class="col1 centeralign" | SoundSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/killstreak.ogg</code>
 +
| class="col4 centeralign" | The location of the music file online. The link must lead to a .ogg file. If this field is blank, the sound for the SFXID within the SFXCategory must be unloaded.
 +
|- class="row4"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 67 bytes
 +
|}
 +
:<h4>DefineLevelSFX packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="3" | 0x??
 +
(??)
 +
| class="col1 centeralign" | SFXCategory 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid categories are from 128-255.
 +
|- class="row2"
 +
| class="col1 centeralign" | SFXID
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid IDs are from 0-254.
 +
|- class="row3"
 +
| class="col1 centeralign" | SoundSource
 +
| class="col2 centeralign" | string
 +
| class="col3 centeralign" | <code>http://www.abc.com/ticktock.ogg</code>
 +
| class="col4 centeralign" | The location of the music file online. The link must lead to a .ogg file. If this field is blank, the sound for the SFXID within the SFXCategory must be unloaded.
 +
|- class="row4"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 67 bytes
 +
|}
 +
:<h4>PlayMusic packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="4" | 0x??
 +
(??)
 +
| class="col1 centeralign" | SongCategory 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid categories are from 0-255.
 +
|- class="row2"
 +
| class="col1 centeralign" | SongID
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid IDs are from 0-254. If this field equals 255, then a SongID will be selected at random by the client.
 +
|- class="row3"
 +
| class="col1 centeralign" | Volume
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>100</code>
 +
| class="col4 centeralign" | From 0-100, the volume at which to play the music.
 +
|- class="row4"
 +
| class="col1 centeralign" | Effects
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Coming soon.
 +
|- class="row5"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 4 bytes
 +
|}
 +
:<h4>PlaySFX packet</h4>
 +
:''Server to client''
 +
:{| class="wikitable"
 +
|- class="row0"
 +
! class="col0" | Packet ID
 +
! class="col1" | Field Name
 +
! class="col2" | Field Type
 +
! class="col3" | Example
 +
! class="col4" | Notes
 +
|- class="row1"
 +
| class="col0 centeralign" rowspan="6" | 0x??
 +
(??)
 +
| class="col1 centeralign" | SFXCategory 
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid categories are from 0-255.
 +
|- class="row2"
 +
| class="col1 centeralign" | SFXID
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>0</code>
 +
| class="col4 centeralign" | Valid IDs are from 0-254. If this field equals 255, then an SFXID will be selected at random by the client.
 +
|- class="row3"
 +
| class="col1 centeralign" | Volume
 +
| class="col2 centeralign" | byte
 +
| class="col3 centeralign" | <code>100</code>
 +
| class="col4 centeralign" | From 0-100, the volume at which to play the music.
 +
|- class="row4"
 +
| class="col1 centeralign" | PositionX
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>20</code>
 +
| class="col4 centeralign" | Defined from 0-2047. If this field equals an undefined value, then the sound will be played within the player's head.
 +
|- class="row5"
 +
| class="col1 centeralign" | PositionY
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>20</code>
 +
| class="col4 centeralign" | Defined from 0-2047. If this field equals an undefined value, then the sound will be played within the player's head.
 +
|- class="row6"
 +
| class="col1 centeralign" | PositionZ
 +
| class="col2 centeralign" | short
 +
| class="col3 centeralign" | <code>20</code>
 +
| class="col4 centeralign" | Defined from 0-2047. If this field equals an undefined value, then the sound will be played within the player's head.
 +
|- class="row7"
 +
! class="col0" | Total Size:
 +
| class="col1 rightalign" colspan="4" | 10 bytes
 +
|}
 +
 +
:(Comments go here, please sign them)

Revision as of 05:48, 1 January 2017

Template

Add your proposal at the end of the page. Please use existing extensions as your guide to formatting. Please sign your proposals and comments by ending it with ~~~~.

===ExtensionName===
:Proposed by ~~~~
:Brief summary of the extension.
:'''Motivation''': Explain why this is needed or how it is useful.
:'''Client Behavior''': Detailed description of all new behavior that game clients need to implement in order to support this extension. Consider interaction with other extensions.
:'''Server Behavior''': Detailed description of all new behavior that game servers need to implement in order to support this extension. Consider interaction with other extensions.
:(Packet definitions, remarks, illustrations, and data tables go here)
:(Comments go here, please sign them)

Proposals

PlaySound

Proposed by !!!WARLOCK!!!
This extension allows server to play custom sound and musics on client.
Motivation: Servers can play custom musics or sound effects just in time or when something changes. Useful for gamemodes such as zombie survival, Servers can play zombie moaning sound while zombies are close to players. Player join and leave sounds, Kill streak sounds for games such as CTF, Radio and DJ class for players and sound effects for explosions and player deaths.
Client Behavior: Client must download and load, or load the sound directly from the URL with the ID. Client must be able to download any time after MapFinalize has sent. If the URL is empty then the Client must unload the sound with that ID. Client must unload the sound and load a new one if there's a sound with existing ID. Client must be able to play the sound right after receiving the PlaySound packet. The last playing sound can not be ignored or stopped when a new sound is going to be played. Files type must be in .WAV, otherwise they're ignored. Client must ignore downloading the existing files from Server if they're saved in drive. Client must not change the volume of all environments (Place/Destroy, Walk sounds) on SetVolume packet. Client must change a local variable for volume of next playing sound on SetVolume packet.
Server Behavior: Server must ignore sending the same url multiple times. Server can not send quick loops of sound due to network speed and client crash possibility. It's better to load all of required sounds after map load for better performance. Server must not send high sized file cause of time and speed it takes for download. Files type must be in .WAV, otherwise they're ignored. Server can change the volume before playing a sound. For a better networking, It's suggested to not send PlaySound instead of changing volume to zero.

LoadSound packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

ID byte 143 Gives the URL an ID.
URL string http://site.com/firstblood.wav Address to a .WAV file, put this empty for unload.
Total Size: 66 bytes

PlaySound packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

ID byte 125 Plays the sound saved as ID.
Total Size: 2 bytes

SetVolume packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

Percent byte 87 Set the next playing sound(s) volume to a Percentage.
Total Size: 2 bytes

ClientRedirection

Proposed by Sysr q (talk) 10:17, 12 May 2014 (UTC)
This extension allows servers to give clients a redirection to a separate, possibly "private" server.
Motivation: Allowing servers to redirect clients would be useful in several cases. Allowing a singular "hub" server to redirect players to various external (but related) servers depending on the gamemode they wish to play would allow tightly integrated networks. If servers are using an external "balancer" or some sort of Minecraft-aware proxy, the server could signal the proxy move its connection on the client's behalf to another server.
Client Behavior: Clients should be ready to receive a ClientRedirection packet any time after they receive a LevelFinalize packet. When clients receive a ClientRedirection packet, they should prompt the user with a message indicating the server they're being redirected too, and allow the user to continue or quit. Non-player clients (e.g., proxies) have the option of silently reconnecting on the client's behalf. Clients should then open a new connection to the newly redirected server, and begin standard negotiation protocol.
Server Behavior: Servers should only send a ClientRedirection packet after the they have sent a LevelFinalize packet. They should ensure the new server the client is being redirected to exists, and preferably is online and available.

ClientRedirection packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

Address string mc.example.org Can be an IP address (IPv4/IPv6) or a hostname.
Port int 25565
Name string Joe Blogg's Freebuild (optional) User-friendly name to be displayed in user prompt.
Total Size: 133 bytes

ColorCodeControl

Proposed by F (talk) 22:00, 28 August 2014 (UTC)
Gives servers an option to allow players to type in color codes, and a way to render & character in chat.
Motivation: Allow players to type in color codes and to use & in chat.
Client Behavior: When this extension is mutually supported, treat character sequence && as meaning "draw an & character", without modifying current color. Do not allow & to be typed or pasted into chat unless ColorCodeControl packet has been received with AllowColorCodes set to 1.
Server Behavior: When this extension is mutually supported, server may send ColorCodeControl packet to allow client to type or paste color codes. Server should treat && as described above.

ColorCodeControl packet

Server to Client
Packet ID Field Name Field Type Example Notes
?? AllowColorCodes byte 0 0 = disallow

1 = allow

Total Size: 2 bytes

UnicodeChat

Proposed by F (talk) 22:48, 28 August 2014 (UTC)
Expands character encoding beyond ASCII. There are three ways to go about this:
  1. Expand charset to 256 characters using Win-1252.
    • Pro: Easiest to implement in clients (few changes to FontRenderer needed) and servers (no multibyte character support needed).
    • Pro: No new packets needed.
    • Pro: Easy to create custom fonts.
    • Pro: Easy for servers to maintain compatibility with legacy clients, since only 128 characters need to be remapped, most of which have decent ASCII matches.
    • Pro: Low resource use (low RAM and VRAM use, no additional CPU use, small font file).
    • Con: Still only 256 characters. Only covers Latin-derived (English and Western/Central European) languages and common symbols.
  2. Expand charset to Unicode Basic Multilingual Plane (BMP) with UCS-2 fixed-length encoding.
    • Pro: Lots of characters (~65k) covering most languages and symbols.
    • Pro: Not too hard to implement (characters still fixed-width, native support in WinAPI / Java / C#).
    • Pro: Free fonts available that covers all characters.
    • Con: New renderer (possibly third-party library) needed for rendering.
    • Con: Higher resource use (higher RAM and VRAM use, more CPU use, large font file).
    • Con: Very hard to create custom fonts.
    • Con: Still does not cover all characters.
    • Con: Hard for servers to maintain compatibility with legacy clients.
    • Con: Always uses 2 bytes per character for transmission (twice as much as ASCII/CP-1252).
  3. Expand charset to Unicode Basic Multilingual Plane (BMP) with UTF-8 variable-length encoding.
    • Pro: Lots of characters (~65k) covering most languages and symbols.
    • Pro: Not too hard to implement (characters can be freely converted to/from UCS-2, which is natively support in WinAPI / C#).
    • Pro: Free fonts available that covers all characters.
    • Pro: Uses 1 byte per character for transmission, most of the time.
    • Con: New renderer (possibly third-party library) needed for rendering.
    • Con: Higher resource use (higher RAM and VRAM use, more CPU use, large font file).
    • Con: Hard to create custom fonts (unless some fallback rules are implemented).
    • Con: Still does not cover all characters.
    • Con: Hard for servers to maintain compatibility with legacy clients.
  4. Expand charset to full Unicode with UTF-8 variable-length encoding. Includes all the supplemental Unicode planes.
    • Pro: Widely used in other software.
    • Pro: Theoretically covers all languages and symbols.
    • Pro: Uses 1 byte per character for transmission, most of the time.
    • Con: Does not actually cover all languages and symbols due to non-existence of 100% fonts.
    • Con: Hard to find free fonts that extend beyond the BMP.
    • Con: Harder to work with strings (due to variable-width characters).
    • Con: Third-party library needed for rendering.
    • Con: Highest resource use (highest RAM and VRAM use, most CPU use, largest font files).
    • Con: Hardest to implement (no native support in WinAPI / C#).
    • Con: Hard to create custom fonts (unless some fallback rules are implemented).
    • Con: Hard for servers to maintain compatibility with legacy clients.

ColorControl

Proposed by !!!WARLOCK!!!
Changes the color alpha (A) of Messagetypes to a custom number.
Motivation: Allows servers to make gradient/glass like text messages at Message Type's IDs.
Client Behavior: If this packet is received, Client should directly change the alpha color of the specified chat message into a custom number. If the default message ID `0` is received, client should be changing the alpha code of the all incoming and received chat lines into the specified number. The alpha code remains until the client disconnects from the server, and should be functional with all incoming and already received messages. Client should be able to receive this message after the Initial map load.
Server Behavior: Server can send this packet to clients right after client finished loading the initial map. Message type can be any of stated/defined numbers on the packet (Message Type).

ColorControl packet

Server to Client
Packet ID Field Name Field Type Example Notes
0x??

(??)

Message Type byte 11 Message Type ID.
Alpha Code byte 154 Alpha code of color (From 0 - 255).
Total Size: 3 bytes

SelectionCuboid v2

Proposed by FabTheZen, classic1234 and Rayne
Motivation: Allows the server to not only highlight parts of a world, but also determine whether those regions are walk through or not. This could be used to disallow players to walk inside restricted areas or zones which they are not allowed to build in. It could also be used as a jail when accompanied with the '-hax' option.
Client behavior: The client must receive the SelectionCuboid extension with version 2. It must also determine whether any selections on the map walk through or not.
Server behavior: The server behaves the same way SelectionCuboid v1 does.

MakeSelection packet v2

Server to Client
Packet ID Field Name Field Type Example Notes
0x??

(??)

SelectionID byte 0 Numeric ID of the selection. Between 0 and 127.
Label string SomeZone Text label associated with the selection
StartX short 1 X coordinate of the starting point
StartY short 2 Y coordinate of the starting point
StartZ short 3 Z coordinate of the starting point
EndX short 5 X coordinate of the ending point
EndY short 6 Y coordinate of the ending point
EndZ short 7 Z coordinate of the ending point
Red short 255 Between 0 and 255.
Green short 34 Between 0 and 255.
Blue short 128 Between 0 and 255.
Opacity short 255 0 = fully transparent

255 = fully opaque

Walkthrough byte 0 0 = Not walkthrough

1 = Walkthrough

Total Size: 87 bytes

Player Animation

Proposed by ByteBit
Let the player to do certain actions/animations on the client
Motivation: Other players will be able to see the block another is holding or whether one placed a block or not. It makes the game's feel more realistic, because blocks don't pop out a no where.
Client Behavior: On recieve the client should perform the actions required for the animation.
Server Behavior: The server may send the packet if needed any time after the map is send.

AnimatePlayer packet

Server to Client
Packet ID Field Name Field Type Example Notes
0xAC

(172)

Animation Type byte 1 Specifies what animation to perform (0: Hold block; 1: Set block; 2: Destroy block; 3: Player name visibility)
Player ID byte 1 What player to perform this animation on
Additional byte byte 49 (Obsidian) Needed for specific animations (Block type for 0,1 and 2; for 3: true(1)/false(0))
Total Size: 3 bytes

PlayerHealth

Proposed by Apotter96 (talk) 02:29, 26 July 2015 (UTC)alex96
Gives players life count that is controlled by the server and reflected by the client at the top left of the game screen. The server.
Motivation: RPG and Gun games can go more extensive if they wish with lives.
Client Behavior: Display player's lives at the top left of screen when the server sends the packet. On player connect, the server needs to tell the client the max amount of lives the player can have, in between 5 and 20. May also dictate how many lives the server is allowed to send. Both need to check with the other end so they can comply together.
Server Behavior: At any time the server can send the packet telling the client the amount of lives the player has. Once a player connects, the server needs to tell the client how many lives the player is allowed to have, in between 5 and 20. Both need to check with the other end so they can comply together.

UpdateLives packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

Lives int 15 How many lives the player has
MaxLives int 15 The Max amount of lives
Total Size: 2 bytes

UpdateLives packet

Client to server
Packet ID Field Name Field Type Example Notes
0x??

(??)

MaxLives int 15 The Max amount of lives
Total Size: 2 bytes
(Comments go here, please sign them)



ExtPlayerList v3

Proposed by Cheesse
This extension builds upon the current version and adds the ability to change the visibility of name tags.
Motivation: Provides more flexibility in naming of players and loading of skins, autocompletion, and player tab-list display. Separates tracking of in-game entities (spawned player models) and names on the player list. ExtAddPlayerName/ExtRemovePlayerName packets take over managing the player names list (tab-list), and ExtAddEntity3/DespawnPlayer packets are used only to manage in-game entities.Provides more flexibility in naming of players and loading of skins, autocompletion, and player tab-list display. Separates tracking of in-game entities (spawned player models) and names on the player list. ExtAddPlayerName/ExtRemovePlayerName packets take over managing the player names list (tab-list), and ExtAddEntity3/DespawnPlayer packets are used only to manage in-game entities.
Client Behavior: When ExtAddPlayerName packet is received for an unused NameID, a new name must be added to the player-name list. When receiving ExtAddPlayerName packet for an already-listed NameID, client must update its ListName, GroupName, and GroupRank. Names on the player-name list should be grouped by GroupName in the player-name list. Names within a GroupName should be sorted by GroupRank (in ascending order). Names with the same GroupName and GroupRank should be sorted alphabetically by ListName. Color codes may be either drawn or stripped from ListName, GroupName, and InGameName. Player-name list must persist when client changes worlds/maps.
When an ExtAddEntity3 packet is received, it must be treated as the SpawnPlayer packet. A player model must be spawned in-game at the given location, with InGameName text drawn above it. Skin should be loaded using the given SkinName for a player name. If SkinName appears to be a player name, skin should be downloaded from the default skin server. If SkinName appears to be a full URL to a PNG image (starts with http:// or https:// and ends with .png) then skin should be downloaded from that URL. If image is correctly sized/proportioned to use as a skin for the current model, it should be used. If a blank or unrecognized value is given for SkinName, or if given image could not be downloaded or used, then the default skin should be used. The client must also set the visibility according to NameVisibility and the collision ability of the entity according to CanCollide. When client receives ExtAddEntity3 packet for an already-spawned player, a duplicate entity must not be spawned and existing entity's position must not be changed. Instead their InGameName, SkinName, NameVisibility, and CanCollide attributes must be updated. If a negative EntityID is given for ExtAddEntity3, client must update player's own spawn point, InGameName, and SkinName. If any undefined value is given in the NameVisibility or CanCollide fields, the client should ignore these fields. The client must ignore regular SpawnPlayer packets, if any are received.
When a standard DespawnPlayer packet is received for a recognized EntityID, player model must be removed from a world. When ExtRemovePlayerName packet is received for a recognized NameID, their name must be removed from player-name list. Packets with out-of-range or unrecognized NameIDs must be ignored.
In-game entities must never be affected by ExtAddPlayerName or ExtRemovePlayerName packets. Player name list must never be affected by ExtAddEntity3 or DespawnPlayer packets.
Server Behavior: Unique NameID between 0 and 255 should be assigned to every online player or every player on a map for each map. When a new player connects to the server or joins a new map, ExtAddPlayerName must be sent. GroupName and GroupRank can be used in any way, for example to group players by map/world or rank/class/faction. Server must use ExtAddEntity3 in place of standard SpawnPlayer packet. Server should re-send ExtAddPlayerName packet, using the identical NameID, when player's ListName, GroupName, or GroupRank change. Server must reliably send an ExtRemovePlayerName packet when the player disconnects. Color codes are permitted in ListName, GroupName, and InGameName.
This extension only replaces the ExtAddEntity2 packet of the ExtPlayerList extension version 2. Thus, only the ExtAddEntity3 packet is shown here.

ExtAddEntity3 packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

EntityID byte 5 Between 0 and 127
InGameName string &cNotch Player name to be shown in-game hovering above the player.
SkinName string Notch Name of the skin that should be used by the client. Could also be a URL to a PNG image.
SpawnX short 1 X coordinate (32 units per block) of entity's spawn location.
SpawnY short 2 Y coordinate (32 units per block) of entity's spawn location.
SpawnZ short 3 Z coordinate (32 units per block) of entity's spawn location.
SpawnYaw byte 4 Orientation (left-right) at the entity's spawn location.
SpawnPitch byte 5 Orientation (up-down) at the entity's spawn location.
NameVisibility byte 6 Visibility of the InGameName of the entity. Obstacles can be blocks or other entities.
  • 0 = (Default) Visible only by hovering the cursor over the entity within view. Ignores any obstacles in the way.
  • 1 = Visible only by hovering the cursor over the entity within view. Invisible when obstacles block the entity.
  • 2 = Always visible within view (name tag shrinks over distance). Ignores any obstacles in the way.
  • 3 = Always visible within view (name tag shrinks over distance). Invisible when obstacles block the entity.
  • 4 = Always visible anywhere (name tag does not shrink over distance). Ignores any obstacles in the way.
  • 5 = Always visible anywhere (name tag does not shrink over distance). Invisible when obstacles block the entity.
  • 6 = Never visible.
CanCollide byte 0
  • 0 = (default) Can collide with the player.
  • 1 = Cannot collide with the player.
Total Size: 140 bytes
(Comments go here, please sign them)

HackControl v2

Proposed by Cheesse
This extension allows more control over the abilities of players.
Motivation: To gain control over the movement and action abilities of players.
Client Behavior: Client must be able to receive HackControl2 packets at any time and apply the changes defined in the packet immediately. Any value may be given in any field to allow or adjust an ability. If a negative value is given in any field, the client should set that value to its default. If 0 is given in any field, the client must deactivate that ability and prevent its use by the player unless otherwise stated.
Server Behavior: Server may send HackControl2 packets to successfully connected clients at any time.

HackControl2 packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

FlySpeed byte 0 This value is divided by 25 and multiplied by the default speed of flight to get the custom speed of flight. A value of 255 means there are no restrictions on flight. A value of 0 means flight is not allowed.
NoClip byte 0
  • 0 = Prevent no-clipping
  • 1 = Allow no-clipping
WalkSpeed byte 64 This value is divided by 25 and multiplied by the default walking speed to get the custom walking speed. A value of 255 means there are no restrictions on walking speed. A value of 0 means the player is not allowed to walk.
RunSpeed byte 16 This sets the speedhacking capabilities of the player. This value is divided by 25, then added to 1, then multiplied by the default walking speed to get the custom running speed. A value of 255 means there are no restrictions on running speed. A value of 0 means the player is not allowed to run.
AllowRespawn byte 1
  • 0 = Prevent respawning
  • 1 = Allow respawning
PointOfView byte 0
  • 0 = First-person view
  • 1 = Third-person behind view
  • 2 = Third-person front view

Setting this field to a defined value will prevent the player from changing their point of view. Setting it to an undefined value will allow the player to switch points of view.

JumpHeight byte 40 Maximum height in player units of the player's normal jump. A value of 0 means the player is not allowed to jump. A value of 255 means there are no restrictions on jump height.
SuperJumpHeight byte 100 Maximum height in player units of any other jump abilities the player has, like using speed to get a higher jump. A SuperJumpHeight value of 0 means the player is not allowed to superjump. A value of 255 means there are no restrictions on jump height.
Total Size: 9 bytes
(Comments go here, please sign them)

EnvWeatherType v2

Proposed by Cheesse
This extension allows the server to change the weather conditions and amount of fog.
Motivation: To allow the server to create a setting, scene or mood on a map; or to limit the players vision for things like smoke bombs in games. (Fog/View Distance is placed here because the EnvSetMapAppearance2 packet would be too big to include such a versatile feature.)
Client Behavior: Client must be able to receive EnvSetWeatherType2 packets at any time and apply the changes defined in the packet immediately. If an undefined value is used in the WeatherType or WeatherStrength fields, the client should ignore that value. If a negative value is given in the MaxFog field, the client should set that value to its own default. The client should make smooth changes between different strengths of weather and fog distances.
Server Behavior: Server may send EnvSetWeatherType2 packets to successfully connected clients at any time.

EnvSetWeatherType2 packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

WeatherType byte 0
  • 0 = Sunny
  • 1 = Rainy
  • 2 = Snowy
WeatherStrength byte 120 These values should be scaled such that a value of 120 should correspond to 100%. From 0-120.
MaxFog short 128 The distance in blocks of the wall of fog away from the player
Total Size: 5 bytes
(Comments go here, please sign them)

MessageTypes v2

Proposed by Cheesse
This extension adds new ways of presenting information to the player.
Motivation: To allow the server to send messages in different places and for limited times.
Client Behavior: Client must interpret the PlayerID field of the standard Message packet as the Message Type field. Certain values in this field correspond to different locations for messages on the screen. Any undefined values in this field should be ignored and presented as regular chat messages. Without mutual server-client support for this extension, this field should be ignored.
Server Behavior: Server may use the PlayerID field of the Message packet to have that message placed at a certain location on the player's screen.
MessageType Value Meaning Message Placement
0 Chat In the chatbox.
1 Status1 At the top right of the screen.
2 Status2 At the top right of the screen below Status1.
3 Status3 At the top right of the screen below Status2.
11 BottomRight1 At the bottom right of the screen.
12 BottomRight2 At the bottom right of the screen above BottomRight1.
13 BottomRight3 At the bottom right of the screen above BottomRight2.
45 LeftHotbar On top of the hotbar aligned to the left.
54 RightHotbar On top of the hotbar aligned to the right.
100 BigAnnouncement In large font slightly above the center of the screen.
200 SmallAnnouncement Near the center of the screen below BigAnnouncement.

This extension does not define any new packets.

(Comments go here, please sign them)

ExtMapInfo

Proposed by Cheesse
This extension allows the server to send the client some of the map's metadata and other information
Motivation: To allow clients to save metadata with the maps they choose to save. This extension can also be modified to add more features to maps.
Client Behavior: Client must be able to receive FinalMapInfo packets at any time after a LevelInitialize packet has been received and before a FinalMapInfo packet has been received. Client should store the values in these fields in memory to be used later. The metadata defined in these fields come from those defined in the ClassicWorld file definitions. Client should ignore any LevelFinalize packets recieved.
Server Behavior: Server must send FinalMapInfo packets with the correct values after it has finished sending the client the raw block data after sending a LevelInitialize packet. The server should not send this packet at any other time. The server should never send any LevelFinalize packets to the client.

FinalMapInfo packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

"FormatVersion byte 1 The FormatVersion is currently set to 1.
"MapName" string main The name of the map.
"UUID" byte array [16] abcdefghijklmnop The UUID of the map.
"XSize" short 128 The length of the map in the X dimension.
"YSize" short 128 The length of the map in the Y dimension.
"ZSize" short 128 The length of the map in the Z dimension.
"CreatedBy" string Cheesse The name of the author of the map. This should be an existing Classicube username.
"MapGenSoftware" string Mapbuilder The name of the software used to generate the map.
"MapGenName" string Flat The name of the generator function used to generate the map.
"TimeCreated" long 1234567890 The UTC Unix timestamp of the time the map was generated.
"TimeLastModified" long 1234567890 The UTC Unix timestamp of the time the map was last modified.
Total Size: 298 bytes
(Comments go here, please sign them)




BlockDefinitionsExt2

Proposed by Goodly.
This extension allows servers to define more properties for the custom blocks provided by BlockDefinitions.
Motivation: To allow for better custom blocks to be created.
Client Behavior: This extension depends on BlockDefinitions extension and BlockDefinitionsExt extension, and must only be enabled if BOTH extensions are mutually supported. Client should be able receive any number of DefineBlockExt2 packets during the level loading process (after receiving LevelInitialize and until receiving LevelFinalize packets). However, dependent on client, this can be sent after level loading (Some clients might just find it more extensible than others).
Client must be able to accept and render blocks as specified in DefineBlockExt2 packets. Clients must accept any valid definitions with BlockID between 1 and 254, inclusive. If a new definition is accepted for an already-defined BlockID, the old definition should be replaced.
DefineBlockExt2 Packet
Server to Client
Packet ID Field Name Field Type Example Notes
RandomOffset byte 1 Whether or not the block is randomly offset.
  • 0 = Not offset (No change).
  • 1 = Randomly offset on the X and Z axis from -3/16 to 3/16.
  • 2 = Randomly offset on the Y axis from -3/16 to 3/16.
  • 3 = Randomly offset on the Y axis from -3/16 to 0.
  • 4 = Randomly offset on the X, Y and Z axis from -3/16 to 3/16
  • 5 = Randomly offset on the X and Z axis from -3/16 to 3/16 and randomly offset on the Y axis from -3/16 to 0.

Note: This only effects blocks which have the "Shape" as 0 (sprite)

FatSprite byte 1 Whether or not the sprite is stretched closer to the edge of the block, similar to premium.
  • 0 = Not fat (No change).
  • 1 = The corners of the sprite are stretched from 0.8 to 15.2. (Instead of the original values of 2.50 to 13.5.)

Note: This only effects blocks which have the "Shape" as 0 (sprite)

Selectable byte 0 Whether or not the block/liquid becomes highlighted when pointed at it (Like how liquids are not breakable or selectable by default).
  • 0 = Not select-able.
  • 1 = Selectable. (No change)
Replaceable byte 1 Whether or not the client is able to reach through and place blocks inside of the the block/liquid.
  • 0 = No change from original behavior
  • 1 = The block can be reached through when placing blocks and can be overwritten if a block is placed inside of it. (Similar to liquid)
Red byte 255 Red component that the block is multiplied by.
Green byte 109 Green component that the block is multiplied by.
Blue byte 255 Blue component that the block is multiplied by.
Total Size: 8 bytes


SoundControl

Proposed by Cheesse
This extension allows the client to play music and sounds defined by the server. (Currently a work in progress.)
Motivation: To create a more stimulating experience by adding custom sounds and music to the game.
Client Behavior: The client must be able to receive any packets defined by this extension at any time. It must not play any music unless ordered by the server. The client must distinguish global sounds from level sounds; it must unload and dispose level sounds when changing levels, and it must unload and dispose global sounds when disconnecting. Block loops and ambient noises must be played on a loop. The client should play SFX ordered by the server immediately after receiving a PlaySFX packet.
Server Behavior: The server may send any packets defined by this extension at any time, however, it is recommended that the server defines all sounds during the level loading phase. All audio files linked by the server must be in .ogg format. All loops MUST have a length longer than 10 seconds. The server is responsible for not infringing upon copyright laws and licensing.

DefineGlobalMusic packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

SongCategory byte 1 Valid categories are from 0-127. Category 0 is reserved for the default music. Custom music may be defined within Category 0.
SongID byte 0 Valid IDs are from 0-254. IDs for Category 0 are as follows: 0=calm1, 1=calm2, 2=calm3, 3=hal1, 4=hal2, 5=hal3, 6=hal4.
SongSource string http://www.abc.com/song.ogg The location of the music file online. The link must lead to a .ogg file. If this field is blank, the music for the SongID within the SongCategory must be unloaded.
Total Size: 67 bytes

DefineLevelMusic packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

SongCategory byte 128 Valid categories are from 128-255.
SongID byte 0 Valid IDs are from 0-254.
SongSource string http://www.abc.com/song.ogg The location of the music file online. The link must lead to a .ogg file. If this field is blank, the music for the SongID within the SongCategory must be unloaded.
Total Size: 67 bytes

DefineGlobalBlockLoop packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

BlockID byte 8 BlockID must correspond to a valid block.
LoopSource string http://www.abc.com/water.ogg The location of the loop file online. The link must lead to a .ogg file. If this field is blank, the loop for the BlockID must be unloaded.
Total Size: 66 bytes

DefineLevelBlockLoop packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

BlockID byte 10 BlockID must correspond to a valid block.
LoopSource string http://www.abc.com/lava.ogg The location of the loop file online. The link must lead to a .ogg file. If this field is blank, the loop for the BlockID must be unloaded.
Total Size: 66 bytes

DefineLevelAmbientNoise packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

SoundID byte 3 Valid IDs are from 0-255.
RangeStartX short 10 The lower X coordinate of the range of blocks where the sound should be played. Valid from 0-2047.
RangeStartY short 32 The lower Y coordinate of the range of blocks where the sound should be played. Valid from 0-2047.
RangeStartZ short 10 The lower Z coordinate of the range of blocks where the sound should be played. Valid from 0-2047.
RangeEndX short 20 The higher X coordinate of the range of blocks where the sound should be played. Valid from 0-2047. Must be greater than RangeStartX.
RangeEndY short 40 The higher Y coordinate of the range of blocks where the sound should be played. Valid from 0-2047. Must be greater than RangeStartY.
RangeEndZ short 20 The higher Z coordinate of the range of blocks where the sound should be played. Valid from 0-2047. Must be greater than RangeStartZ.
LoopSource string http://www.abc.com/cavenoise.ogg The location of the loop file online. The link must lead to a .ogg file. If this field is blank, the loop for the BlockID must be unloaded.
Total Size: 78 bytes

DefineGlobalBlockSound packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

BlockID byte 1 BlockID must correspond to a valid block.
SoundID byte 0 Valid from 0 to 127.
SoundSource string http://www.abc.com/stone.ogg The location of the sound file online. The link must lead to a .ogg file. If this field is blank, the sound for the SoundID must be unloaded.
Total Size: 67 bytes

DefineLevelBlockSound packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

BlockID byte 1 BlockID must correspond to a valid block.
SoundID byte 0 Valid from 128 to 255.
SoundSource string http://www.abc.com/dirt.ogg The location of the sound file online. The link must lead to a .ogg file. If this field is blank, the sound for the SoundID must be unloaded.
Total Size: 67 bytes

DefineGlobalBlockChangeSound packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

InitialBlockID byte 46 BlockIDs must correspond to a valid block.
FinalBlockID byte 11 BlockIDs must correspond to a valid block.
SoundSource string http://www.abc.com/explosion.ogg The location of the sound file online. The link must lead to a .ogg file. If this field is blank, the sound for this specific block change must be unloaded.
Total Size: 67 bytes

DefineLevelBlockChangeSound packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

InitialBlockID byte 46 BlockIDs must correspond to a valid block.
FinalBlockID byte 11 BlockIDs must correspond to a valid block.
SoundSource string http://www.abc.com/explosion.ogg The location of the sound file online. The link must lead to a .ogg file. If this field is blank, the sound for this specific block change must be unloaded.
Total Size: 67 bytes

DefineGlobalSFX packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

SFXCategory byte 0 Valid categories are from 0-127.
SFXID byte 0 Valid IDs are from 0-254.
SoundSource string http://www.abc.com/killstreak.ogg The location of the music file online. The link must lead to a .ogg file. If this field is blank, the sound for the SFXID within the SFXCategory must be unloaded.
Total Size: 67 bytes

DefineLevelSFX packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

SFXCategory byte 0 Valid categories are from 128-255.
SFXID byte 0 Valid IDs are from 0-254.
SoundSource string http://www.abc.com/ticktock.ogg The location of the music file online. The link must lead to a .ogg file. If this field is blank, the sound for the SFXID within the SFXCategory must be unloaded.
Total Size: 67 bytes

PlayMusic packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

SongCategory byte 0 Valid categories are from 0-255.
SongID byte 0 Valid IDs are from 0-254. If this field equals 255, then a SongID will be selected at random by the client.
Volume byte 100 From 0-100, the volume at which to play the music.
Effects byte 0 Coming soon.
Total Size: 4 bytes

PlaySFX packet

Server to client
Packet ID Field Name Field Type Example Notes
0x??

(??)

SFXCategory byte 0 Valid categories are from 0-255.
SFXID byte 0 Valid IDs are from 0-254. If this field equals 255, then an SFXID will be selected at random by the client.
Volume byte 100 From 0-100, the volume at which to play the music.
PositionX short 20 Defined from 0-2047. If this field equals an undefined value, then the sound will be played within the player's head.
PositionY short 20 Defined from 0-2047. If this field equals an undefined value, then the sound will be played within the player's head.
PositionZ short 20 Defined from 0-2047. If this field equals an undefined value, then the sound will be played within the player's head.
Total Size: 10 bytes
(Comments go here, please sign them)