monopoly is a Minecraft mod that'll try to unify dropped items, keeping only one type of item obtainable.
By default, it will try to monopolize ores, ingots, plates, etc. to whatever the first item it can get.
Manual configuration is recommended to monopoly the correct market.
Config is saved on .minecraft/config/monopoly.json
.
To reload the config, simply run /reload
command
For common tags used by various mods, see tutorial:tags.
// this is not valid config 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 copied.
"exclude": "astromine:steel_ingot" // [optional] this wont be converted.
},
"c:iron_dusts": {
"target" : "indrev:iron_dust",
"exclude": [ // accept array too
"appliedenergistics2:iron_dust",
"astromine:iron_dust"
]
}
}
You see, i also made a little script to generate config, config_generator.py
It'll ask you some question, but don't worry, it'll keep it a secret between you two.
To use the script, simply download the file and run it or, if you fancy enough and use linux:
wget https://raw.githubusercontent.com/badasintended/monopoly/1.16.2/config_generator.py
python3 config_generator.py
It's pretty simple, so I don't think I need to explain how to use it.
To exit and save the config simply input nothing (just press enter) on the next Tag:
question.