помогите с командой

securao

Vagabond
[RU]

Я создаю интерфейс, которым можно будет экипировать РЕМЕНЬ, ТАЛИСМАН, БРАСЛЕТ, как мне создать часть тела для экипировки этих предметов?

`<item id='63030' type="Armor" name="Ремень для новичков [Ремень]">
<set name="default_action" val="equip" />
<set name="armor_type" val="NONE" />
<set name="bodypart" val="Пояс" />
</item>`

Пример кода, который я поставил "Bodypart" val="Belt", выдает ошибку xml, когда я подключаюсь к серверу, потому что, я думаю, у него нет этой БД

в клиентском интерфейсе уже есть скрипт, чтобы при экипировке предмет попадал в нужное место

[EN]

I am creating an interface that will be possible to equip BELT, TALISMAN, BRACELET, how can I create a bodypart to equip the BELT.

`<item id='63030' type="Armor" name="Newbie Belt [ Belt ]">
<set name="default_action" val="equip" />
<set name="armor_type" val="NONE" />
<set name="bodypart" val="Belt" />
</item>`

Example of a code like I put "Bodypart" val="Belt" gives the xml error when I go to connect the server because it doesn't have this DB I think

the client interface already has a script so that when you equip the item it goes to the correct place
 
but is it possible for me to create an ETC_ITEM and equip it in an inventory slot?
No, because game client have slot ID.
it takes an incredible amount of work to add a new slot to an old client
 
Back
Top