spacehamster / HadesExtender

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hades Extender

Experimental project to extend the scripting capabilities of the game Hades.

Debugging

To debug hades:

  • Install the vscode lua debugger
  • Create a workspace with vscode
  • Add the folders Hades/Content/Scripts and Hades/Content/Mods to the workspace
  • Create a launch.json config and add the following:
{
    "name": "attach-hades",
    "type": "lua",
    "request": "attach",
    "workingDirectory": "C:\\Program Files (x86)\\Steam\\steamapps\\common\\Hades",
    "sourceBasePath": "C:\\Program Files (x86)\\Steam\\steamapps\\common\\Hades",
    "listenPublicly": false,
    "listenPort": 56789,
    "encoding": "UTF-8"
}
  • Run the debugger named 'attach-hades' in vscode.
  • Launch hades using HadesExtender in debug mode with the command HadesExtender.exe -d

About

License:MIT License


Languages

Language:C 48.9%Language:HTML 25.9%Language:Lua 15.4%Language:C# 4.3%Language:Makefile 1.9%Language:C++ 1.5%Language:TeX 1.0%Language:Shell 0.2%Language:PostScript 0.2%Language:CSS 0.2%Language:Batchfile 0.2%Language:CMake 0.1%Language:Python 0.1%Language:Perl 0.0%