Simple Skyblock 简易空岛 [1.8.x - 1.15.x] | |
---|---|
![]() |
一个简单的天挡插件。(还有什么可说的?) |
作 者 | garet90 |
发布时间 | 2019年10月18日 |
支持核心 | Spigot | 原生版本 |
支持版本 | 1.8,1.9,1.10,1.11,1.12,1.13,1.14,1.15 |
插件详细介绍
SimpleSkyblock 是一款简单易用的 Minecraft 空岛插件,它包含了空岛生存的基本要素,例如领地保护、岛屿生成、合作模式等。此外,还提供了一些可选的扩展功能,如经济系统、交易、岛屿聊天频道等,所有这些功能都可以禁用,以实现最大的自定义程度。
/island
: 主命令,包含子命令,如 /is help
, /is visit [player]
, /is reset
, /is home
, /is sethome
, /is settings
(可以在这里禁用岛屿访问)./balance
: 显示玩家拥有的金钱数量./pay [player] [amount]
: 支付给玩家一定数量的金钱./fly
: 启用/禁用飞行模式./trade [player]
: 与玩家进行交易./shout [message]
: 向整个服务器广播消息./spawn
: 返回默认世界出生点.skyblock.island
: 包含所有 /island
命令和子命令.skyblock.economy
: 包含 /balance
和 /pay
命令.skyblock.fly
: 包含 /fly
命令.skyblock.shout
: 包含 /shout
命令.skyblock.trade
: 包含 /trade
命令.skyblock.admin
: 允许管理员控制空岛插件(例如 /is allowreset
).skyblock.spawn
: 使用 /spawn
命令.skyblock.trust
: 允许使用岛屿信任(如果在 config.yml
中启用).将插件放入 plugins 文件夹中。首次运行后,您可以编辑 config.yml
文件以进行自定义。如果希望空岛世界成为默认世界(在 server.properties
中声明的 level-name
),则需要将以下内容添加到 bukkit.yml
中:
worlds:
world:
generator: SimpleSkyblock
world_nether:
generator: SimpleSkyblock
如果希望它成为一个独立的世界,则无需将其添加到 bukkit.yml
中,插件会自动处理。您不需要像 Multiverse 这样的插件,世界将被生成,玩家可以无需任何插件即可前往。像 Multiverse 这样的插件仍然可以使用,只需确保将生成器设置为 SimpleSkyblock。
编辑 config.yml
时请特别注意,因为某些设置需要特定的值,否则它们将无法正常工作,例如 BIOME
。以下列出了所有设置及其描述。
/spawn
命令?或者如何使用 Essentials 插件的 /spawn
命令?可以通过将以下内容添加到 bukkit.yml
文件中来完成此操作。
完全移除 /spawn
命令:
aliases:
"simpleskyblock:spawn":
- []
"spawn":
- []
使用另一个插件的 /spawn
命令替换它(例如 Essentials):
aliases:
"simpleskyblock:spawn":
- []
"spawn":
- "essentials:spawn"
# Welcome to the configuration of SimpleSkyblock!
# Below are some of the customizable parts of
# SimpleSkyblock! If you need something special, feel
# free to send me an email at [email protected]
# +-------------------------------------------+
# | WORLD GENERATION / MANAGEMENT |
# +-------------------------------------------+
# SimpleSkyblock is equipped with a world generator which
# will generate a blank world with no blocks. To use it,
# simply add the following to bukkit.yml:
# worlds:
# [world name]:
# generator: SimpleSkyblock
# To change the biome of the world generated, edit the
# following line.
BIOME: PLAINS
# To change the name of the world which all skyblock islands
# will generate, edit the line below. If the world doesn't
# exist, we'll create a new one for you using SimpleSkyblock's
# empty world generator.
WORLD: world
# The height at which the islands will generate. This is the Y
# value at which the bedrock block will be.
ISLAND_HEIGHT: 70
# The width of the claimed island plot. Changing this will
# change the size of the claimed island plot in the X
# direction. The negative-most block in the X will be half an
# island width away from the island border. Islands will, by
# default, have 1 block of no-man's land between them.
ISLAND_WIDTH: 5000
# Island depth is the same as island width, but in the Z
# direction.
ISLAND_DEPTH: 5000
# The limits are how far SimpleSkyblock is allowed to generate
# islands. The islands will generate in the following pattern:
# The first island will generate at -LIMIT_X, -LIMIT_Z. Every
# time a new island is generated, it will add an ISLAND_WIDTH
# to the X value, until it hits LIMIT_X, after which it will
# go back to -LIMIT_X and increment Z by one ISLAND_DEPTH.
LIMIT_X: 29990000
# LIMIT_Z is the limit in which islands can generate in the
# SimpleSkyblock world.
LIMIT_Z: 29990000
# The settings listed above allow for 35,976,004 islands, a
# number I'd be suprised if you hit
# +------------------------------+
# | GENERAL SETTINGS |
# +------------------------------+
# CHAT_PREFIX is the "name tag" for SimpleSkyblock when it
# is speaking in the chat. Use '&' for color codes.
CHAT_PREFIX: '&7[&bSKYBLOCK&7] &r'
# VOID_INSTANT_DEATH toggles if players die instantly in the
# void instead of slowly losing health.
VOID_INSTANT_DEATH: true
# VOID_INSTAND_DEATH_WORLDS defines which worlds to have
# players instantly die in the void. Using * will apply
# void instant death to all worlds.
VOID_INSTANT_DEATH_WORLDS:
- '*'
# DISABLE_PLAYER_COLLISIONS toggles player collisions. This
# is active for the skyworld and the nether counterpart
# only. (a change from previous versions)
DISABLE_PLAYER_COLLISIONS: true
# USE_CHATROOMS defines whether to use SimpleSkyblock's
# chatrooms. They create seperate channels for each island,
# and allow only players with skyblock.shout permission to
# talk to the whole server using /shout. When this is
# disabled, the server goes back to default chatting or
# lets another plugin take over.
USE_CHATROOMS: false
# CHAT_WORLDS defines which worlds to use SimpleSkyblock's
# chatrooms in. Using * will use the chatrooms for all
# worlds.
CHAT_WORLDS:
- '*'
# INFINITE_RESETS defines whether players can reset their
# islands as much as they want. This can be exploited, so
# island resets are generally limited. An operator can
# allow an island reset by using /is allowreset
INFINITE_RESETS: false
# If INFINITE_RESETS is false, RESET_COUNT is how many
# times the player will be able to reset their island.
RESET_COUNT: 3
# RESET_COST is the cost of each reset. This can be
# enabled or set to false. Enabling it would look like
# the following:
# RESET_COST:
# - 30
# - 40
# - 50
# Enabling RESET_COST will allow players to keep money
# accross resets.
RESET_COST: false
# Enabling RETAIN_MONEY will have users keep their money
# after resetting or generating a new island.
RETAIN_MONEY: false
# USE_NETHER determines whether to allow players to have a
# nether island.
USE_NETHER: true
# ISLAND_TYPES defines which types of islands players can
# choose to start out with.
ISLAND_TYPES:
default:
cost: 0
item: GRASS_BLOCK
lore:
- "&r&7The default island."
- "&r&7Has a chest, a tree, and some dirt."
# The item, name, and lore are only needed if you
# have multiple for the GUI
# The nether schematic will be named "name_nether", so
# default's nether schematic is default_nether in the
# structures folder
name: "&2Default"
permission: skyblock.island
# Not needed, just to show how you would require a
# permission to use an island type
schematic: default
# structures:
# # An example of how to add extra structures
# desert:
# # X offset
# x: 0
# # Z offset
# z: 100
# # The schematic to use
# schematic: desert
# # The biome to use (optional)
# biome: desert
# snowy:
# cost: 500
# item: SNOW_BLOCK
# lore:
# - "&r&7Be careful, it's cold!"
# - "&r&7Basically just snow, not gonna lie."
# name: "&fSnowy"
# permission: skyblock.snowy
# schematic: snowy
# snowy is just an example of how you would add another island type
# FLIGHT_EVERYWHERE determines whether players can fly at other's
# islands, not just their own with the /fly command. Players with OP
# or skyblock.admin automatically bypass this.
FLIGHT_EVERYWHERE: false
ACHIEVEMENTS:
# getDirt:
# requirements:
# hasItems:
# - DIRT:1
# # Required items in inventory to complete achievement
# hasMoney: 0
# # Required money to complete achievement
# hasPermission: skyblock.island
# # Required permission to complete achievement
# level: 5
# # Required level to complete achievement
# rewards:
# items:
# - DIAMOND:10
# money: 100
# item: DIRT
# name: "&2Get Dirt"
# lore:
# - "&r&7Get some dirt"
# - "&r&7That's about it."
# An example of how to add an achievement. Achievements are checked
# automatically and do not remove items or money upon completion,
# whereas quests do.
# ANNOUNCE_ACHIEVEMENTS determines whether or not to notify the entire
# server when a player completes a skyblock achievement.
ANNOUNCE_ACHIEVEMENTS: false
QUESTS:
# getDirt:
# costs:
# items:
# - DIRT:1
# money: 0
# permission: skyblock.island
# # Permission is not taken
# level: 5
# # level is not taken
# rewards:
# items:
# - DIAMOND:10
# money: 100
# item: DIRT
# name: "&2Get Dirt"
# lore:
# - "&r&7Get some dirt"
# - "&r&7That's about it."
# An example of how to add a quests. Quests are checked each time
# they are clicked on in the /is quests GUI. The costs are taken and
# the rewards are added.
# +-----------------------------+
# | ISLAND SETTINGS |
# +-----------------------------+
# GENERATE_ORES determines whether or not to generate ores
# in the cobblestone generator instead of just cobblestone.
# Enabling this will also generate ores on the bottom of
# the island as well during island generation. This is
# only active in the skyblock world.
GENERATE_ORES: true
# GENERATOR_ORES are the ores which will be generated,
# along with the percent chance of generation. These do
# not technically need to be ores. They must be formatted
# as follows:
# [BLOCK_NAME]:[PERCENT_CHANCE]
GENERATOR_ORES:
- COAL_ORE:5
- IRON_ORE:7.5
- GOLD_ORE:.2
- DIAMOND_ORE:.2
- LAPIS_ORE:.2
- REDSTONE_ORE:1.5
- EMERALD_ORE:.1
- OBSIDIAN:.05
- STONE:42.125
- COBBLESTONE:42.125
# CHEST_ITEMS are the items that appear in the chest
# that generates on the islands. They must be formatted
# as [ITEM]:[AMOUNT]
CHEST_ITEMS:
- LAVA_BUCKET:1
- ICE:2
- SUGAR_CANE:1
- RED_MUSHROOM:1
- BROWN_MUSHROOM:1
- PUMPKIN_SEEDS:1
- MELON_SLICE:1
- CACTUS:1
- COBBLESTONE:16
# USE_TRUSTS determines whether islands can "trust"
# players to break blocks, use chests, kill mobs, etc
# without actually being a member of the island.
# Requires special permission "skyblock.trust"
USE_TRUSTS: false
# How much each point from the levelpoints.yml is
# worth in terms of levels
LEVEL_POINTS_MULTIPLIER: .01
# How much each chunk the island spans is worth when
# calculating levels
LEVEL_SPREAD_MULTIPLIER: .1
# ANIMAL_CAP is the most passive mobs an island can have
# on it at one time, as to not max out the server. This
# affects passive mob spawning and breeding. (NOTE:
# breeding cannot be bypassed on 1.9 and below)
ANIMAL_CAP: 10
UPGRADES:
# someOther:
# item: DIRT
# name: "Legit does nothing"
# lore:
# - "&r&7That's about it."
# betterGenerators:
# costs:
# money: 1000
# items:
# - DIAMOND:10
# permission: skyblock.island
# level: 10
# pre:
# - someOther
# # pre is what must be unlocked before this one can be
# rewards:
# generator_ores:
# - DIAMOND_ORE:100
# item: FURNACE
# name: "&2Better Generators"
# lore:
# - "&r&7Cobblestone generators are better"
# - "&r&7That's about it."
# An example of how to add an upgrade. Upgrades
# apply to islands. More rewards coming soon,
# for now the only thing that can change are the
# generator ores. Similar to quests, but apply to
# islands.
# +------------------------------+
# | ECONOMY SETTINGS |
# +------------------------------+
# USE_ECONOMY determines whether to use the
# SimpleSkyblock economy to begin with. Changing
# this will disable all economy features.
USE_ECONOMY: true
# STARTING_MONEY is the amount of money the players
# receive when they start their islands.
STARTING_MONEY: 500.0
# KILL_MONEY is the amount of money that players
# get for the mobs which they kill. They must be
# formatted as follows:
# [MOB]:[DOLLARS]
# This additionally accepts values of 'Default',
# 'Monster', and 'Animals'.
KILL_MONEY:
- Default:0
- Monster:3
- Animals:1
- CREEPER:5
- ENDERMAN:10
- ZOMBIE:2
- SPIDER:4
# LOSS_ON_DEATH is the amount of money that
# players lose when they die. It can be 'half' or
# a number.
LOSS_ON_DEATH: half
# +--------------------------------+
# | MECHANICS SETTINGS |
# +--------------------------------+
# USE_CUSTOM_MECHANICS determines whether to use
# custom SimpleSkyblock mechanics, or whether to
# keep it to just the basics. Setting this to false
# will turn all below-listed mechanics settings
# off.
USE_CUSTOM_MECHANICS: true
# BLAST_PROCESSING toggles whether items can be
# blasted to create other materials. This includes
# blasting cobble to get gravel and gravel to sand,
# which were added to provide a way to get more
# dirt which requires players to be creative.
# These mechanics are removed when this is set to
# false.
BLAST_PROCESSING: true
# BONEMEAL_DOES_MORE toggles whether to use custom
# bonemeal mechanics or not. The custom mechanics
# allow for the obtaining of saplings and seeds
# through bonemealing grass, kelp and sea pickles
# through bonemealing underwater dirt, and
# bonemealing dirt to have it become grass. These
# were all added to make plants, as well as grass
# attainable (especially if grass is destroyed)
BONEMEAL_DOES_MORE: true
# COBBLE_HEATING toggles whether or not to use
# custom cobble heating mechanics which allow lava
# to be created by chance if coal blocks are burned
# underneath a cobblestone block. This was added to
# allow users to get more lava, but can be disabled
# by setting this to false.
COBBLE_HEATING: true
# SOUL_SAND determines whether enemies killed on
# sand in the skyblock nether will turn the sand
# into soul sand.
SOUL_SAND: true
# You survived! You made it through the entire
# config! Good job, now don't edit this line, or
# it might do some funky stuff.
config-version: 1.4.0
Analytics: