Dimensional Ores

Dimensional Ores

Add ore generation to your dimension!

by
4.3K Downloads
fabricforgeneoforgeadventureworldgen
Rent Server with this Mod

About this Mod

Dimensional Ores

Fabric version here (since v1.3 included and fabric version)

Add ores to your nether and end!

Will add ores from overworld to nether and to the end. there is integration with some mods (in the future there will be more mods, and more ores). An alternative to EndOres fashion.

The description is undergoing big changes! It will be more detailed soon.. Maybe

Configuration

Since v1.3 you can enable or disable ore generation in config:

v1.3:

Config v.1.3 ```json { // Config supports singleline /* And multiline/inline comments */ "generate_nether_ores": true, // Enables/disables ore generation in The Nether. If false, no ore will be generated. "generate_nether_coal": true, // Enables/disables coal generation in The Nether "generate_nether_copper": true, // Enables/disables copper generation in The Nether "generate_nether_iron": true, // Enables/disables iron generation in The Nether "generate_nether_lapis": true, // Enables/disables lapis lazuli generation in The Nether "generate_nether_diamond": true, // Enables/disables diamond generation in The Nether "generate_nether_emerald": true, // Enables/disables emerald generation in The Nether "generate_nether_redstone": true, // Enables/disables redstone generation in The Nether // Overworld Ores "generate_overworld_ores": true, // Enables/disables ore generation in Overworld. If false, no ore will be generated. "generate_quartz": true, // Enables/disables quarz generation in Overworld // End Ores "generate_end_ores": true, // Enables/disables ore generation in The End. If false, no ore will be generated. "generate_end_quartz": true, // Enables/disables quartz generation in The End "generate_end_coal": true, // Enables/disables coal generation in The End "generate_end_copper": true, // Enables/disables copper generation in The End "generate_end_iron": true, // Enables/disables iron generation in The End "generate_end_gold": true, // Enables/disables gold generation in The End "generate_end_lapis": true, // Enables/disables lapis lazuli generation in The End "generate_end_diamond": true, // Enables/disables diamond generation in The End "generate_end_emerald": true, // Enables/disables emerald generation in The End "generate_end_redstone": true // Enables/disables redstone generation in The End } ```

v1.3.1-1.4.0:

