-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
38 lines (35 loc) · 1.37 KB
/
config.yml
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
37
38
# Flag for Debug Logging. This will print all the Domains used to Ping/Join your Server
debug-log: false
# All Features can be deactivated on a per-Domain basis by leaving out their respective parts of this config.
# This is the Domain the underlying values are used for.
# The "default" Domain contains fallback values for players that do not use a specified Domain
default:
# The "Message of the Day" (Text shown in the Server List).
# Supports MiniMessage Format: https://docs.advntr.dev/minimessage/format.html
motd: "<gray>A Minecraft Server"
# A Message send to the Players Chat after they join
joinmessage:
# The text that will be sent to the Player.
# Supports MiniMessage Format: https://docs.advntr.dev/minimessage/format.html
text: "<yellow>Welcome back!"
# Delay for the Text to be sent in seconds. Optional value.
# 0 or smaller sends the Message immediately
delay: 2
# Block for Custom Configurations
custom:
# Copy this block to add configs for different subdomains.
# Do not forget to count the numbers up!
1:
domains:
- localhost
- my-pc.local
motd: "<blue>Your local Minecraft Server<newline><rainbow>Just for you"
joinmessage:
text: "<green>Hello there!"
2:
domains:
- example.com
motd: "<blue>An example Minecraft Server"
joinmessage:
text: "<white><Server> Greetings!"
delay: 3