概述
该模组是一个小型服务器实用模组,允许你过滤加入你服务器的玩家可以使用哪些模组。
用法
1.7.10
使用此 Mod 运行服务器后,你应该编辑名为“ModControl.cfg”的配置文件。
你可以在其中指定列表类型(黑名单、白名单)以及应阻止/允许的 Mod ID。
你还可以修改玩家加入被阻止的模组时收到的消息。
默认情况下,OP 不会受到此模式的影响,但是你也可以更改。
此外,你甚至可以指定不受 Mod Control 影响的特定玩家。
举个例子,如果你想阻止玩家在你的服务器上使用 NEI 和旅行地图,你的配置文件将如下所示:
# Configuration file
settings {
# The Kick Message an user will get when using a mod that's not allowed, %s will be replaced with the mod id [default: You are not allowed to use %s]
S:Kick-Message=You are not allowed to use %s
# ListType (0=BlackList, 1=WhiteList) [range: 0 ~ 1, default: 0]
I:ListType=0
# ModIds seperated by ; [default: ]
S:ModIds=journeymap;NotEnoughItems
# Users that will not be affected by this mod. Seperated by ; [default: ]
S:IgnoredUsers=
# Server Operators will not be affected by this mod [default: true]
B:Op-Bypass=true
}
你还可以使用命令“/mc reload”重新加载配置文件,而无需重新启动服务器。
>1.8
使用此模组运行服务器后,你应该在 config 文件夹中创建一个 ModControl 文件夹,其中应该有 3 个不同的 .txt 列表文件和一个配置文件。
在配置文件中,你可以设置默认的踢出消息以及 OP 是否可以绕过此模式。
而 3 个列表文件是你设置要阻止/强制使用的 Mod 的 Mod ID 的地方。
白名单包含玩家可以添加的所有模组,黑名单包含玩家不能添加的所有模组,灰名单包含需要强制玩家使用的所有模组。
该列表的格式为“MODID:KICK MESSAGE”。这是带有自定义踢出消息的黑名单示例:blackList.txt。