-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathconfig_panel.toml
More file actions
36 lines (30 loc) · 1.14 KB
/
config_panel.toml
File metadata and controls
36 lines (30 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
version = "1.0"
[main]
name = "Minecraft configuration"
services = ["__APP__"]
[main.config]
name = "Configuration Options"
[main.config.gamemode]
ask = "Game mode"
type = "select"
choices = ["survival", "creative", "adventure", "spectator"]
default = "survival"
help = "Choose the default game mode on your server."
bind = "gamemode:__INSTALL_DIR__/server.properties"
[main.config.level_seed]
ask = "World seed"
type = "string"
help = "Choose the seed used on your server (leave blank for a random seed)."
bind = "level-seed:__INSTALL_DIR__/server.properties"
[main.config.max_players]
ask = "Max player number"
type = "number"
default = 20
help = "Choose the maximum number of players on your server."
bind = "max-players:__INSTALL_DIR__/server.properties"
[main.config.motd]
ask = "MOTD"
type = "string"
default = "A Minecraft Server"
help = "Choose the MOTD of your server (supports color and formatting codes)."
bind = "motd:__INSTALL_DIR__/server.properties"