Orange-Xo
slimefun怎么禁用物品或者ban掉物品
服务器版本1.16.2
想要禁用方块放置机,求助,我该怎么弄QAQ



要开心阿!
slimefun/item.yml
找到要ban的东西下面
  enabled: true
改成
  enabled: false
重启服务器即可
按ctrl+f输入place可以快速找到方块放置机

bluecarrot
封禁物品教程:
打开 /plugins/Slimefun 下的 Items.yml
您可能会看见以下内容:
ORE_CRUSHER:
  double-ores: true
  enabled: true
  can-be-used-in-workbenches: false
  allow-enchanting: true
  allow-disenchanting: true
  required-permission: ''
  wiki: https://github.com/TheBusyBiscuit/Slimefun4/wiki/Ore-Crusher
GRANDMAS_WALKING_STICK:
  enabled: true
  can-be-used-in-workbenches: false
  allow-enchanting: true
  allow-disenchanting: true
  required-permission: ''
  wiki: https://github.com/TheBusyBiscuit/Slimefun4/wiki/Walking-Sticks
复制代码
此处使用 Visual Studio Code 作为教程演示, 按下 Ctrl+F 搜索你需要的物品,此处以(SCROLL_OF_DIMENSIONAL_TELEPOSITION) 维度传送卷轴为例:

在查找目标内填写: SCROLL_OF_DIMENSIONAL_TELEPOSITION,单击 "查找下一个".
您会看见以下内容:

SCROLL_OF_DIMENSIONAL_TELEPOSITION:
  enabled: true
  can-be-used-in-workbenches: false
  allow-enchanting: true
  allow-disenchanting: true
  required-permission: ''

将其中的 enabled: true 改为 enabled: false, 封禁物品完成.
重启服务器后就会生效
https://www.mcbbs.net/thread-827594-1-1.html这个帖子最后有