mirror of
https://github.com/BentoBoxWorld/BSkyBlock.git
synced 2024-12-28 17:27:35 +01:00
Release 1.10.0
This commit is contained in:
parent
ee5d2dca96
commit
9480ea290f
@ -3,9 +3,11 @@ bskyblock:
|
||||
command:
|
||||
# Island Command. What command users will run to access their island.
|
||||
# To define alias, just separate commands with white space.
|
||||
# Added since 1.3.0.
|
||||
island: island is skyblock sb
|
||||
# The island admin command.
|
||||
# To define alias, just separate commands with white space.
|
||||
# Added since 1.3.0.
|
||||
admin: bsbadmin bsb skyblockadmin sbadmin sba
|
||||
world:
|
||||
# Friendly name for this world. Used in admin commands. Must be a single word
|
||||
@ -90,10 +92,10 @@ world:
|
||||
dragon-spawn: false
|
||||
# Mob white list - these mobs will NOT be removed when logging in or doing /island
|
||||
remove-mobs-whitelist:
|
||||
- PIG_ZOMBIE
|
||||
- ZOMBIE_VILLAGER
|
||||
- ENDERMAN
|
||||
- WITHER
|
||||
- PIG_ZOMBIE
|
||||
- ENDERMAN
|
||||
- ZOMBIE_VILLAGER
|
||||
# World flags. These are boolean settings for various flags for this world
|
||||
flags:
|
||||
CREEPER_DAMAGE: true
|
||||
@ -156,8 +158,8 @@ world:
|
||||
BEACON: 500
|
||||
TRAPDOOR: 500
|
||||
PRESSURE_PLATE: 0
|
||||
ITEM_FRAME: 500
|
||||
PLACE_BLOCKS: 500
|
||||
ITEM_FRAME: 500
|
||||
CRAFTING: 0
|
||||
SHEARING: 500
|
||||
ENCHANTING: 0
|
||||
@ -169,22 +171,23 @@ world:
|
||||
EXPERIENCE_PICKUP: 500
|
||||
HOPPER: 500
|
||||
LEASH: 500
|
||||
MOUNT_INVENTORY: 500
|
||||
BREAK_BLOCKS: 500
|
||||
MOUNT_INVENTORY: 500
|
||||
CHORUS_FRUIT: 500
|
||||
CONTAINER: 500
|
||||
JUKEBOX: 500
|
||||
POTION_THROWING: 500
|
||||
JUKEBOX: 500
|
||||
# These are the default settings for new islands
|
||||
default-island-settings:
|
||||
PVP_END: false
|
||||
PVP_NETHER: false
|
||||
ANIMAL_SPAWN: true
|
||||
PVP_NETHER: false
|
||||
MONSTER_SPAWN: true
|
||||
FIRE_SPREAD: true
|
||||
PVP_OVERWORLD: false
|
||||
# These settings/flags are hidden from users
|
||||
# Ops can toggle hiding in-game using SHIFT-LEFT-CLICK on flags in settings
|
||||
# Added since 1.4.1.
|
||||
hidden-flags: []
|
||||
# Visitor banned commands - Visitors to islands cannot use these commands in this world
|
||||
visitor-banned-commands:
|
||||
@ -192,6 +195,7 @@ world:
|
||||
- spawnmob
|
||||
# Falling banned commands - players cannot use these commands when falling
|
||||
# if the PREVENT_TELEPORT_WHEN_FALLING world setting flag is active
|
||||
# Added since 1.8.0.
|
||||
falling-banned-commands:
|
||||
- warp
|
||||
- spawn
|
||||
@ -227,10 +231,13 @@ island:
|
||||
# plugin may still reset the inventory when the world changes.
|
||||
inventory: false
|
||||
# Reset health - if true, the player's health will be reset.
|
||||
# Added since 1.8.0.
|
||||
health: true
|
||||
# Reset hunger - if true, the player's hunger will be reset.
|
||||
# Added since 1.8.0.
|
||||
hunger: true
|
||||
# Reset experience points - if true, the player's experience will be reset.
|
||||
# Added since 1.8.0.
|
||||
exp: false
|
||||
# Reset Ender Chest - if true, the player's Ender Chest will be cleared.
|
||||
ender-chest: false
|
||||
@ -245,10 +252,13 @@ island:
|
||||
# plugin may still reset the inventory when the world changes.
|
||||
inventory: false
|
||||
# Reset health - if true, the player's health will be reset.
|
||||
# Added since 1.8.0.
|
||||
health: false
|
||||
# Reset hunger - if true, the player's hunger will be reset.
|
||||
# Added since 1.8.0.
|
||||
hunger: false
|
||||
# Reset experience - if true, the player's experience will be reset.
|
||||
# Added since 1.8.0.
|
||||
exp: false
|
||||
# Reset Ender Chest - if true, the player's Ender Chest will be cleared.
|
||||
ender-chest: false
|
||||
@ -268,10 +278,12 @@ island:
|
||||
# * Island creation can be resource-intensive, please consider the options below to help mitigate
|
||||
# the potential issues, especially if you expect a lot of players to connect to your server
|
||||
# in a limited period of time.
|
||||
# Added since 1.9.0.
|
||||
enable: false
|
||||
# Time in seconds after the player logged in, before his island gets created.
|
||||
# If set to 0 or less, the island will be created directly upon the player's login.
|
||||
# It is recommended to keep this value under a minute's time.
|
||||
# Added since 1.9.0.
|
||||
delay: 5
|
||||
# Toggles whether the island creation should be aborted if the player logged off while the
|
||||
# delay (see the option above) has not worn off yet.
|
||||
@ -283,16 +295,24 @@ island:
|
||||
# * If the island creation started before the player logged off, it will continue.
|
||||
# If set to false, the player's island will be created even if he went offline in the meantime.
|
||||
# Note this option has no effect if the delay (see the option above) is set to 0 or less.
|
||||
# Added since 1.9.0.
|
||||
abort-on-logout: true
|
||||
# Toggles whether the player should be teleported automatically to his island when it is created.
|
||||
# If set to false, the player will be told his island is ready but will have to teleport to his island using the command.
|
||||
# Added since 1.10.0.
|
||||
teleport-player-to-island-when-created: true
|
||||
# Create Nether or End islands if they are missing when a player goes through a portal.
|
||||
# Nether and End islands are usually pasted when a player makes their island, but if they are
|
||||
# missing for some reason, you can switch this on.
|
||||
# Note that bedrock removal glitches can exploit this option.
|
||||
# Added since 1.10.0.
|
||||
create-missing-nether-end-islands: false
|
||||
commands:
|
||||
# List of commands to run when a player joins.
|
||||
# Added since 1.8.0.
|
||||
on-join: []
|
||||
# list of commands to run when a player leaves.
|
||||
# Added since 1.8.0.
|
||||
on-leave: []
|
||||
sethome:
|
||||
nether:
|
||||
|
Loading…
Reference in New Issue
Block a user