deathcap
deathcap
There is a comment saying the voxel format could be changed over time so I have a suggestion :) could we change it to only include the voxel type index...
ping.js does not appear to always call its callback method, it will be called with an error when a) the port is closed (example: options `{host:'github.com', port:25565}`), b) when a...
Along the lines of adding more testing https://github.com/PrismarineJS/node-minecraft-protocol/issues/281, would also be good to add automated tests with the clients connecting to various third-party server software out there, to catch any...
Some kind of protocol support for BungeeCord in node-minecraft-protocol might be interesting. It sends additional information in the set_protocol packet host field, in the same way as Forge (which instead...
src/ping.js implements a server list ping using `ping` and `ping_start` in the `STATUS` protocol state, but there is another type of ping initiated by sending the bytes 0xfe 0x01. Sometimes...
On node.js, the HTTP response object (which is named IncomingMessage in node.js) [inherits from Stream.Readable](https://github.com/request/request/commit/6ebd748a02a49976d41ebbc4f8396acf8fda1c14): ``` javascript util.inherits(IncomingMessage, Stream.Readable); ``` but in http-browserify, it [only inherits from Stream](https://github.com/joyent/node/blob/1781c8b85bbabc4c5c1e054bd5c50903cc0eb47b/lib/_http_incoming.js#L80): ``` javascript...
http://wiki.vg/Protocol#Data_types | Name | Size | Encodes | Notes | | --- | --- | --- | --- | | VarInt | ≥ 1 ≤ 5 | An integer between...
Would be cool if the protocol specs from minecraft-data could be used to generate a dissector for the Wireshark network analyzer: https://www.wireshark.org There were some previous efforts, but none complete/merged/for...
re: https://github.com/PrismarineJS/node-minecraft-protocol/issues/332 FE legacy ping support 0xfe is not correctly decoded/encoded, although it is defined in the `handshaking` state, it does not have a varint packet id and length like...
Add protocol for 1.6.4 and earlier versions This is before the large protocol rework (in http://wiki.vg/Protocol_History#13w41a, using Netty), vastly different overall packet structure: No length prefix, instead the packet length...