For the complete documentation index, see llms.txt. This page is also available as Markdown.

Recipes Menu

/ia command menu

ia_gui.yml contains settings about the /ia command GUI. It also contains the "all" category which shows every ItemsAdder item.

Default ItemsAdder pack categories are inside categories.yml files on each namespace folder. For example: contents/iasurvival/configs/categories.yml

Hide items in all category

You can hide particular items from the all category.

hide_items:
- _iainternal:icon_left_grey
- _iainternal:icon_left_blue
- _iainternal:icon_right_grey
- _iainternal:icon_right_blue
- _iainternal:icon_up_grey
- _iainternal:icon_up_blue

Hide matching in all category

You can hide all items whose ID starts with a specific string. For example, the following configuration hides every item whose ID starts with myitems:hidden_item_.

    hide_items:
    - "myitems:hidden_item_*"

Creating a custom category

If you want to create your own category you have to create and add it to your own .yml file in your namespace. Do not add your categories into the ia_gui.yml file! This is an example:

Remember to give your users permission for each category if you want them to see the categories. This example category permission is: ia.menu.seecategory.swords

font_image and title_position_pixels are optional. Plugin will take the one in ia_gui.yml if not set.

This option is good if you want to have a different background for each category.

Add bulk items to categories

Wildcard

Matches any item which has example namespace.

Matches any namespace which has some_item item.

Regex (advanced users)

Matches any armor item of the iasurvival namespace.

Use this website to test your regex.

Reorder categories

In ItemsAdder/ia_gui.yml you can set a custom order for the categories of your plugin. This is a global setting that applies to all the namespaces.

Automatic alphabetical order

Set alphabetical: true.

Force custom ordering

Set alphabetical: false and customize force_override.

Categories that are not in the list will be appended to the end of the listed categories, in alphabetical order (if alphabetical: true).

Customize all category position

You can make the all category the first category by just adding it to the list

Last updated