Go to your config.json (MPN directory -> Madness Project Nexus_Data -> Custom Stuff) and set custom stages to 0
XDefault
13
Posts
107
Followers
1
Following
A member registered May 09, 2020 · View creator page →
Creator of
Adds a mod menu with many features and allows creation of custom characters. (and much more)
Recent community posts
So I've looked into Harmony and unfortunately I think it wouldn't work with my mod.
Limits of runtime patching
Harmony can't do everything. Make sure you understand the following:
- With Harmony, you only manipulate methods. This includes constructors and getters/setters.
- You can only work with methods that have an actual IL code body, which means that they appear in a dissassembler like dnSpy.
- Methods that are too small might get inlined and your patches will not run.
- You cannot add fields to classes and you cannot extend enums (they get compiled into ints).
- Patching generic methods or methods in generic classes is tricky and might not work as expected.
Some of the limitations here wouldn't allow my mod to function without taking away features.
Devlog #1 - "Launch" and what's next? comments · Posted in Devlog #1 - "Launch" and what's next? comments