mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-06-07 04:17:07 +00:00
41 lines
925 B
PHP
41 lines
925 B
PHP
<?php
|
|
|
|
/*
|
|
|
|
-
|
|
/ \
|
|
/ \
|
|
/ PocketMine \
|
|
/ MP \
|
|
|\ @shoghicp /|
|
|
|. \ / .|
|
|
| .. \ / .. |
|
|
| .. | .. |
|
|
| .. | .. |
|
|
\ | /
|
|
\ | /
|
|
\ | /
|
|
\ | /
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
|
|
*/
|
|
|
|
//Protocol Version: 4
|
|
|
|
|
|
define("MC_KEEP_ALIVE", 0x00);
|
|
define("MC_CLIENT_CONNECT", 0x09);
|
|
define("MC_SERVER_HANDSHAKE", 0x10);
|
|
define("MC_CLIENT_HANDSHAKE", 0x13);
|
|
define("MC_CLIENT_DISCONNECT", 0x15);
|
|
define("MC_LOGIN", 0x86);
|
|
define("MC_LOGIN_STATUS", 0x87);
|
|
define("MC_READY", 0x88);
|
|
define("MC_CHAT", 0x89);
|
|
define("MC_SET_TIME", 0x8a);
|
|
define("MC_START_GAME", 0x8b); |