Page 1 of 1

I'm stupid or?

Posted: Sun May 11, 2014 9:08 am
by kurtspirit
L2J Revision Number:6523
L2JDP Revision Number:10320

Hi all,

i try to change some NPC name and with surprise, i don't find npc table on SQL!
I try to find another way so i see on \L2J_Server_BETA\game\data\stats\npcs the XML file.
I modify a npc name and reload the server but no result on live server.

Can you explain me how find and modify an existing NPC please?

Thank you!

Re: I'm stupid or?

Posted: Sun May 11, 2014 9:11 am
by St3eT
NPCs name are showed by client. If you want use server names you can enable it by adding that:

Code: Select all

 name="Achmed" usingServerSideName="true" 
for example from:

Code: Select all

 <npc id="100" level="80" type="L2Npc" name="Thomas D. Turkey"> 
to:

Code: Select all

 <npc id="100" level="80" type="L2Npc" name="St3eT" usingServerSideName="true"> 

Re: I'm stupid or?

Posted: Sun May 11, 2014 9:19 am
by kurtspirit
I try it like this :

Code: Select all

<npc id="31756" level="70" type="L2ClassMaster" name="Mr. Cat" title="Class Master" usingServerSideName="true">
I reload the server and no result. The NPC keep the same title (Test Server Helper)... I make a mistake?

Thank you.

Edit : That's work good for the Name but not for Title!... What can we do for change the title?
Thanks

Re: I'm stupid or?

Posted: Sun May 11, 2014 10:00 am
by jurchiks
for title it's usingServerSideTitle, obviously.

Re: I'm stupid or?

Posted: Sun May 11, 2014 12:23 pm
by kurtspirit
Great! Thank you. Sorry for my question but like i write on title, i'm stupid... and contagious :p
Thanks