Vintage Story Mod DB · Vintage Story mod
Config lib
You can support me on Patreon: Requires ImGui There is an addon you might want to check: Auto Config lib For other modders (or if you want to help): I need help with wrighting documentation for this library, I'm bad at it and dont have energy to do this stu
Quick answer
Which Config lib release should I use?
Config lib 1.12.0 targets 1.22.0-pre.1, 1.22.0-pre.2, 1.22.0-pre.3. It must be installed on the client. Installation on the dedicated server is optional. All 1 required mods have matching files.
Where it goes
Is Config lib required on the client, server, or both?
It must be installed on the client. Installation on the dedicated server is optional.
This release supports both sides, but the source does not require it on the server.
What else does Config lib 1.12.0 need?
1.12.0. Change the file and its required mods may change too.
Install ImGui first. We found matching files for this game-version and loader setup.
We only count dependency files that match this setup. A file for another loader does not fill the gap.
Before you install it
Add Config lib without breaking your instance.
Built for Config lib 1.12.0. Pick another file and the loader, install side or required mods may change.
- 01
Stick to this file
Use 1.12.0. It targets 1.22.0-pre.1, 1.22.0-pre.2, 1.22.0-pre.3; another release may have different loader, side or dependency requirements.
- 02
Bring the mods it needs
Install ImGui first. We found matching files for this game-version and loader setup.
- 03
Put it on the correct side
It must be installed on the client. Installation on the dedicated server is optional.
- 04
Pick the file you checked
Use the “Get this file” button beside 1.12.0. It opens that exact file at the source.
About this project
What does Config lib add?
You can support me on Patreon: 
Requires ImGui
There is an addon you might want to check: Auto Config lib
For other modders (or if you want to help): I need help with wrighting documentation for this library, I'm bad at it and dont have energy to do this stuff. Also I will be happy to have some help with testing new features.
This is a library that allows making configs even for content mods (there is also API for code mods, including custom widgets) and provides a unified GUI for editing them in game. It does not require for your mod to depend on this library. If the library is not installed, default values from assets will be used.
This library also allows changing values in regular JSON patches, that can be valuable for server configurations and can make tweaking other mods for server needs much easier.
Documentation on JSON API of this library (written by Somnium). If you want to help keep documentation up-to-date, expand it and help test new features, please ping me in discord, any help will me much appreciated.
If you need help with adding a config file using this lib feel free to ping me in discord on official VS server.
Thanks Somnium for feature suggestions and help with testing them, and the documentation.
Some of the mods that use this library:
- Status Hud Continued
- BetterRuins
- Crossbows
- Firearms
- Wild Farming
- Millwright
- Translocator Engineering - Redux
- Sortable Storage
- Zoom Button - Reborn
- Buzzwords
- Primitive Survival
- Vanilla Variants
- BetterTraders
- Mobs Radar
- Dana Tweaks
- Real Currency
- Smithing Plus
Feel free to request any features you might need under mod's discord post (link is above in Homepage tab).
Example of adding config reload functionality keeping optional dependency:
public sealed class CombatOverhaulSystem : ModSystem
{
public Settings Settings = new();
public override void Start(ICoreAPI api)
{
if (api.ModLoader.IsModEnabled("configlib"))
{
SubscribeToConfigChange(api);
}
}
private void SubscribeToConfigChange(ICoreAPI api)
{
ConfigLibModSystem system = api.ModLoader.GetModSystem<ConfigLibModSystem>();
system.SettingChanged += (domain, config, setting) =>
{
if (domain != "combatoverhaul") return;
setting.AssignSettingValue(Settings);
};
system.ConfigsLoaded += () =>
{
system.GetConfig("combatoverhaul")?.AssignSettingsValues(Settings);
};
}
}Project description from Vintage Story Mod DB.
Pick your setup
Config lib releases for each Vintage Story version.
Choose the version and loader you play, then open the matching release.
1.22.1
1 loader build1.22.0-rc.10
1 loader build1.22.0-rc.9
1 loader build1.22.0-rc.8
1 loader build1.22.0-rc.7
1 loader build1.22.0-rc.6
1 loader build1.22.0-rc.5
1 loader build1.22.0-rc.4
1 loader build1.22.0-rc.3
1 loader build1.22.0-rc.2
1 loader build1.22.0-rc.1
1 loader build1.22.0-pre.5
1 loader buildShowing the newest 12 of 56 game versions. Older files are in the list below.
Check the dependencies, then try the file in a copied instance before changing a world you care about.
Recent files
Config lib versions and loaders
1.12.0
configlib_1.12.0.zip
1 May 2026
1.11.1
configlib_1.11.1.zip
16 Apr 2026
1.11.0
configlib_1.11.0.zip
15 Feb 2026
1.10.14
configlib_1.10.14.zip
29 Jan 2026
1.10.13
configlib_1.10.13.zip
14 Jan 2026
1.10.12
configlib_1.10.12.zip
10 Dec 2025
1.10.10
configlib_1.10.10.zip
11 Nov 2025
1.10.9
configlib_1.10.9.zip
11 Nov 2025
1.10.7
configlib_1.10.7.zip
19 Oct 2025
1.10.6
configlib_1.10.6.zip
8 Oct 2025
1.10.5
configlib_1.10.5.zip
30 Sept 2025
1.10.4
configlib_1.10.4.zip
28 Sept 2025
Looking for an older file? The official Vintage Story Mod DB project page is in Resources.