Enchantment Calculator

Enchantment Calculator

Client-side mod that calculates optimal enchantment paths to save XP and levels when enchanting gear, tools, weapons, and armor.

by
4.9K Downloads
fabricequipmentgame-mechanicsutility
Rent Server with this Mod

About this Mod

Overview

Enchantment Calculator is a client-side mod that helps you find the most cost-effective way to combine enchantments on your items.

This mod is based on the functionality provided by this website

This mod supports customization via a custom resource pack. GUI elements are located at:
assets/enchantmentcalculator/textures/gui

You can view the original textures in the source code on GitHub

If you have an idea to improve the interface by redrawing the elements or by changing the code, I would appreciate it.

Known bugs

  • The interface overflows off-screen when using UI scale 4 (idk how to fix this :P)

Bug Reports & Feature Requests

Found a bug, errors in calculations, have a suggestion? Please report it my our GitHub Issues page.

Usage

  1. Place an item in the anvil
  2. Select enchantments from the left panel
  3. Click Calculate to find the optimal sequence
  4. Follow the steps shown in the right panel
  5. Navigate through steps using arrow buttons

Screenshot

image

Technical Algorithm Overview

Optimization Algorithm

The Enchantment Calculator uses a sophisticated tree-based optimization algorithm to find the most cost-effective enchanting sequence.

Core Algorithm Steps:

1. Tree Structure Generation

For n enchantments, generate all possible binary combination trees
- Each leaf = enchantment book or base item
- Each internal node = anvil combination operation
- Tree depth determines maximum prior work penalty

2. Cost Calculation Model

The mod calculates costs using Minecraft's exact anvil mechanics:

Total Cost = Enchantment Cost + Prior Work Penalty

Where:

  • Enchantment Cost: Based on enchantment rarity weights
  • Prior Work Penalty: MULTIPLIERS[left_uses] + MULTIPLIERS[right_uses]
  • Multipliers: [1023]

3. Tree Pruning Optimization

Instead of testing all possible trees, the algorithm:

  • Groups trees by maximum depth (anvil use count)
  • Calculates weighted contribution sums for each tree
  • Keeps only the best tree per depth level
  • Reduces complexity from O(n!) to O(n²)

4. Item Placement Optimization

For each tree structure:

1. Sort enchantment books by cost (expensive first)
2. Calculate leaf contribution values for each position
3. Place expensive items at positions with lowest contributions
4. Minimize total weighted cost

5. Multi-Mode Optimization

Supports two optimization targets:

  • Level Mode: Minimizes total anvil level cost
  • Experience Mode: Minimizes total XP expenditure

Mathematical Foundation

Prior Work Penalty Calculation:

penalty = MULTIPLIERS[left_item_uses] + MULTIPLIERS[right_item_uses]

Experience Cost Conversion:

if (levels ≤ 16): xp = levels² + 6×levels
if (levels ≤ 31): xp = 2.5×levels² - 40.5×levels + 360
if (levels > 31): xp = 4.5×levels² - 162.5×levels + 2220

Tree Contribution Weighting:

For each tree position i:
contribution[i] = depth_from_root
weighted_sum = Σ(i × contribution[i])

Algorithm Complexity

  • Time Complexity: O(n² × 2^n) where n = number of enchantments
  • Space Complexity: O(n × 2^n) for tree storage
  • Practical Performance: <100ms for typical 5-7 enchantments

Enchantment Weight System

The mod uses empirically determined weights matching Minecraft's internal costs:

Weight 1: protection, sharpness, efficiency, unbreaking, power
Weight 2: fire_aspect, looting, fortune, punch, flame
Weight 4: mending, silk_touch, infinity, curse_of_binding

Tree Search Strategy

  1. Generate all possible binary tree structures
  2. Filter by maximum depth to reduce search space
  3. Score each tree using weighted contribution analysis
  4. Select optimal trees per depth level
  5. Test item placements for each selected tree
  6. Return globally optimal solution

Edge Case Handling

  • Single enchantment: Direct application (cost = weight × level)
  • Two enchantments: Simple combination without tree search
  • Incompatible enchantments: Filtered during selection phase
  • Maximum anvil uses: Capped at 6 uses (cost = 1023 levels)

This algorithm ensures you get the mathematically optimal enchanting sequence while maintaining fast performance suitable for real-time gameplay.

Available Versions

Enchantment Calculator 1.0.0release
MC 1.21.9, 1.21.10fabric
October 3, 2025
Enchantment Calculator 1.0.0release
MC 1.21.6, 1.21.7, 1.21.8fabric
July 14, 2025
Enchantment Calculator 1.0.0release
MC 1.21.2, 1.21.3, 1.21.4, 1.21.5fabric
July 14, 2025
Enchantment Calculator 1.0.0release
MC 1.21, 1.21.1fabric
July 14, 2025

How to Install Enchantment Calculator on Your Server

1

Order Server

Order a Minecraft Java server with at least 3 GB RAM (4 GB recommended).

2

Set fabric Loader

In the panel under "Egg", select the fabric loader and matching Minecraft version (1.21.10).

3

Install Mod

Open the mod browser in the dashboard and search for "Enchantment Calculator". Click "Install" – done! Alternatively, upload the .jar via SFTP to the /mods folder.

Compatibility

Mod Loaders

fabric

Minecraft Versions

1.21.10, 1.21.9, 1.21.8 (+8 more)

Server-side

Unsupported

Recommended RAM

4 GB(min. 3 GB)

Frequently Asked Questions

Enchantment Calculator server crashes on startup – what to do?

Most common cause: wrong fabric version or insufficient RAM. Check the server log (latest.log) for "OutOfMemoryError" or "Mixin" errors. With Mado Hosting: ensure at least 3 GB RAM is allocated and the loader matches the mod version (1.21.10). You can switch loaders with one click in the panel.

Is Enchantment Calculator compatible with fabric?

Enchantment Calculator officially supports fabric for Minecraft 1.21.10, 1.21.9, 1.21.8. The Mado dashboard automatically detects incompatible loader combinations.

Server lagging with Enchantment Calculator – how to optimize performance?

Recommended RAM: 4 GB (per 8 players). Use /spark profiler to check if Enchantment Calculator consumes the most tick time. Common fixes: reduce server view-distance to 8-10, install "performant" or "starlight" as supplementary mods on Forge. With Mado Hosting, your server runs on NVMe SSDs with dedicated CPU cores for minimal latency.

Rent Modded Server

Install Enchantment Calculator with just one click on your server.

Recommended RAM
4 GBab €8/mo
Min. 3 GB | +1 GB pro 8 Spieler
Create Server Now
1-Click Mod Install
NVMe SSD Storage
DDoS Protection included

Details

License
MIT License
Server-side
Unsupported

Supported Versions

1.21.101.21.91.21.81.21.71.21.61.21.51.21.41.21.31.21.21.21.1+1 more