MMOGames Posted April 26 Posted April 26 Hello Guys! I'm trying to come up with a very simple mod to let Drow Female access Female Half-Elfs Heads 02. Im doing this: Step-by-Step Guide (Patch 8) Mod Folder Structure Create the mod folder with the following structure, directly in the Mods folder: C:\Users\[NAME]\AppData\Local\Larian Studios\Baldur's Gate 3\Mods\FemaleDrowHead\ Inside this folder, create the subfolder Settings to include the configuration file. modsettings.lsx File Inside the FemaleDrowHead folder, create a modsettings.lsx file with the following content: XML <?xml version="1.0" encoding="utf-8"?> <ModSettings> <Mod> <UUID>e7e84799-039e-40c1-acb0-572657b5ef68</UUID> <Enabled>1</Enabled> <Name>FemaleDrowHead</Name> <Priority>0</Priority> </Mod> </ModSettings> Note: This file is now inside the mod folder, preventing the game from overwriting it. CharacterCreationAppearanceVisuals.lsx File Inside the FemaleDrowHead\Settings\ folder, create the CharacterCreationAppearanceVisuals.lsx file with the following content: XML <?xml version="1.0" encoding="utf-8"?> <save> <version major="4" minor="0" revision="0" build="0" /> <region id="CharacterCreationAppearanceVisuals"> <node id="CharacterCreationAppearanceVisual"> <attribute id="RaceUUID" value="4f5d1434-5175-4fa9-b7dc-ab24fba37929" /> <attribute id="Gender" value="Female" /> <attribute id="BodyType" value="0" /> <attribute id="Slot" value="Head" /> <attribute id="Index" value="2" /> <attribute id="VisualResourceID" value="89909f69-a144-64a5-dddc-ef1d15b505a0" /> </node> </region> </save> Cache Cleanup Delete the cache to ensure the game loads the latest configuration: C:\Users\[NAME]\AppData\Local\Larian Studios\Baldur's Gate 3\LevelCache In-Game Test Start the game. Go to character creation. Select Female Drow. The Drow Head 3 will be replaced by the Half-Elf Female Head 2. Any Help would be appreciated
Recommended Posts