本帖最后由 小孩孩 于 2020-9-12 12:33 编辑

介绍
A simple Skyblock. Includes all the essentials, such as land protection, island generation, co-op, and more, along with some optional extras such as Economy, Trading, Island Chat Channels and more, all of which can be disabled for maximum customization

一个简单的空岛插件。包含所有必要功能,如:空岛保护、空岛生成等,以及一些可选的附加功能:经济、交易、聊天等。皆可自定义。




命令
/island: 主要命令. 包含子命令/is help, /is visit [player], /is reset, /is home, /is sethome, /is settings (你可以禁止空岛访问)
/balance: 显示一个玩家有多少钱
/pay : 支付给玩家钱
/fly: 启用/禁用 飞行
/trade : 与玩家交易
/shout : 向全服喊话
/spawn: 还原默认世界生成


权限
skyblock.island: 包含所有/island命令和子命令的使用权
skyblock.economy: 包含/balance 和 /pay 命令的使用权
skyblock.fly: 包含/fly 命令的使用权
skyblock.shout: 包含/shout 命令的使用权
skyblock.trade: 包含/trade 命令的使用权
skyblock.admin: 允许管理员控制空岛插件(例如/is 允许)
skyblock.spawn: 使用/spawn 命令
skyblock.trust: 允许使用信任 (如果在config.yml中启用)




图片







配置文件


汉化language文件
language.yml (4.51 KB, 下载次数: 341)
2020.07.21更新
如有汉化不当之处,请于下方回复


安装
Plop it into your plugins folder, then after first run you will be able to edit the config.yml to your liking. If you would like the Skyblock world to be your default world (the "level-name" declared in server.properties) you will need to add the following to "bukkit.yml"

把它放入到你的plugins文件夹中,在第一次运行后,你就可以编辑config.yml了。如果你希望SkyBlock世界是你的默认世界(在Services中声明的“等级名称”),你需要将下面的内容添加到“bukkit.yml”中
  1. worlds:
  2.   world:
  3.     generator: SimpleSkyblock
  4.   world_nether:
  5.    generator: SimpleSkyblock
复制代码

你不需要像多世界那样的插件,这个插件可以直接生成。当然也可以使用多世界插件,只要确保将生成器设置为SimpleSkyblock即可。在编辑config.yml时要特别注意,因为一些设置需要特定值,否则它们不能工作,比如“BIOME”。



FAQ
How do I remove /spawn command? or how do I use essentials /spawn command instead?
This can be done by adding the following to your bukkit.yml file.
To remove /spawn completely:

我怎样去掉/spawn 指令?或者怎样使用essentials /spawn 指令呢?
——可以通过将以下内容添加到bukkit.yml
  1. aliases:
  2.   "simpleskyblock:spawn":
  3.     - []
  4.   "spawn":
  5.     - []
复制代码
To replace it with another plugins /spawn command (e.g. essentials):

要换为其他插件的/spawn 指令(例如essentials:)
  1. aliases:
  2.   "simpleskyblock:spawn":
  3.     - []
  4.   "spawn":
  5.     - "essentials:spawn"
复制代码