2018-05-13 22:50:16 +02:00
|
|
|
const mc = require('minecraft-protocol')
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2017-07-13 14:03:52 +02:00
|
|
|
const options = {
|
2020-06-23 16:52:18 +02:00
|
|
|
'online-mode': true,
|
2020-06-23 17:10:22 +02:00
|
|
|
version: '1.16'
|
2018-05-13 22:50:16 +02:00
|
|
|
}
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 22:50:16 +02:00
|
|
|
const server = mc.createServer(options)
|
2020-10-06 22:46:53 +02:00
|
|
|
const mcData = require('minecraft-data')(server.version)
|
|
|
|
const loginPacket = mcData.loginPacket
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2023-12-27 18:48:10 -05:00
|
|
|
server.on('playerJoin', function (client) {
|
2018-05-13 22:50:16 +02:00
|
|
|
const addr = client.socket.remoteAddress
|
|
|
|
console.log('Incoming connection', '(' + addr + ')')
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 22:50:16 +02:00
|
|
|
client.on('end', function () {
|
|
|
|
console.log('Connection closed', '(' + addr + ')')
|
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 22:50:16 +02:00
|
|
|
client.on('error', function (error) {
|
|
|
|
console.log('Error:', error)
|
|
|
|
})
|
2015-10-03 02:14:01 +02:00
|
|
|
|
2013-01-03 22:01:17 -05:00
|
|
|
// send init data so client will start rendering world
|
2014-03-16 18:06:57 +01:00
|
|
|
client.write('login', {
|
2013-01-04 20:22:19 -05:00
|
|
|
entityId: client.id,
|
2020-10-06 22:46:53 +02:00
|
|
|
isHardcore: false,
|
2013-01-04 01:45:57 -05:00
|
|
|
gameMode: 0,
|
2021-09-03 12:52:47 -04:00
|
|
|
previousGameMode: 1,
|
2020-10-06 22:46:53 +02:00
|
|
|
worldNames: loginPacket.worldNames,
|
|
|
|
dimensionCodec: loginPacket.dimensionCodec,
|
|
|
|
dimension: loginPacket.dimension,
|
2020-06-23 16:52:18 +02:00
|
|
|
worldName: 'minecraft:overworld',
|
2020-10-06 22:46:53 +02:00
|
|
|
hashedSeed: [0, 0],
|
2015-01-01 22:20:47 +00:00
|
|
|
maxPlayers: server.maxPlayers,
|
2020-10-06 22:46:53 +02:00
|
|
|
viewDistance: 10,
|
2019-12-29 23:27:04 +01:00
|
|
|
reducedDebugInfo: false,
|
|
|
|
enableRespawnScreen: true,
|
2020-10-06 22:46:53 +02:00
|
|
|
isDebug: false,
|
|
|
|
isFlat: false
|
2018-05-13 22:50:16 +02:00
|
|
|
})
|
2015-01-01 22:20:47 +00:00
|
|
|
|
2014-03-16 18:06:57 +01:00
|
|
|
client.write('position', {
|
2013-01-03 22:01:17 -05:00
|
|
|
x: 0,
|
|
|
|
y: 1.62,
|
|
|
|
z: 0,
|
|
|
|
yaw: 0,
|
|
|
|
pitch: 0,
|
2015-01-01 22:20:47 +00:00
|
|
|
flags: 0x00
|
2018-05-13 22:50:16 +02:00
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2017-07-13 14:03:52 +02:00
|
|
|
const msg = {
|
2013-07-09 08:11:09 +02:00
|
|
|
translate: 'chat.type.announcement',
|
2019-08-03 23:29:14 +00:00
|
|
|
with: [
|
2013-07-09 08:11:09 +02:00
|
|
|
'Server',
|
|
|
|
'Hello, world!'
|
|
|
|
]
|
2018-05-13 22:50:16 +02:00
|
|
|
}
|
2020-06-23 16:52:18 +02:00
|
|
|
client.write('chat', { message: JSON.stringify(msg), position: 0, sender: '0' })
|
2018-05-13 22:50:16 +02:00
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 22:50:16 +02:00
|
|
|
server.on('error', function (error) {
|
|
|
|
console.log('Error:', error)
|
|
|
|
})
|
2013-01-03 22:01:17 -05:00
|
|
|
|
2018-05-13 22:50:16 +02:00
|
|
|
server.on('listening', function () {
|
|
|
|
console.log('Server listening on port', server.socketServer.address().port)
|
|
|
|
})
|