Creating a Config
Find out how to create Configs with OneConfig
Getting Started
Building the bare bones
public class MyConfig extends Config {
}public MyConfig() {
// Available mod types: PVP, HUD, UTIL_QOL, HYPIXEL, SKYBLOCK
super(new Mod("My Mod", ModType.UTIL_QOL), "config.json");
initialize();
}Additional cosmetics
public MyConfig() {
// Available mod types: PVP, HUD, UTIL_QOL, HYPIXEL, SKYBLOCK
super(new Mod("My Mod", ModType.UTIL_QOL, "/filepath/to/icon.png"), "config.json");
initialize();
}Initializing on launch
Config OptionsExample Config GUI

Last updated
Was this helpful?