A BepInEx mod handler/loader for the game Dungeon Clawler with Lua scripting support.
-
Download BepInEx:
-
Download Mod Handler:
- Download the latest release of
DC_ModHandler.zip
and extract it. - Place all contents of the Mod Handler zip into the
plugins
folder of BepInEx.
- Download the latest release of
-
Run the Game:
- Launch the game.
- You should see a new "Mods" button where all your installed mods will be listed.
Creating mods for Dungeon Clawler becomes more streamlined with this handler, especially when managing multiple mods. Although the handler currently doesn't simplify the mod creation process itself, future updates will include a custom API to facilitate creating game elements.
A Sample Mod project is available in this GitHub repository called DC-Sample Mod. It's ready for compilation and use with the handler. This serves as a template to help you get started.
A Sample Item Mod project is available in this GitHub repository called DC-SampleItem. It's ready for compilation and use with the handler. This serves as a template to help you get started making items.
Each mod must be in its own folder within the Mods
directory. For example:
GameFolder/Mods/SampleMod
Each mod folder must contain a manifest file named Manifest.txt
with the following format:
name="Name of the mod"
description="Description of the mod"
version="1.0"
author="Author of the mod"
mod="SampleMod.dll"
For Lua mods, use .Lua
extension for the mod field and include Lua scripts accordingly.
Once your mod is set up:
- Start the game.
- Open the mods list from the "Mods" button.
- Your mod should be listed and ready to use.
Q1: How do I troubleshoot common issues?
A1: Check the BepInEx logs located in the BepInEx
folder. Ensure all files are placed correctly and the game version is compatible.
Q2: Can I create mods for other versions of the game?
A2: Currently, the mod handler is optimized for the latest version of Dungeon Clawler.
If you encounter any issues or have questions, please open an issue on the GitHub repository or get in contact with me on Discord @ perle.btr
This project is licensed under the MIT License.
Happy modding! 🎮✨