You are viewing a potentially older version of this package.
View all versions.
Hell2Modding
Lua Mod Loader for Hades 2
Date uploaded | 6 months ago |
Version | 1.0.30 |
Download link | Hell2Modding-Hell2Modding-1.0.30.zip |
Downloads | 424 |
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.exe
inside 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.cfg
file
Creating mods
-
Define a
main.lua
file in which to code your mod. -
Create a
manifest.json
file 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.lua
file and themanifest.json
file in the folder you've just created. -
Place the newly created folder in the
plugins
folder 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
examples
in 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.