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:


Quote
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

Code
<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.

Inside the FemaleDrowHead\Settings\ folder, create the CharacterCreationAppearanceVisuals.lsx file with the following content:

Code
<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>


But It wont work. Anyone could help me with this?

Last edited by emery; 26/04/25 11:12 PM.