Page 1 of 1
How can I rename a item?
Posted: Sun Feb 24, 2013 1:15 pm
by Bozolika
If you want to receive support we need this info to help you properly.
» Find Revision
L2J Revision
Number: 5722
L2JDP Revision
Number: 9330
Hi,
Please help me. How can I rename a item?
Re: How can I rename a item?
Posted: Sun Feb 24, 2013 1:42 pm
by JMD
well you'll have to edit the client and talking about it is forbidden here so you will have better luck on some other forum like maxcheaters.
Re: How can I rename a item?
Posted: Sun Feb 24, 2013 1:44 pm
by _Blade_
or you create a custom item.
so long _Blade_
Re: How can I rename a item?
Posted: Sun Feb 24, 2013 1:54 pm
by Bozolika
_Blade_ wrote:or you create a custom item.
so long _Blade_
How can I create a custom item? :S
Re: How can I rename a item?
Posted: Sun Feb 24, 2013 2:04 pm
by JMD
_Blade_ wrote:or you create a custom item.
so long _Blade_
Wont he have to add that custom item to the system ? How is it going to show up ingame?
Re: How can I rename a item?
Posted: Sun Feb 24, 2013 2:08 pm
by _Blade_
You must create a new file in the item/custom folder for example 5000-5099.xml
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../xsd/items.xsd"> <item id="50000" type="EtcItem" name="Blooded Fabric"> <set name="displayId" val="4295" /> <set name="icon" val="icon.etc_piece_of_cloth_red_i00" /> <set name="immediate_effect" val="1" /> <set name="material" val="cloth" /> <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" /> <set name="is_questitem" val="true" /> </item></list>
important is that you have a Display Id this is the icon that you see later in game
and now you can change the name Bloodes Fabric in that what you want.
so long _Blade_
Re: How can I rename a item?
Posted: Sun Feb 24, 2013 2:20 pm
by Bozolika
Thank you very much Blade!
Re: How can I rename a item?
Posted: Mon Feb 25, 2013 9:31 am
by Bozolika
_Blade_ wrote:You must create a new file in the item/custom folder for example 5000-5099.xml
Code: Select all
<?xml version="1.0" encoding="UTF-8"?><list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../xsd/items.xsd"> <item id="50000" type="EtcItem" name="Blooded Fabric"> <set name="displayId" val="4295" /> <set name="icon" val="icon.etc_piece_of_cloth_red_i00" /> <set name="immediate_effect" val="1" /> <set name="material" val="cloth" /> <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" /> <set name="is_questitem" val="true" /> </item></list>
important is that you have a Display Id this is the icon that you see later in game
and now you can change the name Bloodes Fabric in that what you want.
so long _Blade_
I did it, and i can spawn it to my inventory. The game write to me is "spawned in my inventory" but I not see it in my inventory.
Help me, why?
Re: How can I rename a item?
Posted: Mon Feb 25, 2013 11:04 am
by Cresceus
<item id="50000" type="EtcItem" name="Blooded Fabric">
The name attribute is just for the system messages, not for the icon name. The icon names are client side.
So you have to equip the spawned item (if it's equipable) and then you can see the custom name in the system message. Something like "You have equiped Nightmare Robe Fantastic."
If i'm wrong, i apologize.
Re: How can I rename a item?
Posted: Mon Feb 25, 2013 12:37 pm
by Bozolika
Cresceus wrote:<item id="50000" type="EtcItem" name="Blooded Fabric">
The name attribute is just for the system messages, not for the icon name. The icon names are client side.
So you have to equip the spawned item (if it's equipable) and then you can see the custom name in the system message. Something like "You have equiped Nightmare Robe Fantastic."
If i'm wrong, i apologize.
And how can I change the custom item name. When look at the inventory?
Example:
ID 17130
Name Freesia Bouquet (Event)
and change te name to Love Flower in custom item name at ID 50000?
Re: How can I rename a item?
Posted: Mon Feb 25, 2013 1:22 pm
by Cresceus
As far as i know it is not possible without client modding...
And this is not allowed to be discussed here.
Re: How can I rename a item?
Posted: Mon Feb 25, 2013 3:02 pm
by Asmodaius
That's true.
Even if you change the name in the xml files, you won't achieve anything, because client uses it's own files in order to display item names.
Re: How can I rename a item?
Posted: Sun Mar 22, 2015 3:11 pm
by Amrod
Hello
Since there is this post already, I would like to grap it up again.
because client uses it's own files in order to display item names.
Thats true, but there are some new configs that weren't available back then. Im talking about
CustomItemsLoad = True and
CustomSkillsLoad = True. So I did create a new item inside the data/stats/items/custom Folder and i can use it in. I did NOT edit the Client, its just Server sided. So I was wondering again if there is no Chance to Change the Name?
Now, it takes the Name of the item I have in
Code: Select all
<set name="displayId" val="6658" /> <!-- GIRANSTORE -->
. Its the baium ring. And because I dont change any Client files and just use the regular config and custom item solution, shouldn't there be a way to Change the Name as well?
If I spawn the item in my inventory, it says "spawned 1 GIRANSTORE (41000) in .... inventory". But in the inventory itself, it Displays the Name of the item from the Displayid.
Regards
Re: How can I rename a item?
Posted: Sun Mar 22, 2015 10:54 pm
by Cresceus
No way without client modding.