-
Notifications
You must be signed in to change notification settings - Fork 8
Home
Parapets edited this page Jul 5, 2021
·
8 revisions
Welcome to the MCM-Helper wiki!
The documentation here, like the project itself, is based on Fallout 4 MCM and SkyUI.
The Mod Configuration Menu (MCM) is a control panel for mods that is provided by SkyUI for Skyrim. MCM Helper streamlines access to SkyUI's API by providing its own API, which is more similar to that of F4MCM.
MCM menus live in their own directory in MCM\Config\ModName
, while user settings are located in MCM\Settings\ModName.ini
.
Data/
└── MCM/
├── Config/
│ ├── Mod1/
│ │ ├── config.json (Required) Menu Layout
│ │ ├── settings.ini (Optional) Mod Setting Defaults
│ ├── Mod2/
│ │ └── ...
│ └── Mod3/
│ └── ...
└─── Settings/
├── Mod1.ini Mod Settings for Mod1
├── Mod2.ini Mod Settings for Mod2
└── Mod3.ini Mod Settings for Mod3
A configuration menu must at minimum, have a config.json
file defined. This file describes the layout of the config menu.
For information about config.json
, see Menu Layout and Control Types.
For information about settings.ini
, see Setting Types, Storage and Persistence.