我的世界服务器插件配置

1.为每个世界添加规则

# 防苦力怕破坏地形规则
gamerule mobGriefing false
# 防掉落规则
gamerule keepInventory true

2.登录信息修改

我的世界服务器插件配置_第1张图片

(1)处修改

~/plugins/Essentials/config.yml
我的世界服务器插件配置_第2张图片

(2)处修改

~/plugins/Essentials/motd.txt

(3)处修改

~/plugins/AuthMe/welcome.txt

多世界权限问题

1) 更改设置让每个世界独享一份权限设置文件

打开~\plugins\GroupManager\config.yml

mirrors:
        # Worlds listed here have their settings mirrored in their children.
        # The first element 'world' is the main worlds name, and is the parent world.
        # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
        # the same user/groups files as the parent.
        # the element 'all_unnamed_worlds' specifies all worlds that aren't listed, and automatically mirrors them to it's parent.
        # Each child world can be configured to mirror the 'groups', 'users' or both files from its parent.
        world:
          world_nether:
          - users
          - groups
          world_the_end:
          - users
          - groups
          # 将下面这些注释掉
          # all_unnamed_worlds:
          # - users
          # - groups`

再然后在后台输入**/manload** **(这条指令很关键)**重载GM权限组,再然后,你就会发现【worlds】文件夹里就多了几个以你的世界命名的文件夹了。

2) 更改设置让每个世界独享一份权限设置文件

打开~\plugins\Essentials\config.yml文件,找到:
我的世界服务器插件配置_第3张图片
(1)处改为true,改为利用权限控制玩家建造
(2)处改为true,改为利用权限控制玩家使用(如使用斧子)
(3)处改为false,控制是否使用提示信息(调试时可改为true):
在这里插入图片描述

3)在~\plugins\GroupManager\globalgroups.yml中插入权限节点,不然所有玩家都无法建造。

我的世界服务器插件配置_第4张图片

4)在你想要阻止玩家建造的世界中(如主城世界)除去build权限。

例如:~\plugins\GroupManager\worlds\spawn_city\groups.yml 文件
spawn_city 为世界名字
我的世界服务器插件配置_第5张图片

玩家聊天信息显示

我的世界服务器插件配置_第6张图片
(1)处:
打开~\plugins\Multiverse-Core\config.yml
在这里插入图片描述
打开~\plugins\Multiverse-Core\worlds.yml
在这里插入图片描述
(2)(3)处:
打开~\plugins\GroupManager\worlds\world\groups.yml

我的世界服务器插件配置_第7张图片
*注意:每个权限组每个世界的groups.yml都要修改喔~~~~*

(4)处(不装miaochat):
打开~\plugins\Essentials\config.yml

我的世界服务器插件配置_第8张图片
(4)处(安装miaochat):
~\plugins\MiaoChat\config.yml
~\plugins\MiaoChat\format.yml
%multiverse_world_alias% 世界变量 placeholderAPI安装mutiverse扩展
%player_displayname% 玩家名称变量

服务器不刷怪怎么办

方法1:

# 此指令属于世界规则不属于插件
gamerule doMobSpawning false

方法2:
打开~\plugins\Multiverse-Core\worlds.yml
我的世界服务器插件配置_第9张图片

3.Authme邮件改密系统

4.ColorMotd插件


0.颜色表打底

我的世界服务器插件配置_第10张图片

你可能感兴趣的:(我的世界,服务器)