Black Desert Online- Armor/Outfits File Names. Please don't ask about armor swapping in this thread. (2 Viewers)

Murdock

Vivacious Visitor
Joined
Mar 29, 2016
How did you do that? I can't find the texture for the wings.
I isolated the textures that are loaded when I'm only using the wings from the Kibelius Set, and all I get is this:
View attachment 50383

And what's up with the full green and red textures? What are they for?
i dont have any idea about the green texture, the feathers of my wing is a little strange after recolor, i dont have any idea to fix it, i used this files for that, u need to color the both feathers for that (kibelius wings.rar), and its DXT5, ill upload others parts that i found on internet, unfortunately this files that i have found on internet its as been modified, the textures are cleared for a reason that i dont remember
 

Attachments

kibelius wings.rar
97.8 KB · Views: 168

kibelius files.rar
2.2 MB · Views: 165

Jeany

Casual Client
Joined
May 16, 2012
Yes, the Wings model is located in:
1_PC/n_yourclassprefix/ARMOR/14_SHO/yourclassprefix_00_SHO_0034.PAC

But how do you add that to your code, you would ask. Well, first find out which armor you want to have the wings.
Let's say I want the wings for the Agerian Armor for Sorceress.

Open your partcombinationdesc.xml (not the multiplemodeldesc), and press ctrl+f to locate the name of your armor, in this case, we are looking for PHW_02_UB_0003 (Agerian Armor).

We found these lines:
Code:
<Upperbody MeshFileName="1_Pc/2_PHW/Armor/9_Upperbody/PHW_02_UB_0003.pac">
    <Lowerbody MeshFileName="1_Pc/2_PHW/Armor/10_Lowerbody/PHW_02_LB_0003.pac"/>
    <Shoulder MeshFileName="1_Pc/2_PHW/Armor/14_Sho/PHW_02_Sho_0003.pac"/>
</Upperbody>

Now, luckily, this armor already have a Shoulder Mesh Part, but if it didn't, just add it anyway.

Now replace what's inside the <Shoulder MeshFileName=""/> with the path for the Wings (1_PC/2_PHW/ARMOR/14_SHO/PHW_00_SHO_0034.PAC)

The end result should be something like this:
Code:
<Upperbody MeshFileName="1_Pc/2_PHW/Armor/9_Upperbody/PHW_02_UB_0003.pac">
    <Lowerbody MeshFileName="1_Pc/2_PHW/Armor/10_Lowerbody/PHW_02_LB_0003.pac"/>
    <Shoulder MeshFileName="1_PC/2_PHW/ARMOR/14_SHO/PHW_00_SHO_0034.PAC"/>
</Upperbody>

Now every time you equip your Agerian Armor, it should have wings.

Le me know if you have trouble doing that.

Thank you very much but i think i wasnt really clear on what i was looking for xD

