2018-05-13 16:50:16 -04:00
|
|
|
const mc = require('minecraft-protocol')
|
2020-06-23 11:10:22 -04:00
|
|
|
const Chunk = require('prismarine-chunk')('1.16')
|
2018-05-13 16:50:16 -04:00
|
|
|
const Vec3 = require('vec3')
|
2017-11-08 10:27:00 -05:00
|
|
|
var server = mc.createServer({
|
|
|
|
'online-mode': true,
|
|
|
|
encryption: true,
|
|
|
|
host: '0.0.0.0',
|
|
|
|
port: 25565,
|
2020-06-23 11:10:22 -04:00
|
|
|
version: '1.16'
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
|
|
|
var chunk = new Chunk()
|
2017-11-08 10:27:00 -05:00
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
for (var x = 0; x < 16; x++) {
|
2017-11-08 10:27:00 -05:00
|
|
|
for (var z = 0; z < 16; z++) {
|
2018-05-13 16:50:16 -04:00
|
|
|
chunk.setBlockType(new Vec3(x, 100, z), 2)
|
2017-11-08 10:27:00 -05:00
|
|
|
for (var y = 0; y < 256; y++) {
|
2018-05-13 16:50:16 -04:00
|
|
|
chunk.setSkyLight(new Vec3(x, y, z), 15)
|
2017-11-08 10:27:00 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-13 16:50:16 -04:00
|
|
|
server.on('login', function (client) {
|
2020-06-23 10:52:18 -04:00
|
|
|
const w = {
|
|
|
|
piglin_safe: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 0
|
|
|
|
},
|
|
|
|
natural: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 1
|
|
|
|
},
|
|
|
|
ambient_light: {
|
|
|
|
type: 'float',
|
|
|
|
value: 0
|
|
|
|
},
|
|
|
|
infiniburn: {
|
|
|
|
type: 'string',
|
|
|
|
value: 'minecraft:infiniburn_overworld'
|
|
|
|
},
|
|
|
|
respawn_anchor_works: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 0
|
|
|
|
},
|
|
|
|
has_skylight: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 1
|
|
|
|
},
|
|
|
|
bed_works: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 1
|
|
|
|
},
|
|
|
|
has_raids: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 1
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: 'string',
|
|
|
|
value: 'minecraft:overworld'
|
|
|
|
},
|
|
|
|
logical_height: {
|
|
|
|
type: 'int',
|
|
|
|
value: 256
|
|
|
|
},
|
|
|
|
shrunk: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 0
|
|
|
|
},
|
|
|
|
ultrawarm: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 0
|
|
|
|
},
|
|
|
|
has_ceiling: {
|
|
|
|
type: 'byte',
|
|
|
|
value: 0
|
|
|
|
}
|
|
|
|
}
|
2017-11-08 10:27:00 -05:00
|
|
|
client.write('login', {
|
|
|
|
entityId: client.id,
|
|
|
|
levelType: 'default',
|
|
|
|
gameMode: 0,
|
2020-06-23 10:52:18 -04:00
|
|
|
previousGameMode: 255,
|
|
|
|
worldNames: ['minecraft:overworld'],
|
|
|
|
dimensionCodec: { name: '', type: 'compound', value: { dimension: { type: 'list', value: { type: 'compound', value: [{ name: w }] } } } },
|
|
|
|
dimension: 'minecraft:overworld',
|
|
|
|
worldName: 'minecraft:overworld',
|
2017-11-08 10:27:00 -05:00
|
|
|
difficulty: 2,
|
|
|
|
maxPlayers: server.maxPlayers,
|
2019-12-29 17:27:04 -05:00
|
|
|
reducedDebugInfo: false,
|
|
|
|
enableRespawnScreen: true,
|
|
|
|
hashedSeed: [0, 0]
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
2017-11-08 10:27:00 -05:00
|
|
|
client.write('map_chunk', {
|
|
|
|
x: 0,
|
|
|
|
z: 0,
|
2020-06-23 09:48:33 -04:00
|
|
|
ignoreOldData: true,
|
2019-12-29 17:27:04 -05:00
|
|
|
groundUp: false,
|
2017-11-08 10:27:00 -05:00
|
|
|
bitMap: 0xffff,
|
|
|
|
chunkData: chunk.dump(),
|
|
|
|
blockEntities: []
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
2017-11-08 21:28:33 -05:00
|
|
|
client.write('position', {
|
|
|
|
x: 15,
|
|
|
|
y: 101,
|
|
|
|
z: 15,
|
|
|
|
yaw: 137,
|
|
|
|
pitch: 0,
|
|
|
|
flags: 0x00
|
2018-05-13 16:50:16 -04:00
|
|
|
})
|
|
|
|
})
|