Resolved Custom Item type=RUNE

HuzarO

Vassal
Customer
Hi,

I've made a custom item with type RUNE so it gives passive skills when in inventory.

XML:
<etcitem id="91669" name="Mark of Lesser Weight" add_name="30 Days">
        <set name="class" value="OTHER" />
        <set name="crystal_type" value="NONE" />
        <set name="icon" value="icon.etc_badge_gold_i00" />
        <set name="price" value="0" />
        <set name="stackable" value="true" />
        <set name="type" value="RUNE" />
        <set name="weight" value="0" />
        <set name="tradeable" value="false" />
        <set name="dropable" value="false" />
        <set name="destroyable" value="true" />
        <set name="sellable" value="false" />
        <set name="temporal" value="true"/>
        <set name="durability" value="43200"/>
        <skills>
            <skill id="90156" level="1" />
        </skills>
    </etcitem>

It works, it gives the skill, but the problem here is that it is shown twice in inventory, once in `All` and once in `Quest` tab. I have this item set `inventory_type=quest` in client, so it should show on quest only, same as when in server xml item is `<set name="type" value="QUEST" />`, but if item has this type, it does not give the skill when in inventory.

The best solution would be to simply have the `<set name="type" value="QUEST" />` which will also give skills as the type RUNE does, but it will be processed properly on the client if it's type QUEST.

Please let me know if it's something you @Deazer could look at.
 
Last edited:
Back
Top