Compatibility
Minecraft: Java Edition
26.2
26.1.x
1.21.x
1.20.x
1.19.x
1.18.x
1.17.x
1.16.x
1.15.x
1.14.x
1.13.x
Platforms
Tags
Creators
Details
Licensed GPL-3.0-or-later
Published 3 years ago
Updated 5 days ago
Advanced Minecraft Recipe Management Plugin
Extensive Recipe Support · Trigger System · Script Engine · GUI Interface · Item Plugin Integrations
Features
Quick Start
Requirements
- Java: 21 or higher
- Server: Paper / Spigot 1.20+ (Folia supported)
Installation
- Download from SpigotMC, Modrinth, or GitHub Releases
- Place the JAR file in the
plugins/directory - Restart the server
Create Your First Recipe
/cra create vanilla_shaped
Place ingredients and result items in the GUI, then click confirm. Recipes are automatically saved to plugins/Craftorithm/recipes/.
Powerful Configuration
Result Processors
Version 1.13.0.0 introduces the Result Processors system for adding effects to recipe results:
result_processors:
enchantments:
type: copy_from_source
lore:
type: add
data:
value:
- "&7Legendary Weapon"
- "&aForged in the Nether"
attributes:
type: merge_source
Supports copy_from_source / add / merge_source / remove strategies for various component types including enchantments, attributes, lore, item flags, and more.
Compatible Plugins List
Documentation
| Module | Description |
|---|---|
| Quick Start | Installation, commands, permissions |
| Recipe System | Multiple recipe types explained |
| Trigger System | Event listeners and conditions |
| Script Engine | Syntax and built-in functions |
| Item System | Custom items and external plugins |
| Configuration | Configuration reference |
| UI System | GUI and custom menus |
| API Docs | Developer API |
API
Craftorithm provides a Java API for secondary development:
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.YufiriaMazenta</groupId>
<artifactId>Craftorithm</artifactId>
<version>Tag</version>
</dependency>
import pers.yufiria.craftorithm.api.CraftorithmAPI;
CraftorithmAPI api = Craftorithm.api();


