your current location:首页 > news>Simple configuration of the module equipment field

Simple configuration of the module equipment field

2024-12-10 17:52:34|Myriagame |source:minecraft skins

Regarding the configuration information of this module, if you have the ability, you can view the DOC documentation of the module for configuration

Please open the Curios-COMMON.toml file in the config folder in your world archive file and try to use the code editor to change

Open the file default as the following code style

#list of slots to create or modify.

#See Documentation for Syntax: https://docs.illusivesoulworks.com/curios/configuration#Slot-configuration

# #

slots = [""]

And all you have to do is increase the slot information you want to add into the slots

Table below is the relevant information of the slot

curio

General, items that can be equipped or equipped on any slot type BACK, such as cloak or backpack belt, such as belts or small bags of Body wearing items, such as capes or shirts, wearing it onThe items on the wrist, such as the bracelet or bracelet cham miscellaneous item, whether it is holding it or the items on top of the head, such as a crown or hat Hands, such as gloves or gloves, NECKLACE is worn onItems on the neck, such as amulets or necklace Ring on "fingers", such as rings

Get the above information, you can make a simple configuration

For example, if you want to add three rings fields in the game, the editor is as follows:

#list of slots to create or modify.

#See Documentation for Syntax: https://docs.illusivesoulworks.com/curios/configuration#Slot-configuration

# #

slots = ["id = ring; size = 3"]

Among them, ID represents the type you selected, and SIZE represents the increase in the number

If you want to add multiple categories at the same time, you can edit as shown below

Add three rings fences, one headbar

#list of slots to create or modify.

#See Documentation for Syntax: https://docs.illusivesoulworks.com/curios/configuration#Slot-configuration

# #

slots = [id = ring; size = 3 "," id = head; size = 1 "]

Add other projects and so on.