Jump to content
  • 0

[Help] Edit Item doesn't work


Question

Posted

Hi there,

 

I've tried to edit stats of "Coin of Luck"-Item (ID: 4037).

I wanted to make this Item not-destroyable and want to make it possible to transfer this item via dimensional merchant.

 

so I've changed this

 

	<item id="4037" type="EtcItem" name="Coin of Luck">
	<set name="icon" val="icon.etc_coins_gold_i00" />
	<set name="immediate_effect" val="1" />
	<set name="material" val="paper" />
	<set name="price" val="1" />
	<set name="is_tradable" val="false" />
	<set name="is_dropable" val="false" />
	<set name="is_sellable" val="false" />
	<set name="is_depositable" val="false" />
	<set name="is_stackable" val="true" />
</item>

 

to this

 

	<item id="4037" type="EtcItem" name="Coin of Luck">
	<set name="icon" val="icon.etc_coins_gold_i00" />
	<set name="immediate_effect" val="1" />
	<set name="material" val="paper" />
	<set name="price" val="1" />
	<set name="is_tradable" val="false" />
	<set name="is_dropable" val="false" />
	<set name="is_sellable" val="false" />
        <set name="is_depositable" val="true" />
                <set name="is_destroyable" val="false" />
                <set name="is_freightable" val="true" />
	<set name="is_stackable" val="true" />
</item>

 

But this doesn't work, 'cause I can still destroy the item and still can't transfer via the dimensional merchant. so what's the mistake please?

11 answers to this question

Recommended Posts

  • 0
Posted

I took the two lines from this item, which is tradeable via dimensional merchant and undestroyable, too.

 

<item id="13300" type="EtcItem" name="Feather of Blessing (Event)">
	<set name="icon" val="icon.blessed_feather_i00" />
	<set name="material" val="liquid" />
	<set name="is_tradable" val="false" />
	<set name="is_dropable" val="false" />
	<set name="is_destroyable" val="false" />
	<set name="is_sellable" val="false" />
	<set name="is_stackable" val="true" />
	<set name="is_freightable" val="true" />
</item>

 

I thought it would work if I just take the "is destroyable"-line and the "is-freightable"-line and copy it to the other item...but this doesn't wokr, because you can still destroy the item and you still can not send ist to another character via dimensional merchant...

 

i have no idea, why.

  • 0
Posted

4000-4399.xml (Item-ID is 4037)

and as a sample I used Item 13300 in 13300-???.xml

that's the item where I copied the 2 lines (is_destroyable and is_freightable) from.

 

hope this will help and thanks!

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...