Editing Modding:Creating Race Mods

Jump to navigation Jump to search
Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.

Latest revision Your text
Line 1: Line 1:
{{Modding box}}{{Modding sidebar}}
<table class="ombox ombox-notice plainlinks" role="presentation"><tr><td class="mbox-image">[[File:Bliss_Spores_Condition_Icon.webp|35px|link=]]</td><td class="mbox-text">This page is a [[Modding:Modding resources|modding page]], and follows its own rules and standards separate from the rest of the wiki.</td></tr></table>{{Modding sidebar}}
So, you wanna make a custom race for BG3. How do you do that, though? This guide will show you how.
Races.
 
[https://github.com/BG3-Community-Library-Team/BG3-Community-Library/wiki/Building-a-Race-Mod Building a Race Mod Guide]
 
[https://www.nexusmods.com/baldursgate3/mods/4515 Whispers of the Resource - Custom Race and Subrace Template]
 
== CharacterVisuals _merged.lsf.lsx ==
Here is where you're going to set up the default look for your race, aka how it looks when the player first selects them on the race menu. This can include hair, head, eyes, tattoos, makeup, and more.
 
Here are some nodes you'll find in the file, and what they do.<syntaxhighlight lang="xml">
<node id="Object">
    <attribute id="ForcePresetValues" type="bool" value="True" />
    <attribute id="GroupName" type="FixedString" value="02Skin Properties" />
    <attribute id="MapKey" type="FixedString" value="02Skin Properties" />
    <attribute id="MaterialPresetResource" type="FixedString" value="7b0d0147-72f1-6b22-b32b-0bfebd47cb85" /> This sets default skin color
</node>
</syntaxhighlight>Skin Color<syntaxhighlight lang="xml">
<node id="Object">
    <attribute id="ForcePresetValues" type="bool" value="True" />
    <attribute id="GroupName" type="FixedString" value="06Eyes" />
    <attribute id="MapKey" type="FixedString" value="06Eyes" />
    <attribute id="MaterialPresetResource" type="FixedString" value="da5e8c41-2f06-213f-855b-41291f26e3a6" /> This sets default eye color
</node>
</syntaxhighlight>Eye Color<syntaxhighlight lang="xml">
<node id="Object">
    <attribute id="ForcePresetValues" type="bool" value="True" />
    <attribute id="GroupName" type="FixedString" value="05Makeup" />
<attribute id="MapKey" type="FixedString" value="05Makeup" />
<attribute id="MaterialPresetResource" type="FixedString" value="d4bf8e65-39c8-f87b-7e2a-ef5d4756aaca" /> This sets default makeup
</node>
</syntaxhighlight>Makeup<syntaxhighlight lang="xml">
<node id="Object">
    <attribute id="ForcePresetValues" type="bool" value="True" />
    <attribute id="GroupName" type="FixedString" value="03Hair" />
<attribute id="MapKey" type="FixedString" value="03Hair" />
<attribute id="MaterialPresetResource" type="FixedString" value="536e441f-3fee-c04a-9698-6608ebe70824" /> This sets default hair color
</node>
</syntaxhighlight>Hair Color<syntaxhighlight lang="xml">
<node id="Slots">
    <attribute id="Bone" type="FixedString" value="" />
    <attribute id="Slot" type="FixedString" value="Head" />
    <attribute id="VisualResource" type="FixedString" value="555b1e26-9a79-c11b-134d-a557b317bd93" /> This sets default head
</node>
</syntaxhighlight>Head<syntaxhighlight lang="xml">
<node id="Slots">
<attribute id="Bone" type="FixedString" value="" />
<attribute id="Slot" type="FixedString" value="Hair" />
<attribute id="VisualResource" type="FixedString" value="1dc629c7-382c-3090-e72f-c7f4d44d5e3d" /> This sets default hair style
</node>
</syntaxhighlight>Hair Style
 
== CharacterCreationAppearanceVisuals.lsx ==
Here is where you'll define all of the heads you want your race to use.<syntaxhighlight lang="xml">
<node id="CharacterCreationAppearanceVisual">
    <attribute id="BodyShape" type="uint8" value="0"/>
    <attribute id="BodyType" type="uint8" value="0"/>
    <attribute id="DefaultSkinColor" type="guid" value="fbfbdac7-b88b-840d-2601-e37aa45663ae"/>
    <attribute id="DisplayName" type="TranslatedString" handle="DISPLAYHANDLEHERE" version="3"/>
    <attribute id="RaceUUID" type="guid" value="RACEUUIDHERE"/>
    <attribute id="SlotName" type="FixedString" value="Head"/>
    <attribute id="UUID" type="guid" value="UNIQUEUUIDHERE"/>
    <attribute id="VisualResource" type="guid" value="VISUALRESOURCEUUIDHERE"/>
</node>
</syntaxhighlight>Here is an example node for adding one head. To find the correct Race UUID, see [https://bg3.wiki/wiki/Modding:Race_UUID this page].
{{Modding navbox}}
[[Category:Race and class modding]]
Contributions are considered to be licensed under CC BY-NC-SA 4.0 and (where possible) CC BY-SA 4.0. See Copyrights for details. Per our Content Rules, you are promising that any new text you add was written by yourself, or is available under a license that permits its inclusion in bg3.wiki. Do not submit copyrighted work without permission!

To edit this page, please answer the question that appears below (more info):

Cancel Editing help (opens in new window)