-
-
Notifications
You must be signed in to change notification settings - Fork 70
How To Assign DNAs (Portraits) To Characters
zumbak04 edited this page May 20, 2021
·
15 revisions
On this page, we will explain how to copy DNAs from the Ruler Designer and move them into the game files so the historical characters have pre-scripted look:
- Open the Ruler Designer and create the look of a historical character.
- Once done, hit Copy DNA.
Images
- Open any text editor like Notepad++.
- Paste your DNA there. You will see something like this:
Images
- Copy the
genes
enclosed block. If you use Notepad++, it will highlight where this block opens and closes once you click near a brace like on the screenshot above. YOU MUST COPY THE ENTIRE BLOCK, FROM THEgenes
TO THE CLOSING BRACE. - Open suitable file (each race has its own file there) in
Crusader Kings III\mod\Warcraft-Guardians-of-Azeroth-2\common\dna_data
with any text editor. - Create a new enclosed block there and copy the
genes
block inside theportrait_info
block. Here is its basic template:
<Character_name_here>_dna = {
portrait_info = {
<Copy genes block here>
}
enabled=yes
}
Images
- Scroll down to the end of the
genes
block, you will find theclothes
line there. Delete it. Otherwise, your character may end up wearing bedchamber clothes.
Images
-
<Character_name_here>_dna
is the name of your DNA data, we will use it soon. Openmod\Warcraft-Guardians-of-Azeroth-2\history\characters
. That's where all the characters are listed. Search for your character name in these files either using Windows search or Total Commander. - Find the block of your character and put
dna = <Character_name_here>_dna
inside. - Done! Open the game to see if the character looks right.