ConfigHelper UE4SS LIB
🟠 Updated over a year agoPreview

🔍 Analysis
- 👍 1.4% endorsement rate — high engagement, a strong quality signal
- 🏆 #8 of 86 Utilities mods in this game by downloads
📋 About This Mod
Config library for loading/hotloading/saving config files on the fly using UE4SS.Very easy to use.
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
📊 Mod Details
- Game
- Oblivion Remastered Mods
- Author
- Jerome
- Version
- 1.1
- Downloads
- 45,399
- Endorsements
- 640
- Category
- Utilities
- Created
- 5/7/2025
- Updated
- 5/12/2025
🔧 How to Install Oblivion Rem. Mods
Use Vortex or MO2.
📖 Full step-by-step install guide for Oblivion Rem. →
Visit the official mod page for specific installation instructions for this mod.
🎮 Need cheat codes or console commands? Check ur gaming wiki for Oblivion Rem. commands, item IDs, and more.
Keep browsing — more Oblivion Rem. mods await