BepInExPack
Unified BepInEx all-in-one modding pack - plugin framework, detour library
Last updated | 3 years ago |
Total downloads | 390 |
Total rating | 0 |
Categories | Modpacks |
Dependency string | TemplarPraisingTheSun-BepInExPack-5.3.1 |
Dependants | 1 other package depends on this package |
README
BepInEx Framework + API
This is the pack of all the things you need to both start using mods, and start making mods using the BepInEx framework.
To install, refer to installation guide on R2Wiki.
What each folder is for:
BepInEx/plugins
- This is where normal mods/plugins are placed to be loaded.
For developers: There's no set format for what you need to name your plugins to load; if they're a valid plugin .dll file, they'll be loaded.
However please be considerate and isolate your files in their own folders, to prevent clutter, confusion, and in general, dependency hell. For example: BepInEx/plugins/YourMod/Plugin.dll
.
BepInEx/patchers
- These are more advanced types of plugins that need to access Mono.Cecil to edit .dll files during runtime. Only copy paste your plugins here if the author tells you to.
For developers: More info here: https://github.com/BepInEx/BepInEx/wiki/Writing-preloader-patchers
BepInEx/monomod
- MonoMod patches get placed in here. Only copy paste your plugins here if the author tells you to.
BepInEx/config
- If your plugin has support for configuration, you can find the config file here to edit it.
BepInEx/core
- Core BepInEx .dll files, you'll usually never want to touch these files (unless you're updating)
What is included in this pack
BepInEx 5.3 - https://github.com/BepInEx/BepInEx This is what loads all of your plugins/mods. It also includes helper libraries like MonoMod.RuntimeDetour and HarmonyX For information on writing mods, refer to
BepInEx.MonoMod.Loader - https://github.com/BepInEx/BepInEx.MonoMod.Loader
Loads MonoMod patchers from BepInEx/monomod
, read the MonoMod documentation for more info.
Customized BepInEx configuration BepInEx config customized for use with RoR2