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

ChatControl Pro/WIKI/分组:修订间差异

来自Minecraft插件百科
跳转到导航 跳转到搜索
(创建页面,内容为“ 你可以给玩家特定的权限来对玩家进行分组. = 如何分组 = 创建新的组,你需要在settings.yml内启用<code>Groups.Enabled</code> to <code>…”)
 
无编辑摘要
 
(未显示同一用户的1个中间版本)
第1行: 第1行:
 
{{模板:ccpbox}}
 
你可以给玩家特定的权限来对玩家进行分组.
你可以给玩家特定的权限来对玩家进行分组.


= 如何分组 =
= 如何分组 =
创建新的组,你需要在settings.yml内启用<code>Groups.Enabled</code> to <code>true</code>, 并在 <code>List</code> key there according to the configuration options below.
创建新的组,你需要在settings.yml内启用<code>Groups.Enabled</code> to <code>true</code>, 并搜索 <code>List</code> 配置以下设置.


In game, give your players "chatcontrol.group.{group}" permission (replace {group} with the name of the group) to put them into a certain group. Players may have multiple groups.
给予玩家权限 "chatcontrol.group.{组名}" 来对玩家进行分组. 玩家可以加入多个组.


The following example illustrates three groups: guest, vip and staff with various options.
以下示例分成了3个组: 游客、会员和管理员组.
  Groups:
  Groups:
   List:     
   List:     
第21行: 第20行:


= 组配置 =
= 组配置 =
When configuring groups, you only need to specify the options you need to use.
配置分组时,你只需指定你需要使用的选项.


== Message_Delay ==
== Message_Delay ==
Info: How much time to wait before the player can write another chat message?
介绍: 消息冷却


Original Key: Anti_Spam.Chat.Message_Delay
关键词: Anti_Spam.Chat.Message_Delay
  Message_Delay: 2
  Message_Delay: 2


== Command_Delay ==
== Command_Delay ==
Info: How much time to wait before the player can run another command?
介绍: 指令冷却


Original Key: Anti_Spam.Commands.Command_Delay
关键词: Anti_Spam.Commands.Command_Delay
  Command_Delay: 3
  Command_Delay: 3


== Channel_Limit_Write and Channel_Limit_Read ==
== Channel_Limit_Write and Channel_Limit_Read ==
Info: How many channels at once can a player be in? The first option is for the write mode, the second for the read mode.
介绍:玩家一次可加入的频道上限第一个选项用于write输入模式,第二个用于read阅读模式.


Original Keys: (in channels.yml) see Channel_Limits option
关键词: (位于channels.yml) 搜索 Channel_Limits 选项
  Channel_Limit: 2
  Channel_Limit: 2


== Rejoin_Delay ==
== Rejoin_Delay ==
Info: How many seconds must the player wait to join the game again?
介绍: 重登冷却


Original Key: Anti_Bot.Cooldown.Rejoin
关键词: Anti_Bot.Cooldown.Rejoin
  Rejoin_Delay: 2
  Rejoin_Delay: 2


== Chat_After_Login ==
== Chat_After_Login ==
Info: How many seconds must the player wait to chat after logging in?
介绍: 登录后多久才能聊天


Original Key: Anti_Bot.Cooldown.Chat_After_Login
关键词: Anti_Bot.Cooldown.Chat_After_Login
  Chat_After_Login: 2
  Chat_After_Login: 2


== Command_After_Login ==
== Command_After_Login ==
Info: How many seconds must the player wait to run commands after logging in?
介绍: 登录后多久才能使用指令


Original Key: Anti_Bot.Cooldown.Command_After_Rejoin
关键词: Anti_Bot.Cooldown.Command_After_Rejoin
  Command_After_Login: 2
  Command_After_Login: 2


== Chat_Format ==
== Chat_Format ==
Info: Custom chat format for the group (if Chat Channels are disabled, see channels.yml).
介绍:自定义聊天格式


Original Key: (in formatting.yml) Default
关键词: (位于 formatting.yml) Default
  Chat_Format: 2
  Chat_Format: 2


== Global_Chat_Format ==
== Global_Chat_Format ==
Info: Custom global chat format for the group, if ranged chat is enabled (if chat channels are disabled, see channels.yml).
介绍: 自定义全服聊天格式, 需启用范围聊天模式


Original Key: (in formatting.yml) Global
关键词: (位于 formatting.yml) Global
  Global_Chat_Format: 2
  Global_Chat_Format: 2


== Sound_Notify_Color ==
== Sound_Notify_Color ==
Info: Custom sound notify chat color for the group, if sound notify is enabled.
介绍: 自定义音效提醒消息颜色.


Original Key: (in settings.yml) Sound_Notify.Color
关键词: (位于 settings.yml) Sound_Notify.Color
  Sound_Notify_Color: '&c'
  Sound_Notify_Color: '&c'

2019年1月29日 (二) 08:56的最新版本

子页面

常见疑问

权限

指令

频道

JSON

分组

格式

Discord

获取帮助

变量

处理器

JavaScript变量

多世界聊天格式

自定义指令缩写

自定义服务器名

监听优先度

聊天忽略

本地化

你可以给玩家特定的权限来对玩家进行分组.

如何分组

创建新的组,你需要在settings.yml内启用Groups.Enabled to true, 并搜索 List 配置以下设置.

给予玩家权限 "chatcontrol.group.{组名}" 来对玩家进行分组. 玩家可以加入多个组.

以下示例分成了3个组: 游客、会员和管理员组.

Groups:
  List:    
    guest: 
      Channel_Limit: 1
      Message_Delay: 4
    vip: 
      Message_Delay: 1
    staff: 
      Message_Delay: 0
      Interactive_Format: Staff_Format

组配置

配置分组时,你只需指定你需要使用的选项.

Message_Delay

介绍: 消息冷却

关键词: Anti_Spam.Chat.Message_Delay

Message_Delay: 2

Command_Delay

介绍: 指令冷却

关键词: Anti_Spam.Commands.Command_Delay

Command_Delay: 3

Channel_Limit_Write and Channel_Limit_Read

介绍:玩家一次可加入的频道上限第一个选项用于write输入模式,第二个用于read阅读模式.

关键词: (位于channels.yml) 搜索 Channel_Limits 选项

Channel_Limit: 2

Rejoin_Delay

介绍: 重登冷却

关键词: Anti_Bot.Cooldown.Rejoin

Rejoin_Delay: 2

Chat_After_Login

介绍: 登录后多久才能聊天

关键词: Anti_Bot.Cooldown.Chat_After_Login

Chat_After_Login: 2

Command_After_Login

介绍: 登录后多久才能使用指令

关键词: Anti_Bot.Cooldown.Command_After_Rejoin

Command_After_Login: 2

Chat_Format

介绍:自定义聊天格式

关键词: (位于 formatting.yml) Default

Chat_Format: 2

Global_Chat_Format

介绍: 自定义全服聊天格式, 需启用范围聊天模式

关键词: (位于 formatting.yml) Global

Global_Chat_Format: 2

Sound_Notify_Color

介绍: 自定义音效提醒消息颜色.

关键词: (位于 settings.yml) Sound_Notify.Color

Sound_Notify_Color: '&c'