mirror of
https://github.com/danbulant/flying-squid
synced 2026-05-21 05:08:40 +00:00
17 lines
324 B
JavaScript
17 lines
324 B
JavaScript
var mcServer=require("../");
|
|
|
|
mcServer.createMCServer({
|
|
"motd": "A Minecraft Server \nRunning flying-squid",
|
|
"port": 25565,
|
|
"maxPlayers": 10,
|
|
"onlineMode": true,
|
|
"logging": true,
|
|
"gameMode": 1,
|
|
"generation": {
|
|
"name":"diamond_square",
|
|
"options":{
|
|
"worldHeight":80
|
|
}
|
|
},
|
|
"modpe": false
|
|
});
|