Back to mods
Reliable EMI project artwork

CurseForge · Minecraft mod

Reliable EMI

A mod adding many configurable features to EMI!

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which Reliable EMI release should I use?

Updated yesterday
Latest stable file Reliable EMI Fabric 1.21.1 - 4.0.2
Game version 1.21.1
Loader Fabric

Reliable EMI Fabric 1.21.1 - 4.0.2 targets 1.21.1 with Fabric. The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server. All 5 required mods have matching files.

Where it goes

Is Reliable EMI required on the client, server, or both?

The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.

Client Source doesn’t say
Dedicated server Source doesn’t say
Loader for this release Fabric
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

The source does not explicitly classify this release as client-only or server-only.

What else does Reliable EMI Fabric 1.21.1 - 4.0.2 need?

Reliable EMI Fabric 1.21.1 - 4.0.2. Change the file and its required mods may change too.

All 5 required mods have matching files

Install YetAnotherConfigLib, EMI, YetAnotherConfigLib (YACL), Fabric API and 1 more first. We found matching files for this game-version and loader setup. 2 come through another mod in the chain.

3 listed on this file 2 pulled in by those mods
YetAnotherConfigLib Needed by Reliable EMI Fabric 1.21.1 - 4.0.2
required
Matching file found Matched file: 3.8.2 for fabric 1.21.1
EMI Needed by Reliable EMI Fabric 1.21.1 - 4.0.2
required
Matching file found Matched file: emi-1.1.24+1.21.1+fabric
YetAnotherConfigLib (YACL) Needed by Reliable EMI Fabric 1.21.1 - 4.0.2
required
Matching file found Matched file: 3.8.2+1.21.1-fabric
Fabric API Needed by YetAnotherConfigLib
pulled in
Matching file found Matched file: [1.21.1] Fabric API 0.116.15+1.21.1
Fabric API Needed by YetAnotherConfigLib (YACL)
pulled in
Matching file found Matched file: 0.116.15+1.21.1

2 extra mods were pulled in by other dependencies. Indented rows show who needs each one. We only count dependency files that match this setup. A file for another loader does not fill the gap.

Before you install it

Add Reliable EMI without breaking your instance.

Built for Reliable EMI Fabric 1.21.1 - 4.0.2. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use Reliable EMI Fabric 1.21.1 - 4.0.2. It targets 1.21.1 with Fabric; another release may have different loader, side or dependency requirements.

  2. 02

    Bring the mods it needs

    Install YetAnotherConfigLib, EMI, YetAnotherConfigLib (YACL), Fabric API and 1 more first. We found matching files for this game-version and loader setup. 2 come through another mod in the chain.

  3. 03

    Put it on the correct side

    The project page does not say whether it belongs on the client. The project page does not say whether it belongs on the dedicated server.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside Reliable EMI Fabric 1.21.1 - 4.0.2. It opens that exact file at the source.

About this project

What does Reliable EMI add?

Reliable EMI

neoforge
forge
fabric

Reliable EMI (REMI) is an addon for EMI, adding a variety of useful features,
improvements,
and customization options to enhance your recipe viewing experience!

Features

REMI provides the following enhancements:

  • Stack Grouping: Cleans up the EMI item list by grouping related items together (e.g., keeping all colored wools in
    one expandable entry).
  • Creative Tabs in EMI: Displays vanilla and modded Creative Mode tabs directly in the EMI interface for easy
    browsing.
    • The appearance of the creative tabs change, dependent on the EMI theme (vanilla or modern).
    • Works especially well with custom Recreative tabs!
  • Custom Tag Pages (1.21+): Adds new EMI tag tabs for Item Tags, Block Tags, Fluid Tags, and Entity
    Tags
    .
    • Right-click spawn eggs to view entity tags, and search entity & fluid tags using #tag_id.

Configuration

REMI offers extensive configuration options to tweak the interface to your needs. You can configure the mod via the
in-game config screen with YACL installed or by editing the configuration file
directly.

Customizing Stack Groups

You can define new custom stack groups or modify existing ones using standard JSON files.

REMI loads stack groups from the config/remi/stack_groups directory. For example, to create a custom group, create a
JSON file in config/remi/stack_groups/my_group.json.

JSON Structure:

Field Type Description
id String A unique identifier (e.g., "mypack:currency").
name String (Optional) A translation key or string for the group's name (e.g., "mypack.group.currency" or "Currency").
type String Determines how the group is built. Can be "remi:group", "remi:tag", or "remi:regex".
enabled Boolean (Optional) Set to false to disable this group.
priority Integer (Optional) Controls match order when an item could belong to multiple groups. Higher values are checked first (default 0).
contents List (For remi:group) A list of items or tags to include.
exclusions List (For remi:group/remi:regex) Items to remove from the group (useful when using broad tags or regexes).
regex String (For remi:group/remi:regex) A regular expression pattern used to match item IDs dynamically.
regexes List (Optional) (For remi:group) Like regex, but accepts a list of multiple patterns.

Example: Creating a shiny things group (standard list)

{
  "id": "mypack:shiny_things",
  "type": "remi:group",
  "contents": [
    "minecraft:diamond",
    "minecraft:emerald",
    "minecraft:gold_ingot",
    "#c:glass_blocks"
  ],
  "exclusions": [
    "minecraft:purple_stained_glass"
  ]
}

Example: Creating a group using Regex

You can use the "remi:regex" type to dynamically group items based on their naming patterns. The example below groups
all items that end in _sword (from any namespace):

{
  "id": "mypack:swords",
  "type": "remi:regex",
  "regex": ".*:.*_sword",
  "name": "Swords"
}

Virtual Objects (Fluids, Modifiers, etc.):

Reliable EMI also supports grouping non-item objects such as Fluids, JEED effects, etc. To do this,
prefix the entry with its EMI registry type using the format <type>:<namespace>:<path>.

Example: Creating a special group

{
  "id": "mypack:basic_fluids",
  "name": "mypack.stack_group.basic_fluids",
  "type": "remi:group",
  "contents": [
    "fluid:minecraft:water",
    "fluid:minecraft:lava",
    "jeed:effect:minecraft:speed"
  ]
}

Disabling Default Groups

All stack groups are easily togglable using the in-game config screen, in the Stack Groups category.

I-game stack group config

To disable a default stack group, you can also override its definition. Create a file with the same
path/ID as the default group and set "enabled": false.

Example: Disabling the spawn eggs group

File: config/remi/stack_groups/spawn_eggs.json

{
  "enabled": false
}

License

Code license (MIT)

Project description from CurseForge.

Pick your setup

Reliable EMI by Minecraft version and loader

Choose the version and loader you play, then open the matching release.

6 available setups

Check the dependencies, then try the file in a copied instance before changing a world you care about.

Recent files

Reliable EMI versions and loaders

97 of 97 releases match

Looking for an older file? The official CurseForge project page is in Resources.