Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Player Database
  • Skin Browser
  • Cape Gallery
  • Community Hub
  • Seed Vault

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
ae2-personal-me-system
ModMIT

ae2-personal-me-system

provides a wearable personal terminal that replaces your inventory key

219
Downloads
1
Followers
6 months ago
Updated
📦
12
Versions
forge
Download Latestv0.2.4View on Modrinth

📖About ae2-personal-me-system

AE2 Personal ME System

An AE2 addon that provides a wearable personal terminal to replace inventory and configurable virtual autocrafting recipes through a new communication_relay block.

Reason

Replacing the vanilla player inventory with an ME system in modpacks traditionally requires extensive configuration and workarounds. This mod streamlines the entire process: equip players with a Personal Terminal in their Curios slot (pre-linked or user-bindable), and they gain direct access to the ME system.

Created for the modpack Prepare to Dye 2.

Features

Personal Wireless Terminal

  • Wearable wireless terminal (Curios slot or inventory)
  • Press inventory key to open ME terminal instead of vanilla inventory
  • Bind directly from Wireless Access Point GUI
  • Infinite range when bound

Communication Relay

  • Block that provides virtual crafting recipes to ME networks
  • Recipes execute instantly without Crafting CPUs
  • Configurable via NBT - perfect for modpack makers
  • Supports item tags, NBT matching, and multi-input/output recipes
  • Right-click to view configured recipes

Usage

Personal Terminal

  1. Obtain a Personal Wireless Terminal
  2. Equip in a Curios slot (or keep in inventory)
  3. Open a Wireless Access Point and click the bind button
  4. Press E - ME terminal opens instead of vanilla inventory

Communication Relay

Place the block and connect to an ME network. Recipes stored in the block's NBT will appear as craftable patterns.

KubeJS Example

ServerEvents.commandRegistry(event => {
    event.register(
        event.commands.literal('giverelay')
            .requires(src => src.hasPermission(2))
            .executes(ctx => {
                ctx.source.player.give(Item.of('personalmesystem:communication_relay', {
                    BlockEntityTag: {
                        CustomName: '{"text":"Trading Post"}',
                        Description: ['{"text":"Exchange materials"}'],
                        virtual_recipes: [
                            {
                                inputs: [{ item: 'minecraft:cobblestone', count: 64 }],
                                outputs: [{ item: 'minecraft:diamond', count: 1 }]
                            },
                            {
                                inputs: [{ tag: 'forge:ingots/iron', count: 9 }],
                                outputs: [{ item: 'minecraft:iron_block', count: 1 }]
                            }
                        ]
                    }
                }))
                return 1
            })
    )
})

Recipe Format

{
  "inputs": [
    { "item": "minecraft:diamond", "count": 1 },
    { "tag": "forge:ingots/gold", "count": 4 }
  ],
  "outputs": [
    { "item": "minecraft:netherite_ingot", "count": 1 }
  ]
}

Configuration

Server Config (personalmesystem-server.toml)

  • powerUsage - AE power consumed per virtual craft (default: 0)

Client Config (personalmesystem-client.toml)

  • showRecipeTooltips - Show recipes in item tooltips (default: true)
  • maxTooltipRecipes - Max recipes shown in tooltips (default: 3)

Dependencies

  • Minecraft 1.20.1
  • Forge 47.x
  • Applied Energistics 2 (15.0.0+)
  • Curios API (5.2.0+)
  • FancyMenu (optional) - enables AE2 screen customization

License

MIT

👥 Team & Contributors

Yarden-zamir
Yarden-zamirOwner

⚙️ Compatibility

Environment
✅ Client & Server
Loaders
forge
Minecraft Versions
1.20.1

🔗 Links

Modrinth Page