You are viewing a potentially older version of this package.
View all versions.
Hell2Modding
Lua Mod Loader for Hades 2
| Date uploaded | 2 years ago |
| Version | 1.0.30 |
| Download link | Hell2Modding-Hell2Modding-1.0.30.zip |
| Downloads | 581 |
| Dependency string | Hell2Modding-Hell2Modding-1.0.30 |
README
Hell 2 Modding
Hades Modding Discord
Manual Installation
- Place the main Hell2Modding file, called
d3d12.dll, next to the game executable calledHades2.exeinside the game folder.
User Interface
- Ships with a ImGui user interface. The default key for opening the GUI is INSERT. You can change the key inside the
Hell2Modding/config/Hotkeys.cfgfile
Creating mods
-
Define a
main.luafile in which to code your mod. -
Create a
manifest.jsonfile that follows the Thunderstore Version 1 Manifest format. -
Create a folder whose name follows the GUID format
TeamName-ModName, for example:Hell2Modding-DebugToolkit. -
Place the
main.luafile and themanifest.jsonfile in the folder you've just created. -
Place the newly created folder in the
pluginsfolder in the Hell2Modding root folder, calledHell2Modding, so the path to your manifest.json should be something likeHell2Modding/plugins/Hell2Modding-DebugToolkit/manifest.json. -
You can check the existing
examplesin that github repository if you wanna try stuff out.
Interesting folders under the root folder:
plugins: Location of .lua, README, manifest.json files.plugins_data: Used for data that must persist between sessions but not be manipulated by the user.config: Used for data that must persist between sessions and that can be manipulated by the user.