right now im wearing the Angel Costume (Kibelius Set) with Wings and using your modified full nude file so im totally naked ingame. i made the boots visible again cause i like them and now i want to make only the wings visible again aswell so im kinda like a nude Angel with wings xD
I just dont know which code makes the Wings invisible. =(
You know what i mean?

Thats my current look:

xd7Mfvb.jpg
 

BlackFireBR

Content Creator
Joined
Sep 2, 2013
Thank you very much but i think i wasnt really clear on what i was looking for xD

right now im wearing the Angel Costume (Kibelius Set) with Wings and using your modified full nude file so im totally naked ingame. i made the boots visible again cause i like them and now i want to make only the wings visible again aswell so im kinda like a nude Angel with wings xD
I just dont know which code makes the Wings invisible. =(
You know what i mean?

Thats my current look:

xd7Mfvb.jpg
Holy shh**, your character looks fit as hell. Any chance of sharing the preset with us? I loved it.

Answering your question, assuming that you are a Witch (by the one of the few things left on your character xD), the line your are looking for to remove is:
Code:
Conditional Code="U">
    <Model Index="-">1_PC/8_PWW/ARMOR/14_SHO/PWW_02_SHO_0003.PAC</Model>
    <Model Index="U">1_PC/1_PHM/Nude/PHM_ALPHA.PAC</Model>
</Conditional>

or you can simply add:
Code:
Conditional Code="U">
    <Model Index="-">1_PC/8_PWW/ARMOR/14_SHO/PWW_02_SHO_0003.PAC</Model>
    <Model Index="U">1_PC/8_PWW/ARMOR/14_SHO/PWW_02_SHO_0003.PAC</Model>
</Conditional>

To the beginning fo your multiplemodeldesc.xml file and that will override the other code as well.

Let me know how it goes
 

BlackFireBR

Content Creator
Joined
Sep 2, 2013
BlackFireBR BlackFireBR u know the code of grunil helmet for sorcer?
The is no Helmet for the Grunil sorceress. What you can do, if you want to add a helmet to the grunil set, go to your paticlemodeldesc.xml and find this block:
Code:
<Upperbody MeshFileName="1_Pc/2_PHW/Armor/9_Upperbody/PHW_03_UB_0002.pac">
    <Lowerbody MeshFileName="1_Pc/2_PHW/Armor/10_Lowerbody/PHW_03_LB_0002.pac"/>
    <Shoulder MeshFileName="1_Pc/2_PHW/Armor/14_Sho/PHW_03_Sho_0002.pac"/>
</Upperbody>
now add
Code:
<Helmet MeshFileName="PATH_TO_A_HELMET"/>
Before the </Upperbody> and replace PATH_TO_A_HELMET with the path to any helmet in the game.
 

Jeany

Casual Client
Joined
May 16, 2012
Holy shh**, your character looks fit as hell. Any chance of sharing the preset with us? I loved it.

Answering your question, assuming that you are a Witch (by the one of the few things left on your character xD), the line your are looking for to remove is:
Code:
Conditional Code="U">
    <Model Index="-">1_PC/8_PWW/ARMOR/14_SHO/PWW_02_SHO_0003.PAC</Model>
    <Model Index="U">1_PC/1_PHM/Nude/PHM_ALPHA.PAC</Model>
</Conditional>

or you can simply add:
Code:
Conditional Code="U">
    <Model Index="-">1_PC/8_PWW/ARMOR/14_SHO/PWW_02_SHO_0003.PAC</Model>
    <Model Index="U">1_PC/8_PWW/ARMOR/14_SHO/PWW_02_SHO_0003.PAC</Model>
</Conditional>

To the beginning fo your multiplemodeldesc.xml file and that will override the other code as well.

Let me know how it goes

Okay i tried this and added your code to the top of my multiblemodelesc.xml and got and endless error spam, after like 10 mins holding my return key i gave up =(
no idea whats wrong.

Jeany
 

BlackFireBR

Content Creator
Joined
Sep 2, 2013
Okay i tried this and added your code to the top of my multiblemodelesc.xml and got and endless error spam, after like 10 mins holding my return key i gave up =(
no idea whats wrong.

Jeany
Oh, my bad, I forgot a "<" at the beginning of the "
"<Conditional Code="U">"

Add it to the code and it should work fine.
 

an_undesirable

Potential Patron
Joined
Mar 9, 2016
Put this at the beginning of your multiplemodeldesc.xml file, it replaces all Kunoichi armors with the winged Kibelus.

Code:
<!------------------------------- Kunoichi Upperbody Winged Kibelius Replacer (37 Files) ------------------------------->                             
<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0001.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0035.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0037.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0040.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0048.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0052.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_02_UB_0002.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_02_UB_0003.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_02_UB_0004.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_03_UB_0001.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_03_UB_0002.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_03_UB_0003.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0001.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0002_E.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0003_W.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0006.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0007.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0008.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0009.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0010.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0011.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0012.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0013_W.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_BW_UB_0015.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_BW_UB_0017.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_BW_UB_0018.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_EW_UB_0031.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_EW_UB_0033.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_HW_UB_0031.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034.PAC</Model>
</Conditional>

Now if you want the wingless version, this is the code:
Code:
<!------------------------------- Kunoichi Upperbody Wingless Kibelius Replacer(37 Files) ------------------------------->                             
<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0001.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0035.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0037.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0040.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0048.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0052.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_02_UB_0002.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_02_UB_0003.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_02_UB_0004.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_03_UB_0001.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_03_UB_0002.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_03_UB_0003.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0001.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0002_E.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0003_W.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0006.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0007.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0008.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0009.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0010.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0011.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0012.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_10_UB_0013_W.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_BW_UB_0015.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_BW_UB_0017.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_BW_UB_0018.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_EW_UB_0031.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_EW_UB_0033.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_HW_UB_0031.PAC</Model>
    <Model Index="U">1_PC/13_PNW/ARMOR/9_UPPERBODY/PNW_00_UB_0034_01.PAC</Model>
</Conditional>

I hope it helps.

For me, these didn't work, but they worked once I changed it from the kunoichi's Kubelius armor to the Sorceress's.

BlackFireBR thx for the help man, but these codes dont work, my armor still the same

Marth Azix, see my reply
 

an_undesirable

Potential Patron
Joined
Mar 9, 2016
Does anyone have the issue I'm having with Plum and the Kubelius Armor? On my kunoichi it looks fine, but on plum it looks like the armor is sitting too forwards, and the back part of the armor disappears.
 

Attachments

  • 2016-04-11_765423325.JPG
    2016-04-11_765423325.JPG
    1.2 MB · Views: 362
  • 2016-04-11_765433721.JPG
    2016-04-11_765433721.JPG
    1.1 MB · Views: 375

BlackFireBR

Content Creator
Joined
Sep 2, 2013
Does anyone have the issue I'm having with Plum and the Kubelius Armor? On my kunoichi it looks fine, but on plum it looks like the armor is sitting too forwards, and the back part of the armor disappears.
Swapping armors between classes, something will always go wrong.

See what this user posted 2 pages ago:
I tried taking the angel suit (from the sorceress) into the game on my Kunoichi, and had no problems with it. It animated the same as it did for my sorceress. I then went into the shop wearing it, and switched to the sorceress costumes and selected it there and got this:
View attachment 50231

It was animating based on how my Kunoichi moved. By entering the shop having a different outfit on, the sorceress preview returned to normal, but exiting from looking at a normal sorcerees angel, I was met with this:
View attachment 50232

So apparently, if you swap between classes, it may work fine (as long as one of those classes isn't the Tamer or Ranger), but if the class you pulled the mesh from shows up wearing the same mesh it will be animated incorrectly, or vice versa, if you wear it right after seeing a different class wearing the same mesh. But, if you just wait for the game to forget about that mesh (it does't take much), the normal behavior returns.
View attachment 50233 View attachment 50234 View attachment 50235

Here are a couple of unreleased Kunoichi sets from JP:
View attachment 50237 View attachment 50238
00 0048

View attachment 50239 View attachment 50240
BW 0018 (The boots should be 03 0003; I only remember replacing the upperbody, and the boots aren't part of the combined set)

As I was questing recently, I found this thing. I'm really curious what it does, from its translated description.
View attachment 50236
"Empty Modified"
"Description: Transparent modifications that were exhibiting no properties. In combination with other materials through hermetic can make a modification that can be mounted on the socket of the equipment item."
It almost sounds like you can socket this into equipment to make it invisible, but that can't be right.
 

an_undesirable

Potential Patron
Joined
Mar 9, 2016
Swapping armors between classes, something will always go wrong.

See what this user posted 2 pages ago:

Thanks, but the problem occured when I loaded Plum first, right after the game opened up. The other user's issue happened to me as well, but I fixed it by going back to the character selection screen and back again.
 

an_undesirable

Potential Patron
Joined
Mar 9, 2016
Thanks, but the problem occured when I loaded Plum first, right after the game opened up. The other user's issue happened to me as well, but I fixed it by going back to the character selection screen and back again.
I can confirm this is a problem because of Plum, none of the other classes have the issue, and the issue occurs with different types of armor.
 

PrincessNicky

Content Creator
Joined
May 11, 2012
I can confirm this is a problem because of Plum, none of the other classes have the issue, and the issue occurs with different types of armor.

We don't have Plum yet in EU/NA. It's likely the basebody is slightly different to the ones we have so far and that some if not all armor swaps won't work properly.
 

BlackFireBR

Content Creator
Joined
Sep 2, 2013
Moving to this page:


Full Set Replacer Release
To save you guys some time, manually swapping the whole set of a costume to the the full look of the costume, I just made a file that , whenever you swap the Upperbody part, it swaps the Full Set, for all the costume that is on the first page.
cost1.jpg

Instructions:
- Download the: FullSetReplacer
- Extract the partcombinationdesc.xml file to "C:\Program Files (x86)\Black Desert Online\character\".
- Do the armor swapping in the multiplemodeldesc.xml file like you would normally do.
- Now whenever you equip just the Armor of the model you swapped, you will get the Full Set of the Costume (as long as the costume is one of the listed here).


Also, I'm uploading the files I made, to batch-test all the costumes on the first page.
It replaces the costumes from the slots in character creation with the costumes to test.
batch_test_costumes.zip
 
Last edited:

Murdock

Vivacious Visitor
Joined
Mar 29, 2016
i have changed the grunil set of kunoichi for kibelius and work fine, without any trouble (sorcer to kunoichi)
2016-04-06_169912840.JPG
2016-04-07_33990845.JPG
2016-04-08_42451165.JPG
 

infinity496

Content Creator
Joined
Apr 26, 2012
I found what I believe are 5 typos in the undewear codes, and I've changed them (in green) below. With these adjustments made, this code list works for every underwear available to Kunoichi (all but the White Zebra), and of every one which I've tested on the Witch. The point being that I've confirmed all of these codes on at least 1 class.

(Images removed for easier loading/reading)
...​
-----------------------------------------------------------------------------------------------------------------------------------------
Underwear:
-------------- Default Underwear ----------------
-------------- _00_UW_0001.PAC ---------------

---------------
Queen Heart Underwear ----------------- Sileshi Underwear (Yellow Underwear) ---
--------------- _00_UW_0032_01.PAC ---------------------------------- _00_UW_1040.PAC

-----------
Le Vladian (White Underwear) ------------------------ Le Vladian (No Stockings) ------------
--------------------
_00_UW_0034.PAC ------------------------------------- _00_UW_1034.PAC ------------------

--- Vivid Blooming Underwear (Blue Underwear)---- Vivid Blooming Underwear (No Stockings)
--------------- _00_UW_0008.PAC ------------------------------------_00_UW_1008.PAC ---------------

---------------- Cavaro Underwear ---------------------------- Dream Laced Underwear ----------------
------------ _00_UW_0030.PAC -------------------------------- _00_UW_0010.PAC -----------------

-------------------- Epheria Marine Underwear ------------- Epheria Marine Underwear (No Stockings)
------------------- _00_UW_0035.PAC ------------------------------------- _00_UW_1035.PAC --------------------

------------- Black Garter Belt Underwear ------------- Jasmin Garter Belt Underwear ----------
----------------- _00_UW_0004.PAC ----------------------------------- _00_UW_0006.PAC ---------------------


---------- White Zebra Underwear -------------------- White Zebra Underwear(No Stockings)--------------
----------------_00_UW_0014.PAC ---------------------------------- _00_UW_1014.PAC ----------------


----- Black Zebra Underwear -------------------------- Black Zebra Underwear(No Stockings)
--------------------- _00_UW_0003.PAC ---------------------------------- _00_UW_1003.PAC

------------- Silk Corset Underwear ---------------------------------- Rage Underwear -----------------------
------------- _00_UW_0005.PAC -------------------------------------- _00_UW_1015.PAC -----------------------

------------ Leopard Underwear ------------------------------ Leopard Underwear (No Stockings)---------
--------------_00_UW_0002.PAC ---------------------------------_00_UW_1002.PAC -------------------


------------- Checked Beige Underwear ---------------------Checked Beige Underwear (No Stockings)
-------------------- _00_UW_0007.PAC ---------------------------------_00_UW_1007.PAC -----------------------


-------------- Lahr Arcien Underwear --------------------------Lahr Arcien Underwear (No Stockings)------------------------------- _00_UW_0031.PAC ---------------------------------- _00_UW_1031.PAC -----------------------

-------
Lahr Arcien Underwear A
----------------- _EW_UW_0031.PAC

...

Also, for most classes, the Dream Laced is also available as _00_UW_1010.PAC, which is the only way to get it for Witches and Plum (at least on the JP client). The only female class that cannot use this code is the Tamer, and she simply doesn't have that underwear at all. I should note that I've only tested this code on Kunoichi, but have confirmed that the file exists for all other female classes; it also follows the general convention, which is that underwear with stockings start with "0" while the ones without start with "1".
 

BlackFireBR

Content Creator
Joined
Sep 2, 2013
I found what I believe are 5 typos in the undewear codes, and I've changed them (in green) below. With these adjustments made, this code list works for every underwear available to Kunoichi (all but the White Zebra), and of every one which I've tested on the Witch. The point being that I've confirmed all of these codes on at least 1 class.

(Images removed for easier loading/reading)


Also, for most classes, the Dream Laced is also available as _00_UW_1010.PAC, which is the only way to get it for Witches and Plum (at least on the JP client). The only female class that cannot use this code is the Tamer, and she simply doesn't have that underwear at all. I should note that I've only tested this code on Kunoichi, but have confirmed that the file exists for all other female classes; it also follows the general convention, which is that underwear with stockings start with "0" while the ones without start with "1".
You are right! It was wrong! This happened because originally I organized this part with 3 underwear per line, but when I put it inside the "spoiler" tag, it got all messed up, so I had to do some moving and I got really confused with where goes where.

Thank you for finding this and correcting it for me. I've already updated the first post.

i have changed the grunil set of kunoichi for kibelius and work fine, without any trouble (sorcer to kunoichi)
Amazing! What underwear mod are you using?
 

eyenight

Content Creator
Joined
Apr 27, 2012
For me, these didn't work, but they worked once I changed it from the kunoichi's Kubelius armor to the Sorceress's.
As I know, kunoichi don't have her own kibelius yet. You can use kibelius from other class, but it might have some problems.

Does anyone have the issue I'm having with Plum and the Kubelius Armor? On my kunoichi it looks fine, but on plum it looks like the armor is sitting too forwards, and the back part of the armor disappears.
Plum has her own kibelius. Swap it with plum's, not with other class.
 

Murdock

Vivacious Visitor
Joined
Mar 29, 2016
You are right! It was wrong! This happened because originally I organized this part with 3 underwear per line, but when I put it inside the "spoiler" tag, it got all messed up, so I had to do some moving and I got really confused with where goes where.

Thank you for finding this and correcting it for me. I've already updated the first post.


Amazing! What underwear mod are you using?
its dream lance, code 00 0010, the grunil didnt work, i think it only work if i have a helmet to be replaced, and the file u call to be changed is "partcombinationdesc" right?

As I know, kunoichi don't have her own kibelius yet. You can use kibelius from other class, but it might have some problems.


Plum has her own kibelius. Swap it with plum's, not with other class.
see my last post, I put the kibelius armor on kunoichi using the sorcer code and it worked without a problem
 

Users who are viewing this thread

Top


Are you 18 or older?

This website requires you to be 18 years of age or older. Please verify your age to view the content, or click Exit to leave.