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

SycoxLol

Potential Patron
Joined
Apr 15, 2016
BlackFireBR BlackFireBR OMG tyty your da best <3
u6mb9C0.jpg
 

csd

Potential Patron
Joined
Jun 6, 2016
I feel like I am doing something wrong or misunderstanding the dye section.

<Slot DefaultColor="0x02550">0</Slot>

That should be the color green right? For whatever reason it comes up as blue in game.
 

2903jb

Potential Patron
Joined
May 22, 2012
If you used the "unequip all things from you hand/boot file" and it "still unequips everything", I think it's doing what is supposed to do, isn't it? 0.o
well it is, but i wanted to modify it so the helmet and boots were showing an the pirate corsair tamer outfit, so i deleted the lines you refered to, but it's still unequipping everything, what i want to do is modify the file so pirate corsair only unequips armor, not helmet and boots
 

BlackFireBR

Content Creator
Joined
Sep 2, 2013
well it is, but i wanted to modify it so the helmet and boots were showing an the pirate corsair tamer outfit, so i deleted the lines you refered to, but it's still unequipping everything, what i want to do is modify the file so pirate corsair only unequips armor, not helmet and boots
Oh, now I see what you mean.
Can you tell me which armor you want to use, with the Pirate Boots and Gloves?
 

2903jb

Potential Patron
Joined
May 22, 2012
Oh, now I see what you mean.
Can you tell me which armor you want to use, with the Pirate Boots and Gloves?
no armor, i want the armor to be nude, but i want her to have boots, hat and gloves on :)
if it's not clear, i own the pirate corsair costumes, so i need nothing swapped around, simply for her to be nude, with her boots and hat showing
 
Last edited:

BlackFireBR

Content Creator
Joined
Sep 2, 2013
no armor, i want the armor to be nude, but i want her to have boots, hat and gloves on :)
if it's not clear, i own the pirate corsair costumes, so i need nothing swapped around, simply for her to be nude, with her boots and hat showing
I got it!

Add this to the beginning of your partcombinationdesc.xml:
Code:
<!-- Tamer Pirate Corsair Hands Definition -->
<Upperbody MeshFileName="1_PC/5_PBW/ARMOR/11_HAND/PBW_HW_HAND_0031.PAC">
    <Foot MeshFileName="1_PC/5_PBW/ARMOR/12_FOOT/PBW_HW_FOOT_0031.PAC"/>
    <Helm MeshFileName="1_PC/5_PBW/ARMOR/13_HEL/PBW_HW_HEL_0031.PAC"/>
</Upperbody>

and this to the beginning of your multiplemodeldesc.xml
Code:
<Conditional Code="U">
    <Model Index="-">1_PC/5_PBW/ARMOR/9_UPPERBODY/PBW_HW_UB_0031.PAC</Model>
    <Model Index="U">1_PC/5_PBW/ARMOR/11_HAND/PBW_HW_HAND_0031.PAC</Model>
</Conditional>

This is what you should get:
Untitled-2.jpg
 
Last edited:

2903jb

Potential Patron
Joined
May 22, 2012
I got it!

Add this to the beginning of your partcombinationdesc.xml:
Code:
<!-- Tamer Pirate Corsair Hands Definition -->
<Upperbody MeshFileName="1_PC/5_PBW/ARMOR/11_HAND/PBW_HW_HAND_0031.PAC">
    <Hand MeshFileName="1_PC/5_PBW/ARMOR/11_HAND/PBW_HW_HAND_0031.PAC"/>
    <Foot MeshFileName="1_PC/5_PBW/ARMOR/12_FOOT/PBW_HW_FOOT_0031.PAC"/>
    <Helm MeshFileName="1_PC/5_PBW/ARMOR/13_HEL/PBW_HW_HEL_0031.PAC"/>
</Upperbody>

and this to the beginning of your multiplemodeldesc.xml
Code:
<Conditional Code="U">
    <Model Index="-">1_PC/5_PBW/ARMOR/9_UPPERBODY/PBW_HW_UB_0031.PAC</Model>
    <Model Index="U">1_PC/5_PBW/ARMOR/11_HAND/PBW_HW_HAND_0031.PAC</Model>
</Conditional>

This is what you should get:
Perfect, it worked, thanks a lot :D
 

Nharea

Vivacious Visitor
Joined
Apr 24, 2016
I feel like I am doing something wrong or misunderstanding the dye section.

<Slot DefaultColor="0x02550">0</Slot>

That should be the color green right? For whatever reason it comes up as blue in game.

Try something like this :
<Slot DefaultColor="0x00025500">0</Slot>

The hex color codes all start with "0x00" and then your color code compose of 6 digits ("025500" in your case I suppose)
 

NaeRei

Avid Affiliate
Joined
May 7, 2016
hello everyone it possible to hide the secondary weapon of the plum?
I currently use white horn bow

im tried to switch or hide but nothing work plz help me
Code:
<!-- For Maehwa (Plum) -->
<Conditional Code="U">
    <Model Index="-">1_PC/22_PKWW/WEAPON/36_SHOTBOW/PKWW_01_SBW_0004.PAC</Model>
    <Model Index="U">1_PC/22_PKWW/WEAPON/36_SHOTBOW/PKWW_BW_SBW_0017.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/22_PKWW/WEAPON/36_SHOTBOW/PKWW_01_SBW_0004_IN.PAC</Model>
    <Model Index="U">1_PC/22_PKWW/WEAPON/36_SHOTBOW/PKWW_BW_SBW_0017_IN.PAC</Model>
</Conditional>
my try to hide
Code:
<Conditional Code="U">
    <Model Index="-">1_PC/22_PKWW/WEAPON/36_SHOTBOW/PKWW_01_SBW_0004.PAC</Model>
    <Model Index="U">1_PC/1_PHM/Nude/PHM_ALPHA.PAC</Model>
</Conditional>

<Conditional Code="U">
    <Model Index="-">1_PC/22_PKWW/WEAPON/36_SHOTBOW/PKWW_01_SBW_0004_IN.PAC</Model>
    <Model Index="U">1_PC/1_PHM/Nude/PHM_ALPHA_IN.PAC</Model>
</Conditional>
(try with and without _IN on the ALPHA.PAC)
Have you figured it out? thanks
 

csd

Potential Patron
Joined
Jun 6, 2016
Try something like this :
<Slot DefaultColor="0x00025500">0</Slot>

The hex color codes all start with "0x00" and then your color code compose of 6 digits ("025500" in your case I suppose)

Thanks! Didn't realize it was suppose to start with 0x00 just 0x.
 

Dazta3

Potential Patron
Joined
May 26, 2016
They're bein sneaky now with the patches guy's an girl's so remember to turn ur mod's off after every game yea! ;]
 

PinkNyao

Content Creator
Joined
Mar 22, 2016
wow, ok thanks for letting us know.

EDIT: I think I am going to go ask Daum on the official forums to find out why we are suddenly getting all these 800mb stealth patches. Seems very odd for an MMO.

EDIT2: Oh, just found out, the patches are for Valencia; Daum is slowly putting in stuff for Valencia so it will be ready when it launches next month I believe.
 
Last edited:

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.