Is it possible to rename items via xml editing?

11/22/2011 13:19 dhyftn#1
I've used an extractor to see every xml from aion and have looked through a bunch of places to try and find the proper one for item name editing but couldn't find it. I figured it would be as simple as going to the items folder and going in client_items.xml but the names are completely off. I found something named itemlist.xml from aiondatabase but didn't find anything like that in aions folder.
11/22/2011 15:29 Blastradius#2
Data\Items\client_items.xml contains references to language-specific item names:

<desc>STR_SWORD_CIRCULOUS</desc>

Now navigate to your language, L10N\1_(enu|fra|deu)\Data\Strings\client_strings_i tem.xml:

<string>
<id>700558</id>
<name>STR_SWORD_CIRCULOUS</name>
<body>Circulus's Sword</body>
</string>
11/22/2011 17:54 dhyftn#3
I was able to edit the name and get the game loaded with it but I noticed that it messed a lot of thing's up when in server. Instead of showing any of the item names it would show [item: ********]



edit*



Well, editing via a regular text editor messed something up.. not sure what. But when I edited in a regular xml editor it worked in the game!

thanks for the help^