Test Server Helper

Support for the latest build of L2J Server, get help here with installations, upgrades, problems.
Do not post bugs reports here, use viewforum.php?f=77 instead.
There is no support for other server builds than the official provided by l2jserver.com
Forum rules
READ NOW: L2j Forums Rules of Conduct
Post Reply
User avatar
KGB1st
Posts: 230
Joined: Sat Jul 26, 2014 5:58 pm

Test Server Helper

Post by KGB1st »

Tell me where I can change name of that NPCs?
Amrod
Posts: 95
Joined: Wed May 04, 2011 9:12 am

Re: Test Server Helper

Post 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
User avatar
KGB1st
Posts: 230
Joined: Sat Jul 26, 2014 5:58 pm

Re: Test Server Helper

Post 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
Amrod
Posts: 95
Joined: Wed May 04, 2011 9:12 am

Re: Test Server Helper

Post by Amrod »

Show us the XML code pls
User avatar
KGB1st
Posts: 230
Joined: Sat Jul 26, 2014 5:58 pm

Re: Test Server Helper

Post 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?)
User avatar
Avanael92
Advanced User
Advanced User
Posts: 189
Joined: Thu Aug 07, 2014 5:26 pm
Location: Germany

Re: Test Server Helper

Post 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.
User avatar
KGB1st
Posts: 230
Joined: Sat Jul 26, 2014 5:58 pm

Re: Test Server Helper

Post 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
Post Reply