Page 1 of 1

Test Server Helper

Posted: Fri Jun 12, 2015 5:40 am
by KGB1st
Tell me where I can change name of that NPCs?

Re: Test Server Helper

Posted: Fri Jun 12, 2015 6:18 pm
by Amrod
In the corresponding XML file where the npc is. you just Need the ID, look it up ingame or somewhere in a dropcalc

data/stats/npcs

Re: Test Server Helper

Posted: Sat Jun 13, 2015 5:29 am
by KGB1st
Amrod wrote:In the corresponding XML file where the npc is. you just Need the ID, look it up ingame or somewhere in a dropcalc

data/stats/npcs
this not works :evil: already tested, therefore wrote here

Re: Test Server Helper

Posted: Sat Jun 13, 2015 10:59 am
by Amrod
Show us the XML code pls

Re: Test Server Helper

Posted: Sat Jun 13, 2015 12:26 pm
by KGB1st
Amrod wrote:Show us the XML code pls

Code: Select all

<npc id="31756" level="70" type="L2ClassMaster" name="Mr. Cat" title="Server Helper">
		<!-- Confirmed CT2.5 -->
		<parameters>
			<param name="MoveAroundSocial" value="0" />
			<param name="MoveAroundSocial1" value="0" />
			<param name="type" value="0" />
		</parameters>
		<race>ELEMENTAL</race>
		<sex>MALE</sex>
		<stats str="40" int="21" dex="30" wit="20" con="43" men="20">
			<vitals hp="2444.46819" hpRegen="7.5" mp="1345.8" mpRegen="2.7" />
			<attack physical="688.86373" magical="470.40463" random="30" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
			<defence physical="295.91597" magical="216.53847" />
			<attribute>
				<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
			</attribute>
			<speed>
				<walk ground="80" />
				<run ground="120" />
			</speed>
			<hit_time>610</hit_time>
		</stats>
		<status attackable="false" />
		<skill_list>
			<skill id="4045" level="1" /> <!--Resist Full Magic Attack -->
			<skill id="4408" level="1" /> <!--HP Increase (1x) -->
			<skill id="4409" level="1" /> <!--MP Increase (1x) -->
			<skill id="4410" level="11" /> <!--Average P. Atk. -->
			<skill id="4411" level="11" /> <!--Average M. Atk. -->
			<skill id="4412" level="11" /> <!--Average P. Def. -->
			<skill id="4413" level="11" /> <!--Average M. Def. -->
			<skill id="4414" level="2" /> <!--Standard Type -->
			<skill id="4415" level="3" /> <!--One-handed Sword -->
			<skill id="4416" level="7" /> <!--Spirits -->
		</skill_list>
		<ex_crt_effect>true</ex_crt_effect>
		<ai aggroRange="1000" clanHelpRange="300" isAggressive="false" />
		<collision>
			<radius normal="9" />
			<height normal="16" />
		</collision>
	</npc>
	<npc id="31757" level="70" type="L2ClassMaster" name="Miss Queen" title="Server Helper">
		<!-- Confirmed CT2.5 -->
		<parameters>
			<param name="MoveAroundSocial" value="110" />
			<param name="MoveAroundSocial1" value="118" />
			<param name="type" value="1" />
		</parameters>
		<race>ELEMENTAL</race>
		<sex>FEMALE</sex>
		<stats str="40" int="21" dex="30" wit="20" con="43" men="20">
			<vitals hp="2444.46819" hpRegen="7.5" mp="1345.8" mpRegen="2.7" />
			<attack physical="688.86373" magical="470.40463" random="30" critical="4" accuracy="5" attackSpeed="253" type="SWORD" range="40" distance="80" width="120" />
			<defence physical="295.91597" magical="216.53847" />
			<attribute>
				<defence fire="150" water="150" wind="150" earth="150" holy="150" dark="150" default="150" />
			</attribute>
			<speed>
				<walk ground="26" />
				<run ground="120" />
			</speed>
			<hit_time>480</hit_time>
		</stats>
		<status attackable="false" />
		<skill_list>
			<skill id="4045" level="1" /> <!--Resist Full Magic Attack -->
			<skill id="4408" level="1" /> <!--HP Increase (1x) -->
			<skill id="4409" level="1" /> <!--MP Increase (1x) -->
			<skill id="4410" level="11" /> <!--Average P. Atk. -->
			<skill id="4411" level="11" /> <!--Average M. Atk. -->
			<skill id="4412" level="11" /> <!--Average P. Def. -->
			<skill id="4413" level="11" /> <!--Average M. Def. -->
			<skill id="4414" level="2" /> <!--Standard Type -->
			<skill id="4415" level="3" /> <!--One-handed Sword -->
			<skill id="4416" level="7" /> <!--Spirits -->
		</skill_list>
		<ex_crt_effect>true</ex_crt_effect>
		<ai aggroRange="1000" clanHelpRange="300" isAggressive="false" />
		<collision>
			<radius normal="8" />
			<height normal="15" />
		</collision>
	</npc>
Maybe you can try itself?)

Re: Test Server Helper

Posted: Sat Jun 13, 2015 3:25 pm
by Avanael92

Code: Select all

<npc id="31756" level="70" type="L2ClassMaster" name="Mr. Cat" usingServerSideName="true" title="Server Helper" usingServerSideTitle="true">

Code: Select all

<npc id="31757" level="70" type="L2ClassMaster" name="Miss Queen" usingServerSideName="true" title="Server Helper" usingServerSideTitle="true">
There you go :) You need >> usingServerSideName=true << and >> usingServerSideTitle=true << to be able to change their name and title.

Re: Test Server Helper

Posted: Tue Jun 16, 2015 6:38 am
by KGB1st
Avanael92 wrote:

Code: Select all

<npc id="31756" level="70" type="L2ClassMaster" name="Mr. Cat" usingServerSideName="true" title="Server Helper" usingServerSideTitle="true">

Code: Select all

<npc id="31757" level="70" type="L2ClassMaster" name="Miss Queen" usingServerSideName="true" title="Server Helper" usingServerSideTitle="true">
There you go :) You need >> usingServerSideName=true << and >> usingServerSideTitle=true << to be able to change their name and title.
:+1: thanks