MonoMod Loader Inscryption
Loads .mm.dll patches from BepInEx/monomod
Last updated | 2 years ago |
Total downloads | 117297 |
Total rating | 5 |
Categories | Libraries |
Dependency string | BepInEx-MonoMod_Loader_Inscryption-1.0.0 |
Dependants | 88 other packages depend on this package |
This mod requires the following mods to function
BepInEx-BepInExPack_Inscryption
BepInEx pack for Inscryption. Preconfigured and ready to use.
Preferred version: 5.4.1901README
BepInEx.MonoMod.Loader
This is loader for MonoMod.MonoModPatches suited for use in BepInEx.
Main features
- No permanent patching -- all patches are applied at runtime without permanent changes to DLLs
- Easy install and uninstall -- simply add/remove patch DLLs to install/uninstall patches
Installation
- Download and install BepInEx 5.0 or newer
- Download the latest version from releases
- Extract the contents of the archive into the game folder (the folder that contains
BepInEx
folder) - Install MonoMod patches into
BepInEx/monomod
folder
Notes about writing MonoMod patches
- Write MonoMod patches normally
- Name your patch DLL as follows:
<Assembly>.<ModName>.mm.dll
where<Assembly>
is the name of the assembly you want to patch<ModName>
is the name of your mod
- NOTE: Because of the naming convention, you can also patch a single assembly per DLL. If you need to patch multiple assemblies, write multiple DLLs.