Various universal BepInEx utility plugins for Unity games compiled with IL2CPP. Projects marked with netFM are for BepInEx 6 pre1, while projects marked with net6 are for the latest BepInEx 6 builds.
If the game is not compiled with IL2CPP, use BepInEx.Utility instead.
- BepInEx 6.0 pre.1. Use BepInEx_UnityIL2CPP_x64_6.0.0-pre.1.zip
- Configuration Manager for IL2CPP. Use BepInExConfigManager.Il2Cpp (open with F5)
- Recent nightly build of BepInEx 6.0 (newer than pre.1)
- Configuration Manager for IL2CPP. Use BepInEx.ConfigurationManager (open with F1, may require additional patches to make IMGUI work, example)
- Download the desired plugin from the Releases Section.
- Extract the .zip file in the game folder (where
game.exe
is).
Change graphics settings like resolution, full screen and vSync in the Configuration Manager. Press F5 to open.
New Feature: Apply setings on startup. This will overwrite the game settings, use with caution.
Enable window resizing when in windowed mode. An overhaul of Enable Resize from BepInEx project made to increase compatibility.
Mute a game when it loses focus, i.e. when alt-tabbed. Ported form BepInEx Utility.
Allow toggling full screen with alt+enter in games where that has been disabled. Ported form BepInEx Utility.
A simple plugin that shows any log entries marked as "Message" on screen. Ported form BepInEx Utility
Plugins generally use the "Message" log level for things that they want the user to read.
How to make my mod compatible?
Use the Logger of your plugin and call its LogMessage method or Log method and pass in LogLevel.Message as a parameter. You don't have to reference this plugin, and everything will work fine if this plugin doesn't exist.
Please avoid abusing the messages! Only show short and clear messages that the user is likely to understand and find useful. Avoid showing many messages in a short succession.
Suppress console messages containing certain words. Available in Configuration Manager.
This patcher allows you to replace a sequence of bytes in the memory of the current process. Use with caution!
- Run the game once to generate
BepInEx\config\ByteFiddler.cfg
and edit it. - Change the settings as needed, read setting descriptions for more info.
- Run the game and the plugin will replace the found pattern with the replacement pattern. Check the log for errors or the success message.
This patcher allows you to override processor affinity of the current process.
- Run the game once to generate
BepInEx\config\ProcessAffinityOverride.cfg
and edit it. - Change the settings as needed, read setting descriptions for more info.
- Run the game and the plugin should change the affinity. Check the log for errors or the success message. You can see if it worked by checking process affinity in Task Manager.