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
75 lines
No EOL
2.7 KiB
YAML
Executable file
75 lines
No EOL
2.7 KiB
YAML
Executable file
# UnexpectedSpawn
|
|
# Authors : Shivelight, DeathGOD7
|
|
|
|
global:
|
|
# Random respawn area for global settings.
|
|
x-max: 2000
|
|
x-min: -2000
|
|
z-max: 2000
|
|
z-min: -2000
|
|
|
|
# Fail radius expansion if normal x and z area failed to obtain suitable block or location
|
|
fail-radius: 500
|
|
|
|
# Sets the global respawn world unless set in custom config worlds.
|
|
respawn-world: 'world'
|
|
|
|
# Do you want to have random respawn than normal world respawn? By default it is enabled in all worlds. If you want to
|
|
# disable it in specific world, then add that world name in below 'blacklisted-worlds'.
|
|
random-respawn:
|
|
# Do you want to have random respawn after user dies? If set to false then user will respawn in world spawnpoint.
|
|
# or bed/respawn anchor spawnpoint.
|
|
on-death: true
|
|
# Checks if bed respawn is taken priority. If set to false then it will force user to random respawn
|
|
# even if they have bed respawn point when they die.
|
|
bed-respawn-enabled: true
|
|
# Do you want to have random spawn when user joins for first time to prevent grief in spawn chunks? If set to false
|
|
# then user will spawn in default world spawnpoint.
|
|
on-first-join: true
|
|
# Enable this if you want to have random respawn each time user joins the server. It's best for Anarchy type server.
|
|
always-on-join: false
|
|
|
|
# Invert the blacklist to whitelist
|
|
invert-block-blacklist: false
|
|
|
|
# Specify any block where you don't want user to be teleported. You don't them to drown in lava/water or land on
|
|
# someone else campfire, no?
|
|
spawn-block-blacklist:
|
|
- LAVA
|
|
- WATER
|
|
- CACTUS
|
|
- FIRE
|
|
- MAGMA_BLOCK
|
|
- SWEET_BERRY_BUSH
|
|
- CAMPFIRE
|
|
|
|
|
|
# If no worlds are specified, it will use global/default variables. Default Config (worlds: [])
|
|
# If you have added any world below, it will override the global settings.
|
|
# If it got missing parameters that is in global settings like "spawn-block-blacklist"
|
|
# but not in worlds world parameters then it will use global parameters.
|
|
# All the features are same as global ones.
|
|
# Please change "survival" to the name of your world and remove [] if you want to add worlds.
|
|
|
|
worlds: []
|
|
# survival:
|
|
# x-max: 500
|
|
# x-min: -500
|
|
# z-max: 500
|
|
# z-min: -500
|
|
# fail-radius: 1000
|
|
# respawn-world: ''
|
|
# random-respawn:
|
|
# on-death: true
|
|
# bed-respawn-enabled: true
|
|
# on-first-join: false
|
|
# always-on-join: false
|
|
|
|
# If you have any worlds here , then it will be excluded from having random spawn
|
|
# Even if you have set custom settings in above settings and you add that world to
|
|
# blacklist, it will be excluded. Default :[]
|
|
blacklisted-worlds: []
|
|
# - bedwars
|
|
# - creative
|
|
|
|
debug : false |