minecraft-server/live-server/plugins/MiniMOTD/main.conf
s8n-ru 0dad38e02e Initial commit: racked.ru Minecraft server config snapshot
Captures live config state of nullstone Purpur 1.21.11 server:
- docker-compose.yml (itzg/minecraft-server image, MODRINTH_PROJECTS + PLUGINS lists)
- All plugin configs under live-server/plugins/ (no DBs, no jars, no world data)
- Server core: bukkit.yml, spigot.yml, purpur.yml, paper-global.yml, paper-world-defaults.yml, server.properties

Excluded via .gitignore:
- World data (world/, world_nether/, world_the_end/, auth_limbo/)
- Sensitive: AuthMe DB (password hashes), Lands DB, CoreProtect DB, Essentials userdata
- Jars (auto-fetched), logs, caches, .paper-remapped
2026-04-30 18:33:38 +01:00

64 lines
2.7 KiB
Text
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# MiniMOTD Main Configuration
# The list of MOTDs to display
#
# - Supported placeholders: <online_players>, <max_players>
# - Putting more than one will cause one to be randomly chosen each refresh
motds=[
{
line1=" <white>ʀ ᴀ ᴋ ᴇ ᴅ . ʀ </white> "
line2=" <yellow><italic>выживание</italic></yellow>"
# Set the icon to use with this MOTD
# Either use 'random' to randomly choose an icon, or use the name
# of a file in the icons folder (excluding the '.png' extension)
# ex: icon="myIconFile"
icon=random
}
]
# Enable MOTD-related features
motd-enabled=true
# Enable server list icon related features
icon-enabled=true
player-count-settings {
# Enable modification of the max player count
max-players-enabled=true
# Changes the Max Players value
max-players=69
# Setting this to true will disable the hover text showing online player usernames
disable-player-list-hover=true
# Setting this to true will disable the player list hover (same as 'disable-player-list-hover'),
# but will also cause the player count to appear as '???'
hide-player-count=false
# Settings for the fake player count feature
fake-players {
# Enable fake player count feature
fake-players-enabled=false
# Modes: add, constant, minimum, random, percent
#
# - add: This many fake players will be added
# ex: fake-players="3"
# - constant: A constant value for the player count
# ex: fake-players="=42"
# - minimum: The minimum bound of the player count
# ex: fake-players="7+"
# - random: A random number of fake players in this range will be added
# ex: fake-players="3:6"
# - percent: The player count will be inflated by this much, rounding up
# ex: fake-players="25%"
fake-players="25%"
}
# Changes the Max Players to be X more than the online players
# ex: x=3 -> 16/19 players online.
just-x-more-settings {
# Enable this feature
just-x-more-enabled=false
x-value=3
}
# Should the displayed online player count be allowed to exceed the displayed maximum player count?
# If false, the online player count will be capped at the maximum player count
allow-exceeding-maximum=false
# The list of server names that affect player counts/listing.
# Only applicable when running the plugin on a proxy (Velocity or Waterfall/Bungeecord).
# When set to an empty list, the default count & list as determined by the proxy will be used.
servers=[]
}