
Monopoly Mod - Item Unification in Minecraft
Important Notice: Development of the monopoly mod has been discontinued.
If you encounter any issues, have suggestions, or questions about this mod, we recommend creating an issue on GitHub. This allows the developer to receive notifications faster and respond to your request.
What does the monopoly mod do?
The monopoly mod is designed to unify dropped items, making only one type of each item available. By default, it monopolizes ores, ingots, plates, and other resources, selecting the first available option of each type.
For optimal results, manual configuration is recommended to ensure proper resource distribution.
Configuration Settings
Configuration file is saved at: .minecraft/config/monopoly.json
To reload the configuration, use the command: /reload
For working with tags used by various mods, refer to the tags tutorial.
Configuration Example
// this is not valid configuration since JSON doesn't support comments!
{
// the key is item tags
// this is a shorthand of nbt=false
"c:copper_ingots": "techreborn:copper_ingot",
"c:steel_ingots": {
"target" : "techreborn:steel_ingot",
"nbt" : true, // [optional] convert items with nbt. nbt will be copied
"exclude": "astromine:steel_ingot" // [optional] this item won't be converted
},
"c:iron_dusts": {
"target" : "indrev:iron_dust",
"exclude": [ // array is also supported
"appliedenergistics2:iron_dust",
"astromine:iron_dust"
]
}
}
A script for editing configuration is also available on the project's source code page.