Config from v.1.3.1 to v.1.4.0 ```json { // Configures ore generation in The Nether "nether_ores": { /* * Enables/disables ore generation in The Nether. * If false, no ore will be generated. */ "enabled": true, // Enables/disables Coal generation in The Nether. "coal": true, // Enables/disables Copper generation in The Nether. "copper": true, // Enables/disables Iron generation in The Nether. "iron": true, // Enables/disables Lapis Lazuli generation in The Nether. "lapis": true, // Enables/disables Diamond generation in The Nether. "diamond": true, // Enables/disables Emerald generation in The Nether. "emerald": true, // Enables/disables Redstone generation in The Nether. "redstone": true }, // Configures ore generation in Overworld "overworld_ores": { /* * Enables/disables ore generation in Overworld. * If false, no ore will be generated. */ "enabled": true, // Enables/disables Quartz generation in Overworld. "quartz": true }, // Configures ore generation in The End "end_ores": { /* * Enables/disables ore generation in The End. * If false, no ore will be generated. */ "enabled": true, // Enables/disables Quartz generation in The End. "quartz": true, // Enables/disables Coal generation in The End. "coal": true, // Enables/disables Copper generation in The End. "copper": true, // Enables/disables Iron generation in The End. "iron": true, // Enables/disables Gold generation in The End. "gold": true, // Enables/disables Lapis Lazuli generation in The End. "lapis": true, // Enables/disables Diamond generation in The End. "diamond": true, // Enables/disables Emerald generation in The End. "emerald": true, // Enables/disables Redstone generation in The End. "redstone": true } } ```
v.1.4+
Config after v.1.4.0 and above: ```json { // Configures ore generation in The Nether "nether_ores": { /* * Enables/disables ore generation in The Nether. * If false, no ore will be generated. */ "enabled": true, /* * Settings of the Coal generation in The Nether. * Default values: * size = 32 * count = 20 * min_height = -64 * max_height = 480 */ "coal": { "enabled": true, "size": 32, "count": 20, "min_height": -64, "max_height": 480 }, /* * Settings of the Copper generation in The Nether. * Default values: * size = 20 * count = 16 * min_height = -64 * max_height = 480 */ "copper": { "enabled": true, "size": 20, "count": 16, "min_height": -64, "max_height": 480 }, /* * Settings of the Iron generation in The Nether. * Default values: * size = 18 * count = 10 * min_height = -64 * max_height = 480 */ "iron": { "enabled": true, "size": 18, "count": 10, "min_height": -64, "max_height": 480 }, /* * Settings of the Lapis Lazuli generation in The Nether. * Default values: * size = 14 * count = 4 * min_height = -64 * max_height = 480 */ "lapis": { "enabled": true, "size": 14, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Diamond generation in The Nether. * Default values: * size = 16 * count = 7 * min_height = -64 * max_height = 480 */ "diamond": { "enabled": true, "size": 16, "count": 7, "min_height": -64, "max_height": 480 }, /* * Settings of the Emerald generation in The Nether. * Default values: * size = 12 * count = 4 * min_height = -64 * max_height = 480 */ "emerald": { "enabled": true, "size": 12, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Redstone generation in The Nether. * Default values: * size = 16 * count = 8 * min_height = -64 * max_height = 480 */ "redstone": { "enabled": true, "size": 16, "count": 8, "min_height": -64, "max_height": 480 } }, // Configures ore generation in Overworld "overworld_ores": { /* * Enables/disables ore generation in Overworld. * If false, no ore will be generated. */ "enabled": true, /* * Settings of the Quartz generation in Overworld. * Default values: * size = 16 * count = 8 * min_height = -64 * max_height = 480 */ "quartz": { "enabled": true, "size": 14, "count": 16, "min_height": -64, "max_height": 480 } }, // Configures ore generation in The End "end_ores": { /* * Enables/disables ore generation in The End. * If false, no ore will be generated. */ "enabled": true, /* * Settings of the Quartz generation in The End. * Default values: * size = 28 * count = 8 * min_height = -64 * max_height = 480 */ "quartz": { "enabled": true, "size": 28, "count": 8, "min_height": -64, "max_height": 480 }, /* * Settings of the Coal generation in The End. * Default values: * size = 32 * count = 7 * min_height = -64 * max_height = 480 */ "coal": { "enabled": true, "size": 32, "count": 7, "min_height": -64, "max_height": 480 }, /* * Settings of the Copper generation in The End. * Default values: * size = 20 * count = 8 * min_height = -64 * max_height = 480 */ "copper": { "enabled": true, "size": 20, "count": 8, "min_height": -64, "max_height": 480 }, /* * Settings of the Iron generation in The End. * Default values: * size = 18 * count = 5 * min_height = -64 * max_height = 480 */ "iron": { "enabled": true, "size": 18, "count": 5, "min_height": -64, "max_height": 480 }, /* * Settings of the Gold generation in The End. * Default values: * size = 18 * count = 4 * min_height = -64 * max_height = 480 */ "gold": { "enabled": true, "size": 18, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Lapis Lazuli generation in The End. * Default values: * size = 14 * count = 4 * min_height = -64 * max_height = 480 */ "lapis": { "enabled": true, "size": 14, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Diamond generation in The End. * Default values: * size = 16 * count = 7 * min_height = -64 * max_height = 480 */ "diamond": { "enabled": true, "size": 16, "count": 7, "min_height": -64, "max_height": 480 }, /* * Settings of the Emerald generation in The End. * Default values: * size = 12 * count = 4 * min_height = -64 * max_height = 480 */ "emerald": { "enabled": true, "size": 12, "count": 4, "min_height": -64, "max_height": 480 }, /* * Settings of the Redstone generation in The End. * Default values: * size = 16 * count = 8 * min_height = -64 * max_height = 480 */ "redstone": { "enabled": true, "size": 16, "count": 8, "min_height": -64, "max_height": 480 } } } ```

Available Versions

[neoforge-26.1] Dimensional Ores (v.1.5.0.1)release
MC 26.1, 26.1.1, 26.1.2neoforge
June 12, 2026
[neoforge-1.21.11] Dimensional Ores (v.1.5.0.1)release
MC 1.21.11neoforge
June 12, 2026
[neoforge-1.21.1] Dimensional Ores (v.1.5.0.1)release
MC 1.21.1neoforge
June 12, 2026
[neoforge-26.1] Dimensional Ores (v.1.5.0)release
MC 26.1, 26.1.1, 26.1.2neoforge
May 30, 2026
[neoforge-1.21.11] Dimensional Ores (v.1.5.0)release
MC 1.21.11neoforge
May 30, 2026

How to Install Dimensional Ores on Your Server

1

Order Server

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

2

Set fabric Loader

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

3

Install Mod

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

Compatibility

Mod Loaders

fabricforgeneoforge

Minecraft Versions

26.1.2, 26.1.1, 26.1 (+22 more)

Server-side

Required

Recommended RAM

6 GB(min. 4 GB)

Frequently Asked Questions

Dimensional Ores 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 4 GB RAM is allocated and the loader matches the mod version (26.1.2). You can switch loaders with one click in the panel.

Is Dimensional Ores compatible with fabric and forge and neoforge?

Dimensional Ores officially supports fabric, forge, neoforge for Minecraft 26.1.2, 26.1.1, 26.1. Note: Forge and Fabric mods are NOT cross-compatible – pick one loader and stick with it. The Mado dashboard automatically detects incompatible loader combinations.

Server lagging with Dimensional Ores – how to optimize performance?

Recommended RAM: 6 GB (per 5 players). Use /spark profiler to check if Dimensional Ores 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 Dimensional Ores with just one click on your server.

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

Details

License
LicenseRef-All-Rights-Reserved
Server-side
Required

Supported Versions

26.1.226.1.126.126.1-snapshot-51.21.111.21.101.21.91.21.81.21.71.21.6+15 more