
R.E.P.O.
You are viewing a potentially older version of this package. View Latest Version

Edit mod configs in-game!
Ensure you have BepInEx installed
Download RepoConfig
RepoConfig.dll inside BepInEx/plugins/If you've referenced an older version of this mod, the attribute is obsolete and will be removed in the future.
Setting Up Ranges:
ConfigEntry<float> or ConfigEntry<int>AcceptableValueRange<float> or AcceptableValueRange<int>:floatEntry = Config.Bind("General", "Float Entry", 2f, new ConfigDescription(null, new AcceptableValueRange<float>(2.5f, 10.5f)));
intEntry = Config.Bind("General", "Int Entry", 2, new ConfigDescription(null, new AcceptableValueRange<int>(0, 100)));
Setting Up Options:
ConfigEntry<string>AcceptableValueList<string>:gamemodeEntry = Config.Bind("General", "Gamemode", "Survival", new ConfigDescription(null, new AcceptableValueList<string>("Creative", "Survival", "Adventure Mode")));