This module enables Baldur's Gate 3 support in Candor Mod Manager.
Thanks to figs999 and Norbyte for the Patch3ModFixer. Thanks to Norbyte for LSLib.
You can either follow the steps below,
Or use the Tool from ShinyHobo, which can be found here
For loose file mods, please follow the guide here
- Mods should include all .pak files in the root of the archive
- Along with an "info.json" file
.
+-- someName.pak
+-- someOtherName.pak (multiple pak's are optional)
+-- info.json
The info.json contains infomation about your mod that is required by the game to load your mod.
it may look similar to this:
folderName must match that of the .pak file!
{
"mods": [
{
"modName": "someName",
"UUID": "6b0cd32d-4bf6-462a-8082-2c76d9fbbd22",
"folderName": "someName",
"version": "789749832",
"MD5": ""
},
{
"modName": "someOtherName",
"UUID": "6b0cd32d-4bf6-462a-8082-2c76d9fbbd22",
"folderName": "someOtherName",
"version": "789749832",
"MD5": ""
}
]
}