HomeJavaModsOmega Config Mod (1.21.11, 1.20.1) – Ultimate Configuration Library
Omega Config Mod (1.21.11, 1.20.1) – Ultimate Configuration Library
ModsJava

Omega Config Mod (1.21.11, 1.20.1) – Ultimate Configuration Library

Omega Config Mod is a hyper-minimal config library based on Auto Config. It's designed to be simple and intuitive for both developers and players…

⬇ DownloadOpen in MCModsHubGet it on Google Play →

Omega Config Mod is a hyper-minimal config library based on Auto Config. It’s designed to be simple and intuitive for both developers and players.

Features:

Configs:

The following is an example of a simple Ω Config setup:

public class TestConfig implements Config {

@Comment(value = "Hello!")
boolean value = false;

@Syncing
@Comment(value = "This value will sync to the client!")
boolean syncableValue = false;

@Override
public String getFileName() {
return "test-config";
}
}
public class MyModInitializer {

public static final TestConfig CONFIG = OmegaConfig.register(TestConfig.class);

@Override
public void onInitialize() {
System.out.printf("Config value: %s%n", CONFIG.value);
}
}

Looking for a simple config screen? Talk about easy!

public class ClientInitializer implements ClientModInitializer {

@Override
public void onInitializeClient() {
// Make sure you implement getModid in your config class!
OmegaConfigGui.registerConfigScreen(MainInitializer.CONFIG);
}
}

Omega Config Mod Download Links

Omega Config Mod (1.21.11, 1.20.1) – Ultimate Configuration Library is a free Minecraft Java mod. Compatible with Minecraft 1.21.11, 1.20.1. Download it and open it directly in the game.

Explore more