HomeJavaModsSimple Mod Config
Simple Mod Config
ModsJava

Simple Mod Config

by DcmanProductions · on Modrinth

A minecraft modding framework for creating configuration files for both client and server. Free Minecraft Java mod for 1.20, 1.20.1.

Which build do you need?

This mod ships a separate file for every mod loader and every version of the game. Pick both, then download — the wrong build installs fine and then does nothing in the game.

Mod loader

Minecraft version

⬇ Download for 1.19.4 · Fabric⬇ Download for 1.19.4 · Forge
I don't know my version or loader
Open the Minecraft launcher and look at the profile you play on — it names both, like fabric-loader-1.21.4. The version also shows in the bottom-right corner of the game's main menu.
No loader in the profile name? Then it's plain Minecraft, and these mods won't run — you need Fabric or NeoForge installed first.
Simple Mod Config — screenshot 1Simple Mod Config — screenshot 2Simple Mod Config — screenshot 3

Simple Config Banner.svg

What is Simple Mod Config

Simple Config is a minecraft configuration library. This helps minecraft mod developers easily create a configs in minecraft.
This mod is built with no modding platform in mind. Meaning it can be integrated in Forge, Fabric, Quilt, and any other minecraft modding platforms that popup throughout the years.

Table of Contents

Screenshot

Installation

Add the Modrith Maven to your build.gradle file

repositories {
    // Add the modrinth maven
    maven {
        url = "https://api.modrinth.com/maven"
    }
}

Then add Simple Mod Config to your dependencies. You can find the right version on our Modrinth page

Common

Add the version to your gradle.properties files

#Simple Mod Config Version
simpleconfig=0.0.1 #put your version here

Fabric, Quilt, Architectury

dependencies {
    // Adding a Simple Mod Config dependency for fabric, quilt and architectury
    modImplementation include("maven.modrinth:simple-mod-config:fabric-${project.simpleconfig}")
}

Forge

dependencies {
    // Adding a Simple Mod Config dependency for forge
    modImplementation include("maven.modrinth:simple-mod-config:forge-${project.simpleconfig}")
}
Verified by MCModsHub

These come from our own check of the pack file, not from the source page.

Explore more