Кожа Визуальная

GodFather

Vassal
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE list SYSTEM "item_fake_appearance.dtd">
<list enabled="true">
<item itemId="10000">
<display itemId="26101"/>
<display itemId="26201"/>
</item>
<item itemId="10001">
<display itemId="26102"/>
<display itemId="26202"/>
</item>

</list>

i have some uniforms.
which separate to full armor and head. for some reason i can't put the visual on head in the char.
the full armor work nice but is not put the head.i have try to chance to hair but the same.
У меня есть некоторые формы.
которые разделяют на полную броню и голову. по какой-то причине я не могу поставить визуал на голову в полукокса.
полный доспех работает хорошо, но не положил голову. Я должен попытаться причесаться, но то же самое

https://prnt.sc/s64prx
https://prnt.sc/s64pp0
 
No, look at the video, when I place the "skin", the other players see me well immediately, instead I do not see my character well, I have to undo and equip the armor slots again so that it takes 1 by 1. As the fullbody armor does not wear pants, lucera does not recognize that action and does not load the skin below.
You could leave it as others see me, let it load everything immediately, without having to equip my armor. (To the second 10 of the video.)
 
Make it like formal wear, you cant attack skin with full items slots to Full body. Game client cant draw like this!
 
I will give example with the spiderman costume
Code:
item_fake_appearance.xml

<item itemId="12716"><!-- Spiderman Black Costume -->
        <display itemId="11214"/>
        <display itemId="11215"/>
        <display itemId="11221"/>
    </item>

and armor.xml

Code:
<armor id="11221" name="Spiderman Boots Costume">
    <!-- [wedding_dress] -->
    <set name="crystal_type" value="NONE"/>
    <set name="icon" value="l2wicked.suits_103_i00"/>
    <set name="price" value="5000000"/>
    <set name="type" value="NONE"/>
    <set name="weight" value="1000"/>
    <equip>
      <slot id="FEET"/>
    </equip>
<armor id="11214" name="Spiderman Costume">
    <!-- [wedding_dress] -->
    <set name="crystal_type" value="NONE"/>
    <set name="icon" value="l2wicked.suits_103_i00"/>
    <set name="price" value="5000000"/>
    <set name="type" value="NONE"/>
    <set name="weight" value="1000"/>
    <equip>
      <slot id="FORMAL_WEAR"/>
    </equip>
  </armor>
  <armor id="11215" name="Spiderman Gloves Costume">
    <!-- [wedding_dress] -->
    <set name="crystal_type" value="NONE"/>
    <set name="icon" value="l2wicked.suits_103_i00"/>
    <set name="price" value="5000000"/>
    <set name="type" value="NONE"/>
    <set name="weight" value="1000"/>
    <equip>
      <slot id="GLOVES"/>
    </equip>
  </armor>
When you equip the suit you need to unequip the chest (from the armor that you want to change, for example Dark Crystal Robe) and equip it again to apply the changes. It's not a big deal.
 
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE list SYSTEM "item_fake_appearance.dtd">
<list enabled="true">
<item itemId="10000">
<display itemId="26101"/>
<display itemId="26201"/>
</item>
<item itemId="10001">
<display itemId="26102"/>
<display itemId="26202"/>
</item>

</list>

i have some uniforms.
which separate to full armor and head. for some reason i can't put the visual on head in the char.
the full armor work nice but is not put the head.i have try to chance to hair but the same.
У меня есть некоторые формы.
которые разделяют на полную броню и голову. по какой-то причине я не могу поставить визуал на голову в полукокса.
полный доспех работает хорошо, но не положил голову. Я должен попытаться причесаться, но то же самое

https://prnt.sc/s64prx
https://prnt.sc/s64pp0
If you want to put custom item to the HAIR, you need to have a HAT that will replace the HAIR from the costume. Or you can make the costume in 1 part with the hat by changing the armorgrp.dat file
 
Items

<armor id="26103" name="Light Assassin">
<set name="crystallizable" value="false"/>
<set name="icon" value="icon.weapon_voodoo_doll_i00"/>
<set name="price" value="0"/>
<set name="type" value="NONE"/>
<set name="weight" value="1000"/>
<equip>
<slot id="FORMAL_WEAR"/>
</equip>
<cond msgId="1507">
<not>
<player olympiad="true"/>
</not>
</cond>
</armor>

<armor id="26108" name="Light Assassin">
<set name="tradeable" value="true"/>
<set name="dropable" value="true"/>
<set name="crystal_type" value="NONE"/>
<set name="icon" value="icon.item_normal141"/>
<set name="price" value="36900"/>
<set name="type" value="NONE"/>
<set name="weight" value="10"/>
<equip>
<slot id="FACE"/>
</equip>

<cond msgId="1507">
<not>
<player olympiad="true"/>
</not>
</cond>

</armor>


item fake appearance.xml


<item itemId="26108">
<display itemId="26103"/>
</item>

works great

Change all accessories and hats <slot id="FACE"/> or <slot id="HAIR_ALL"/> to <slot id="HAIR"/> profit

<armor id="9376" name="Refined Dapper Cap">

<set name="tradeable" value="true"/>
<set name="crystal_type" value="NONE"/>
<set name="dropable" value="true"/>
<set name="sellable" value="false"/>
<set name="type" value="NONE"/>
<set name="weight" value="10"/>
<equip>
<slot id="HAIR"/>
</equip>
</armor>
 
Back
Top