Improved config.yml from play testing.

This commit is contained in:
tastybento 2021-02-06 09:25:28 -08:00
parent f4fce0c8b4
commit 92c4c05e04

View File

@ -3,7 +3,7 @@ boxed:
command: command:
# Player Command. What command users will run to access their area. # Player Command. What command users will run to access their area.
# To define alias, just separate commands with white space. # To define alias, just separate commands with white space.
island: boxed bx box player: boxed bx box
# The admin command. # The admin command.
# To define alias, just separate commands with white space. # To define alias, just separate commands with white space.
admin: boxadmin admin: boxadmin
@ -21,6 +21,10 @@ world:
# Name of the world - if it does not exist then it will be generated. # Name of the world - if it does not exist then it will be generated.
# It acts like a prefix for nether and end (e.g. boxed_world, boxed_world_nether, boxed_world_end) # It acts like a prefix for nether and end (e.g. boxed_world, boxed_world_nether, boxed_world_end)
world-name: boxed_world world-name: boxed_world
# World seed.
# If you change this, stop the server and delete the worlds made.
# /!\ BentoBox currently does not support changing this value mid-game. If you do need to change it, do a full reset of your databases and worlds.
seed: 978573758696
# World difficulty setting - PEACEFUL, EASY, NORMAL, HARD # World difficulty setting - PEACEFUL, EASY, NORMAL, HARD
# Other plugins may override this setting # Other plugins may override this setting
difficulty: NORMAL difficulty: NORMAL
@ -37,26 +41,21 @@ world:
# Setting to 0 will disable monster spawns, but this is not recommended. Minecraft default is 400. # Setting to 0 will disable monster spawns, but this is not recommended. Minecraft default is 400.
# A negative value uses the server default # A negative value uses the server default
ticks-per-monster-spawns: -1 ticks-per-monster-spawns: -1
# Radius of island in blocks. (So distance between islands is twice this) # Radius of player areas. (So distance between player starting spots is twice this)
# It is the same for every dimension : Overworld, Nether and End. # It is the same for every dimension : Overworld, Nether and End.
# This value cannot be changed mid-game and the plugin will not start if it is different. # This value cannot be changed mid-game and the plugin will not start if it is different.
# /!\ BentoBox currently does not support changing this value mid-game. If you do need to change it, do a full reset of your databases and worlds. # /!\ BentoBox currently does not support changing this value mid-game. If you do need to change it, do a full reset of your databases and worlds.
distance-between-islands: 400 area-radius: 400
# Default protection range radius in blocks. Cannot be larger than distance. # Starting size of boxed spaces. This is a radius so 1 = a 2x2 area.
# Admins can change protection sizes for players individually using /boxadmin range set <player> <new range> # Admins can adjust via the /boxadmin range set <player> <new range> command
# or set this permission: boxed.island.range.<number> starting-protection-range: 1
protection-range: 1 # Start to place players at these coordinates. This is where players will start in the
# Start islands at these coordinates. This is where new islands will start in the # world. This must be a multiple of your area radius, but the plugin will auto
# world. These must be a factor of your island distance, but the plugin will auto # calculate the closest location on the grid. Players are placed around this location
# calculate the closest location on the grid. Islands develop around this location # in a spiral manner.
# both positively and negatively in a square grid.
# If none of this makes sense, leave it at 0,0. # If none of this makes sense, leave it at 0,0.
# /!\ BentoBox currently does not support changing this value mid-game. If you do need to change it, do a full reset of your databases and worlds.
start-x: 0 start-x: 0
# /!\ BentoBox currently does not support changing this value mid-game. If you do need to change it, do a full reset of your databases and worlds.
start-z: 0 start-z: 0
offset-x: 0
offset-z: 0
# Area height - Lowest is 5. # Area height - Lowest is 5.
# It is the y coordinate of the bedrock block in the blueprint. # It is the y coordinate of the bedrock block in the blueprint.
area-height: 5 area-height: 5
@ -83,13 +82,6 @@ world:
# Note that with a standard nether all players arrive at the same portal and entering a # Note that with a standard nether all players arrive at the same portal and entering a
# portal will return them back to their areas. # portal will return them back to their areas.
generate: true generate: true
# Islands in Nether. Change to false for standard vanilla nether.
# /!\ BentoBox currently does not support changing this value mid-game. If you do need to change it, do a full reset of your databases and worlds.
areas: true
# Make the nether roof, if false, there is nothing up there
# Change to false if lag is a problem from the generation
# Only applies to areas Nether
roof: true
# Nether spawn protection radius - this is the distance around the nether spawn # Nether spawn protection radius - this is the distance around the nether spawn
# that will be protected from player interaction (breaking blocks, pouring lava etc.) # that will be protected from player interaction (breaking blocks, pouring lava etc.)
# Minimum is 0 (not recommended), maximum is 100. Default is 25. # Minimum is 0 (not recommended), maximum is 100. Default is 25.
@ -99,11 +91,6 @@ world:
# End Nether - if this is false, the end world will not be made and access to # End Nether - if this is false, the end world will not be made and access to
# the end will not occur. Other plugins may still enable portal usage. # the end will not occur. Other plugins may still enable portal usage.
generate: true generate: true
# Islands in The End. Change to false for standard vanilla end.
# /!\ BentoBox currently does not support changing this value mid-game. If you do need to change it, do a full reset of your databases and worlds.
areas: true
# /!\ This feature is experimental and might not work as expected or might not work at all.
dragon-spawn: false
# Mob white list - these mobs will NOT be removed when logging in or doing /boxed # Mob white list - these mobs will NOT be removed when logging in or doing /boxed
remove-mobs-whitelist: [] remove-mobs-whitelist: []
# World flags. These are boolean settings for various flags for this world # World flags. These are boolean settings for various flags for this world
@ -111,12 +98,12 @@ world:
HURT_ANIMALS: false HURT_ANIMALS: false
DRAGON_EGG: false DRAGON_EGG: false
ISLAND_RESPAWN: true ISLAND_RESPAWN: true
REDSTONE: false REDSTONE: true
CREEPER_GRIEFING: false CREEPER_GRIEFING: true
BUCKET: false BUCKET: false
ENDER_PEARL: false ENDER_PEARL: false
DOOR: true DOOR: true
NATURAL_SPAWNING_OUTSIDE_RANGE: false NATURAL_SPAWNING_OUTSIDE_RANGE: true
BREAK_HOPPERS: false BREAK_HOPPERS: false
FURNACE: false FURNACE: false
LIQUIDS_FLOWING_OUT: true LIQUIDS_FLOWING_OUT: true
@ -125,40 +112,40 @@ world:
FISH_SCOOPING: false FISH_SCOOPING: false
END_PORTAL: false END_PORTAL: false
BREEDING: false BREEDING: false
ENDER_CHEST: true ENDER_CHEST: false
HURT_VILLAGERS: false HURT_VILLAGERS: false
TREES_GROWING_OUTSIDE_RANGE: true TREES_GROWING_OUTSIDE_RANGE: true
WITHER_DAMAGE: false WITHER_DAMAGE: false
FROST_WALKER: false FROST_WALKER: true
TURTLE_EGGS: false TURTLE_EGGS: false
PISTON_PUSH: true PISTON_PUSH: false
COLLECT_LAVA: false COLLECT_LAVA: false
BREAK_SPAWNERS: false BREAK_SPAWNERS: false
LEVER: false LEVER: false
ELYTRA: true ELYTRA: true
COARSE_DIRT_TILLING: false COARSE_DIRT_TILLING: true
RIDING: false RIDING: false
CAKE: false CAKE: false
HURT_MONSTERS: false HURT_MONSTERS: true
ARMOR_STAND: false ARMOR_STAND: false
NAME_TAG: false NAME_TAG: false
ENDERMAN_GRIEFING: true ENDERMAN_GRIEFING: true
CLEAN_SUPER_FLAT: false CLEAN_SUPER_FLAT: false
TRADING: true TRADING: false
EGGS: false EGGS: false
ITEM_DROP: true ITEM_DROP: true
NOTE_BLOCK: false NOTE_BLOCK: true
ENTER_EXIT_MESSAGES: true ENTER_EXIT_MESSAGES: true
FLINT_AND_STEEL: false FLINT_AND_STEEL: false
NETHER_PORTAL: false NETHER_PORTAL: false
REMOVE_END_EXIT_ISLAND: true REMOVE_END_EXIT_ISLAND: true
LECTERN: false LECTERN: false
OFFLINE_GROWTH: true OFFLINE_GROWTH: true
ITEM_PICKUP: false ITEM_PICKUP: true
CROP_TRAMPLE: false CROP_TRAMPLE: false
BREWING: false BREWING: false
DROPPER: false DROPPER: false
OBSIDIAN_SCOOPING: true OBSIDIAN_SCOOPING: false
CREEPER_DAMAGE: true CREEPER_DAMAGE: true
TNT_PRIMING: false TNT_PRIMING: false
COLLECT_WATER: false COLLECT_WATER: false
@ -167,14 +154,14 @@ world:
FIRE_EXTINGUISH: false FIRE_EXTINGUISH: false
COMMAND_RANKS: false COMMAND_RANKS: false
BEACON: false BEACON: false
TRAPDOOR: true TRAPDOOR: false
EXPERIENCE_BOTTLE_THROWING: false EXPERIENCE_BOTTLE_THROWING: true
PRESSURE_PLATE: true PRESSURE_PLATE: false
DYE: false DYE: false
ITEM_FRAME: false ITEM_FRAME: false
PLACE_BLOCKS: false PLACE_BLOCKS: false
CRAFTING: true CRAFTING: false
REMOVE_MOBS: false REMOVE_MOBS: true
ENCHANTING: true ENCHANTING: true
SHEARING: false SHEARING: false
BOAT: false BOAT: false
@ -184,10 +171,10 @@ world:
MILKING: false MILKING: false
DISPENSER: false DISPENSER: false
GATE: true GATE: true
CHEST_DAMAGE: false CHEST_DAMAGE: true
EXPERIENCE_PICKUP: false EXPERIENCE_PICKUP: true
PREVENT_TELEPORT_WHEN_FALLING: false PREVENT_TELEPORT_WHEN_FALLING: false
WORLD_TNT_DAMAGE: false WORLD_TNT_DAMAGE: true
HOPPER: false HOPPER: false
LEASH: false LEASH: false
BREAK_BLOCKS: false BREAK_BLOCKS: false
@ -198,7 +185,7 @@ world:
ITEM_FRAME_DAMAGE: false ITEM_FRAME_DAMAGE: false
JUKEBOX: false JUKEBOX: false
POTION_THROWING: false POTION_THROWING: false
SPAWNER_SPAWN_EGGS: true SPAWNER_SPAWN_EGGS: false
# These are the default protection settings for new areas. # These are the default protection settings for new areas.
# The value is the minimum area rank required allowed to do the action # The value is the minimum area rank required allowed to do the action
# Ranks are the following: # Ranks are the following:
@ -213,6 +200,7 @@ world:
DRAGON_EGG: 500 DRAGON_EGG: 500
REDSTONE: 500 REDSTONE: 500
BUCKET: 500 BUCKET: 500
LOCK: 0
ENDER_PEARL: 500 ENDER_PEARL: 500
DOOR: 0 DOOR: 0
BREAK_HOPPERS: 500 BREAK_HOPPERS: 500
@ -261,19 +249,19 @@ world:
ITEM_FRAME: 500 ITEM_FRAME: 500
CRAFTING: 0 CRAFTING: 0
SHEARING: 500 SHEARING: 500
ANIMAL_SPAWNERS_SPAWN: 500
ENCHANTING: 500 ENCHANTING: 500
ANIMAL_SPAWNERS_SPAWN: 500
BOAT: 0 BOAT: 0
SPAWN_EGGS: 500
BED: 500 BED: 500
SPAWN_EGGS: 500
MILKING: 500 MILKING: 500
DISPENSER: 500 DISPENSER: 500
GATE: 0 GATE: 0
EXPERIENCE_PICKUP: 500 EXPERIENCE_PICKUP: 500
HOPPER: 500 HOPPER: 500
LEASH: 500 LEASH: 500
MOUNT_INVENTORY: 500
BREAK_BLOCKS: 500 BREAK_BLOCKS: 500
MOUNT_INVENTORY: 500
CHORUS_FRUIT: 500 CHORUS_FRUIT: 500
CONTAINER: 500 CONTAINER: 500
POTION_THROWING: 500 POTION_THROWING: 500
@ -282,16 +270,32 @@ world:
default-area-settings: default-area-settings:
PVP_END: false PVP_END: false
PVP_NETHER: false PVP_NETHER: false
LEAF_DECAY: false LEAF_DECAY: true
TNT_DAMAGE: false TNT_DAMAGE: true
ANIMAL_NATURAL_SPAWN: false MONSTER_SPAWNERS_SPAWN: true
MONSTER_NATURAL_SPAWN: false ANIMAL_NATURAL_SPAWN: true
FIRE_SPREAD: false MONSTER_NATURAL_SPAWN: true
FIRE_IGNITE: true
FIRE_SPREAD: true
FIRE_BURNING: true FIRE_BURNING: true
ANIMAL_SPAWNERS_SPAWN: true
PVP_OVERWORLD: false PVP_OVERWORLD: false
# These settings/flags are hidden from users # These settings/flags are hidden from users
# Ops can toggle hiding in-game using SHIFT-LEFT-CLICK on flags in settings # Ops can toggle hiding in-game using SHIFT-LEFT-CLICK on flags in settings
hidden-flags: [] hidden-flags:
- PVP_END
- ANIMAL_NATURAL_SPAWN
- ANIMAL_SPAWNERS_SPAWN
- FIRE_IGNITE
- FIRE_SPREAD
- LEAF_DECAY
- MONSTER_NATURAL_SPAWN
- MONSTER_SPAWNERS_SPAWN
- PVP_NETHER
- PVP_OVERWORLD
- TNT_DAMAGE
- FIRE_BURNING
- COLLECT_LAVA
# Visitor banned commands - Visitors to areas cannot use these commands in this world # Visitor banned commands - Visitors to areas cannot use these commands in this world
visitor-banned-commands: [] visitor-banned-commands: []
# Falling banned commands - players cannot use these commands when falling # Falling banned commands - players cannot use these commands when falling
@ -313,7 +317,7 @@ area:
# Accessed via /is sethome <number> or /is go <number> # Accessed via /is sethome <number> or /is go <number>
max-homes: 5 max-homes: 5
reset: reset:
# How many resets a player is allowed (manage with /bsbadmin reset add/remove/reset/set command) # How many resets a player is allowed (manage with /boxadmin reset add/remove/reset/set command)
# Value of -1 means unlimited, 0 means hardcore - no resets. # Value of -1 means unlimited, 0 means hardcore - no resets.
# Example, 2 resets means they get 2 resets or 3 areas lifetime # Example, 2 resets means they get 2 resets or 3 areas lifetime
reset-limit: -1 reset-limit: -1
@ -412,7 +416,7 @@ area:
# #
# Here are some examples of valid commands to execute: # Here are some examples of valid commands to execute:
# * "[SUDO] bbox version" # * "[SUDO] bbox version"
# * "bsbadmin deaths set [player] 0" # * "boxadmin deaths set [player] 0"
on-join: on-join:
- advancement revoke [player] everything - advancement revoke [player] everything
# List of commands to run when a player leaves an area, resets his area or gets kicked from it. # List of commands to run when a player leaves an area, resets his area or gets kicked from it.
@ -424,7 +428,7 @@ area:
# #
# Here are some examples of valid commands to execute: # Here are some examples of valid commands to execute:
# * '[SUDO] bbox version' # * '[SUDO] bbox version'
# * 'bsbadmin deaths set [player] 0' # * 'boxadmin deaths set [player] 0'
# #
# Note that player-executed commands might not work, as these commands can be run with said player being offline. # Note that player-executed commands might not work, as these commands can be run with said player being offline.
on-leave: [] on-leave: []
@ -459,4 +463,3 @@ protection:
do-not-edit-these-settings: do-not-edit-these-settings:
# These settings should not be edited # These settings should not be edited
reset-epoch: 0 reset-epoch: 0