Writing MCMs usually involves complex Papyrus logic to handle user input. MCM Helper introduces a clean, simplified API to read and write JSON files.
MCM Helper is a critical framework mod for that simplifies the creation and management of Mod Configuration Menus (MCM) . It is primarily used by modders to build more robust menus and by players to ensure their settings remain persistent across different save files. ⚡ What is MCM Helper?
Integrating MCM Helper is designed to be intuitive. Instead of managing states manually, authors simply register for events. mcm helper
If you’re working on a legacy Forge mod (1.12.2 or earlier), adding MCM Helper is straightforward:
Core Framework Requirements: Skyrim Special Edition / Skyrim VR, SkyUI Writing MCMs usually involves complex Papyrus logic to
; Example: Listening for a slider change Event OnSliderChangeST(string valueName, float value) if valueName == "MyModSpeed" MyModGlobalSpeed.SetValue(value) Debug.Notification("Speed updated to: " + value) endif EndEvent
Vanilla Minecraft’s GUI code is notoriously messy. Creating a custom container, button, or slot often requires overriding a dozen methods just to get something on screen. MCM Helper provides: It is primarily used by modders to build
: Developers can use the MCM Helper Visualizer to preview their menus without even launching the game. 📥 How to Install MCM Helper