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
82 lines
No EOL
3.6 KiB
YAML
Executable file
82 lines
No EOL
3.6 KiB
YAML
Executable file
# ____ ___ __ _ ______ __
|
|
# / __ \_________ / | ____ / /_(_)_ __/___ _/ /_
|
|
# / /_/ / ___/ __ \/ /| | / __ \/ __/ / / / / __ `/ __ \
|
|
# / ____/ / / /_/ / ___ |/ / / / /_/ / / / / /_/ / /_/ /
|
|
# /_/ /_/ \____/_/ |_/_/ /_/\__/_/ /_/ \__,_/_.___/
|
|
# placeholders.yml (PlaceholderAPI Hook)
|
|
# (!) Warning: Those placeholders only work if PlaceholderAPI is installed!
|
|
|
|
# This here are all placeholders PAT can provide you with.
|
|
# Here you can change those placeholders to your liking.
|
|
# The names of the usable placeholders are the heading of the sections.
|
|
# Here's a small overview of all placeholders:
|
|
|
|
# Some general Placeholders to work with:
|
|
# %pat_general_prefix% = Get the PAT prefix set in the config.yml.
|
|
# %pat_general_user% = Get the name of the user who receives this message.
|
|
# %pat_general_version_current% = Get current version name of PAT.
|
|
# %pat_general_version_newest% = Get newest version name of PAT.
|
|
|
|
# Placeholders of some of the messages in the config.yml:
|
|
# %pat_message_unknowncommand% = Get the "unknown command"-message from the config.yml of PAT. [cancel-blocked-command]
|
|
# %pat_message_base_blocked% = Get the "command blocked"-message from the config.yml of PAT. [custom-unknown-command]
|
|
# %pat_message_sub_blocked% = Get the "sub-command blocked"-message from the config.yml of PAT. [custom-unknown-command]
|
|
|
|
# Placeholders to list all commands:
|
|
# %pat_list_size_commands% = Get the amount of all listed commands.
|
|
# %pat_list_commands% = Get all listed commands.
|
|
# %pat_list_sorted_commands% = Get all listed commands in alphabetic order. (A-Z)
|
|
# %pat_list_reversed_groups% = Get all listed commands in reversed alphabetic order. (Z-A)
|
|
|
|
# Placeholders to list all commands of a group: (replace 'xxx' with the group-name)
|
|
# %pat_list_size_commands_group_xxx% = Get the amount of all commands of a group.
|
|
# %pat_list_commands_group_xxx% = Get all commands of a group.
|
|
# %pat_list_sorted_commands_group_xxx% = Get all commands of a group in alphabetic order. (A-Z)
|
|
# %pat_list_reversed_commands_group_xxx% = Get all commands of a group in reversed alphabetic order. (Z-A)
|
|
|
|
# Placeholders to list all groups:
|
|
# %pat_list_size_groups% = Get the amount of all available groups.
|
|
# %pat_list_groups% = Get all groups.
|
|
# %pat_list_sorted_groups% = Get all groups in alphabetic order. (A-Z)
|
|
# %pat_list_reversed_groups% = Get all groups in reversed alphabetic order. (Z-A)
|
|
|
|
# Get the name of the user.
|
|
# If the user is the console, the placeholder below will be used instead.
|
|
general_user:
|
|
console-name: 'Server console'
|
|
|
|
# Get all groups.
|
|
list_groups:
|
|
splitter: '&7, &e'
|
|
|
|
# Get all groups in alphabetic order. (A-Z)
|
|
list_sorted_groups:
|
|
splitter: '&7, &e'
|
|
|
|
# Get all groups in reversed alphabetic order. (Z-A)
|
|
list_reversed_groups:
|
|
splitter: '&7, &e'
|
|
|
|
# Get all commands of a group.
|
|
list_commands_group_:
|
|
splitter: '&7, &e'
|
|
|
|
# Get all commands of a group in alphabetic order. (A-Z)
|
|
list_sorted_commands_group_:
|
|
splitter: '&7 &e'
|
|
|
|
# Get all commands of a group in reversed alphabetic order. (Z-A)
|
|
list_reversed_commands_group_:
|
|
splitter: '&7, &e'
|
|
|
|
# Get all listed commands.
|
|
list_commands:
|
|
splitter: '&7, &e'
|
|
|
|
# Get all listed commands in alphabetic order. (A-Z)
|
|
list_sorted_commands:
|
|
splitter: '&7, &e'
|
|
|
|
# Get all listed commands in reversed alphabetic order. (Z-A)
|
|
list_reversed_commands:
|
|
splitter: '&7, &e' |