ConfigHelper UE4SS LIB
🟠 Updated over a year ago⚠️ Install Order · 1 step
Install in this order, then this mod last — most mods fail to load without their framework and dependencies in place.
Preview

🔍 Analysis
- 👍 1.4% endorsement rate — high engagement, a strong quality signal
- 🏆 #8 of 86 Utilities mods in this game by downloads
📋 About This Mod
This is a modders resource and requirement for some mods, install UE4SS, then this mod.
INSTALL INSTRUCTIONS
You should have UE4SS installed already
Paste the ConfigHelper folder into
../ue4ss/Mods/shared/
You should have something like that
../ue4ss/Mods/shared/ConfigHelper/ConfigHelper.lua
Thanks to @DaedalusKnight31 for making an installation guide for ConfigHelper!
QxC6SsOI-B4
Some mods come with config files, but they are usually in lua format, meaning u can't edit them after you launched the game.
This was mainly made to read from config files while ingame, I like to tweak values without restarting all my mods or restarting the game.
MODDERS INSTRUCTIONS
ConfigHelper is a small library for loading config files of any kind. You can access the config helper from any plugin, once installed.
easy to use
Simply import ConfigHelper after installation using
local ConfigHelper = require("ConfigHelper")
Features:
Load from config file
local MyConfig = ConfigHelper. GetConfig("ModFolderName", "ModIniName")
Save to config file
local MyConfig = ConfigHelper. SetConfig("ModFolderName", "ModIniName", "Key name", "NewValue", boolWriteIfNew)
Access loaded keys
local myVar = MyConfig.akey
Get ConfigHelper version
ConfigHelper. GetVersion()
All of the above can be done while the game is running, meaning you can edit your config files and reload the config ingame!
Example
MyMod.ini
; This line will be ignored
-- This line will be ignored
aNumberSetting = 1. 0
someString = hello
someBool = false
-- config end
Everything here will be ignored
main.lua
local ConfigHelper = require("ConfigHelper")
local MyConfig = {}
local someFunction()
local MyModFolderName = "MyMod" -- We define our mods folder name
local MyModIni = "MyMod.ini" -- We define the config name with extension!
MyConfig = ConfigHelper. GetConfig(MyModFolderName, MyModIni)
-- We ask ConfigHelper to get our config file and pas
ConfigHelper UE4SS LIB is a utility mod that provides a config library for loading, hotloading, and saving config files on the fly using UE4SS. It is designed for modders who want an easy way to manage configuration files in their UE4SS-based mods. With 640 endorsements and 45,399 downloads, it has a solid user base and is actively maintained.
✨ Key Features
📊 Pros & Cons
✅ Pros
- Community-approved utility with 640 endorsements and 45k downloads — clearly a go-to for UE4SS modders.
- Hotloading support means you can tweak configs without restarting the game — huge time-saver.
- Actively updated (May 2025), so it's likely compatible with current UE4SS versions.
⚠️ Cons
- Requires UE4SS to be installed — if you're not already using it, that's an extra dependency.
- No detailed documentation provided in the description — you'll need to figure out the API from the source or community.
- Utility mods like this are only useful for mod developers, not end-users looking for gameplay changes.
For mod developers who build UE4SS-based mods and need a simple way to handle config files. If you're a player just looking for gameplay mods, this isn't for you — it's a library, not a standalone feature.
💡 Beginner Tips
- Make sure UE4SS is installed and working before adding this library, as it's a hard dependency.
- Check the mod's source code or forum posts for usage examples — the description is minimal, so community examples are your best bet.
- If you're using a mod manager, place the library in the correct folder structure so your mods can find it.
📊 Mod Details
- Game
- Oblivionremastered Mods
- Author
- Jerome
- Version
- 1.1
- Downloads
- 45,399
- Endorsements
- 640
- Category
- Utilities
- Created
- 5/7/2025
- Updated
- 5/12/2025
🧩 Commonly Used Together
Users add these mods to the same collections — a real compatibility signal, not an AI guess.
🔧 How to Install Oblivion Remastered Mods
Download from Nexus Mods.
📖 Full step-by-step install guide for Oblivion Remastered →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Oblivion Remastered commands, item IDs, and more.
Keep browsing — more Oblivion Remastered mods await