• 欢迎来到Minecraft插件百科!
  • 对百科编辑一脸懵逼?帮助:快速入门带您快速熟悉百科编辑!
  • 因近日遭受攻击,百科现已限制编辑,有意编辑请加入插件百科企鹅群:223812289

“教程/GroupManager”的版本间的差异

来自Minecraft插件百科
跳转至: 导航搜索
(粗略修改)
1个标签mobile edit
(初步应用模板尝试)
1个标签mobile edit
第2行: 第2行:
 
"""本文属于教程"""
 
"""本文属于教程"""
 
下面的代码路径位于 /plugins/GroupManager/config.yml中
 
下面的代码路径位于 /plugins/GroupManager/config.yml中
以文本方式打开编辑。
+
{模板:应用修改文件}
 
mirrors:
 
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.
+
         # 第一个元素 'world' 为主世界的名称,同时也是母世界(独立的配置,并镜像给子世界).
 
         # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
 
         # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
 
         # the same user/groups files as the parent.
 
         # the same user/groups files as the parent.

2015年2月8日 (日) 08:37的版本

多世界,世界独立权限文件

"""本文属于教程""" 下面的代码路径位于 /plugins/GroupManager/config.yml中 {模板:应用修改文件} mirrors:

       # 此处列出的世界,它们的设置都会镜像到子世界(继承设置的世界).
       # 第一个元素 '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
   #  world2:      (World2 would have it's own set of user and groups files)
   #    world3:
   #    - users    (World3 would use the users.yml from world2, but it's own groups.yml)
   #    world4:
   #    - groups   (World4 would use the groups.yml from world2, but it's own users.yml)
   #  world5:
   #    - world6   (this would cause world6 to mirror both files from world5)