对于这个插件,可能遇到的问题我说一下,插件是英文的,打开插件文件夹,打开config.yml文件,可以找到这个:
- <blockquote># Set the locale for all messages.
复制代码 把locale设置为zh,注意冒号后面有一个空格,这样插件就是英文了。Essentials的配置文件里还有很多有用的地方...
- # A color code between 0-9 or a-f. Set to 'none' to disable.
- ops-name-color: '4'
复制代码 OP名字颜色代码,默认是4,深红色的。
- # You can set a custom join message here, set to "none" to disable.
- # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
- custom-join-message: "none"
- # You can set a custom quit message here, set to "none" to disable.
- # You may use color codes, use {USERNAME} the player's name or {PLAYER} for the player's displayname.
- custom-quit-message: "none"
复制代码 自定义玩家进出服务器消息的地方。
- # Allow players to have multiple homes.
- # Players need essentials.sethome.multiple before they can have more than 1 home.
- # You can set the default number of multiple homes using the 'default' rank below.
- # To remove the home limit entirely, give people 'essentials.sethome.multiple.unlimited'.
- # To grant different home amounts to different people, you need to define a 'home-rank' below.
- # Create the 'home-rank' below, and give the matching permission: essentials.sethome.multiple.<home-rank>
- # For more information, visit [url]http://wiki.ess3.net/wiki/Multihome[/url]
- sethome-multiple:
- default: 3
- vip: 5
- staff: 10
复制代码
玩家使用/home设置家的最大数量限制。
- # Defines the balance with which new players begin. Defaults to 0.
- starting-balance: 0
复制代码
玩家初始进入服务器的金币数。
- # Show other plugins commands in help.
- non-ess-in-help: true
复制代码
是否在/help命令里显示其他插件的命令。
- format: '<{DISPLAYNAME}> {MESSAGE}'
- #format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'
- #format: '&7{PREFIX}&r {DISPLAYNAME}&r &7{SUFFIX}&r: {MESSAGE}'
复制代码
玩家聊天格式。
- [backcolor=rgb(249, 249, 249)]#[/backcolor] Disable weather options?
- weather:
- storm: false
- thunder: false
- lightning: false
复制代码
直接在游戏里禁止这个天气。
- blacklist:
- # Which blocks should people be prevented from placing?
- placement: LAVA,TNT,LAVA_BUCKET
- # Which items should people be prevented from using?
- usage: LAVA_BUCKET
- # Which blocks should people be prevented from breaking?
- break:
- # Which blocks should not be pushed by pistons?
- piston:
- # Which blocks should not be dispensed by dispensers
- dispenser:
复制代码
多种方式禁止使用某些物品,支持物品ID。
- # Should we announce to the server when someone logs in for the first time?
- # If so, use this format, replacing {DISPLAYNAME} with the player name.
- # If not, set to ''
- #announce-format: ''
- announce-format: '&dWelcome {DISPLAYNAME}&d to the server!'
复制代码
新玩家进服的欢迎信息。
|