You are viewing a potentially older version of this package. View all versions.
Robyn-MonoModLoader-1.0.0 icon

MonoModLoader

Loads .mm.dll patches from BepInEx/monomod

Date uploaded 11 months ago
Version 1.0.0
Download link Robyn-MonoModLoader-1.0.0.zip
Downloads 203
Dependency string Robyn-MonoModLoader-1.0.0

This mod requires the following mods to function

BepInEx-BepInExPack_Ostranauts-5.4.2303 icon
BepInEx-BepInExPack_Ostranauts

BepInEx modloader. Preconfigured and ready to use.

Preferred version: 5.4.2303

README

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

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.