Omega Config Mod (1.21.11, 1.20.1) – Ultimate Configuration Library
🌐 Good news — we've translated this article into other languages!
Or pick the one you like:
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:
- Be lightweight (<25 KB) for JIJ usage
- Exceedingly simple design & API for developers
- Intuition and usability for players
- Bonus annotations for advanced config options (syncing values)
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);
}
}
How to Install:
New to Minecraft? Follow our step-by-step guide to install Mods on your PC.View Guide
Omega Config Mod Download Links
For Minecraft
1.21.11,
1.21.10,
1.21.9
All Versions Covered
1.21.11
1.21.10
1.21.9
1.21.8
1.21.7
1.21.6
1.21.5
1.21.4
1.21.1
1.21
All Versions Covered
1.21.11
1.21.10
1.21.9
1.21.8
1.21.7
1.21.6
1.21.5
1.21.4
1.21.1
1.21
For Minecraft 1.21.8, 1.21.7
For Minecraft 1.21.5
For Minecraft 1.21.1, 1.21
For Minecraft 1.20.6
For Minecraft 1.20.1, 1.20
For Minecraft 1.18.2, 1.18.1, 1.18
Click to rate this post!
[Total: 1 Average: 5]
0
2 weeks ago



This post has no comments yet. Be the first — your comment will appear here.