From c1558118696f00562647ac2e895c91bc41dfb1ae Mon Sep 17 00:00:00 2001 From: Marvin Lehmann Date: Wed, 23 Oct 2019 21:53:04 +0200 Subject: [PATCH] Added config for Minecraft Bedrock --- MinecraftBedrock/server.properties | 72 ++++++++++++++++++++++++++++++ 1 file changed, 72 insertions(+) create mode 100644 MinecraftBedrock/server.properties diff --git a/MinecraftBedrock/server.properties b/MinecraftBedrock/server.properties new file mode 100644 index 0000000..3f43126 --- /dev/null +++ b/MinecraftBedrock/server.properties @@ -0,0 +1,72 @@ +server-name=SERVERNAME +# Used as the server name +# Allowed values: Any string + +gamemode=survival +# Sets the game mode for new players. +# Allowed values: "survival", "creative", or "adventure" + +difficulty=easy +# Sets the difficulty of the world. +# Allowed values: "peaceful", "easy", "normal", or "hard" + +allow-cheats=false +# If true then cheats like commands can be used. +# Allowed values: "true" or "false" + +max-players=10 +# The maximum number of players that can play on the server. +# Allowed values: Any positive integer + +online-mode=true +# If true then all connected players must be authenticated to Xbox Live. +# Clients connecting to remote (non-LAN) servers will always require Xbox Live authentication regardless of this setting. +# If the server accepts connections from the Internet, then it's highly recommended to enable online-mode. +# Allowed values: "true" or "false" + +white-list=false +# If true then all connected players must be listed in the separate whitelist.json file. +# Allowed values: "true" or "false" + +server-port=19132 +# Which IPv4 port the server should listen to. +# Allowed values: Integers in the range [1, 65535] + +server-portv6=19133 +# Which IPv6 port the server should listen to. +# Allowed values: Integers in the range [1, 65535] + +view-distance=32 +# The maximum allowed view distance in number of chunks. +# Allowed values: Any positive integer. + +tick-distance=4 +# The world will be ticked this many chunks away from any player. +# Allowed values: Integers in the range [4, 12] + +player-idle-timeout=30 +# After a player has idled for this many minutes they will be kicked. If set to 0 then players can idle indefinitely. +# Allowed values: Any non-negative integer. + +max-threads=8 +# Maximum number of threads the server will try to use. If set to 0 or removed then it will use as many as possible. +# Allowed values: Any positive integer. + +level-name=Bedrock level +# Allowed values: Any string + +level-seed= +# Use to randomize the world +# Allowed values: Any string + +default-player-permission-level=member +# Permission level for new players joining for the first time. +# Allowed values: "visitor", "member", "operator" + +texturepack-required=false +# Force clients to use texture packs in the current world +# Allowed values: "true" or "false" + +content-log-file-enabled=false +# Enables logging content errors to a file +# Allowed values: "true" or "false" \ No newline at end of file