Installation
Installation
Section titled “Installation”This guide will walk you through installing Alchemy on your Minecraft Fabric server.
Prerequisites
Section titled “Prerequisites”Before installing Alchemy, ensure you have:
- Minecraft Server: Version 1.21.1
- Fabric Loader: Latest version for 1.21.1
- Fabric API: Latest version for 1.21.1
Installation Steps
Section titled “Installation Steps”1. Download Alchemy
Section titled “1. Download Alchemy”Download the latest Alchemy JAR file and place it in your server’s mods folder.
2. First Launch
Section titled “2. First Launch”Start your server to generate the default configuration:
config/alchemy/├── config.json└── transmutations/ └── (empty - add your rules here)3. Configure Transmutation Rules
Section titled “3. Configure Transmutation Rules”Create your transmutation rule files in config/alchemy/transmutations/. Each file should contain a JSON object with a conversions array.
Example file structure:
config/alchemy/transmutations/├── oraxen_migration.json├── itemsadder_migration.json└── custom_conversions.json4. Restart Server
Section titled “4. Restart Server”Restart your server to load the transmutation rules. You should see log messages indicating how many rules were loaded:
[Alchemy] Loaded 5 transmutation rules from oraxen_migration.json[Alchemy] Loaded 3 transmutation rules from itemsadder_migration.jsonConfiguration Files
Section titled “Configuration Files”Main Config
Section titled “Main Config”The config.json file contains general Alchemy settings:
{ "enableTransmutation": true, "logConversions": false, "debugMode": false}| Setting | Type | Default | Description |
|---|---|---|---|
enableTransmutation | boolean | true | Enable/disable the transmutation system |
logConversions | boolean | false | Log each item conversion (useful for debugging) |
debugMode | boolean | false | Enable detailed debug logging |
Transmutation Rules
Section titled “Transmutation Rules”See the Transmutation System Overview for detailed information on creating conversion rules.
Verifying Installation
Section titled “Verifying Installation”To verify Alchemy is working correctly:
- Enable
logConversionsinconfig.json - Restart your server
- Load a world with items that should be converted
- Check the server logs for conversion messages
Next Steps
Section titled “Next Steps”Now that Alchemy is installed, learn how to create transmutation rules: