首选确定需要修改的配置文件的位置:

forge:

不再config文件夹,而在saves\存档\serverconfigcurios-server.toml

打开可以看见一行

createCurios = []

全部删掉,然后写入

[[curiosSettings]]
 identifier = " "
 size =  

 " "内标注需要修改的槽位(下列),size =  是数量

back 背饰、belt 腰带、body 胸饰、bracelet 手镯、charm 护符、head 首饰、hands 手饰、bracelet 手镯、ring 戒指、necklace 项链


栗子:

[[curiosSettings]]
 identifier = "ring"
 size = 2
[[curiosSettings]]
 identifier = "charm"
[[curiosSettings]]
 identifier = "necklace"

https://github.com/TheIllusiveC4/Curios/wiki/How-to-Use:-Users


fabric:

在config文件夹的curios.json

打开可以看到

{}

看看作者写的栗子

{
 "ring": {
   "size": 2,
   "icon": "curios:item/empty_ring_slot",
   "priority": 160,
   "locked": false,
   "visible": true,
   "hasCosmetic": false,
   "override": false
 }
}
目前可以看到写的是戒指

数量:2

使用图标

优先级:用于排序

锁定:确定插槽类型是否默认锁定且不可用

可见:确定插槽类型是否默认可见,由 Curios GUI 用于确定是否应显示插槽

hasCosmetic:是否在左边启用Cosmetic插槽

override:确定这些设置是否应覆盖以前的设置而不是与它们合并


如果需要写多个可以使用以下格式:

"curios": {
  "ring": {...},
  "head": {...},
  "hands": {...}
}

https://github.com/TheIllusiveC4/Curios/wiki/How-to-Use:-Fabric-Users