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!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock