1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-05 23:22:47 +00:00

NPC Html chat messages

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-25 13:54:59 -03:00
parent 7033518023
commit 4a003b21e0
10103 changed files with 56028 additions and 20460 deletions

View File

@@ -1,206 +1,185 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<xs:schema version="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:element name="npc" type="npcTemplate" />
<xs:schema version="1.0" targetNamespace="npc" xmlns:tns="npc" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="npcTemplate">
<xs:sequence>
<xs:element name="info" type="npcInformationMetadata"
minOccurs="0" />
<xs:element name="ai" type="aiMetadata" minOccurs="0" />
<xs:element name="teleporter" type="teleporterMetadata"
minOccurs="0" />
<xs:element name="talk" type="talkMetadata" minOccurs="0" />
<xs:element name="droplist" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="item" type="dropItemMetadata"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:int" use="required" />
<xs:attribute name="type" type="xs:string" />
</xs:complexType>
<xs:import schemaLocation="npc.xsd"/>
<xs:complexType name="npcInformationMetadata">
<xs:sequence>
<xs:element name="name" type="npcNameMetadata" minOccurs="0" />
<xs:element name="title" type="npcTitleMetadata"
minOccurs="0" />
<xs:element name="level" type="xs:int" />
<xs:element name="sex" type="actorSex" minOccurs="0" />
<xs:element name="stats" type="npcStatsMetadata"
minOccurs="0" />
<xs:element name="experience" type="xs:long" />
<xs:element name="sp" type="xs:int" />
<xs:element name="item" type="itemMetadata" minOccurs="0" />
<xs:element name="collision" type="collisionMetadata"
minOccurs="0" />
</xs:sequence>
<xs:attribute name="attackable" type="xs:boolean" use="required" />
<xs:attribute name="targetable" type="xs:boolean" use="required" />
<xs:attribute name="aggressive" type="xs:boolean" use="required" />
</xs:complexType>
<xs:complexType name="npcTemplate">
<xs:complexContent>
<xs:extension base="actorTemplate">
<xs:sequence>
<xs:element name="info" type="tns:npcInformationMetadata" minOccurs="0"/>
<xs:element name="ai" type="tns:aiMetadata" minOccurs="0"/>
<xs:element name="teleporter" type="tns:teleporterMetadata" minOccurs="0"/>
<xs:element name="talk" type="tns:talkMetadata" minOccurs="0"/>
<xs:element name="droplist" minOccurs="0">
<xs:complexType>
<xs:sequence>
<xs:element name="item" type="tns:dropItemMetadata" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute name="id" type="xs:int"/>
<xs:attribute name="type" type="xs:string"/>
</xs:extension>
</xs:complexContent>
</xs:complexType>
<xs:complexType name="npcNameMetadata">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="send" type="xs:boolean" use="required" />
<xs:attribute name="display" type="xs:boolean" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="npcInformationMetadata">
<xs:sequence>
<xs:element name="name" type="tns:npcNameMetadata" minOccurs="0"/>
<xs:element name="title" type="tns:npcTitleMetadata" minOccurs="0"/>
<xs:element name="level" type="xs:int"/>
<xs:element name="sex" type="actorSex" minOccurs="0"/>
<xs:element name="stats" type="tns:npcStatsMetadata" minOccurs="0"/>
<xs:element name="experience" type="xs:long"/>
<xs:element name="sp" type="xs:int"/>
<xs:element name="item" type="tns:itemMetadata" minOccurs="0"/>
<xs:element name="collision" type="tns:collisionMetadata" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="attackable" type="xs:boolean" use="required"/>
<xs:attribute name="targetable" type="xs:boolean" use="required"/>
<xs:attribute name="aggressive" type="xs:boolean" use="required"/>
</xs:complexType>
<xs:complexType name="npcTitleMetadata">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="send" type="xs:boolean" use="required" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="npcNameMetadata">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="send" type="xs:boolean"/>
<xs:attribute name="display" type="xs:boolean"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="npcStatsMetadata">
<xs:sequence>
<xs:element name="hp" type="stat" minOccurs="0" />
<xs:element name="mp" type="stat" minOccurs="0" />
<xs:element name="attack" type="attackMetadata" minOccurs="0" />
<xs:element name="defense" type="defenseMetadata"
minOccurs="0" />
<xs:element name="move" type="moveMetadata" minOccurs="0" />
<xs:element name="base" type="baseMetadata" minOccurs="0" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="npcTitleMetadata">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="send" type="xs:boolean"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="stat">
<xs:sequence />
<xs:attribute name="max" type="xs:double" use="required" />
<xs:attribute name="regen" type="xs:double" use="required" />
</xs:complexType>
<xs:complexType name="npcStatsMetadata">
<xs:sequence>
<xs:element name="hp" type="tns:stat" minOccurs="0"/>
<xs:element name="mp" type="tns:stat" minOccurs="0"/>
<xs:element name="attack" type="tns:attackMetadata" minOccurs="0"/>
<xs:element name="defense" type="tns:defenseMetadata" minOccurs="0"/>
<xs:element name="move" type="tns:moveMetadata" minOccurs="0"/>
<xs:element name="base" type="tns:baseMetadata" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="attackMetadata">
<xs:sequence>
<xs:element name="physical" type="attackValueMetadata"
minOccurs="0" />
<xs:element name="magical" type="attackValueMetadata"
minOccurs="0" />
</xs:sequence>
<xs:attribute name="range" type="xs:int" use="required" />
<xs:attribute name="evasion" type="xs:int" use="required" />
<xs:attribute name="critical" type="xs:int" use="required" />
</xs:complexType>
<xs:complexType name="stat">
<xs:sequence/>
<xs:attribute name="max" type="xs:double" use="required"/>
<xs:attribute name="regen" type="xs:double" use="required"/>
</xs:complexType>
<xs:complexType name="attackValueMetadata">
<xs:sequence />
<xs:attribute name="damage" type="xs:double" use="required" />
<xs:attribute name="speed" type="xs:double" use="required" />
</xs:complexType>
<xs:complexType name="attackMetadata">
<xs:sequence>
<xs:element name="physical" type="tns:attackValueMetadata" minOccurs="0"/>
<xs:element name="magical" type="tns:attackValueMetadata" minOccurs="0"/>
</xs:sequence>
<xs:attribute name="range" type="xs:int" use="required"/>
<xs:attribute name="evasion" type="xs:int" use="required"/>
<xs:attribute name="critical" type="xs:int" use="required"/>
</xs:complexType>
<xs:complexType name="defenseMetadata">
<xs:sequence>
<xs:element name="physical" type="defenseValueMetadata"
minOccurs="0" />
<xs:element name="magical" type="defenseValueMetadata"
minOccurs="0" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="attackValueMetadata">
<xs:sequence/>
<xs:attribute name="damage" type="xs:double" use="required"/>
<xs:attribute name="speed" type="xs:double" use="required"/>
</xs:complexType>
<xs:complexType name="defenseValueMetadata">
<xs:sequence />
<xs:attribute name="value" type="xs:double" use="required" />
</xs:complexType>
<xs:complexType name="defenseMetadata">
<xs:sequence>
<xs:element name="physical" type="tns:defenseValueMetadata" minOccurs="0"/>
<xs:element name="magical" type="tns:defenseValueMetadata" minOccurs="0"/>
</xs:sequence>
</xs:complexType>
<xs:complexType name="moveMetadata">
<xs:sequence />
<xs:attribute name="run" type="xs:double" use="required" />
<xs:attribute name="walk" type="xs:double" use="required" />
</xs:complexType>
<xs:complexType name="defenseValueMetadata">
<xs:sequence/>
<xs:attribute name="value" type="xs:double" use="required"/>
</xs:complexType>
<xs:complexType name="baseMetadata">
<xs:sequence />
<xs:attribute name="int" type="xs:int" use="required" />
<xs:attribute name="str" type="xs:int" use="required" />
<xs:attribute name="con" type="xs:int" use="required" />
<xs:attribute name="men" type="xs:int" use="required" />
<xs:attribute name="dex" type="xs:int" use="required" />
<xs:attribute name="wit" type="xs:int" use="required" />
</xs:complexType>
<xs:complexType name="moveMetadata">
<xs:sequence/>
<xs:attribute name="run" type="xs:double" use="required"/>
<xs:attribute name="walk" type="xs:double" use="required"/>
</xs:complexType>
<xs:complexType name="itemMetadata">
<xs:sequence />
<xs:attribute name="righthand" type="xs:int" />
<xs:attribute name="lefthand" type="xs:int" />
</xs:complexType>
<xs:complexType name="baseMetadata">
<xs:sequence/>
<xs:attribute name="int" type="xs:int" use="required"/>
<xs:attribute name="str" type="xs:int" use="required"/>
<xs:attribute name="con" type="xs:int" use="required"/>
<xs:attribute name="men" type="xs:int" use="required"/>
<xs:attribute name="dex" type="xs:int" use="required"/>
<xs:attribute name="wit" type="xs:int" use="required"/>
</xs:complexType>
<xs:complexType name="collisionMetadata">
<xs:sequence />
<xs:attribute name="radius" type="xs:double" use="required" />
<xs:attribute name="heigth" type="xs:double" use="required" />
</xs:complexType>
<xs:complexType name="itemMetadata">
<xs:sequence/>
<xs:attribute name="righthand" type="xs:int"/>
<xs:attribute name="lefthand" type="xs:int"/>
</xs:complexType>
<xs:complexType name="aiMetadata">
<xs:sequence />
<xs:attribute name="script" type="xs:string" />
</xs:complexType>
<xs:complexType name="collisionMetadata">
<xs:sequence/>
<xs:attribute name="radius" type="xs:double" use="required"/>
<xs:attribute name="heigth" type="xs:double" use="required"/>
</xs:complexType>
<xs:complexType name="teleporterMetadata">
<xs:sequence>
<xs:element name="teleport" type="teleporterTeleportMetadata"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
</xs:complexType>
<xs:complexType name="aiMetadata">
<xs:sequence/>
<xs:attribute name="script" type="xs:string"/>
</xs:complexType>
<xs:complexType name="teleporterTeleportMetadata">
<xs:sequence>
<xs:element name="region" type="teleporterRegionMetadata"
minOccurs="0" maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="id" type="xs:string" />
</xs:complexType>
<xs:complexType name="teleporterMetadata">
<xs:sequence>
<xs:element name="teleport" type="tns:teleporterTeleportMetadata" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="default" type="xs:string"/>
</xs:complexType>
<xs:complexType name="teleporterRegionMetadata">
<xs:sequence />
<xs:attribute name="id" type="xs:string" />
<xs:attribute name="price" type="xs:int" use="required" />
<xs:attribute name="item" type="xs:int" use="required" />
</xs:complexType>
<xs:complexType name="teleporterTeleportMetadata">
<xs:sequence>
<xs:element name="region" type="tns:teleportRegion" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="id" type="xs:string"/>
</xs:complexType>
<xs:complexType name="talkMetadata">
<xs:sequence>
<xs:element name="chat" type="chatMetadata" minOccurs="0"
maxOccurs="unbounded" />
</xs:sequence>
<xs:attribute name="default" type="xs:string" />
</xs:complexType>
<xs:complexType name="teleportRegion">
<xs:sequence/>
<xs:attribute name="id" type="xs:string"/>
<xs:attribute name="price" type="xs:int" use="required"/>
<xs:attribute name="item" type="xs:int"/>
</xs:complexType>
<xs:complexType name="chatMetadata">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="id" type="xs:string" />
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:complexType name="talkMetadata">
<xs:sequence>
<xs:element name="chat" type="tns:chat" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="default" type="xs:string"/>
</xs:complexType>
<xs:complexType name="dropItemMetadata">
<xs:sequence />
<xs:attribute name="id" type="xs:int" />
<xs:attribute name="min" type="xs:int" use="required" />
<xs:attribute name="max" type="xs:int" use="required" />
<xs:attribute name="category" type="dropCategory" />
<xs:attribute name="chance" type="xs:int" use="required" />
</xs:complexType>
<xs:complexType name="chat">
<xs:simpleContent>
<xs:extension base="xs:string">
<xs:attribute name="id" type="xs:string"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
<xs:simpleType name="actorSex">
<xs:restriction base="xs:string">
<xs:enumeration value="MALE" />
<xs:enumeration value="FEMALE" />
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="dropCategory">
<xs:restriction base="xs:string">
<xs:enumeration value="KILL" />
</xs:restriction>
</xs:simpleType>
<xs:complexType name="dropItemMetadata">
<xs:sequence/>
<xs:attribute name="id" type="xs:int"/>
<xs:attribute name="min" type="xs:int" use="required"/>
<xs:attribute name="max" type="xs:int" use="required"/>
<xs:attribute name="category" type="dropCategory"/>
<xs:attribute name="chance" type="xs:int" use="required"/>
</xs:complexType>
</xs:schema>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="1" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="1" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Thomas D. Turkey</name>
<title send="false">Misguided Holiday Scrooge</title>
@@ -23,4 +24,35 @@
<sp>0</sp>
<collision heigth="35.0" radius="25.0"/>
</info>
<talk default="default">
<chat id="default"><![CDATA[<html>
<body>
<br>
<table width=610>
<tr>
<td width=250 align=left><a action="bypass _bbstop">HOME</a>&nbsp;>&nbsp;<a action="bypass _bbstop;1">Lineage II Rules</a></td>
</tr>
<tr>
<td height=9></td>
</tr>
</table>
<center>
<table width=610 border="0" bgcolor="666666">
<tr>
<td width=50 height=18 align="center">&nbsp;</td>
<td width=470 height=18 align="center">Title</td>
<td width=90 height=18 align="left">&nbsp;&nbsp;Administrator</td>
</tr>
</table>
<table width=610 height=46>
<tr>
<td width=50 align="right"><img src="l2ui.bbs_board" width=32 height=32></td>
<td width=470 align="left">&nbsp;Here goes the server rules;</td>
<td width=90 align="center">0</td>
</tr>
</table>
<img src="l2ui.squaregray" width="610" height="1">
</body>
</html>]]></chat>
</talk>
</npc>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="10" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="10" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Jack Sage</name>
<title send="false">Eva's High Priest</title>
@@ -23,4 +24,49 @@
<sp>10</sp>
<collision heigth="26.5" radius="8.0"/>
</info>
<talk default="default">
<chat id="default"><![CDATA[<html>
<body>
<br>
<table width=610>
<tr>
<td width=250 align=left><a action="bypass _bbstop">HOME</a>&nbsp;>&nbsp;<a action="bypass _bbstop;2">Lineage II News</a>&nbsp;>&nbsp;<a action="bypass _bbstop;10">Events</a></td>
</tr>
<tr>
<td height=9></td>
</tr>
</table>
<center>
<table width=610 bgcolor="666666">
<tr>
<td width=50 height=18 align="center">&nbsp;</td>
<td width=380 height=18 align="center">Title</td>
<td width=90 height=18 align="center">Type of Event</td>
<td width=90 height=18 align="left">&nbsp;&nbsp;Date</td>
</tr>
</table>
<table width=610 height=46>
<tr>
<td width=46 align="right"><img src="l2ui.bbs_board" width=32 height=32></td>
<td width=94 align="left"><a action="bypass _bbstop;11">Wedding Event</a></td>
<td width=290 align="left"><font color="FF9900">Marry to your love and Enjoy the benefits.</font></td>
<td width=100 align="center">Custom Event</td>
<td width=80 align="left">No Expiration</td>
</tr>
</table>
<img src="l2ui.squaregray" width="610" height="1">
<table width=610 height=46>
<tr>
<td width=46 align="right"><img src="l2ui.bbs_board" width=32 height=32></td>
<td width=94 align="left"><a action="bypass _bbstop;12">Welcome Event</a></td>
<td width=290 align="left"><font color="FF9900">The Biggest Event that a Lineage II Server has ever seen</font></td>
<td width=100 align="center">Custom Event</td>
<td width=80 align="left">May 21th</td>
</tr>
</table>
<img src="l2ui.squaregray" width="610" height="1">
</center>
</body>
</html>]]></chat>
</talk>
</npc>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="11" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="11" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="false" attackable="false">
<name display="true" send="false">Eva's Obelisk</name>
<level>70</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="12" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="12" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="false" attackable="false">
<level>80</level>
<sex>MALE</sex>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="12774" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="12774" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Young Squash</name>
<level>1</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="12775" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="12775" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">High Quality Squash</name>
<level>1</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="12776" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="12776" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Low Quality Squash</name>
<level>1</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="12777" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="12777" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Large Young Squash</name>
<level>1</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="12778" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="12778" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">High Quality Large Squash</name>
<level>1</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="12779" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="12779" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Low Quality Large Squash</name>
<level>1</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Warm Hearted Sno</name>
<title send="false">Beginner Supporter</title>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13001" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13001" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Heart of Warding</name>
<level>70</level>
@@ -21,4 +22,11 @@
<sp>10</sp>
<collision heigth="120.0" radius="17.0"/>
</info>
<talk default="default">
<chat id="default"><![CDATA[<html><body>A voice whispers in your ear:<br>
<font color="LEVEL">Will you confront Antharas, the worshipper of the dark holy
place and the creation of Shilen?</font><br>
<a action="bypass -h npc_%objectId%_Quest 6000_GrandBossTeleporters">Go to the Lair of Antharas.</a>
</body></html>]]></chat>
</talk>
</npc>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13006" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13006" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Christmas Tree</name>
<level>70</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13014" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13014" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<level>85</level>
<sex>MALE</sex>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13015" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13015" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<level>85</level>
<sex>FEMALE</sex>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13016" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13016" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">King Squash</name>
<level>1</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13017" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13017" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Emperor Squash</name>
<level>1</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13031" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13031" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Huge Pig</name>
<level>80</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13032" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13032" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Huge Pig</name>
<level>80</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13033" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13033" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Huge Pig</name>
<level>80</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13035" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13035" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Golden Pig</name>
<level>80</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13037" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13037" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>28</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13038" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13038" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>36</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13039" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13039" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>43</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13040" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13040" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>49</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13041" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13041" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13042" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13042" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>60</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13043" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13043" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>64</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13044" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13044" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>68</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13045" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13045" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>72</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13046" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13046" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>49</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13047" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13047" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13048" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13048" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>60</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13049" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13049" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>64</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13050" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13050" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>68</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13051" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13051" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>72</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13052" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13052" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13053" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13053" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>60</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13054" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13054" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>64</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13055" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13055" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>68</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13056" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13056" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>72</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13057" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13057" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>40</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13058" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13058" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>46</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13059" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13059" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>52</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13060" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13060" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>58</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13061" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13061" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>62</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13062" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13062" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>66</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13063" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13063" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>70</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13064" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13064" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>74</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13065" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13065" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>52</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13066" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13066" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>58</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13067" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13067" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>62</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13068" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13068" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>66</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13069" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13069" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>70</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13070" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13070" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Trap</name>
<level>74</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13077" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13077" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Onyx Beast</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13078" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13078" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Doom Wraith</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13079" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13079" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Grail Apostle</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13080" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13080" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Grail Apostle</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13081" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13081" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Unicorn</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13082" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13082" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Lilim Knight</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13083" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13083" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Golem Guardian</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13084" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13084" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Inferno Drake</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13085" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13085" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Dragon Bomber</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13086" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13086" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Zariche</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13087" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13087" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Akamanah</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13088" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13088" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Final Form</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13089" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13089" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Final Form</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13090" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13090" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Native</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13091" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13091" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Yeti</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13092" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13092" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Buffalo</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13093" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13093" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Pig</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13094" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13094" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Zombie</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13095" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13095" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Pixy</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13096" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13096" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Rabbit</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13099" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13099" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Zaken</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13100" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13100" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Anakim</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13101" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13101" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Benom</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13102" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13102" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Gordon</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13103" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13103" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Ranku</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13104" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13104" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Kiyachi</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13105" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13105" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Demon Prince</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13106" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13106" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Heretic Male</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13107" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13107" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Heretic Female</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13108" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13108" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Vale master</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13109" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13109" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Saber Tooth Tiger</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13110" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13110" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Ol Mahum</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13111" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13111" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Doll Blader</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13112" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13112" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Divine Knight</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13113" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13113" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Divine Warrior</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13114" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13114" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Divine Rogue</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13115" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13115" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Divine Healer</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13116" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13116" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Divine Wizard</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13117" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13117" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Divine Enchanter</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13118" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13118" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Divine Summoner</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13119" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13119" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Dwarf Golem</name>
<level>55</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13120" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13120" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Giant rat</name>
<level>80</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13121" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13121" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Giant rat</name>
<level>80</level>

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<npc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" type="" id="13122" xsi:schemaLocation="npc ../npc.xsd" xsi:noNamespaceSchemaLocation="npc">
<?xml version="1.0" encoding="UTF-8"?>
<npc type="" id="13122" xsi:schemaLocation="npc ../npc.xsd"
xsi:noNamespaceSchemaLocation="npc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<info aggressive="false" targetable="true" attackable="false">
<name display="true" send="false">Giant rat</name>
<level>80</level>

Some files were not shown because too many files have changed in this diff Show More