mirror of
https://github.com/PrismarineJS/node-minecraft-protocol.git
synced 2024-11-15 03:14:56 -05:00
306b16abcd
* Update node-minecraft-data to 2.69.0 * Change default version to 1.16.3 * Update example * Fix tests * remove context change for bitfield * Update README example * Update tests * Update examples * Fix tests * Update versionChecking for 1.16.3 * Update tests
43 lines
1 KiB
JavaScript
43 lines
1 KiB
JavaScript
const mc = require('minecraft-protocol')
|
|
|
|
const server = mc.createServer({
|
|
'online-mode': false, // optional
|
|
encryption: false, // optional
|
|
host: '0.0.0.0', // optional
|
|
port: 25565, // optional
|
|
version: '1.16'
|
|
})
|
|
const mcData = require('minecraft-data')(server.version)
|
|
const loginPacket = mcData.loginPacket
|
|
|
|
server.on('login', function (client) {
|
|
client.registerChannel('MC|Brand', ['string', []])
|
|
client.on('MC|Brand', console.log)
|
|
|
|
client.write('login', {
|
|
entityId: client.id,
|
|
isHardcore: false,
|
|
gameMode: 0,
|
|
previousGameMode: 255,
|
|
worldNames: loginPacket.worldNames,
|
|
dimensionCodec: loginPacket.dimensionCodec,
|
|
dimension: loginPacket.dimension,
|
|
worldName: 'minecraft:overworld',
|
|
hashedSeed: [0, 0],
|
|
maxPlayers: server.maxPlayers,
|
|
viewDistance: 10,
|
|
reducedDebugInfo: false,
|
|
enableRespawnScreen: true,
|
|
isDebug: false,
|
|
isFlat: false
|
|
})
|
|
client.write('position', {
|
|
x: 0,
|
|
y: 1.62,
|
|
z: 0,
|
|
yaw: 0,
|
|
pitch: 0,
|
|
flags: 0x00
|
|
})
|
|
client.writeChannel('MC|Brand', 'vanilla')
|
|
})
|