Updated Underground and Land of Chaos area spawns.
Contributed by Edoo.
This commit is contained in:
parent
da932ecae0
commit
820fd47246
@ -2588,4 +2588,34 @@
|
||||
<point X="82815" Y="148840" Z="-3469" delay="3" run="true" />
|
||||
<point X="83307" Y="148431" Z="-3405" delay="21" run="true" /> <!-- Training Camp Manager -->
|
||||
</route>
|
||||
<route name="employee_1" repeat="true" repeatStyle="back">
|
||||
<target id="34205" spawnX="-50984" spawnY="-147336" spawnZ="-14945" />
|
||||
<point X="-50984" Y="-147336" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51208" Y="-147704" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51160" Y="-148456" Z="-14946" delay="2" run="false" />
|
||||
<point X="-50728" Y="-148952" Z="-14944" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_2" repeat="true" repeatStyle="cycle">
|
||||
<target id="34204" spawnX="-50184" spawnY="-147864" spawnZ="-14158" />
|
||||
<point X="-50184" Y="-147864" Z="-14158" delay="2" run="false" />
|
||||
<point X="-50296" Y="-148104" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50056" Y="-148408" Z="-14158" delay="2" run="false" />
|
||||
<point X="-49768" Y="-148232" Z="-14186" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_3" repeat="true" repeatStyle="cycle">
|
||||
<target id="34206" spawnX="-50136" spawnY="-148568" spawnZ="-14157" />
|
||||
<point X="-50136" Y="-148568" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50152" Y="-149032" Z="-14171" delay="2" run="false" />
|
||||
<point X="-49784" Y="-148408" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49880" Y="-148348" Z="-14184" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_4" repeat="true" repeatStyle="cycle">
|
||||
<target id="34207" spawnX="-49625" spawnY="-148723" spawnZ="-14152" />
|
||||
<point X="-49625" Y="-148723" Z="-14152" delay="2" run="false" />
|
||||
<point X="-49256" Y="-148680" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49272" Y="-148088" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49400" Y="-148024" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49736" Y="-148264" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49640" Y="-148360" Z="-14176" delay="0" run="false" />
|
||||
</route>
|
||||
</routes>
|
@ -0,0 +1,206 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.GainakUnderground.TavernEmployee;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.NpcSay;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tavern Employee AI.
|
||||
* @author Edoo
|
||||
*/
|
||||
public class TavernEmployee extends AbstractNpcAI
|
||||
{
|
||||
// NPCs
|
||||
private static final int LOYEE1 = 34202;
|
||||
private static final int LOYEE2 = 34203;
|
||||
private static final int LOYEE3 = 34204;
|
||||
private static final int LOYEE4 = 34205;
|
||||
private static final int LOYEE5 = 34206;
|
||||
private static final int LOYEE6 = 34207;
|
||||
// Text
|
||||
private static final NpcStringId[] SPAM_TEXT1 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT2 =
|
||||
{
|
||||
NpcStringId.THE_MYSTIC_TAVERN_IS_OPEN_NOW
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT3 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT4 =
|
||||
{
|
||||
NpcStringId.ADVENTURER_THE_TAVERN_IS_THIS_WAY,
|
||||
NpcStringId.ARE_YOU_LOOKING_FOR_THE_TAVERN_IT_S_THIS_WAY,
|
||||
NpcStringId.COME_ON_CHANCES_LIKE_THESE_DON_T_COME_BY_OFTEN
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT5 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT6 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
|
||||
private TavernEmployee()
|
||||
{
|
||||
addSpawnId(LOYEE1);
|
||||
addSpawnId(LOYEE2);
|
||||
addSpawnId(LOYEE3);
|
||||
addSpawnId(LOYEE4);
|
||||
addSpawnId(LOYEE5);
|
||||
addSpawnId(LOYEE6);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
|
||||
{
|
||||
String htmltext = null;
|
||||
switch (event)
|
||||
{
|
||||
case "spam_text1":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT1[getRandom(SPAM_TEXT1.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text2":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT2[getRandom(SPAM_TEXT2.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text3":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT3[getRandom(SPAM_TEXT3.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text4":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT4[getRandom(SPAM_TEXT4.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text5":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT5[getRandom(SPAM_TEXT5.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text6":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT6[getRandom(SPAM_TEXT6.length)]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return htmltext;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onSpawn(Npc npc)
|
||||
{
|
||||
npc.setIsTalkable(false);
|
||||
|
||||
if (npc.getId() == LOYEE1)
|
||||
{
|
||||
startQuestTimer("spam_text1", 17000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE2)
|
||||
{
|
||||
startQuestTimer("spam_text2", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE3)
|
||||
{
|
||||
startQuestTimer("spam_text3", 16000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE4)
|
||||
{
|
||||
startQuestTimer("spam_text4", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE5)
|
||||
{
|
||||
startQuestTimer("spam_text5", 15000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE6)
|
||||
{
|
||||
startQuestTimer("spam_text6", 18000, npc, null, true);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new TavernEmployee();
|
||||
}
|
||||
}
|
@ -2,177 +2,6 @@
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaos">
|
||||
<group>
|
||||
<npc id="19460" x="-12880" y="-115200" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-12944" y="-121872" z="-3056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13344" y="-117872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13648" y="-123504" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14112" y="-110048" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14256" y="-119328" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14512" y="-115488" z="-3632" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15056" y="-111056" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15744" y="-110288" z="-3376" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16816" y="-123776" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16976" y="-122000" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-19952" y="-111040" z="-3456" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-20384" y="-123968" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21168" y="-112384" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21328" y="-111040" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22128" y="-123632" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22592" y="-119552" z="-3112" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23611" y="-115286" z="-3304" heading="41491" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23632" y="-116240" z="-3312" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24048" y="-120320" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24720" y="-115072" z="-3320" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24768" y="-124288" z="-2760" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-26576" y="-124688" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13520" y="-116752" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13568" y="-117008" z="-3640" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13856" y="-116800" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13904" y="-121088" z="-3088" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13952" y="-120800" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14144" y="-120944" z="-3072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14640" y="-122208" z="-3048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14736" y="-113648" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14800" y="-113904" z="-3664" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14806" y="-119856" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14944" y="-113744" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14992" y="-122256" z="-3040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15024" y="-120000" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15328" y="-113216" z="-3896" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15477" y="-120491" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15777" y="-120789" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16064" y="-111984" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16272" y="-116304" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16464" y="-115808" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16528" y="-111696" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16608" y="-116448" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16640" y="-118272" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16657" y="-111600" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16688" y="-118944" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17072" y="-117840" z="-4064" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17104" y="-111568" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17392" y="-118608" z="-4072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17520" y="-121344" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17600" y="-121552" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17760" y="-121488" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-18848" y="-119168" z="-4080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19089" y="-119344" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19216" y="-119104" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19280" y="-122784" z="-2888" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122144" z="-2936" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122768" z="-2880" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20096" y="-120256" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-112528" z="-3408" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-120128" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20352" y="-119888" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20416" y="-112736" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20560" y="-112624" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20800" y="-114272" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20912" y="-114480" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21024" y="-114096" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21488" y="-122464" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21536" y="-117776" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21680" y="-122128" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21728" y="-117408" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21776" y="-117664" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21808" y="-122432" z="-3152" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21904" y="-122096" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22320" y="-113200" z="-3440" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-114960" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-115408" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22496" y="-114432" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22512" y="-114800" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113296" z="-3360" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113712" z="-3296" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23120" y="-118800" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23248" y="-118544" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23264" y="-123040" z="-2736" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-110848" z="-3464" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-118752" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-110480" z="-3488" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-124304" z="-2904" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23360" y="-117408" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23488" y="-109408" z="-3496" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23536" y="-124544" z="-2840" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23568" y="-117968" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23696" y="-124320" z="-2824" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23711" y="-122992" z="-2704" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23856" y="-111232" z="-3472" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23872" y="-111872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-108944" z="-3520" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-109392" z="-3536" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-110432" z="-3504" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24032" y="-123392" z="-2712" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24144" y="-107664" z="-3552" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24352" y="-107824" z="-3560" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24448" y="-107408" z="-3568" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24576" y="-122192" z="-2872" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24864" y="-122576" z="-2800" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24928" y="-122976" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25520" y="-122832" z="-2776" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25632" y="-123056" z="-2752" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13184" y="-118432" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13216" y="-115152" z="-3608" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13424" y="-123232" z="-2984" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-14448" y="-110512" z="-3384" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-17504" y="-123120" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-21152" y="-111296" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-22000" y="-124352" z="-2960" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-23248" y="-119808" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-24368" y="-115456" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-25680" y="-124304" z="-2680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19463" x="-12033" y="-116237" z="-3688" heading="49918" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-12033" y="-116339" z="-3688" heading="10261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-13963" y="-108659" z="-3408" heading="42245" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14447" y="-108905" z="-3368" heading="6346" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119509" z="-3304" heading="45553" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119776" z="-3288" heading="26261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122895" z="-3184" heading="8941" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122970" z="-3208" heading="15110" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-16688" y="-117393" z="-4056" heading="62047" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17275" y="-115122" z="-4104" heading="13270" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17923" y="-121206" z="-3096" heading="27935" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-18181" y="-122766" z="-3168" heading="43900" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20127" y="-118333" z="-4048" heading="40671" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20659" y="-115209" z="-4056" heading="28544" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21233" y="-123118" z="-3008" heading="9363" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21349" y="-112003" z="-3416" heading="53204" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21799" y="-112003" z="-3448" heading="17516" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-22674" y="-122482" z="-3112" heading="32291" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23224" y="-117739" z="-3416" heading="50250" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23431" y="-117739" z="-3368" heading="65195" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-26861" y="-125278" z="-2712" heading="25424" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-27371" y="-126300" z="-2680" heading="34800" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19475" x="-12395" y="-118001" z="-3416" heading="29658" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13134" y="-122291" z="-2992" heading="29397" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13299" y="-119435" z="-3376" heading="33050" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13303" y="-115913" z="-3680" heading="29025" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13653" y="-119151" z="-3368" heading="12289" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13661" y="-122248" z="-3016" heading="36373" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13973" y="-121827" z="-3040" heading="59278" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14229" y="-109791" z="-3392" heading="6660" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14372" y="-115782" z="-3696" heading="50516" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14790" y="-115569" z="-3696" heading="25130" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15158" y="-109915" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15559" y="-109213" z="-3320" heading="9671" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15894" y="-121917" z="-3280" heading="62729" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16250" y="-122939" z="-3192" heading="19903" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16663" y="-122521" z="-3216" heading="20857" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-19694" y="-110725" z="-3456" heading="15978" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20372" y="-112317" z="-3432" heading="2443" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20553" y="-124316" z="-3016" heading="45686" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20754" y="-110972" z="-3440" heading="36153" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20996" y="-111238" z="-3376" heading="50789" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21578" y="-124111" z="-2992" heading="7712" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21958" y="-119954" z="-3176" heading="16036" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22277" y="-124010" z="-3000" heading="62251" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22843" y="-115025" z="-3296" heading="19429" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23006" y="-120155" z="-3216" heading="34577" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23360" y="-114821" z="-3304" heading="44826" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24536" y="-115710" z="-3280" heading="32287" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24538" y="-125094" z="-2720" heading="4912" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24969" y="-124698" z="-2712" heading="18372" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-26738" y="-125305" z="-2712" heading="47587" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="23330" x="-13218" y="-123208" z="-2984" heading="44356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13329" y="-122172" z="-3008" heading="19903" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13397" y="-122601" z="-3016" heading="17906" respawnTime="60sec" /> <!-- Rubble -->
|
||||
@ -213,36 +42,6 @@
|
||||
<npc id="23330" x="-25430" y="-125289" z="-2672" heading="44914" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25882" y="-125096" z="-2680" heading="43770" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25928" y="-125278" z="-2680" heading="55117" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23333" x="-12972" y="-123200" z="-2984" heading="61051" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13425" y="-122343" z="-2976" heading="38586" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13698" y="-122841" z="-3000" heading="51876" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13754" y="-119035" z="-3392" heading="55117" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13826" y="-119133" z="-3352" heading="59766" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13910" y="-114851" z="-3656" heading="7784" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13953" y="-118755" z="-3360" heading="6000" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14091" y="-115039" z="-3624" heading="33908" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14181" y="-114963" z="-3624" heading="20728" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14520" y="-110057" z="-3360" heading="3259" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14815" y="-110391" z="-3408" heading="689" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-15244" y="-109992" z="-3408" heading="19460" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-16529" y="-122521" z="-3184" heading="13814" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17168" y="-123114" z="-3224" heading="2177" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17310" y="-123082" z="-3192" heading="24247" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20276" y="-111400" z="-3392" heading="29658" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20387" y="-111325" z="-3400" heading="54730" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20454" y="-111521" z="-3424" heading="7127" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20939" y="-124310" z="-2944" heading="61245" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21162" y="-123647" z="-2944" heading="7762" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21321" y="-123879" z="-2984" heading="50198" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-22695" y="-120096" z="-3176" heading="42268" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23126" y="-119930" z="-3192" heading="52509" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23465" y="-120613" z="-3160" heading="36347" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23535" y="-115180" z="-3272" heading="57283" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23683" y="-115923" z="-3264" heading="1651" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23757" y="-115178" z="-3288" heading="43457" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25416" y="-125013" z="-2720" heading="46569" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25506" y="-125129" z="-2704" heading="37214" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25989" y="-124825" z="-2712" heading="41290" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23334" x="-12619" y="-122782" z="-2992" heading="54961" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12694" y="-123015" z="-2992" heading="48861" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12738" y="-122460" z="-2992" heading="9413" respawnTime="60sec" /> <!-- Shelop -->
|
||||
@ -522,91 +321,149 @@
|
||||
<npc id="23334" x="-26017" y="-124530" z="-2680" heading="11314" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26054" y="-124972" z="-2672" heading="54144" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26089" y="-124971" z="-2672" heading="44968" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23335" x="-12632" y="-122651" z="-2984" heading="47404" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12736" y="-122632" z="-2992" heading="31016" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12784" y="-122380" z="-2976" heading="42826" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13271" y="-118356" z="-3344" heading="6849" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13456" y="-118656" z="-3408" heading="36685" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13612" y="-114743" z="-3640" heading="26634" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13928" y="-114587" z="-3608" heading="41829" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14047" y="-114751" z="-3632" heading="51708" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14162" y="-118765" z="-3352" heading="35959" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14549" y="-109880" z="-3384" heading="62098" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14644" y="-110541" z="-3368" heading="9325" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-15375" y="-110379" z="-3368" heading="55222" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16647" y="-122791" z="-3240" heading="17135" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16864" y="-123441" z="-3200" heading="57180" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-17356" y="-123111" z="-3192" heading="39971" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20257" y="-111590" z="-3400" heading="25149" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20340" y="-111235" z="-3376" heading="62084" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20986" y="-111503" z="-3424" heading="40961" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21474" y="-123975" z="-3000" heading="37267" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21673" y="-123621" z="-2936" heading="35726" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21734" y="-124440" z="-2944" heading="21318" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22878" y="-120365" z="-3200" heading="49240" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22954" y="-120092" z="-3216" heading="43336" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23275" y="-120192" z="-3200" heading="37735" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23773" y="-115781" z="-3280" heading="13137" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23776" y="-115519" z="-3328" heading="57919" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23902" y="-115092" z="-3304" heading="6308" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25379" y="-124977" z="-2720" heading="38151" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25397" y="-125019" z="-2720" heading="51874" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25572" y="-125042" z="-2728" heading="46491" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13453" y="-122632" z="-3008" heading="34215" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13461" y="-114861" z="-3640" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13531" y="-118208" z="-3352" heading="32418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="33837" x="-26375" y="-106062" z="-2632" heading="65028" respawnTime="60sec" /> <!-- Refugee Corpse -->
|
||||
<npc id="33838" x="-25428" y="-105719" z="-2608" heading="17423" respawnTime="60sec" /> <!-- Quincy -->
|
||||
<npc id="33842" x="-25321" y="-105816" z="-2600" heading="23421" respawnTime="60sec" /> <!-- Parajan -->
|
||||
<npc id="33843" x="-25517" y="-105892" z="-2600" heading="19380" respawnTime="60sec" /> <!-- Falk -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23336" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17088" y="-117220" z="-4053" heading="14397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16958" y="-116540" z="-4062" heading="14397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17471" y="-114680" z="-4075" heading="31994" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18099" y="-114635" z="-4060" heading="31994" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19727" y="-114800" z="-4061" heading="35145" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20232" y="-114920" z="-4084" heading="35145" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20824" y="-115560" z="-4049" heading="41273" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20882" y="-115804" z="-4053" heading="46626" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21192" y="-116968" z="-4054" heading="46308" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21289" y="-117267" z="-4054" heading="45923" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20888" y="-117944" z="-4053" heading="61134" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20797" y="-118031" z="-4055" heading="57547" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20251" y="-118843" z="-4066" heading="52449" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19801" y="-119156" z="-4059" heading="63592" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18823" y="-119228" z="-4062" heading="64880" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18569" y="-119237" z="-4068" heading="306" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17714" y="-118742" z="-4071" heading="6553" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17204" y="-118375" z="-4105" heading="6553" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16303" y="-117347" z="-4062" heading="13175" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16231" y="-116738" z="-4071" heading="17990" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16526" y="-115580" z="-4065" heading="19114" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16673" y="-114968" z="-4074" heading="18245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16835" y="-113924" z="-4044" heading="26198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17382" y="-113618" z="-4027" heading="28280" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18645" y="-113808" z="-4026" heading="38720" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19175" y="-114146" z="-4051" heading="38720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20919" y="-115110" z="-4050" heading="46891" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21093" y="-115712" z="-4051" heading="44514" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21436" y="-117517" z="-4056" heading="51490" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21246" y="-118115" z="-4056" heading="53781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19771" y="-119446" z="-4065" heading="58852" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19220" y="-119645" z="-4059" heading="1127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17430" y="-118215" z="-4061" heading="9570" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17048" y="-117713" z="-4061" heading="10999" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16868" y="-116016" z="-4058" heading="20754" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17124" y="-115441" z="-4068" heading="20754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18218" y="-114521" z="-4052" heading="27232" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18757" y="-114286" z="-4043" heading="33319" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20003" y="-114567" z="-4054" heading="37973" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20485" y="-114955" z="-4054" heading="41754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21202" y="-116390" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21216" y="-116451" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21196" y="-117069" z="-4059" heading="51083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20884" y="-117566" z="-4059" heading="58782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19856" y="-118370" z="-4066" heading="60455" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19432" y="-118600" z="-4047" heading="58542" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18163" y="-118468" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17591" y="-118203" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -37,7 +37,11 @@
|
||||
<npc id="34200" x="-50112" y="-148078" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34200" x="-49485" y="-148037" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34203" x="-50720" y="-149040" z="-14936" heading="26108" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34203" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34205" x="-50984" y="-147336" z="-14945" heading="14991" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-50184" y="-147864" z="-14158" heading="31287" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34206" x="-50136" y="-148568" z="-14157" heading="7775" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34207" x="-49625" y="-148723" z="-14152" heading="63138" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34189" x="-52646" y="-147041" z="-14944" heading="42728" respawnTime="60sec" /> <!-- Mistress, Auction House Manager -->
|
||||
<npc id="34190" x="-54000" y="-146768" z="-14944" heading="7504" respawnTime="60sec" /> <!-- Attitude, Grocer -->
|
||||
<npc id="34192" x="-53313" y="-148013" z="-14944" heading="16672" respawnTime="60sec" /> <!-- Fouette, Warehouse Keeper -->
|
||||
|
30
L2J_Mobius_3.0_Helios/dist/game/data/Routes.xml
vendored
30
L2J_Mobius_3.0_Helios/dist/game/data/Routes.xml
vendored
@ -2589,4 +2589,34 @@
|
||||
<point X="83482" Y="149278" Z="-3405" delay="16" run="true" /> <!-- Kekropus -->
|
||||
<point X="83307" Y="148431" Z="-3405" delay="21" run="true" /> <!-- Training Camp Manager -->
|
||||
</route>
|
||||
<route name="employee_1" repeat="true" repeatStyle="back">
|
||||
<target id="34205" spawnX="-50984" spawnY="-147336" spawnZ="-14945" />
|
||||
<point X="-50984" Y="-147336" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51208" Y="-147704" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51160" Y="-148456" Z="-14946" delay="2" run="false" />
|
||||
<point X="-50728" Y="-148952" Z="-14944" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_2" repeat="true" repeatStyle="cycle">
|
||||
<target id="34204" spawnX="-50184" spawnY="-147864" spawnZ="-14158" />
|
||||
<point X="-50184" Y="-147864" Z="-14158" delay="2" run="false" />
|
||||
<point X="-50296" Y="-148104" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50056" Y="-148408" Z="-14158" delay="2" run="false" />
|
||||
<point X="-49768" Y="-148232" Z="-14186" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_3" repeat="true" repeatStyle="cycle">
|
||||
<target id="34206" spawnX="-50136" spawnY="-148568" spawnZ="-14157" />
|
||||
<point X="-50136" Y="-148568" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50152" Y="-149032" Z="-14171" delay="2" run="false" />
|
||||
<point X="-49784" Y="-148408" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49880" Y="-148348" Z="-14184" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_4" repeat="true" repeatStyle="cycle">
|
||||
<target id="34207" spawnX="-49625" spawnY="-148723" spawnZ="-14152" />
|
||||
<point X="-49625" Y="-148723" Z="-14152" delay="2" run="false" />
|
||||
<point X="-49256" Y="-148680" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49272" Y="-148088" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49400" Y="-148024" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49736" Y="-148264" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49640" Y="-148360" Z="-14176" delay="0" run="false" />
|
||||
</route>
|
||||
</routes>
|
@ -0,0 +1,206 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.GainakUnderground.TavernEmployee;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.NpcSay;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tavern Employee AI.
|
||||
* @author Edoo
|
||||
*/
|
||||
public class TavernEmployee extends AbstractNpcAI
|
||||
{
|
||||
// NPCs
|
||||
private static final int LOYEE1 = 34202;
|
||||
private static final int LOYEE2 = 34203;
|
||||
private static final int LOYEE3 = 34204;
|
||||
private static final int LOYEE4 = 34205;
|
||||
private static final int LOYEE5 = 34206;
|
||||
private static final int LOYEE6 = 34207;
|
||||
// Text
|
||||
private static final NpcStringId[] SPAM_TEXT1 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT2 =
|
||||
{
|
||||
NpcStringId.THE_MYSTIC_TAVERN_IS_OPEN_NOW
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT3 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT4 =
|
||||
{
|
||||
NpcStringId.ADVENTURER_THE_TAVERN_IS_THIS_WAY,
|
||||
NpcStringId.ARE_YOU_LOOKING_FOR_THE_TAVERN_IT_S_THIS_WAY,
|
||||
NpcStringId.COME_ON_CHANCES_LIKE_THESE_DON_T_COME_BY_OFTEN
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT5 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT6 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
|
||||
private TavernEmployee()
|
||||
{
|
||||
addSpawnId(LOYEE1);
|
||||
addSpawnId(LOYEE2);
|
||||
addSpawnId(LOYEE3);
|
||||
addSpawnId(LOYEE4);
|
||||
addSpawnId(LOYEE5);
|
||||
addSpawnId(LOYEE6);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
|
||||
{
|
||||
String htmltext = null;
|
||||
switch (event)
|
||||
{
|
||||
case "spam_text1":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT1[getRandom(SPAM_TEXT1.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text2":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT2[getRandom(SPAM_TEXT2.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text3":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT3[getRandom(SPAM_TEXT3.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text4":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT4[getRandom(SPAM_TEXT4.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text5":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT5[getRandom(SPAM_TEXT5.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text6":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT6[getRandom(SPAM_TEXT6.length)]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return htmltext;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onSpawn(Npc npc)
|
||||
{
|
||||
npc.setIsTalkable(false);
|
||||
|
||||
if (npc.getId() == LOYEE1)
|
||||
{
|
||||
startQuestTimer("spam_text1", 17000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE2)
|
||||
{
|
||||
startQuestTimer("spam_text2", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE3)
|
||||
{
|
||||
startQuestTimer("spam_text3", 16000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE4)
|
||||
{
|
||||
startQuestTimer("spam_text4", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE5)
|
||||
{
|
||||
startQuestTimer("spam_text5", 15000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE6)
|
||||
{
|
||||
startQuestTimer("spam_text6", 18000, npc, null, true);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new TavernEmployee();
|
||||
}
|
||||
}
|
@ -2,177 +2,6 @@
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaos">
|
||||
<group>
|
||||
<npc id="19460" x="-12880" y="-115200" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-12944" y="-121872" z="-3056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13344" y="-117872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13648" y="-123504" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14112" y="-110048" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14256" y="-119328" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14512" y="-115488" z="-3632" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15056" y="-111056" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15744" y="-110288" z="-3376" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16816" y="-123776" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16976" y="-122000" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-19952" y="-111040" z="-3456" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-20384" y="-123968" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21168" y="-112384" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21328" y="-111040" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22128" y="-123632" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22592" y="-119552" z="-3112" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23611" y="-115286" z="-3304" heading="41491" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23632" y="-116240" z="-3312" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24048" y="-120320" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24720" y="-115072" z="-3320" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24768" y="-124288" z="-2760" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-26576" y="-124688" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13520" y="-116752" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13568" y="-117008" z="-3640" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13856" y="-116800" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13904" y="-121088" z="-3088" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13952" y="-120800" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14144" y="-120944" z="-3072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14640" y="-122208" z="-3048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14736" y="-113648" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14800" y="-113904" z="-3664" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14806" y="-119856" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14944" y="-113744" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14992" y="-122256" z="-3040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15024" y="-120000" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15328" y="-113216" z="-3896" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15477" y="-120491" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15777" y="-120789" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16064" y="-111984" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16272" y="-116304" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16464" y="-115808" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16528" y="-111696" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16608" y="-116448" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16640" y="-118272" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16657" y="-111600" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16688" y="-118944" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17072" y="-117840" z="-4064" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17104" y="-111568" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17392" y="-118608" z="-4072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17520" y="-121344" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17600" y="-121552" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17760" y="-121488" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-18848" y="-119168" z="-4080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19089" y="-119344" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19216" y="-119104" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19280" y="-122784" z="-2888" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122144" z="-2936" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122768" z="-2880" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20096" y="-120256" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-112528" z="-3408" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-120128" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20352" y="-119888" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20416" y="-112736" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20560" y="-112624" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20800" y="-114272" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20912" y="-114480" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21024" y="-114096" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21488" y="-122464" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21536" y="-117776" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21680" y="-122128" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21728" y="-117408" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21776" y="-117664" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21808" y="-122432" z="-3152" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21904" y="-122096" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22320" y="-113200" z="-3440" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-114960" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-115408" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22496" y="-114432" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22512" y="-114800" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113296" z="-3360" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113712" z="-3296" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23120" y="-118800" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23248" y="-118544" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23264" y="-123040" z="-2736" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-110848" z="-3464" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-118752" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-110480" z="-3488" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-124304" z="-2904" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23360" y="-117408" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23488" y="-109408" z="-3496" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23536" y="-124544" z="-2840" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23568" y="-117968" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23696" y="-124320" z="-2824" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23711" y="-122992" z="-2704" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23856" y="-111232" z="-3472" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23872" y="-111872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-108944" z="-3520" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-109392" z="-3536" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-110432" z="-3504" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24032" y="-123392" z="-2712" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24144" y="-107664" z="-3552" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24352" y="-107824" z="-3560" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24448" y="-107408" z="-3568" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24576" y="-122192" z="-2872" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24864" y="-122576" z="-2800" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24928" y="-122976" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25520" y="-122832" z="-2776" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25632" y="-123056" z="-2752" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13184" y="-118432" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13216" y="-115152" z="-3608" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13424" y="-123232" z="-2984" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-14448" y="-110512" z="-3384" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-17504" y="-123120" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-21152" y="-111296" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-22000" y="-124352" z="-2960" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-23248" y="-119808" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-24368" y="-115456" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-25680" y="-124304" z="-2680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19463" x="-12033" y="-116237" z="-3688" heading="49918" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-12033" y="-116339" z="-3688" heading="10261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-13963" y="-108659" z="-3408" heading="42245" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14447" y="-108905" z="-3368" heading="6346" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119509" z="-3304" heading="45553" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119776" z="-3288" heading="26261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122895" z="-3184" heading="8941" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122970" z="-3208" heading="15110" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-16688" y="-117393" z="-4056" heading="62047" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17275" y="-115122" z="-4104" heading="13270" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17923" y="-121206" z="-3096" heading="27935" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-18181" y="-122766" z="-3168" heading="43900" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20127" y="-118333" z="-4048" heading="40671" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20659" y="-115209" z="-4056" heading="28544" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21233" y="-123118" z="-3008" heading="9363" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21349" y="-112003" z="-3416" heading="53204" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21799" y="-112003" z="-3448" heading="17516" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-22674" y="-122482" z="-3112" heading="32291" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23224" y="-117739" z="-3416" heading="50250" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23431" y="-117739" z="-3368" heading="65195" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-26861" y="-125278" z="-2712" heading="25424" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-27371" y="-126300" z="-2680" heading="34800" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19475" x="-12395" y="-118001" z="-3416" heading="29658" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13134" y="-122291" z="-2992" heading="29397" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13299" y="-119435" z="-3376" heading="33050" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13303" y="-115913" z="-3680" heading="29025" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13653" y="-119151" z="-3368" heading="12289" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13661" y="-122248" z="-3016" heading="36373" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13973" y="-121827" z="-3040" heading="59278" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14229" y="-109791" z="-3392" heading="6660" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14372" y="-115782" z="-3696" heading="50516" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14790" y="-115569" z="-3696" heading="25130" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15158" y="-109915" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15559" y="-109213" z="-3320" heading="9671" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15894" y="-121917" z="-3280" heading="62729" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16250" y="-122939" z="-3192" heading="19903" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16663" y="-122521" z="-3216" heading="20857" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-19694" y="-110725" z="-3456" heading="15978" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20372" y="-112317" z="-3432" heading="2443" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20553" y="-124316" z="-3016" heading="45686" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20754" y="-110972" z="-3440" heading="36153" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20996" y="-111238" z="-3376" heading="50789" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21578" y="-124111" z="-2992" heading="7712" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21958" y="-119954" z="-3176" heading="16036" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22277" y="-124010" z="-3000" heading="62251" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22843" y="-115025" z="-3296" heading="19429" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23006" y="-120155" z="-3216" heading="34577" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23360" y="-114821" z="-3304" heading="44826" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24536" y="-115710" z="-3280" heading="32287" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24538" y="-125094" z="-2720" heading="4912" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24969" y="-124698" z="-2712" heading="18372" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-26738" y="-125305" z="-2712" heading="47587" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="23330" x="-13218" y="-123208" z="-2984" heading="44356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13329" y="-122172" z="-3008" heading="19903" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13397" y="-122601" z="-3016" heading="17906" respawnTime="60sec" /> <!-- Rubble -->
|
||||
@ -213,36 +42,6 @@
|
||||
<npc id="23330" x="-25430" y="-125289" z="-2672" heading="44914" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25882" y="-125096" z="-2680" heading="43770" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25928" y="-125278" z="-2680" heading="55117" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23333" x="-12972" y="-123200" z="-2984" heading="61051" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13425" y="-122343" z="-2976" heading="38586" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13698" y="-122841" z="-3000" heading="51876" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13754" y="-119035" z="-3392" heading="55117" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13826" y="-119133" z="-3352" heading="59766" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13910" y="-114851" z="-3656" heading="7784" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13953" y="-118755" z="-3360" heading="6000" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14091" y="-115039" z="-3624" heading="33908" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14181" y="-114963" z="-3624" heading="20728" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14520" y="-110057" z="-3360" heading="3259" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14815" y="-110391" z="-3408" heading="689" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-15244" y="-109992" z="-3408" heading="19460" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-16529" y="-122521" z="-3184" heading="13814" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17168" y="-123114" z="-3224" heading="2177" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17310" y="-123082" z="-3192" heading="24247" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20276" y="-111400" z="-3392" heading="29658" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20387" y="-111325" z="-3400" heading="54730" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20454" y="-111521" z="-3424" heading="7127" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20939" y="-124310" z="-2944" heading="61245" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21162" y="-123647" z="-2944" heading="7762" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21321" y="-123879" z="-2984" heading="50198" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-22695" y="-120096" z="-3176" heading="42268" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23126" y="-119930" z="-3192" heading="52509" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23465" y="-120613" z="-3160" heading="36347" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23535" y="-115180" z="-3272" heading="57283" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23683" y="-115923" z="-3264" heading="1651" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23757" y="-115178" z="-3288" heading="43457" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25416" y="-125013" z="-2720" heading="46569" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25506" y="-125129" z="-2704" heading="37214" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25989" y="-124825" z="-2712" heading="41290" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23334" x="-12619" y="-122782" z="-2992" heading="54961" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12694" y="-123015" z="-2992" heading="48861" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12738" y="-122460" z="-2992" heading="9413" respawnTime="60sec" /> <!-- Shelop -->
|
||||
@ -522,91 +321,149 @@
|
||||
<npc id="23334" x="-26017" y="-124530" z="-2680" heading="11314" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26054" y="-124972" z="-2672" heading="54144" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26089" y="-124971" z="-2672" heading="44968" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23335" x="-12632" y="-122651" z="-2984" heading="47404" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12736" y="-122632" z="-2992" heading="31016" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12784" y="-122380" z="-2976" heading="42826" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13271" y="-118356" z="-3344" heading="6849" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13456" y="-118656" z="-3408" heading="36685" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13612" y="-114743" z="-3640" heading="26634" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13928" y="-114587" z="-3608" heading="41829" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14047" y="-114751" z="-3632" heading="51708" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14162" y="-118765" z="-3352" heading="35959" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14549" y="-109880" z="-3384" heading="62098" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14644" y="-110541" z="-3368" heading="9325" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-15375" y="-110379" z="-3368" heading="55222" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16647" y="-122791" z="-3240" heading="17135" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16864" y="-123441" z="-3200" heading="57180" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-17356" y="-123111" z="-3192" heading="39971" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20257" y="-111590" z="-3400" heading="25149" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20340" y="-111235" z="-3376" heading="62084" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20986" y="-111503" z="-3424" heading="40961" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21474" y="-123975" z="-3000" heading="37267" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21673" y="-123621" z="-2936" heading="35726" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21734" y="-124440" z="-2944" heading="21318" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22878" y="-120365" z="-3200" heading="49240" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22954" y="-120092" z="-3216" heading="43336" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23275" y="-120192" z="-3200" heading="37735" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23773" y="-115781" z="-3280" heading="13137" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23776" y="-115519" z="-3328" heading="57919" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23902" y="-115092" z="-3304" heading="6308" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25379" y="-124977" z="-2720" heading="38151" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25397" y="-125019" z="-2720" heading="51874" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25572" y="-125042" z="-2728" heading="46491" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13453" y="-122632" z="-3008" heading="34215" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13461" y="-114861" z="-3640" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13531" y="-118208" z="-3352" heading="32418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="33837" x="-26375" y="-106062" z="-2632" heading="65028" respawnTime="60sec" /> <!-- Refugee Corpse -->
|
||||
<npc id="33838" x="-25428" y="-105719" z="-2608" heading="17423" respawnTime="60sec" /> <!-- Quincy -->
|
||||
<npc id="33842" x="-25321" y="-105816" z="-2600" heading="23421" respawnTime="60sec" /> <!-- Parajan -->
|
||||
<npc id="33843" x="-25517" y="-105892" z="-2600" heading="19380" respawnTime="60sec" /> <!-- Falk -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23336" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17088" y="-117220" z="-4053" heading="14397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16958" y="-116540" z="-4062" heading="14397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17471" y="-114680" z="-4075" heading="31994" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18099" y="-114635" z="-4060" heading="31994" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19727" y="-114800" z="-4061" heading="35145" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20232" y="-114920" z="-4084" heading="35145" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20824" y="-115560" z="-4049" heading="41273" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20882" y="-115804" z="-4053" heading="46626" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21192" y="-116968" z="-4054" heading="46308" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21289" y="-117267" z="-4054" heading="45923" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20888" y="-117944" z="-4053" heading="61134" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20797" y="-118031" z="-4055" heading="57547" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20251" y="-118843" z="-4066" heading="52449" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19801" y="-119156" z="-4059" heading="63592" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18823" y="-119228" z="-4062" heading="64880" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18569" y="-119237" z="-4068" heading="306" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17714" y="-118742" z="-4071" heading="6553" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17204" y="-118375" z="-4105" heading="6553" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16303" y="-117347" z="-4062" heading="13175" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16231" y="-116738" z="-4071" heading="17990" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16526" y="-115580" z="-4065" heading="19114" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16673" y="-114968" z="-4074" heading="18245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16835" y="-113924" z="-4044" heading="26198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17382" y="-113618" z="-4027" heading="28280" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18645" y="-113808" z="-4026" heading="38720" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19175" y="-114146" z="-4051" heading="38720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20919" y="-115110" z="-4050" heading="46891" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21093" y="-115712" z="-4051" heading="44514" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21436" y="-117517" z="-4056" heading="51490" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21246" y="-118115" z="-4056" heading="53781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19771" y="-119446" z="-4065" heading="58852" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19220" y="-119645" z="-4059" heading="1127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17430" y="-118215" z="-4061" heading="9570" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17048" y="-117713" z="-4061" heading="10999" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16868" y="-116016" z="-4058" heading="20754" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17124" y="-115441" z="-4068" heading="20754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18218" y="-114521" z="-4052" heading="27232" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18757" y="-114286" z="-4043" heading="33319" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20003" y="-114567" z="-4054" heading="37973" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20485" y="-114955" z="-4054" heading="41754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21202" y="-116390" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21216" y="-116451" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21196" y="-117069" z="-4059" heading="51083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20884" y="-117566" z="-4059" heading="58782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19856" y="-118370" z="-4066" heading="60455" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19432" y="-118600" z="-4047" heading="58542" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18163" y="-118468" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17591" y="-118203" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -37,7 +37,11 @@
|
||||
<npc id="34200" x="-50112" y="-148078" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34200" x="-49485" y="-148037" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34203" x="-50720" y="-149040" z="-14936" heading="26108" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34203" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34205" x="-50984" y="-147336" z="-14945" heading="14991" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-50184" y="-147864" z="-14158" heading="31287" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34206" x="-50136" y="-148568" z="-14157" heading="7775" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34207" x="-49625" y="-148723" z="-14152" heading="63138" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34189" x="-52646" y="-147041" z="-14944" heading="42728" respawnTime="60sec" /> <!-- Mistress, Auction House Manager -->
|
||||
<npc id="34190" x="-54000" y="-146768" z="-14944" heading="7504" respawnTime="60sec" /> <!-- Attitude, Grocer -->
|
||||
<npc id="34192" x="-53313" y="-148013" z="-14944" heading="16672" respawnTime="60sec" /> <!-- Fouette, Warehouse Keeper -->
|
||||
|
@ -2590,4 +2590,34 @@
|
||||
<point X="83482" Y="149278" Z="-3405" delay="16" run="true" /> <!-- Kekropus -->
|
||||
<point X="83307" Y="148431" Z="-3405" delay="21" run="true" /> <!-- Training Camp Manager -->
|
||||
</route>
|
||||
<route name="employee_1" repeat="true" repeatStyle="back">
|
||||
<target id="34205" spawnX="-50984" spawnY="-147336" spawnZ="-14945" />
|
||||
<point X="-50984" Y="-147336" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51208" Y="-147704" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51160" Y="-148456" Z="-14946" delay="2" run="false" />
|
||||
<point X="-50728" Y="-148952" Z="-14944" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_2" repeat="true" repeatStyle="cycle">
|
||||
<target id="34204" spawnX="-50184" spawnY="-147864" spawnZ="-14158" />
|
||||
<point X="-50184" Y="-147864" Z="-14158" delay="2" run="false" />
|
||||
<point X="-50296" Y="-148104" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50056" Y="-148408" Z="-14158" delay="2" run="false" />
|
||||
<point X="-49768" Y="-148232" Z="-14186" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_3" repeat="true" repeatStyle="cycle">
|
||||
<target id="34206" spawnX="-50136" spawnY="-148568" spawnZ="-14157" />
|
||||
<point X="-50136" Y="-148568" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50152" Y="-149032" Z="-14171" delay="2" run="false" />
|
||||
<point X="-49784" Y="-148408" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49880" Y="-148348" Z="-14184" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_4" repeat="true" repeatStyle="cycle">
|
||||
<target id="34207" spawnX="-49625" spawnY="-148723" spawnZ="-14152" />
|
||||
<point X="-49625" Y="-148723" Z="-14152" delay="2" run="false" />
|
||||
<point X="-49256" Y="-148680" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49272" Y="-148088" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49400" Y="-148024" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49736" Y="-148264" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49640" Y="-148360" Z="-14176" delay="0" run="false" />
|
||||
</route>
|
||||
</routes>
|
@ -0,0 +1,206 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.GainakUnderground.TavernEmployee;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.NpcSay;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tavern Employee AI.
|
||||
* @author Edoo
|
||||
*/
|
||||
public class TavernEmployee extends AbstractNpcAI
|
||||
{
|
||||
// NPCs
|
||||
private static final int LOYEE1 = 34202;
|
||||
private static final int LOYEE2 = 34203;
|
||||
private static final int LOYEE3 = 34204;
|
||||
private static final int LOYEE4 = 34205;
|
||||
private static final int LOYEE5 = 34206;
|
||||
private static final int LOYEE6 = 34207;
|
||||
// Text
|
||||
private static final NpcStringId[] SPAM_TEXT1 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT2 =
|
||||
{
|
||||
NpcStringId.THE_MYSTIC_TAVERN_IS_OPEN_NOW
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT3 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT4 =
|
||||
{
|
||||
NpcStringId.ADVENTURER_THE_TAVERN_IS_THIS_WAY,
|
||||
NpcStringId.ARE_YOU_LOOKING_FOR_THE_TAVERN_IT_S_THIS_WAY,
|
||||
NpcStringId.COME_ON_CHANCES_LIKE_THESE_DON_T_COME_BY_OFTEN
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT5 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT6 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
|
||||
private TavernEmployee()
|
||||
{
|
||||
addSpawnId(LOYEE1);
|
||||
addSpawnId(LOYEE2);
|
||||
addSpawnId(LOYEE3);
|
||||
addSpawnId(LOYEE4);
|
||||
addSpawnId(LOYEE5);
|
||||
addSpawnId(LOYEE6);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
|
||||
{
|
||||
String htmltext = null;
|
||||
switch (event)
|
||||
{
|
||||
case "spam_text1":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT1[getRandom(SPAM_TEXT1.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text2":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT2[getRandom(SPAM_TEXT2.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text3":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT3[getRandom(SPAM_TEXT3.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text4":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT4[getRandom(SPAM_TEXT4.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text5":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT5[getRandom(SPAM_TEXT5.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text6":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT6[getRandom(SPAM_TEXT6.length)]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return htmltext;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onSpawn(Npc npc)
|
||||
{
|
||||
npc.setIsTalkable(false);
|
||||
|
||||
if (npc.getId() == LOYEE1)
|
||||
{
|
||||
startQuestTimer("spam_text1", 17000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE2)
|
||||
{
|
||||
startQuestTimer("spam_text2", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE3)
|
||||
{
|
||||
startQuestTimer("spam_text3", 16000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE4)
|
||||
{
|
||||
startQuestTimer("spam_text4", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE5)
|
||||
{
|
||||
startQuestTimer("spam_text5", 15000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE6)
|
||||
{
|
||||
startQuestTimer("spam_text6", 18000, npc, null, true);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new TavernEmployee();
|
||||
}
|
||||
}
|
@ -2,177 +2,6 @@
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaos">
|
||||
<group>
|
||||
<npc id="19460" x="-12880" y="-115200" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-12944" y="-121872" z="-3056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13344" y="-117872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13648" y="-123504" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14112" y="-110048" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14256" y="-119328" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14512" y="-115488" z="-3632" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15056" y="-111056" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15744" y="-110288" z="-3376" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16816" y="-123776" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16976" y="-122000" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-19952" y="-111040" z="-3456" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-20384" y="-123968" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21168" y="-112384" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21328" y="-111040" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22128" y="-123632" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22592" y="-119552" z="-3112" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23611" y="-115286" z="-3304" heading="41491" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23632" y="-116240" z="-3312" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24048" y="-120320" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24720" y="-115072" z="-3320" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24768" y="-124288" z="-2760" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-26576" y="-124688" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13520" y="-116752" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13568" y="-117008" z="-3640" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13856" y="-116800" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13904" y="-121088" z="-3088" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13952" y="-120800" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14144" y="-120944" z="-3072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14640" y="-122208" z="-3048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14736" y="-113648" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14800" y="-113904" z="-3664" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14806" y="-119856" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14944" y="-113744" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14992" y="-122256" z="-3040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15024" y="-120000" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15328" y="-113216" z="-3896" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15477" y="-120491" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15777" y="-120789" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16064" y="-111984" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16272" y="-116304" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16464" y="-115808" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16528" y="-111696" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16608" y="-116448" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16640" y="-118272" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16657" y="-111600" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16688" y="-118944" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17072" y="-117840" z="-4064" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17104" y="-111568" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17392" y="-118608" z="-4072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17520" y="-121344" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17600" y="-121552" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17760" y="-121488" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-18848" y="-119168" z="-4080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19089" y="-119344" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19216" y="-119104" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19280" y="-122784" z="-2888" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122144" z="-2936" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122768" z="-2880" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20096" y="-120256" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-112528" z="-3408" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-120128" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20352" y="-119888" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20416" y="-112736" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20560" y="-112624" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20800" y="-114272" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20912" y="-114480" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21024" y="-114096" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21488" y="-122464" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21536" y="-117776" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21680" y="-122128" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21728" y="-117408" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21776" y="-117664" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21808" y="-122432" z="-3152" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21904" y="-122096" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22320" y="-113200" z="-3440" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-114960" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-115408" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22496" y="-114432" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22512" y="-114800" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113296" z="-3360" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113712" z="-3296" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23120" y="-118800" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23248" y="-118544" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23264" y="-123040" z="-2736" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-110848" z="-3464" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-118752" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-110480" z="-3488" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-124304" z="-2904" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23360" y="-117408" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23488" y="-109408" z="-3496" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23536" y="-124544" z="-2840" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23568" y="-117968" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23696" y="-124320" z="-2824" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23711" y="-122992" z="-2704" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23856" y="-111232" z="-3472" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23872" y="-111872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-108944" z="-3520" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-109392" z="-3536" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-110432" z="-3504" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24032" y="-123392" z="-2712" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24144" y="-107664" z="-3552" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24352" y="-107824" z="-3560" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24448" y="-107408" z="-3568" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24576" y="-122192" z="-2872" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24864" y="-122576" z="-2800" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24928" y="-122976" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25520" y="-122832" z="-2776" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25632" y="-123056" z="-2752" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13184" y="-118432" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13216" y="-115152" z="-3608" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13424" y="-123232" z="-2984" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-14448" y="-110512" z="-3384" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-17504" y="-123120" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-21152" y="-111296" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-22000" y="-124352" z="-2960" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-23248" y="-119808" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-24368" y="-115456" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-25680" y="-124304" z="-2680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19463" x="-12033" y="-116237" z="-3688" heading="49918" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-12033" y="-116339" z="-3688" heading="10261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-13963" y="-108659" z="-3408" heading="42245" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14447" y="-108905" z="-3368" heading="6346" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119509" z="-3304" heading="45553" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119776" z="-3288" heading="26261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122895" z="-3184" heading="8941" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122970" z="-3208" heading="15110" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-16688" y="-117393" z="-4056" heading="62047" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17275" y="-115122" z="-4104" heading="13270" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17923" y="-121206" z="-3096" heading="27935" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-18181" y="-122766" z="-3168" heading="43900" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20127" y="-118333" z="-4048" heading="40671" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20659" y="-115209" z="-4056" heading="28544" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21233" y="-123118" z="-3008" heading="9363" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21349" y="-112003" z="-3416" heading="53204" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21799" y="-112003" z="-3448" heading="17516" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-22674" y="-122482" z="-3112" heading="32291" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23224" y="-117739" z="-3416" heading="50250" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23431" y="-117739" z="-3368" heading="65195" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-26861" y="-125278" z="-2712" heading="25424" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-27371" y="-126300" z="-2680" heading="34800" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19475" x="-12395" y="-118001" z="-3416" heading="29658" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13134" y="-122291" z="-2992" heading="29397" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13299" y="-119435" z="-3376" heading="33050" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13303" y="-115913" z="-3680" heading="29025" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13653" y="-119151" z="-3368" heading="12289" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13661" y="-122248" z="-3016" heading="36373" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13973" y="-121827" z="-3040" heading="59278" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14229" y="-109791" z="-3392" heading="6660" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14372" y="-115782" z="-3696" heading="50516" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14790" y="-115569" z="-3696" heading="25130" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15158" y="-109915" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15559" y="-109213" z="-3320" heading="9671" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15894" y="-121917" z="-3280" heading="62729" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16250" y="-122939" z="-3192" heading="19903" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16663" y="-122521" z="-3216" heading="20857" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-19694" y="-110725" z="-3456" heading="15978" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20372" y="-112317" z="-3432" heading="2443" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20553" y="-124316" z="-3016" heading="45686" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20754" y="-110972" z="-3440" heading="36153" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20996" y="-111238" z="-3376" heading="50789" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21578" y="-124111" z="-2992" heading="7712" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21958" y="-119954" z="-3176" heading="16036" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22277" y="-124010" z="-3000" heading="62251" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22843" y="-115025" z="-3296" heading="19429" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23006" y="-120155" z="-3216" heading="34577" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23360" y="-114821" z="-3304" heading="44826" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24536" y="-115710" z="-3280" heading="32287" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24538" y="-125094" z="-2720" heading="4912" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24969" y="-124698" z="-2712" heading="18372" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-26738" y="-125305" z="-2712" heading="47587" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="23330" x="-13218" y="-123208" z="-2984" heading="44356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13329" y="-122172" z="-3008" heading="19903" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13397" y="-122601" z="-3016" heading="17906" respawnTime="60sec" /> <!-- Rubble -->
|
||||
@ -213,36 +42,6 @@
|
||||
<npc id="23330" x="-25430" y="-125289" z="-2672" heading="44914" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25882" y="-125096" z="-2680" heading="43770" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25928" y="-125278" z="-2680" heading="55117" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23333" x="-12972" y="-123200" z="-2984" heading="61051" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13425" y="-122343" z="-2976" heading="38586" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13698" y="-122841" z="-3000" heading="51876" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13754" y="-119035" z="-3392" heading="55117" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13826" y="-119133" z="-3352" heading="59766" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13910" y="-114851" z="-3656" heading="7784" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13953" y="-118755" z="-3360" heading="6000" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14091" y="-115039" z="-3624" heading="33908" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14181" y="-114963" z="-3624" heading="20728" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14520" y="-110057" z="-3360" heading="3259" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14815" y="-110391" z="-3408" heading="689" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-15244" y="-109992" z="-3408" heading="19460" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-16529" y="-122521" z="-3184" heading="13814" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17168" y="-123114" z="-3224" heading="2177" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17310" y="-123082" z="-3192" heading="24247" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20276" y="-111400" z="-3392" heading="29658" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20387" y="-111325" z="-3400" heading="54730" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20454" y="-111521" z="-3424" heading="7127" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20939" y="-124310" z="-2944" heading="61245" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21162" y="-123647" z="-2944" heading="7762" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21321" y="-123879" z="-2984" heading="50198" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-22695" y="-120096" z="-3176" heading="42268" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23126" y="-119930" z="-3192" heading="52509" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23465" y="-120613" z="-3160" heading="36347" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23535" y="-115180" z="-3272" heading="57283" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23683" y="-115923" z="-3264" heading="1651" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23757" y="-115178" z="-3288" heading="43457" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25416" y="-125013" z="-2720" heading="46569" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25506" y="-125129" z="-2704" heading="37214" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25989" y="-124825" z="-2712" heading="41290" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23334" x="-12619" y="-122782" z="-2992" heading="54961" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12694" y="-123015" z="-2992" heading="48861" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12738" y="-122460" z="-2992" heading="9413" respawnTime="60sec" /> <!-- Shelop -->
|
||||
@ -522,91 +321,149 @@
|
||||
<npc id="23334" x="-26017" y="-124530" z="-2680" heading="11314" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26054" y="-124972" z="-2672" heading="54144" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26089" y="-124971" z="-2672" heading="44968" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23335" x="-12632" y="-122651" z="-2984" heading="47404" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12736" y="-122632" z="-2992" heading="31016" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12784" y="-122380" z="-2976" heading="42826" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13271" y="-118356" z="-3344" heading="6849" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13456" y="-118656" z="-3408" heading="36685" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13612" y="-114743" z="-3640" heading="26634" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13928" y="-114587" z="-3608" heading="41829" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14047" y="-114751" z="-3632" heading="51708" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14162" y="-118765" z="-3352" heading="35959" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14549" y="-109880" z="-3384" heading="62098" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14644" y="-110541" z="-3368" heading="9325" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-15375" y="-110379" z="-3368" heading="55222" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16647" y="-122791" z="-3240" heading="17135" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16864" y="-123441" z="-3200" heading="57180" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-17356" y="-123111" z="-3192" heading="39971" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20257" y="-111590" z="-3400" heading="25149" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20340" y="-111235" z="-3376" heading="62084" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20986" y="-111503" z="-3424" heading="40961" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21474" y="-123975" z="-3000" heading="37267" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21673" y="-123621" z="-2936" heading="35726" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21734" y="-124440" z="-2944" heading="21318" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22878" y="-120365" z="-3200" heading="49240" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22954" y="-120092" z="-3216" heading="43336" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23275" y="-120192" z="-3200" heading="37735" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23773" y="-115781" z="-3280" heading="13137" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23776" y="-115519" z="-3328" heading="57919" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23902" y="-115092" z="-3304" heading="6308" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25379" y="-124977" z="-2720" heading="38151" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25397" y="-125019" z="-2720" heading="51874" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25572" y="-125042" z="-2728" heading="46491" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13453" y="-122632" z="-3008" heading="34215" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13461" y="-114861" z="-3640" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13531" y="-118208" z="-3352" heading="32418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="33837" x="-26375" y="-106062" z="-2632" heading="65028" respawnTime="60sec" /> <!-- Refugee Corpse -->
|
||||
<npc id="33838" x="-25428" y="-105719" z="-2608" heading="17423" respawnTime="60sec" /> <!-- Quincy -->
|
||||
<npc id="33842" x="-25321" y="-105816" z="-2600" heading="23421" respawnTime="60sec" /> <!-- Parajan -->
|
||||
<npc id="33843" x="-25517" y="-105892" z="-2600" heading="19380" respawnTime="60sec" /> <!-- Falk -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23336" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17088" y="-117220" z="-4053" heading="14397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16958" y="-116540" z="-4062" heading="14397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17471" y="-114680" z="-4075" heading="31994" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18099" y="-114635" z="-4060" heading="31994" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19727" y="-114800" z="-4061" heading="35145" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20232" y="-114920" z="-4084" heading="35145" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20824" y="-115560" z="-4049" heading="41273" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20882" y="-115804" z="-4053" heading="46626" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21192" y="-116968" z="-4054" heading="46308" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21289" y="-117267" z="-4054" heading="45923" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20888" y="-117944" z="-4053" heading="61134" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20797" y="-118031" z="-4055" heading="57547" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20251" y="-118843" z="-4066" heading="52449" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19801" y="-119156" z="-4059" heading="63592" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18823" y="-119228" z="-4062" heading="64880" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18569" y="-119237" z="-4068" heading="306" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17714" y="-118742" z="-4071" heading="6553" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17204" y="-118375" z="-4105" heading="6553" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16303" y="-117347" z="-4062" heading="13175" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16231" y="-116738" z="-4071" heading="17990" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16526" y="-115580" z="-4065" heading="19114" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16673" y="-114968" z="-4074" heading="18245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16835" y="-113924" z="-4044" heading="26198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17382" y="-113618" z="-4027" heading="28280" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18645" y="-113808" z="-4026" heading="38720" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19175" y="-114146" z="-4051" heading="38720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20919" y="-115110" z="-4050" heading="46891" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21093" y="-115712" z="-4051" heading="44514" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21436" y="-117517" z="-4056" heading="51490" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21246" y="-118115" z="-4056" heading="53781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19771" y="-119446" z="-4065" heading="58852" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19220" y="-119645" z="-4059" heading="1127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17430" y="-118215" z="-4061" heading="9570" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17048" y="-117713" z="-4061" heading="10999" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16868" y="-116016" z="-4058" heading="20754" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17124" y="-115441" z="-4068" heading="20754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18218" y="-114521" z="-4052" heading="27232" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18757" y="-114286" z="-4043" heading="33319" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20003" y="-114567" z="-4054" heading="37973" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20485" y="-114955" z="-4054" heading="41754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21202" y="-116390" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21216" y="-116451" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21196" y="-117069" z="-4059" heading="51083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20884" y="-117566" z="-4059" heading="58782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19856" y="-118370" z="-4066" heading="60455" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19432" y="-118600" z="-4047" heading="58542" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18163" y="-118468" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17591" y="-118203" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -37,7 +37,11 @@
|
||||
<npc id="34200" x="-50112" y="-148078" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34200" x="-49485" y="-148037" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34203" x="-50720" y="-149040" z="-14936" heading="26108" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34203" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34205" x="-50984" y="-147336" z="-14945" heading="14991" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-50184" y="-147864" z="-14158" heading="31287" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34206" x="-50136" y="-148568" z="-14157" heading="7775" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34207" x="-49625" y="-148723" z="-14152" heading="63138" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34189" x="-52646" y="-147041" z="-14944" heading="42728" respawnTime="60sec" /> <!-- Mistress, Auction House Manager -->
|
||||
<npc id="34190" x="-54000" y="-146768" z="-14944" heading="7504" respawnTime="60sec" /> <!-- Attitude, Grocer -->
|
||||
<npc id="34192" x="-53313" y="-148013" z="-14944" heading="16672" respawnTime="60sec" /> <!-- Fouette, Warehouse Keeper -->
|
||||
|
@ -2590,4 +2590,34 @@
|
||||
<point X="83482" Y="149278" Z="-3405" delay="16" run="true" /> <!-- Kekropus -->
|
||||
<point X="83307" Y="148431" Z="-3405" delay="21" run="true" /> <!-- Training Camp Manager -->
|
||||
</route>
|
||||
<route name="employee_1" repeat="true" repeatStyle="back">
|
||||
<target id="34205" spawnX="-50984" spawnY="-147336" spawnZ="-14945" />
|
||||
<point X="-50984" Y="-147336" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51208" Y="-147704" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51160" Y="-148456" Z="-14946" delay="2" run="false" />
|
||||
<point X="-50728" Y="-148952" Z="-14944" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_2" repeat="true" repeatStyle="cycle">
|
||||
<target id="34204" spawnX="-50184" spawnY="-147864" spawnZ="-14158" />
|
||||
<point X="-50184" Y="-147864" Z="-14158" delay="2" run="false" />
|
||||
<point X="-50296" Y="-148104" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50056" Y="-148408" Z="-14158" delay="2" run="false" />
|
||||
<point X="-49768" Y="-148232" Z="-14186" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_3" repeat="true" repeatStyle="cycle">
|
||||
<target id="34206" spawnX="-50136" spawnY="-148568" spawnZ="-14157" />
|
||||
<point X="-50136" Y="-148568" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50152" Y="-149032" Z="-14171" delay="2" run="false" />
|
||||
<point X="-49784" Y="-148408" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49880" Y="-148348" Z="-14184" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_4" repeat="true" repeatStyle="cycle">
|
||||
<target id="34207" spawnX="-49625" spawnY="-148723" spawnZ="-14152" />
|
||||
<point X="-49625" Y="-148723" Z="-14152" delay="2" run="false" />
|
||||
<point X="-49256" Y="-148680" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49272" Y="-148088" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49400" Y="-148024" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49736" Y="-148264" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49640" Y="-148360" Z="-14176" delay="0" run="false" />
|
||||
</route>
|
||||
</routes>
|
@ -0,0 +1,206 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.GainakUnderground.TavernEmployee;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.NpcSay;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tavern Employee AI.
|
||||
* @author Edoo
|
||||
*/
|
||||
public class TavernEmployee extends AbstractNpcAI
|
||||
{
|
||||
// NPCs
|
||||
private static final int LOYEE1 = 34202;
|
||||
private static final int LOYEE2 = 34203;
|
||||
private static final int LOYEE3 = 34204;
|
||||
private static final int LOYEE4 = 34205;
|
||||
private static final int LOYEE5 = 34206;
|
||||
private static final int LOYEE6 = 34207;
|
||||
// Text
|
||||
private static final NpcStringId[] SPAM_TEXT1 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT2 =
|
||||
{
|
||||
NpcStringId.THE_MYSTIC_TAVERN_IS_OPEN_NOW
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT3 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT4 =
|
||||
{
|
||||
NpcStringId.ADVENTURER_THE_TAVERN_IS_THIS_WAY,
|
||||
NpcStringId.ARE_YOU_LOOKING_FOR_THE_TAVERN_IT_S_THIS_WAY,
|
||||
NpcStringId.COME_ON_CHANCES_LIKE_THESE_DON_T_COME_BY_OFTEN
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT5 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT6 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
|
||||
private TavernEmployee()
|
||||
{
|
||||
addSpawnId(LOYEE1);
|
||||
addSpawnId(LOYEE2);
|
||||
addSpawnId(LOYEE3);
|
||||
addSpawnId(LOYEE4);
|
||||
addSpawnId(LOYEE5);
|
||||
addSpawnId(LOYEE6);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
|
||||
{
|
||||
String htmltext = null;
|
||||
switch (event)
|
||||
{
|
||||
case "spam_text1":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT1[getRandom(SPAM_TEXT1.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text2":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT2[getRandom(SPAM_TEXT2.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text3":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT3[getRandom(SPAM_TEXT3.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text4":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT4[getRandom(SPAM_TEXT4.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text5":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT5[getRandom(SPAM_TEXT5.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text6":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT6[getRandom(SPAM_TEXT6.length)]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return htmltext;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onSpawn(Npc npc)
|
||||
{
|
||||
npc.setIsTalkable(false);
|
||||
|
||||
if (npc.getId() == LOYEE1)
|
||||
{
|
||||
startQuestTimer("spam_text1", 17000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE2)
|
||||
{
|
||||
startQuestTimer("spam_text2", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE3)
|
||||
{
|
||||
startQuestTimer("spam_text3", 16000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE4)
|
||||
{
|
||||
startQuestTimer("spam_text4", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE5)
|
||||
{
|
||||
startQuestTimer("spam_text5", 15000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE6)
|
||||
{
|
||||
startQuestTimer("spam_text6", 18000, npc, null, true);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new TavernEmployee();
|
||||
}
|
||||
}
|
@ -2,177 +2,6 @@
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaos">
|
||||
<group>
|
||||
<npc id="19460" x="-12880" y="-115200" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-12944" y="-121872" z="-3056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13344" y="-117872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13648" y="-123504" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14112" y="-110048" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14256" y="-119328" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14512" y="-115488" z="-3632" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15056" y="-111056" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15744" y="-110288" z="-3376" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16816" y="-123776" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16976" y="-122000" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-19952" y="-111040" z="-3456" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-20384" y="-123968" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21168" y="-112384" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21328" y="-111040" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22128" y="-123632" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22592" y="-119552" z="-3112" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23611" y="-115286" z="-3304" heading="41491" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23632" y="-116240" z="-3312" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24048" y="-120320" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24720" y="-115072" z="-3320" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24768" y="-124288" z="-2760" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-26576" y="-124688" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13520" y="-116752" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13568" y="-117008" z="-3640" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13856" y="-116800" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13904" y="-121088" z="-3088" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13952" y="-120800" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14144" y="-120944" z="-3072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14640" y="-122208" z="-3048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14736" y="-113648" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14800" y="-113904" z="-3664" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14806" y="-119856" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14944" y="-113744" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14992" y="-122256" z="-3040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15024" y="-120000" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15328" y="-113216" z="-3896" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15477" y="-120491" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15777" y="-120789" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16064" y="-111984" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16272" y="-116304" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16464" y="-115808" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16528" y="-111696" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16608" y="-116448" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16640" y="-118272" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16657" y="-111600" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16688" y="-118944" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17072" y="-117840" z="-4064" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17104" y="-111568" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17392" y="-118608" z="-4072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17520" y="-121344" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17600" y="-121552" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17760" y="-121488" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-18848" y="-119168" z="-4080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19089" y="-119344" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19216" y="-119104" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19280" y="-122784" z="-2888" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122144" z="-2936" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122768" z="-2880" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20096" y="-120256" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-112528" z="-3408" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-120128" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20352" y="-119888" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20416" y="-112736" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20560" y="-112624" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20800" y="-114272" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20912" y="-114480" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21024" y="-114096" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21488" y="-122464" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21536" y="-117776" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21680" y="-122128" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21728" y="-117408" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21776" y="-117664" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21808" y="-122432" z="-3152" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21904" y="-122096" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22320" y="-113200" z="-3440" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-114960" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-115408" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22496" y="-114432" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22512" y="-114800" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113296" z="-3360" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113712" z="-3296" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23120" y="-118800" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23248" y="-118544" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23264" y="-123040" z="-2736" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-110848" z="-3464" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-118752" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-110480" z="-3488" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-124304" z="-2904" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23360" y="-117408" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23488" y="-109408" z="-3496" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23536" y="-124544" z="-2840" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23568" y="-117968" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23696" y="-124320" z="-2824" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23711" y="-122992" z="-2704" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23856" y="-111232" z="-3472" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23872" y="-111872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-108944" z="-3520" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-109392" z="-3536" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-110432" z="-3504" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24032" y="-123392" z="-2712" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24144" y="-107664" z="-3552" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24352" y="-107824" z="-3560" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24448" y="-107408" z="-3568" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24576" y="-122192" z="-2872" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24864" y="-122576" z="-2800" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24928" y="-122976" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25520" y="-122832" z="-2776" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25632" y="-123056" z="-2752" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13184" y="-118432" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13216" y="-115152" z="-3608" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13424" y="-123232" z="-2984" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-14448" y="-110512" z="-3384" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-17504" y="-123120" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-21152" y="-111296" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-22000" y="-124352" z="-2960" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-23248" y="-119808" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-24368" y="-115456" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-25680" y="-124304" z="-2680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19463" x="-12033" y="-116237" z="-3688" heading="49918" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-12033" y="-116339" z="-3688" heading="10261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-13963" y="-108659" z="-3408" heading="42245" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14447" y="-108905" z="-3368" heading="6346" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119509" z="-3304" heading="45553" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119776" z="-3288" heading="26261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122895" z="-3184" heading="8941" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122970" z="-3208" heading="15110" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-16688" y="-117393" z="-4056" heading="62047" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17275" y="-115122" z="-4104" heading="13270" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17923" y="-121206" z="-3096" heading="27935" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-18181" y="-122766" z="-3168" heading="43900" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20127" y="-118333" z="-4048" heading="40671" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20659" y="-115209" z="-4056" heading="28544" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21233" y="-123118" z="-3008" heading="9363" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21349" y="-112003" z="-3416" heading="53204" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21799" y="-112003" z="-3448" heading="17516" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-22674" y="-122482" z="-3112" heading="32291" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23224" y="-117739" z="-3416" heading="50250" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23431" y="-117739" z="-3368" heading="65195" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-26861" y="-125278" z="-2712" heading="25424" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-27371" y="-126300" z="-2680" heading="34800" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19475" x="-12395" y="-118001" z="-3416" heading="29658" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13134" y="-122291" z="-2992" heading="29397" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13299" y="-119435" z="-3376" heading="33050" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13303" y="-115913" z="-3680" heading="29025" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13653" y="-119151" z="-3368" heading="12289" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13661" y="-122248" z="-3016" heading="36373" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13973" y="-121827" z="-3040" heading="59278" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14229" y="-109791" z="-3392" heading="6660" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14372" y="-115782" z="-3696" heading="50516" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14790" y="-115569" z="-3696" heading="25130" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15158" y="-109915" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15559" y="-109213" z="-3320" heading="9671" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15894" y="-121917" z="-3280" heading="62729" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16250" y="-122939" z="-3192" heading="19903" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16663" y="-122521" z="-3216" heading="20857" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-19694" y="-110725" z="-3456" heading="15978" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20372" y="-112317" z="-3432" heading="2443" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20553" y="-124316" z="-3016" heading="45686" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20754" y="-110972" z="-3440" heading="36153" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20996" y="-111238" z="-3376" heading="50789" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21578" y="-124111" z="-2992" heading="7712" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21958" y="-119954" z="-3176" heading="16036" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22277" y="-124010" z="-3000" heading="62251" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22843" y="-115025" z="-3296" heading="19429" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23006" y="-120155" z="-3216" heading="34577" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23360" y="-114821" z="-3304" heading="44826" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24536" y="-115710" z="-3280" heading="32287" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24538" y="-125094" z="-2720" heading="4912" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24969" y="-124698" z="-2712" heading="18372" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-26738" y="-125305" z="-2712" heading="47587" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="23330" x="-13218" y="-123208" z="-2984" heading="44356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13329" y="-122172" z="-3008" heading="19903" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13397" y="-122601" z="-3016" heading="17906" respawnTime="60sec" /> <!-- Rubble -->
|
||||
@ -213,36 +42,6 @@
|
||||
<npc id="23330" x="-25430" y="-125289" z="-2672" heading="44914" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25882" y="-125096" z="-2680" heading="43770" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25928" y="-125278" z="-2680" heading="55117" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23333" x="-12972" y="-123200" z="-2984" heading="61051" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13425" y="-122343" z="-2976" heading="38586" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13698" y="-122841" z="-3000" heading="51876" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13754" y="-119035" z="-3392" heading="55117" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13826" y="-119133" z="-3352" heading="59766" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13910" y="-114851" z="-3656" heading="7784" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13953" y="-118755" z="-3360" heading="6000" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14091" y="-115039" z="-3624" heading="33908" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14181" y="-114963" z="-3624" heading="20728" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14520" y="-110057" z="-3360" heading="3259" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14815" y="-110391" z="-3408" heading="689" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-15244" y="-109992" z="-3408" heading="19460" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-16529" y="-122521" z="-3184" heading="13814" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17168" y="-123114" z="-3224" heading="2177" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17310" y="-123082" z="-3192" heading="24247" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20276" y="-111400" z="-3392" heading="29658" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20387" y="-111325" z="-3400" heading="54730" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20454" y="-111521" z="-3424" heading="7127" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20939" y="-124310" z="-2944" heading="61245" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21162" y="-123647" z="-2944" heading="7762" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21321" y="-123879" z="-2984" heading="50198" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-22695" y="-120096" z="-3176" heading="42268" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23126" y="-119930" z="-3192" heading="52509" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23465" y="-120613" z="-3160" heading="36347" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23535" y="-115180" z="-3272" heading="57283" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23683" y="-115923" z="-3264" heading="1651" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23757" y="-115178" z="-3288" heading="43457" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25416" y="-125013" z="-2720" heading="46569" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25506" y="-125129" z="-2704" heading="37214" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25989" y="-124825" z="-2712" heading="41290" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23334" x="-12619" y="-122782" z="-2992" heading="54961" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12694" y="-123015" z="-2992" heading="48861" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12738" y="-122460" z="-2992" heading="9413" respawnTime="60sec" /> <!-- Shelop -->
|
||||
@ -522,91 +321,149 @@
|
||||
<npc id="23334" x="-26017" y="-124530" z="-2680" heading="11314" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26054" y="-124972" z="-2672" heading="54144" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26089" y="-124971" z="-2672" heading="44968" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23335" x="-12632" y="-122651" z="-2984" heading="47404" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12736" y="-122632" z="-2992" heading="31016" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12784" y="-122380" z="-2976" heading="42826" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13271" y="-118356" z="-3344" heading="6849" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13456" y="-118656" z="-3408" heading="36685" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13612" y="-114743" z="-3640" heading="26634" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13928" y="-114587" z="-3608" heading="41829" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14047" y="-114751" z="-3632" heading="51708" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14162" y="-118765" z="-3352" heading="35959" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14549" y="-109880" z="-3384" heading="62098" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14644" y="-110541" z="-3368" heading="9325" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-15375" y="-110379" z="-3368" heading="55222" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16647" y="-122791" z="-3240" heading="17135" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16864" y="-123441" z="-3200" heading="57180" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-17356" y="-123111" z="-3192" heading="39971" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20257" y="-111590" z="-3400" heading="25149" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20340" y="-111235" z="-3376" heading="62084" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20986" y="-111503" z="-3424" heading="40961" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21474" y="-123975" z="-3000" heading="37267" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21673" y="-123621" z="-2936" heading="35726" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21734" y="-124440" z="-2944" heading="21318" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22878" y="-120365" z="-3200" heading="49240" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22954" y="-120092" z="-3216" heading="43336" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23275" y="-120192" z="-3200" heading="37735" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23773" y="-115781" z="-3280" heading="13137" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23776" y="-115519" z="-3328" heading="57919" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23902" y="-115092" z="-3304" heading="6308" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25379" y="-124977" z="-2720" heading="38151" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25397" y="-125019" z="-2720" heading="51874" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25572" y="-125042" z="-2728" heading="46491" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13453" y="-122632" z="-3008" heading="34215" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13461" y="-114861" z="-3640" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13531" y="-118208" z="-3352" heading="32418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="33837" x="-26375" y="-106062" z="-2632" heading="65028" respawnTime="60sec" /> <!-- Refugee Corpse -->
|
||||
<npc id="33838" x="-25428" y="-105719" z="-2608" heading="17423" respawnTime="60sec" /> <!-- Quincy -->
|
||||
<npc id="33842" x="-25321" y="-105816" z="-2600" heading="23421" respawnTime="60sec" /> <!-- Parajan -->
|
||||
<npc id="33843" x="-25517" y="-105892" z="-2600" heading="19380" respawnTime="60sec" /> <!-- Falk -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23336" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17088" y="-117220" z="-4053" heading="14397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16958" y="-116540" z="-4062" heading="14397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17471" y="-114680" z="-4075" heading="31994" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18099" y="-114635" z="-4060" heading="31994" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19727" y="-114800" z="-4061" heading="35145" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20232" y="-114920" z="-4084" heading="35145" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20824" y="-115560" z="-4049" heading="41273" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20882" y="-115804" z="-4053" heading="46626" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21192" y="-116968" z="-4054" heading="46308" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21289" y="-117267" z="-4054" heading="45923" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20888" y="-117944" z="-4053" heading="61134" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20797" y="-118031" z="-4055" heading="57547" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20251" y="-118843" z="-4066" heading="52449" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19801" y="-119156" z="-4059" heading="63592" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18823" y="-119228" z="-4062" heading="64880" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18569" y="-119237" z="-4068" heading="306" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17714" y="-118742" z="-4071" heading="6553" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17204" y="-118375" z="-4105" heading="6553" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16303" y="-117347" z="-4062" heading="13175" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16231" y="-116738" z="-4071" heading="17990" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16526" y="-115580" z="-4065" heading="19114" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16673" y="-114968" z="-4074" heading="18245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16835" y="-113924" z="-4044" heading="26198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17382" y="-113618" z="-4027" heading="28280" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18645" y="-113808" z="-4026" heading="38720" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19175" y="-114146" z="-4051" heading="38720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20919" y="-115110" z="-4050" heading="46891" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21093" y="-115712" z="-4051" heading="44514" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21436" y="-117517" z="-4056" heading="51490" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21246" y="-118115" z="-4056" heading="53781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19771" y="-119446" z="-4065" heading="58852" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19220" y="-119645" z="-4059" heading="1127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17430" y="-118215" z="-4061" heading="9570" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17048" y="-117713" z="-4061" heading="10999" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16868" y="-116016" z="-4058" heading="20754" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17124" y="-115441" z="-4068" heading="20754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18218" y="-114521" z="-4052" heading="27232" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18757" y="-114286" z="-4043" heading="33319" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20003" y="-114567" z="-4054" heading="37973" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20485" y="-114955" z="-4054" heading="41754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21202" y="-116390" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21216" y="-116451" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21196" y="-117069" z="-4059" heading="51083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20884" y="-117566" z="-4059" heading="58782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19856" y="-118370" z="-4066" heading="60455" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19432" y="-118600" z="-4047" heading="58542" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18163" y="-118468" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17591" y="-118203" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -37,7 +37,11 @@
|
||||
<npc id="34200" x="-50112" y="-148078" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34200" x="-49485" y="-148037" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34203" x="-50720" y="-149040" z="-14936" heading="26108" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34203" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34205" x="-50984" y="-147336" z="-14945" heading="14991" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-50184" y="-147864" z="-14158" heading="31287" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34206" x="-50136" y="-148568" z="-14157" heading="7775" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34207" x="-49625" y="-148723" z="-14152" heading="63138" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34189" x="-52646" y="-147041" z="-14944" heading="42728" respawnTime="60sec" /> <!-- Mistress, Auction House Manager -->
|
||||
<npc id="34190" x="-54000" y="-146768" z="-14944" heading="7504" respawnTime="60sec" /> <!-- Attitude, Grocer -->
|
||||
<npc id="34192" x="-53313" y="-148013" z="-14944" heading="16672" respawnTime="60sec" /> <!-- Fouette, Warehouse Keeper -->
|
||||
|
@ -2590,4 +2590,34 @@
|
||||
<point X="83482" Y="149278" Z="-3405" delay="16" run="true" /> <!-- Kekropus -->
|
||||
<point X="83307" Y="148431" Z="-3405" delay="21" run="true" /> <!-- Training Camp Manager -->
|
||||
</route>
|
||||
<route name="employee_1" repeat="true" repeatStyle="back">
|
||||
<target id="34205" spawnX="-50984" spawnY="-147336" spawnZ="-14945" />
|
||||
<point X="-50984" Y="-147336" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51208" Y="-147704" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51160" Y="-148456" Z="-14946" delay="2" run="false" />
|
||||
<point X="-50728" Y="-148952" Z="-14944" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_2" repeat="true" repeatStyle="cycle">
|
||||
<target id="34204" spawnX="-50184" spawnY="-147864" spawnZ="-14158" />
|
||||
<point X="-50184" Y="-147864" Z="-14158" delay="2" run="false" />
|
||||
<point X="-50296" Y="-148104" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50056" Y="-148408" Z="-14158" delay="2" run="false" />
|
||||
<point X="-49768" Y="-148232" Z="-14186" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_3" repeat="true" repeatStyle="cycle">
|
||||
<target id="34206" spawnX="-50136" spawnY="-148568" spawnZ="-14157" />
|
||||
<point X="-50136" Y="-148568" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50152" Y="-149032" Z="-14171" delay="2" run="false" />
|
||||
<point X="-49784" Y="-148408" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49880" Y="-148348" Z="-14184" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_4" repeat="true" repeatStyle="cycle">
|
||||
<target id="34207" spawnX="-49625" spawnY="-148723" spawnZ="-14152" />
|
||||
<point X="-49625" Y="-148723" Z="-14152" delay="2" run="false" />
|
||||
<point X="-49256" Y="-148680" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49272" Y="-148088" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49400" Y="-148024" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49736" Y="-148264" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49640" Y="-148360" Z="-14176" delay="0" run="false" />
|
||||
</route>
|
||||
</routes>
|
@ -0,0 +1,206 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.GainakUnderground.TavernEmployee;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.NpcSay;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tavern Employee AI.
|
||||
* @author Edoo
|
||||
*/
|
||||
public class TavernEmployee extends AbstractNpcAI
|
||||
{
|
||||
// NPCs
|
||||
private static final int LOYEE1 = 34202;
|
||||
private static final int LOYEE2 = 34203;
|
||||
private static final int LOYEE3 = 34204;
|
||||
private static final int LOYEE4 = 34205;
|
||||
private static final int LOYEE5 = 34206;
|
||||
private static final int LOYEE6 = 34207;
|
||||
// Text
|
||||
private static final NpcStringId[] SPAM_TEXT1 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT2 =
|
||||
{
|
||||
NpcStringId.THE_MYSTIC_TAVERN_IS_OPEN_NOW
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT3 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT4 =
|
||||
{
|
||||
NpcStringId.ADVENTURER_THE_TAVERN_IS_THIS_WAY,
|
||||
NpcStringId.ARE_YOU_LOOKING_FOR_THE_TAVERN_IT_S_THIS_WAY,
|
||||
NpcStringId.COME_ON_CHANCES_LIKE_THESE_DON_T_COME_BY_OFTEN
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT5 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT6 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
|
||||
private TavernEmployee()
|
||||
{
|
||||
addSpawnId(LOYEE1);
|
||||
addSpawnId(LOYEE2);
|
||||
addSpawnId(LOYEE3);
|
||||
addSpawnId(LOYEE4);
|
||||
addSpawnId(LOYEE5);
|
||||
addSpawnId(LOYEE6);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
|
||||
{
|
||||
String htmltext = null;
|
||||
switch (event)
|
||||
{
|
||||
case "spam_text1":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT1[getRandom(SPAM_TEXT1.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text2":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT2[getRandom(SPAM_TEXT2.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text3":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT3[getRandom(SPAM_TEXT3.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text4":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT4[getRandom(SPAM_TEXT4.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text5":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT5[getRandom(SPAM_TEXT5.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text6":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT6[getRandom(SPAM_TEXT6.length)]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return htmltext;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onSpawn(Npc npc)
|
||||
{
|
||||
npc.setIsTalkable(false);
|
||||
|
||||
if (npc.getId() == LOYEE1)
|
||||
{
|
||||
startQuestTimer("spam_text1", 17000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE2)
|
||||
{
|
||||
startQuestTimer("spam_text2", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE3)
|
||||
{
|
||||
startQuestTimer("spam_text3", 16000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE4)
|
||||
{
|
||||
startQuestTimer("spam_text4", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE5)
|
||||
{
|
||||
startQuestTimer("spam_text5", 15000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE6)
|
||||
{
|
||||
startQuestTimer("spam_text6", 18000, npc, null, true);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new TavernEmployee();
|
||||
}
|
||||
}
|
@ -1,612 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaos">
|
||||
<group>
|
||||
<npc id="19460" x="-12880" y="-115200" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-12944" y="-121872" z="-3056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13344" y="-117872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-13648" y="-123504" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14112" y="-110048" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14256" y="-119328" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-14512" y="-115488" z="-3632" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15056" y="-111056" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-15744" y="-110288" z="-3376" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16816" y="-123776" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-16976" y="-122000" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-19952" y="-111040" z="-3456" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-20384" y="-123968" z="-3024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21168" y="-112384" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-21328" y="-111040" z="-3432" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22128" y="-123632" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-22592" y="-119552" z="-3112" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23611" y="-115286" z="-3304" heading="41491" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-23632" y="-116240" z="-3312" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24048" y="-120320" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24720" y="-115072" z="-3320" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-24768" y="-124288" z="-2760" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19460" x="-26576" y="-124688" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13520" y="-116752" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13568" y="-117008" z="-3640" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13856" y="-116800" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13904" y="-121088" z="-3088" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-13952" y="-120800" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14144" y="-120944" z="-3072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14640" y="-122208" z="-3048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14736" y="-113648" z="-3696" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14800" y="-113904" z="-3664" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14806" y="-119856" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14944" y="-113744" z="-3680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-14992" y="-122256" z="-3040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15024" y="-120000" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15328" y="-113216" z="-3896" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15477" y="-120491" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-15777" y="-120789" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16064" y="-111984" z="-3416" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16272" y="-116304" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16464" y="-115808" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16528" y="-111696" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16608" y="-116448" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16640" y="-118272" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16657" y="-111600" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-16688" y="-118944" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17072" y="-117840" z="-4064" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17104" y="-111568" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17392" y="-118608" z="-4072" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17520" y="-121344" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17600" y="-121552" z="-3080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-17760" y="-121488" z="-3008" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-18848" y="-119168" z="-4080" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19089" y="-119344" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19216" y="-119104" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19280" y="-122784" z="-2888" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122144" z="-2936" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-19472" y="-122768" z="-2880" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20096" y="-120256" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-112528" z="-3408" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20336" y="-120128" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20352" y="-119888" z="-4056" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20416" y="-112736" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20560" y="-112624" z="-3392" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20800" y="-114272" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-20912" y="-114480" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21024" y="-114096" z="-4024" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21488" y="-122464" z="-3128" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21536" y="-117776" z="-4040" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21680" y="-122128" z="-3240" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21728" y="-117408" z="-4032" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21776" y="-117664" z="-4048" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21808" y="-122432" z="-3152" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-21904" y="-122096" z="-3272" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22320" y="-113200" z="-3440" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-114960" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22336" y="-115408" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22496" y="-114432" z="-3280" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-22512" y="-114800" z="-3352" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113296" z="-3360" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23008" y="-113712" z="-3296" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23120" y="-118800" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23248" y="-118544" z="-3288" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23264" y="-123040" z="-2736" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-110848" z="-3464" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23328" y="-118752" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-110480" z="-3488" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23344" y="-124304" z="-2904" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23360" y="-117408" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23488" y="-109408" z="-3496" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23536" y="-124544" z="-2840" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23568" y="-117968" z="-3344" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23696" y="-124320" z="-2824" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23711" y="-122992" z="-2704" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23856" y="-111232" z="-3472" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23872" y="-111872" z="-3448" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-108944" z="-3520" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-109392" z="-3536" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-23920" y="-110432" z="-3504" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24032" y="-123392" z="-2712" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24144" y="-107664" z="-3552" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24352" y="-107824" z="-3560" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24448" y="-107408" z="-3568" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24576" y="-122192" z="-2872" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24864" y="-122576" z="-2800" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-24928" y="-122976" z="-2728" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25520" y="-122832" z="-2776" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19461" x="-25632" y="-123056" z="-2752" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13184" y="-118432" z="-3336" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13216" y="-115152" z="-3608" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-13424" y="-123232" z="-2984" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-14448" y="-110512" z="-3384" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-17504" y="-123120" z="-3232" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-21152" y="-111296" z="-3400" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-22000" y="-124352" z="-2960" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-23248" y="-119808" z="-3176" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-24368" y="-115456" z="-3248" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19462" x="-25680" y="-124304" z="-2680" heading="0" respawnTime="60sec" /> <!-- Horn -->
|
||||
<npc id="19463" x="-12033" y="-116237" z="-3688" heading="49918" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-12033" y="-116339" z="-3688" heading="10261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-13963" y="-108659" z="-3408" heading="42245" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14447" y="-108905" z="-3368" heading="6346" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119509" z="-3304" heading="45553" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-14734" y="-119776" z="-3288" heading="26261" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122895" z="-3184" heading="8941" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-15696" y="-122970" z="-3208" heading="15110" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-16688" y="-117393" z="-4056" heading="62047" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17275" y="-115122" z="-4104" heading="13270" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-17923" y="-121206" z="-3096" heading="27935" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-18181" y="-122766" z="-3168" heading="43900" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20127" y="-118333" z="-4048" heading="40671" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-20659" y="-115209" z="-4056" heading="28544" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21233" y="-123118" z="-3008" heading="9363" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21349" y="-112003" z="-3416" heading="53204" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-21799" y="-112003" z="-3448" heading="17516" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-22674" y="-122482" z="-3112" heading="32291" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23224" y="-117739" z="-3416" heading="50250" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-23431" y="-117739" z="-3368" heading="65195" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-26861" y="-125278" z="-2712" heading="25424" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19463" x="-27371" y="-126300" z="-2680" heading="34800" respawnTime="60sec" /> <!-- Bloody Horn -->
|
||||
<npc id="19475" x="-12395" y="-118001" z="-3416" heading="29658" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13134" y="-122291" z="-2992" heading="29397" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13299" y="-119435" z="-3376" heading="33050" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13303" y="-115913" z="-3680" heading="29025" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13653" y="-119151" z="-3368" heading="12289" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13661" y="-122248" z="-3016" heading="36373" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-13973" y="-121827" z="-3040" heading="59278" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14229" y="-109791" z="-3392" heading="6660" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14372" y="-115782" z="-3696" heading="50516" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-14790" y="-115569" z="-3696" heading="25130" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15158" y="-109915" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15559" y="-109213" z="-3320" heading="9671" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-15894" y="-121917" z="-3280" heading="62729" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16250" y="-122939" z="-3192" heading="19903" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-16663" y="-122521" z="-3216" heading="20857" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-19694" y="-110725" z="-3456" heading="15978" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20372" y="-112317" z="-3432" heading="2443" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20553" y="-124316" z="-3016" heading="45686" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20754" y="-110972" z="-3440" heading="36153" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-20996" y="-111238" z="-3376" heading="50789" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21578" y="-124111" z="-2992" heading="7712" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-21958" y="-119954" z="-3176" heading="16036" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22277" y="-124010" z="-3000" heading="62251" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-22843" y="-115025" z="-3296" heading="19429" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23006" y="-120155" z="-3216" heading="34577" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-23360" y="-114821" z="-3304" heading="44826" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24536" y="-115710" z="-3280" heading="32287" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24538" y="-125094" z="-2720" heading="4912" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-24969" y="-124698" z="-2712" heading="18372" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="19475" x="-26738" y="-125305" z="-2712" heading="47587" respawnTime="60sec" /> <!-- Legah -->
|
||||
<npc id="23330" x="-13218" y="-123208" z="-2984" heading="44356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13329" y="-122172" z="-3008" heading="19903" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13397" y="-122601" z="-3016" heading="17906" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13422" y="-122851" z="-3040" heading="37838" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13726" y="-118866" z="-3408" heading="22154" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13745" y="-114868" z="-3664" heading="51971" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13811" y="-118812" z="-3408" heading="6432" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13844" y="-114907" z="-3656" heading="48890" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13883" y="-114762" z="-3632" heading="46046" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14039" y="-118835" z="-3360" heading="41269" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14067" y="-118411" z="-3352" heading="6869" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14158" y="-114820" z="-3616" heading="48802" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14766" y="-109924" z="-3368" heading="5651" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14804" y="-110749" z="-3376" heading="49766" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14882" y="-110543" z="-3400" heading="15344" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14984" y="-109679" z="-3368" heading="30127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16839" y="-122990" z="-3232" heading="42019" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16931" y="-122479" z="-3216" heading="19012" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16976" y="-123094" z="-3224" heading="18035" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17176" y="-122715" z="-3200" heading="60701" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20175" y="-111267" z="-3416" heading="56265" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20268" y="-111370" z="-3384" heading="4467" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20431" y="-111876" z="-3400" heading="64958" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20987" y="-111428" z="-3416" heading="43749" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21103" y="-124249" z="-2984" heading="22886" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21442" y="-124059" z="-3000" heading="21219" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21521" y="-123646" z="-2936" heading="43347" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21729" y="-123985" z="-2976" heading="39691" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22942" y="-120323" z="-3216" heading="10776" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23165" y="-120366" z="-3224" heading="15405" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23416" y="-120569" z="-3192" heading="19666" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23451" y="-115800" z="-3272" heading="40961" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23549" y="-115593" z="-3304" heading="57437" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23644" y="-120368" z="-3160" heading="27698" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23885" y="-115192" z="-3304" heading="3904" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24067" y="-115346" z="-3296" heading="11986" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25144" y="-124743" z="-2688" heading="13940" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25430" y="-125289" z="-2672" heading="44914" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25882" y="-125096" z="-2680" heading="43770" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25928" y="-125278" z="-2680" heading="55117" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23333" x="-12972" y="-123200" z="-2984" heading="61051" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13425" y="-122343" z="-2976" heading="38586" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13698" y="-122841" z="-3000" heading="51876" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13754" y="-119035" z="-3392" heading="55117" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13826" y="-119133" z="-3352" heading="59766" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13910" y="-114851" z="-3656" heading="7784" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-13953" y="-118755" z="-3360" heading="6000" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14091" y="-115039" z="-3624" heading="33908" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14181" y="-114963" z="-3624" heading="20728" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14520" y="-110057" z="-3360" heading="3259" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-14815" y="-110391" z="-3408" heading="689" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-15244" y="-109992" z="-3408" heading="19460" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-16529" y="-122521" z="-3184" heading="13814" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17168" y="-123114" z="-3224" heading="2177" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-17310" y="-123082" z="-3192" heading="24247" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20276" y="-111400" z="-3392" heading="29658" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20387" y="-111325" z="-3400" heading="54730" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20454" y="-111521" z="-3424" heading="7127" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-20939" y="-124310" z="-2944" heading="61245" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21162" y="-123647" z="-2944" heading="7762" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-21321" y="-123879" z="-2984" heading="50198" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-22695" y="-120096" z="-3176" heading="42268" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23126" y="-119930" z="-3192" heading="52509" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23465" y="-120613" z="-3160" heading="36347" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23535" y="-115180" z="-3272" heading="57283" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23683" y="-115923" z="-3264" heading="1651" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-23757" y="-115178" z="-3288" heading="43457" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25416" y="-125013" z="-2720" heading="46569" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25506" y="-125129" z="-2704" heading="37214" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23333" x="-25989" y="-124825" z="-2712" heading="41290" respawnTime="60sec" /> <!-- Putrefied Zombie -->
|
||||
<npc id="23334" x="-12619" y="-122782" z="-2992" heading="54961" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12694" y="-123015" z="-2992" heading="48861" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12738" y="-122460" z="-2992" heading="9413" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12766" y="-122941" z="-2984" heading="64229" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12832" y="-122880" z="-3024" heading="62546" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12845" y="-122643" z="-3024" heading="18476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12965" y="-122313" z="-2992" heading="65087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13025" y="-122574" z="-3032" heading="58207" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13038" y="-122231" z="-3000" heading="32534" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13042" y="-122762" z="-3048" heading="61865" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13067" y="-122977" z="-3032" heading="15516" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13069" y="-123177" z="-3000" heading="2261" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13112" y="-122656" z="-3048" heading="46376" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13114" y="-122221" z="-2992" heading="26936" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13186" y="-118325" z="-3344" heading="4097" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13189" y="-123181" z="-2984" heading="694" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13198" y="-118794" z="-3360" heading="41453" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13227" y="-118162" z="-3384" heading="9337" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13227" y="-118939" z="-3360" heading="55526" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13241" y="-123060" z="-3008" heading="42258" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13243" y="-114992" z="-3616" heading="21219" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13262" y="-118699" z="-3376" heading="28896" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13276" y="-123110" z="-3008" heading="32359" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13277" y="-122219" z="-2992" heading="15223" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13284" y="-118591" z="-3384" heading="2330" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13289" y="-122477" z="-3016" heading="58767" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13298" y="-118248" z="-3368" heading="14647" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13304" y="-123091" z="-3008" heading="52289" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13322" y="-118153" z="-3352" heading="3100" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13323" y="-122458" z="-3024" heading="26183" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13345" y="-123121" z="-3008" heading="46914" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13357" y="-114954" z="-3616" heading="32743" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13361" y="-119077" z="-3368" heading="14000" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13364" y="-122662" z="-3032" heading="41496" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13393" y="-118518" z="-3368" heading="56421" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13399" y="-114822" z="-3616" heading="65069" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13410" y="-115333" z="-3608" heading="4885" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13421" y="-122830" z="-3040" heading="62324" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13442" y="-114943" z="-3648" heading="10776" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13458" y="-122493" z="-3008" heading="38950" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13517" y="-118466" z="-3392" heading="65479" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13524" y="-115264" z="-3640" heading="30901" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13531" y="-115465" z="-3632" heading="2807" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13533" y="-114715" z="-3616" heading="27309" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13545" y="-115130" z="-3648" heading="2492" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13551" y="-115347" z="-3656" heading="63486" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13572" y="-119253" z="-3344" heading="50435" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13575" y="-115238" z="-3664" heading="64497" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13588" y="-114878" z="-3648" heading="52366" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13601" y="-122428" z="-2976" heading="46202" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13607" y="-118413" z="-3400" heading="22035" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13628" y="-118347" z="-3376" heading="13027" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13635" y="-118960" z="-3392" heading="54864" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13643" y="-114836" z="-3648" heading="32505" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13643" y="-115151" z="-3672" heading="62634" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13644" y="-122801" z="-2984" heading="19556" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13648" y="-115329" z="-3648" heading="20955" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13668" y="-115313" z="-3664" heading="60701" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13672" y="-122975" z="-2984" heading="40879" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13689" y="-115136" z="-3672" heading="60894" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13700" y="-115226" z="-3672" heading="38975" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13702" y="-114777" z="-3632" heading="55551" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13721" y="-118349" z="-3368" heading="28315" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13739" y="-118464" z="-3392" heading="26247" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13771" y="-115594" z="-3608" heading="58023" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13774" y="-119055" z="-3360" heading="1382" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13788" y="-119068" z="-3360" heading="8189" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13798" y="-118568" z="-3408" heading="55070" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13843" y="-115387" z="-3656" heading="2973" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13855" y="-118927" z="-3400" heading="51792" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13858" y="-118301" z="-3352" heading="20095" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13876" y="-118803" z="-3392" heading="46752" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13879" y="-114913" z="-3656" heading="25974" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13885" y="-119189" z="-3360" heading="48627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13894" y="-118287" z="-3352" heading="40425" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13909" y="-115415" z="-3656" heading="45152" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13927" y="-118679" z="-3400" heading="25188" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13937" y="-118909" z="-3392" heading="10419" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13974" y="-115502" z="-3616" heading="56854" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14002" y="-118914" z="-3352" heading="42988" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14026" y="-115419" z="-3632" heading="30828" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14067" y="-114702" z="-3616" heading="47331" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14181" y="-115499" z="-3608" heading="30212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14315" y="-115315" z="-3608" heading="23435" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14453" y="-110150" z="-3352" heading="53911" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14605" y="-110288" z="-3392" heading="18476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14613" y="-110006" z="-3384" heading="60778" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14654" y="-110216" z="-3392" heading="26586" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14657" y="-110061" z="-3400" heading="34348" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14670" y="-110370" z="-3384" heading="48018" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14766" y="-109772" z="-3368" heading="5010" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14776" y="-110670" z="-3368" heading="34485" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14797" y="-110204" z="-3408" heading="40179" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14888" y="-110577" z="-3400" heading="30930" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14903" y="-110395" z="-3424" heading="39353" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14917" y="-109786" z="-3360" heading="34708" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14925" y="-109865" z="-3392" heading="2274" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14950" y="-110298" z="-3424" heading="22274" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14986" y="-110563" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15077" y="-109972" z="-3408" heading="8599" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15107" y="-110456" z="-3408" heading="38386" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15116" y="-109898" z="-3392" heading="27659" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15124" y="-110189" z="-3416" heading="4913" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15206" y="-110251" z="-3416" heading="34520" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15212" y="-109921" z="-3392" heading="41856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15224" y="-109846" z="-3376" heading="50524" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15228" y="-110250" z="-3416" heading="36125" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15240" y="-110177" z="-3400" heading="15907" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15254" y="-109762" z="-3360" heading="35536" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15460" y="-109989" z="-3360" heading="32680" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15507" y="-110177" z="-3360" heading="26345" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15545" y="-110242" z="-3352" heading="20207" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16406" y="-122855" z="-3184" heading="19465" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16466" y="-122486" z="-3192" heading="44718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16468" y="-122945" z="-3208" heading="405" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16480" y="-122386" z="-3200" heading="37131" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16691" y="-122624" z="-3216" heading="25933" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16799" y="-123045" z="-3224" heading="55865" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16828" y="-122337" z="-3184" heading="40810" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16841" y="-122402" z="-3192" heading="44042" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16858" y="-122639" z="-3240" heading="24904" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16889" y="-122272" z="-3184" heading="64583" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17028" y="-122654" z="-3224" heading="25811" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17082" y="-122323" z="-3192" heading="780" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17105" y="-122913" z="-3232" heading="44609" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17105" y="-123432" z="-3192" heading="50645" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17113" y="-122827" z="-3232" heading="59379" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17126" y="-122830" z="-3232" heading="36565" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17132" y="-123385" z="-3176" heading="34261" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17146" y="-123027" z="-3216" heading="60332" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17146" y="-123190" z="-3192" heading="63444" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17232" y="-122744" z="-3200" heading="30423" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17251" y="-122781" z="-3216" heading="5651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17291" y="-123297" z="-3200" heading="14481" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17326" y="-122562" z="-3184" heading="14585" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17331" y="-123020" z="-3192" heading="52270" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17357" y="-123247" z="-3192" heading="32418" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17365" y="-123178" z="-3192" heading="60151" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17445" y="-122690" z="-3200" heading="45298" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17491" y="-122809" z="-3192" heading="44746" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20139" y="-111539" z="-3392" heading="51476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20156" y="-111364" z="-3392" heading="43045" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20209" y="-112041" z="-3384" heading="48627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20297" y="-111910" z="-3400" heading="51212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20302" y="-111724" z="-3400" heading="18170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20304" y="-111411" z="-3408" heading="64900" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20324" y="-111931" z="-3408" heading="64727" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20334" y="-111085" z="-3408" heading="18645" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20337" y="-111452" z="-3416" heading="5378" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20345" y="-111959" z="-3408" heading="56704" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20351" y="-111652" z="-3400" heading="3445" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20357" y="-112103" z="-3384" heading="59612" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20364" y="-111654" z="-3424" heading="41548" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20367" y="-111455" z="-3408" heading="173" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20371" y="-111439" z="-3408" heading="56607" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20385" y="-111272" z="-3376" heading="46853" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20385" y="-111912" z="-3400" heading="20561" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20392" y="-111254" z="-3376" heading="4719" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20394" y="-111326" z="-3400" heading="7325" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20416" y="-111650" z="-3424" heading="59885" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20427" y="-111190" z="-3376" heading="45614" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20434" y="-111711" z="-3424" heading="30170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20435" y="-111186" z="-3376" heading="953" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20438" y="-112028" z="-3408" heading="38151" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20440" y="-111263" z="-3384" heading="52976" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20446" y="-111167" z="-3376" heading="6839" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20454" y="-111143" z="-3376" heading="10658" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20644" y="-112131" z="-3392" heading="56699" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20941" y="-124278" z="-2944" heading="35239" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20999" y="-124202" z="-2968" heading="19191" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21012" y="-124303" z="-2952" heading="56770" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21013" y="-124041" z="-2968" heading="7765" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21025" y="-124464" z="-2936" heading="55612" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21077" y="-124242" z="-2976" heading="3355" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21098" y="-123678" z="-2936" heading="61713" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21118" y="-124460" z="-2936" heading="40283" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21130" y="-124113" z="-2984" heading="59331" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21140" y="-124313" z="-2968" heading="62554" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21212" y="-123891" z="-2992" heading="16962" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21217" y="-124443" z="-2960" heading="62057" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21272" y="-123881" z="-2984" heading="7701" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21308" y="-124192" z="-3000" heading="28121" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21356" y="-123588" z="-2944" heading="23756" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21367" y="-124275" z="-3000" heading="58649" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21392" y="-123707" z="-2976" heading="14037" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21401" y="-123917" z="-3000" heading="43246" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21447" y="-123814" z="-3000" heading="40343" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21451" y="-123702" z="-2976" heading="47220" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21528" y="-124519" z="-2944" heading="53599" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21579" y="-124609" z="-2952" heading="58703" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21581" y="-123679" z="-2960" heading="43399" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21615" y="-123877" z="-2984" heading="31102" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21652" y="-123887" z="-2984" heading="56265" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21659" y="-124411" z="-2952" heading="57621" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21864" y="-124008" z="-2944" heading="50597" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21911" y="-124243" z="-2952" heading="48044" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22604" y="-120531" z="-3168" heading="18602" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22696" y="-120533" z="-3176" heading="1627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22749" y="-120311" z="-3176" heading="23713" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22765" y="-120640" z="-3168" heading="39139" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22780" y="-120645" z="-3168" heading="10985" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22807" y="-120595" z="-3176" heading="43576" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22850" y="-120382" z="-3200" heading="21200" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22877" y="-119939" z="-3184" heading="61374" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22914" y="-120591" z="-3208" heading="48298" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22931" y="-120717" z="-3192" heading="34735" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22937" y="-120160" z="-3216" heading="21841" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23020" y="-120112" z="-3216" heading="16253" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23048" y="-120604" z="-3192" heading="62538" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23051" y="-119892" z="-3184" heading="13933" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23063" y="-120513" z="-3216" heading="30085" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23114" y="-120288" z="-3216" heading="20363" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23116" y="-120590" z="-3192" heading="40976" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23139" y="-119851" z="-3160" heading="28087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23146" y="-120533" z="-3216" heading="18170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23162" y="-120806" z="-3168" heading="33510" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23250" y="-120726" z="-3184" heading="29810" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23253" y="-120199" z="-3208" heading="47753" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23261" y="-120777" z="-3168" heading="44056" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23282" y="-120611" z="-3192" heading="37137" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23294" y="-120237" z="-3208" heading="34224" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23295" y="-115289" z="-3280" heading="27351" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23306" y="-115357" z="-3264" heading="62181" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23312" y="-115389" z="-3264" heading="6384" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23364" y="-115363" z="-3264" heading="27280" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23430" y="-120139" z="-3160" heading="5636" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23450" y="-115512" z="-3280" heading="39096" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23452" y="-120190" z="-3160" heading="17949" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23475" y="-115121" z="-3272" heading="47856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23528" y="-115247" z="-3304" heading="53610" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23559" y="-120583" z="-3176" heading="43651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23583" y="-115762" z="-3272" heading="16356" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23644" y="-115392" z="-3312" heading="45411" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23658" y="-115850" z="-3264" heading="46460" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23660" y="-115741" z="-3304" heading="10702" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23725" y="-115037" z="-3296" heading="33596" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23768" y="-115468" z="-3328" heading="16514" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23775" y="-114886" z="-3256" heading="20288" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23865" y="-115293" z="-3312" heading="18928" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23911" y="-115219" z="-3312" heading="39132" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23938" y="-115635" z="-3312" heading="18120" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23974" y="-115580" z="-3320" heading="5754" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24022" y="-114905" z="-3280" heading="7091" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24055" y="-115508" z="-3320" heading="2280" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24091" y="-115356" z="-3296" heading="46002" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24115" y="-115171" z="-3272" heading="2625" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24146" y="-115468" z="-3296" heading="37175" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24230" y="-115635" z="-3264" heading="25149" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24239" y="-115638" z="-3264" heading="46406" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24297" y="-115433" z="-3272" heading="56920" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24305" y="-115456" z="-3264" heading="33990" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24401" y="-115387" z="-3248" heading="34434" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25227" y="-125054" z="-2696" heading="58390" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25237" y="-125085" z="-2688" heading="35831" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25272" y="-125015" z="-2696" heading="39691" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25287" y="-125049" z="-2696" heading="47290" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25329" y="-125343" z="-2680" heading="62455" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25337" y="-125132" z="-2696" heading="60138" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25349" y="-124410" z="-2672" heading="23652" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25378" y="-125347" z="-2672" heading="11909" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25389" y="-125198" z="-2672" heading="52442" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25441" y="-124945" z="-2720" heading="13210" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25459" y="-125417" z="-2672" heading="25794" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25519" y="-124828" z="-2736" heading="24606" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25703" y="-124441" z="-2704" heading="5473" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25779" y="-125103" z="-2696" heading="43651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25781" y="-125014" z="-2712" heading="57386" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25806" y="-125145" z="-2696" heading="30444" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25822" y="-125182" z="-2696" heading="45079" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25826" y="-124632" z="-2712" heading="58290" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25841" y="-124998" z="-2712" heading="59790" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25846" y="-125095" z="-2696" heading="50256" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25854" y="-125027" z="-2712" heading="31447" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25879" y="-124950" z="-2688" heading="63375" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25888" y="-125043" z="-2688" heading="44265" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25913" y="-124957" z="-2688" heading="32944" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26017" y="-124530" z="-2680" heading="11314" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26054" y="-124972" z="-2672" heading="54144" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26089" y="-124971" z="-2672" heading="44968" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23335" x="-12632" y="-122651" z="-2984" heading="47404" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12736" y="-122632" z="-2992" heading="31016" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-12784" y="-122380" z="-2976" heading="42826" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13271" y="-118356" z="-3344" heading="6849" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13456" y="-118656" z="-3408" heading="36685" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13612" y="-114743" z="-3640" heading="26634" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-13928" y="-114587" z="-3608" heading="41829" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14047" y="-114751" z="-3632" heading="51708" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14162" y="-118765" z="-3352" heading="35959" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14549" y="-109880" z="-3384" heading="62098" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-14644" y="-110541" z="-3368" heading="9325" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-15375" y="-110379" z="-3368" heading="55222" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16647" y="-122791" z="-3240" heading="17135" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-16864" y="-123441" z="-3200" heading="57180" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-17356" y="-123111" z="-3192" heading="39971" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20257" y="-111590" z="-3400" heading="25149" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20340" y="-111235" z="-3376" heading="62084" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-20986" y="-111503" z="-3424" heading="40961" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21474" y="-123975" z="-3000" heading="37267" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21673" y="-123621" z="-2936" heading="35726" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-21734" y="-124440" z="-2944" heading="21318" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22878" y="-120365" z="-3200" heading="49240" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-22954" y="-120092" z="-3216" heading="43336" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23275" y="-120192" z="-3200" heading="37735" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23773" y="-115781" z="-3280" heading="13137" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23776" y="-115519" z="-3328" heading="57919" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-23902" y="-115092" z="-3304" heading="6308" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25379" y="-124977" z="-2720" heading="38151" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25397" y="-125019" z="-2720" heading="51874" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23335" x="-25572" y="-125042" z="-2728" heading="46491" respawnTime="60sec" /> <!-- Poras -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13453" y="-122632" z="-3008" heading="34215" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13461" y="-114861" z="-3640" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13531" y="-118208" z="-3352" heading="32418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="33837" x="-26375" y="-106062" z="-2632" heading="65028" respawnTime="60sec" /> <!-- Refugee Corpse -->
|
||||
<npc id="33838" x="-25428" y="-105719" z="-2608" heading="17423" respawnTime="60sec" /> <!-- Quincy -->
|
||||
<npc id="33842" x="-25321" y="-105816" z="-2600" heading="23421" respawnTime="60sec" /> <!-- Parajan -->
|
||||
<npc id="33843" x="-25517" y="-105892" z="-2600" heading="19380" respawnTime="60sec" /> <!-- Falk -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
469
L2J_Mobius_5.5_EtinasFate/dist/game/data/spawns/Orc/LandOfChaos.xml
vendored
Normal file
469
L2J_Mobius_5.5_EtinasFate/dist/game/data/spawns/Orc/LandOfChaos.xml
vendored
Normal file
@ -0,0 +1,469 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaos">
|
||||
<group>
|
||||
<npc id="23330" x="-13218" y="-123208" z="-2984" heading="44356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13329" y="-122172" z="-3008" heading="19903" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13397" y="-122601" z="-3016" heading="17906" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13422" y="-122851" z="-3040" heading="37838" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13726" y="-118866" z="-3408" heading="22154" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13745" y="-114868" z="-3664" heading="51971" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13811" y="-118812" z="-3408" heading="6432" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13844" y="-114907" z="-3656" heading="48890" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13883" y="-114762" z="-3632" heading="46046" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14039" y="-118835" z="-3360" heading="41269" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14067" y="-118411" z="-3352" heading="6869" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14158" y="-114820" z="-3616" heading="48802" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14766" y="-109924" z="-3368" heading="5651" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14804" y="-110749" z="-3376" heading="49766" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14882" y="-110543" z="-3400" heading="15344" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14984" y="-109679" z="-3368" heading="30127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16839" y="-122990" z="-3232" heading="42019" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16931" y="-122479" z="-3216" heading="19012" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16976" y="-123094" z="-3224" heading="18035" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17176" y="-122715" z="-3200" heading="60701" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20175" y="-111267" z="-3416" heading="56265" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20268" y="-111370" z="-3384" heading="4467" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20431" y="-111876" z="-3400" heading="64958" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20987" y="-111428" z="-3416" heading="43749" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21103" y="-124249" z="-2984" heading="22886" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21442" y="-124059" z="-3000" heading="21219" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21521" y="-123646" z="-2936" heading="43347" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21729" y="-123985" z="-2976" heading="39691" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22942" y="-120323" z="-3216" heading="10776" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23165" y="-120366" z="-3224" heading="15405" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23416" y="-120569" z="-3192" heading="19666" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23451" y="-115800" z="-3272" heading="40961" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23549" y="-115593" z="-3304" heading="57437" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23644" y="-120368" z="-3160" heading="27698" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23885" y="-115192" z="-3304" heading="3904" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24067" y="-115346" z="-3296" heading="11986" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25144" y="-124743" z="-2688" heading="13940" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25430" y="-125289" z="-2672" heading="44914" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25882" y="-125096" z="-2680" heading="43770" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25928" y="-125278" z="-2680" heading="55117" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23334" x="-12619" y="-122782" z="-2992" heading="54961" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12694" y="-123015" z="-2992" heading="48861" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12738" y="-122460" z="-2992" heading="9413" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12766" y="-122941" z="-2984" heading="64229" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12832" y="-122880" z="-3024" heading="62546" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12845" y="-122643" z="-3024" heading="18476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12965" y="-122313" z="-2992" heading="65087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13025" y="-122574" z="-3032" heading="58207" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13038" y="-122231" z="-3000" heading="32534" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13042" y="-122762" z="-3048" heading="61865" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13067" y="-122977" z="-3032" heading="15516" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13069" y="-123177" z="-3000" heading="2261" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13112" y="-122656" z="-3048" heading="46376" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13114" y="-122221" z="-2992" heading="26936" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13186" y="-118325" z="-3344" heading="4097" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13189" y="-123181" z="-2984" heading="694" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13198" y="-118794" z="-3360" heading="41453" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13227" y="-118162" z="-3384" heading="9337" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13227" y="-118939" z="-3360" heading="55526" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13241" y="-123060" z="-3008" heading="42258" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13243" y="-114992" z="-3616" heading="21219" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13262" y="-118699" z="-3376" heading="28896" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13276" y="-123110" z="-3008" heading="32359" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13277" y="-122219" z="-2992" heading="15223" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13284" y="-118591" z="-3384" heading="2330" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13289" y="-122477" z="-3016" heading="58767" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13298" y="-118248" z="-3368" heading="14647" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13304" y="-123091" z="-3008" heading="52289" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13322" y="-118153" z="-3352" heading="3100" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13323" y="-122458" z="-3024" heading="26183" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13345" y="-123121" z="-3008" heading="46914" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13357" y="-114954" z="-3616" heading="32743" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13361" y="-119077" z="-3368" heading="14000" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13364" y="-122662" z="-3032" heading="41496" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13393" y="-118518" z="-3368" heading="56421" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13399" y="-114822" z="-3616" heading="65069" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13410" y="-115333" z="-3608" heading="4885" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13421" y="-122830" z="-3040" heading="62324" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13442" y="-114943" z="-3648" heading="10776" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13458" y="-122493" z="-3008" heading="38950" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13517" y="-118466" z="-3392" heading="65479" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13524" y="-115264" z="-3640" heading="30901" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13531" y="-115465" z="-3632" heading="2807" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13533" y="-114715" z="-3616" heading="27309" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13545" y="-115130" z="-3648" heading="2492" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13551" y="-115347" z="-3656" heading="63486" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13572" y="-119253" z="-3344" heading="50435" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13575" y="-115238" z="-3664" heading="64497" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13588" y="-114878" z="-3648" heading="52366" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13601" y="-122428" z="-2976" heading="46202" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13607" y="-118413" z="-3400" heading="22035" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13628" y="-118347" z="-3376" heading="13027" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13635" y="-118960" z="-3392" heading="54864" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13643" y="-114836" z="-3648" heading="32505" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13643" y="-115151" z="-3672" heading="62634" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13644" y="-122801" z="-2984" heading="19556" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13648" y="-115329" z="-3648" heading="20955" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13668" y="-115313" z="-3664" heading="60701" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13672" y="-122975" z="-2984" heading="40879" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13689" y="-115136" z="-3672" heading="60894" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13700" y="-115226" z="-3672" heading="38975" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13702" y="-114777" z="-3632" heading="55551" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13721" y="-118349" z="-3368" heading="28315" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13739" y="-118464" z="-3392" heading="26247" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13771" y="-115594" z="-3608" heading="58023" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13774" y="-119055" z="-3360" heading="1382" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13788" y="-119068" z="-3360" heading="8189" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13798" y="-118568" z="-3408" heading="55070" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13843" y="-115387" z="-3656" heading="2973" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13855" y="-118927" z="-3400" heading="51792" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13858" y="-118301" z="-3352" heading="20095" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13876" y="-118803" z="-3392" heading="46752" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13879" y="-114913" z="-3656" heading="25974" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13885" y="-119189" z="-3360" heading="48627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13894" y="-118287" z="-3352" heading="40425" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13909" y="-115415" z="-3656" heading="45152" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13927" y="-118679" z="-3400" heading="25188" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13937" y="-118909" z="-3392" heading="10419" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13974" y="-115502" z="-3616" heading="56854" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14002" y="-118914" z="-3352" heading="42988" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14026" y="-115419" z="-3632" heading="30828" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14067" y="-114702" z="-3616" heading="47331" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14181" y="-115499" z="-3608" heading="30212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14315" y="-115315" z="-3608" heading="23435" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14453" y="-110150" z="-3352" heading="53911" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14605" y="-110288" z="-3392" heading="18476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14613" y="-110006" z="-3384" heading="60778" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14654" y="-110216" z="-3392" heading="26586" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14657" y="-110061" z="-3400" heading="34348" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14670" y="-110370" z="-3384" heading="48018" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14766" y="-109772" z="-3368" heading="5010" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14776" y="-110670" z="-3368" heading="34485" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14797" y="-110204" z="-3408" heading="40179" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14888" y="-110577" z="-3400" heading="30930" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14903" y="-110395" z="-3424" heading="39353" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14917" y="-109786" z="-3360" heading="34708" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14925" y="-109865" z="-3392" heading="2274" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14950" y="-110298" z="-3424" heading="22274" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14986" y="-110563" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15077" y="-109972" z="-3408" heading="8599" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15107" y="-110456" z="-3408" heading="38386" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15116" y="-109898" z="-3392" heading="27659" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15124" y="-110189" z="-3416" heading="4913" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15206" y="-110251" z="-3416" heading="34520" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15212" y="-109921" z="-3392" heading="41856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15224" y="-109846" z="-3376" heading="50524" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15228" y="-110250" z="-3416" heading="36125" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15240" y="-110177" z="-3400" heading="15907" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15254" y="-109762" z="-3360" heading="35536" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15460" y="-109989" z="-3360" heading="32680" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15507" y="-110177" z="-3360" heading="26345" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15545" y="-110242" z="-3352" heading="20207" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16406" y="-122855" z="-3184" heading="19465" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16466" y="-122486" z="-3192" heading="44718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16468" y="-122945" z="-3208" heading="405" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16480" y="-122386" z="-3200" heading="37131" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16691" y="-122624" z="-3216" heading="25933" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16799" y="-123045" z="-3224" heading="55865" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16828" y="-122337" z="-3184" heading="40810" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16841" y="-122402" z="-3192" heading="44042" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16858" y="-122639" z="-3240" heading="24904" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16889" y="-122272" z="-3184" heading="64583" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17028" y="-122654" z="-3224" heading="25811" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17082" y="-122323" z="-3192" heading="780" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17105" y="-122913" z="-3232" heading="44609" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17105" y="-123432" z="-3192" heading="50645" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17113" y="-122827" z="-3232" heading="59379" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17126" y="-122830" z="-3232" heading="36565" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17132" y="-123385" z="-3176" heading="34261" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17146" y="-123027" z="-3216" heading="60332" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17146" y="-123190" z="-3192" heading="63444" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17232" y="-122744" z="-3200" heading="30423" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17251" y="-122781" z="-3216" heading="5651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17291" y="-123297" z="-3200" heading="14481" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17326" y="-122562" z="-3184" heading="14585" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17331" y="-123020" z="-3192" heading="52270" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17357" y="-123247" z="-3192" heading="32418" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17365" y="-123178" z="-3192" heading="60151" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17445" y="-122690" z="-3200" heading="45298" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17491" y="-122809" z="-3192" heading="44746" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20139" y="-111539" z="-3392" heading="51476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20156" y="-111364" z="-3392" heading="43045" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20209" y="-112041" z="-3384" heading="48627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20297" y="-111910" z="-3400" heading="51212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20302" y="-111724" z="-3400" heading="18170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20304" y="-111411" z="-3408" heading="64900" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20324" y="-111931" z="-3408" heading="64727" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20334" y="-111085" z="-3408" heading="18645" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20337" y="-111452" z="-3416" heading="5378" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20345" y="-111959" z="-3408" heading="56704" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20351" y="-111652" z="-3400" heading="3445" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20357" y="-112103" z="-3384" heading="59612" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20364" y="-111654" z="-3424" heading="41548" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20367" y="-111455" z="-3408" heading="173" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20371" y="-111439" z="-3408" heading="56607" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20385" y="-111272" z="-3376" heading="46853" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20385" y="-111912" z="-3400" heading="20561" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20392" y="-111254" z="-3376" heading="4719" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20394" y="-111326" z="-3400" heading="7325" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20416" y="-111650" z="-3424" heading="59885" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20427" y="-111190" z="-3376" heading="45614" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20434" y="-111711" z="-3424" heading="30170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20435" y="-111186" z="-3376" heading="953" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20438" y="-112028" z="-3408" heading="38151" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20440" y="-111263" z="-3384" heading="52976" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20446" y="-111167" z="-3376" heading="6839" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20454" y="-111143" z="-3376" heading="10658" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20644" y="-112131" z="-3392" heading="56699" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20941" y="-124278" z="-2944" heading="35239" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20999" y="-124202" z="-2968" heading="19191" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21012" y="-124303" z="-2952" heading="56770" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21013" y="-124041" z="-2968" heading="7765" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21025" y="-124464" z="-2936" heading="55612" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21077" y="-124242" z="-2976" heading="3355" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21098" y="-123678" z="-2936" heading="61713" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21118" y="-124460" z="-2936" heading="40283" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21130" y="-124113" z="-2984" heading="59331" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21140" y="-124313" z="-2968" heading="62554" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21212" y="-123891" z="-2992" heading="16962" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21217" y="-124443" z="-2960" heading="62057" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21272" y="-123881" z="-2984" heading="7701" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21308" y="-124192" z="-3000" heading="28121" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21356" y="-123588" z="-2944" heading="23756" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21367" y="-124275" z="-3000" heading="58649" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21392" y="-123707" z="-2976" heading="14037" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21401" y="-123917" z="-3000" heading="43246" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21447" y="-123814" z="-3000" heading="40343" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21451" y="-123702" z="-2976" heading="47220" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21528" y="-124519" z="-2944" heading="53599" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21579" y="-124609" z="-2952" heading="58703" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21581" y="-123679" z="-2960" heading="43399" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21615" y="-123877" z="-2984" heading="31102" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21652" y="-123887" z="-2984" heading="56265" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21659" y="-124411" z="-2952" heading="57621" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21864" y="-124008" z="-2944" heading="50597" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21911" y="-124243" z="-2952" heading="48044" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22604" y="-120531" z="-3168" heading="18602" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22696" y="-120533" z="-3176" heading="1627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22749" y="-120311" z="-3176" heading="23713" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22765" y="-120640" z="-3168" heading="39139" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22780" y="-120645" z="-3168" heading="10985" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22807" y="-120595" z="-3176" heading="43576" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22850" y="-120382" z="-3200" heading="21200" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22877" y="-119939" z="-3184" heading="61374" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22914" y="-120591" z="-3208" heading="48298" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22931" y="-120717" z="-3192" heading="34735" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22937" y="-120160" z="-3216" heading="21841" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23020" y="-120112" z="-3216" heading="16253" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23048" y="-120604" z="-3192" heading="62538" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23051" y="-119892" z="-3184" heading="13933" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23063" y="-120513" z="-3216" heading="30085" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23114" y="-120288" z="-3216" heading="20363" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23116" y="-120590" z="-3192" heading="40976" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23139" y="-119851" z="-3160" heading="28087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23146" y="-120533" z="-3216" heading="18170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23162" y="-120806" z="-3168" heading="33510" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23250" y="-120726" z="-3184" heading="29810" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23253" y="-120199" z="-3208" heading="47753" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23261" y="-120777" z="-3168" heading="44056" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23282" y="-120611" z="-3192" heading="37137" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23294" y="-120237" z="-3208" heading="34224" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23295" y="-115289" z="-3280" heading="27351" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23306" y="-115357" z="-3264" heading="62181" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23312" y="-115389" z="-3264" heading="6384" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23364" y="-115363" z="-3264" heading="27280" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23430" y="-120139" z="-3160" heading="5636" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23450" y="-115512" z="-3280" heading="39096" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23452" y="-120190" z="-3160" heading="17949" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23475" y="-115121" z="-3272" heading="47856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23528" y="-115247" z="-3304" heading="53610" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23559" y="-120583" z="-3176" heading="43651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23583" y="-115762" z="-3272" heading="16356" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23644" y="-115392" z="-3312" heading="45411" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23658" y="-115850" z="-3264" heading="46460" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23660" y="-115741" z="-3304" heading="10702" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23725" y="-115037" z="-3296" heading="33596" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23768" y="-115468" z="-3328" heading="16514" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23775" y="-114886" z="-3256" heading="20288" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23865" y="-115293" z="-3312" heading="18928" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23911" y="-115219" z="-3312" heading="39132" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23938" y="-115635" z="-3312" heading="18120" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23974" y="-115580" z="-3320" heading="5754" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24022" y="-114905" z="-3280" heading="7091" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24055" y="-115508" z="-3320" heading="2280" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24091" y="-115356" z="-3296" heading="46002" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24115" y="-115171" z="-3272" heading="2625" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24146" y="-115468" z="-3296" heading="37175" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24230" y="-115635" z="-3264" heading="25149" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24239" y="-115638" z="-3264" heading="46406" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24297" y="-115433" z="-3272" heading="56920" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24305" y="-115456" z="-3264" heading="33990" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24401" y="-115387" z="-3248" heading="34434" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25227" y="-125054" z="-2696" heading="58390" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25237" y="-125085" z="-2688" heading="35831" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25272" y="-125015" z="-2696" heading="39691" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25287" y="-125049" z="-2696" heading="47290" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25329" y="-125343" z="-2680" heading="62455" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25337" y="-125132" z="-2696" heading="60138" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25349" y="-124410" z="-2672" heading="23652" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25378" y="-125347" z="-2672" heading="11909" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25389" y="-125198" z="-2672" heading="52442" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25441" y="-124945" z="-2720" heading="13210" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25459" y="-125417" z="-2672" heading="25794" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25519" y="-124828" z="-2736" heading="24606" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25703" y="-124441" z="-2704" heading="5473" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25779" y="-125103" z="-2696" heading="43651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25781" y="-125014" z="-2712" heading="57386" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25806" y="-125145" z="-2696" heading="30444" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25822" y="-125182" z="-2696" heading="45079" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25826" y="-124632" z="-2712" heading="58290" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25841" y="-124998" z="-2712" heading="59790" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25846" y="-125095" z="-2696" heading="50256" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25854" y="-125027" z="-2712" heading="31447" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25879" y="-124950" z="-2688" heading="63375" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25888" y="-125043" z="-2688" heading="44265" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25913" y="-124957" z="-2688" heading="32944" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26017" y="-124530" z="-2680" heading="11314" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26054" y="-124972" z="-2672" heading="54144" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26089" y="-124971" z="-2672" heading="44968" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13453" y="-122632" z="-3008" heading="34215" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13461" y="-114861" z="-3640" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13531" y="-118208" z="-3352" heading="32418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23336" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17088" y="-117220" z="-4053" heading="14397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16958" y="-116540" z="-4062" heading="14397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17471" y="-114680" z="-4075" heading="31994" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18099" y="-114635" z="-4060" heading="31994" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19727" y="-114800" z="-4061" heading="35145" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20232" y="-114920" z="-4084" heading="35145" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20824" y="-115560" z="-4049" heading="41273" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20882" y="-115804" z="-4053" heading="46626" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21192" y="-116968" z="-4054" heading="46308" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21289" y="-117267" z="-4054" heading="45923" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20888" y="-117944" z="-4053" heading="61134" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20797" y="-118031" z="-4055" heading="57547" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20251" y="-118843" z="-4066" heading="52449" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19801" y="-119156" z="-4059" heading="63592" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18823" y="-119228" z="-4062" heading="64880" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18569" y="-119237" z="-4068" heading="306" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17714" y="-118742" z="-4071" heading="6553" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17204" y="-118375" z="-4105" heading="6553" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16303" y="-117347" z="-4062" heading="13175" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16231" y="-116738" z="-4071" heading="17990" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16526" y="-115580" z="-4065" heading="19114" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16673" y="-114968" z="-4074" heading="18245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16835" y="-113924" z="-4044" heading="26198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17382" y="-113618" z="-4027" heading="28280" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18645" y="-113808" z="-4026" heading="38720" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19175" y="-114146" z="-4051" heading="38720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20919" y="-115110" z="-4050" heading="46891" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21093" y="-115712" z="-4051" heading="44514" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21436" y="-117517" z="-4056" heading="51490" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21246" y="-118115" z="-4056" heading="53781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19771" y="-119446" z="-4065" heading="58852" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19220" y="-119645" z="-4059" heading="1127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17430" y="-118215" z="-4061" heading="9570" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17048" y="-117713" z="-4061" heading="10999" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16868" y="-116016" z="-4058" heading="20754" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17124" y="-115441" z="-4068" heading="20754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18218" y="-114521" z="-4052" heading="27232" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18757" y="-114286" z="-4043" heading="33319" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20003" y="-114567" z="-4054" heading="37973" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20485" y="-114955" z="-4054" heading="41754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21202" y="-116390" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21216" y="-116451" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21196" y="-117069" z="-4059" heading="51083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20884" y="-117566" z="-4059" heading="58782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19856" y="-118370" z="-4066" heading="60455" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19432" y="-118600" z="-4047" heading="58542" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18163" y="-118468" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17591" y="-118203" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -37,7 +37,11 @@
|
||||
<npc id="34200" x="-50112" y="-148078" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34200" x="-49485" y="-148037" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34203" x="-50720" y="-149040" z="-14936" heading="26108" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34203" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34205" x="-50984" y="-147336" z="-14945" heading="14991" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-50184" y="-147864" z="-14158" heading="31287" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34206" x="-50136" y="-148568" z="-14157" heading="7775" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34207" x="-49625" y="-148723" z="-14152" heading="63138" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34189" x="-52646" y="-147041" z="-14944" heading="42728" respawnTime="60sec" /> <!-- Mistress, Auction House Manager -->
|
||||
<npc id="34190" x="-54000" y="-146768" z="-14944" heading="7504" respawnTime="60sec" /> <!-- Attitude, Grocer -->
|
||||
<npc id="34192" x="-53313" y="-148013" z="-14944" heading="16672" respawnTime="60sec" /> <!-- Fouette, Warehouse Keeper -->
|
||||
|
@ -2590,4 +2590,34 @@
|
||||
<point X="83482" Y="149278" Z="-3405" delay="16" run="true" /> <!-- Kekropus -->
|
||||
<point X="83307" Y="148431" Z="-3405" delay="21" run="true" /> <!-- Training Camp Manager -->
|
||||
</route>
|
||||
<route name="employee_1" repeat="true" repeatStyle="back">
|
||||
<target id="34205" spawnX="-50984" spawnY="-147336" spawnZ="-14945" />
|
||||
<point X="-50984" Y="-147336" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51208" Y="-147704" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51160" Y="-148456" Z="-14946" delay="2" run="false" />
|
||||
<point X="-50728" Y="-148952" Z="-14944" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_2" repeat="true" repeatStyle="cycle">
|
||||
<target id="34204" spawnX="-50184" spawnY="-147864" spawnZ="-14158" />
|
||||
<point X="-50184" Y="-147864" Z="-14158" delay="2" run="false" />
|
||||
<point X="-50296" Y="-148104" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50056" Y="-148408" Z="-14158" delay="2" run="false" />
|
||||
<point X="-49768" Y="-148232" Z="-14186" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_3" repeat="true" repeatStyle="cycle">
|
||||
<target id="34206" spawnX="-50136" spawnY="-148568" spawnZ="-14157" />
|
||||
<point X="-50136" Y="-148568" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50152" Y="-149032" Z="-14171" delay="2" run="false" />
|
||||
<point X="-49784" Y="-148408" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49880" Y="-148348" Z="-14184" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_4" repeat="true" repeatStyle="cycle">
|
||||
<target id="34207" spawnX="-49625" spawnY="-148723" spawnZ="-14152" />
|
||||
<point X="-49625" Y="-148723" Z="-14152" delay="2" run="false" />
|
||||
<point X="-49256" Y="-148680" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49272" Y="-148088" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49400" Y="-148024" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49736" Y="-148264" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49640" Y="-148360" Z="-14176" delay="0" run="false" />
|
||||
</route>
|
||||
</routes>
|
@ -0,0 +1,206 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.GainakUnderground.TavernEmployee;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.NpcSay;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tavern Employee AI.
|
||||
* @author Edoo
|
||||
*/
|
||||
public class TavernEmployee extends AbstractNpcAI
|
||||
{
|
||||
// NPCs
|
||||
private static final int LOYEE1 = 34202;
|
||||
private static final int LOYEE2 = 34203;
|
||||
private static final int LOYEE3 = 34204;
|
||||
private static final int LOYEE4 = 34205;
|
||||
private static final int LOYEE5 = 34206;
|
||||
private static final int LOYEE6 = 34207;
|
||||
// Text
|
||||
private static final NpcStringId[] SPAM_TEXT1 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT2 =
|
||||
{
|
||||
NpcStringId.THE_MYSTIC_TAVERN_IS_OPEN_NOW
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT3 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT4 =
|
||||
{
|
||||
NpcStringId.ADVENTURER_THE_TAVERN_IS_THIS_WAY,
|
||||
NpcStringId.ARE_YOU_LOOKING_FOR_THE_TAVERN_IT_S_THIS_WAY,
|
||||
NpcStringId.COME_ON_CHANCES_LIKE_THESE_DON_T_COME_BY_OFTEN
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT5 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT6 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
|
||||
private TavernEmployee()
|
||||
{
|
||||
addSpawnId(LOYEE1);
|
||||
addSpawnId(LOYEE2);
|
||||
addSpawnId(LOYEE3);
|
||||
addSpawnId(LOYEE4);
|
||||
addSpawnId(LOYEE5);
|
||||
addSpawnId(LOYEE6);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
|
||||
{
|
||||
String htmltext = null;
|
||||
switch (event)
|
||||
{
|
||||
case "spam_text1":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT1[getRandom(SPAM_TEXT1.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text2":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT2[getRandom(SPAM_TEXT2.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text3":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT3[getRandom(SPAM_TEXT3.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text4":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT4[getRandom(SPAM_TEXT4.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text5":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT5[getRandom(SPAM_TEXT5.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text6":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT6[getRandom(SPAM_TEXT6.length)]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return htmltext;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onSpawn(Npc npc)
|
||||
{
|
||||
npc.setIsTalkable(false);
|
||||
|
||||
if (npc.getId() == LOYEE1)
|
||||
{
|
||||
startQuestTimer("spam_text1", 17000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE2)
|
||||
{
|
||||
startQuestTimer("spam_text2", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE3)
|
||||
{
|
||||
startQuestTimer("spam_text3", 16000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE4)
|
||||
{
|
||||
startQuestTimer("spam_text4", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE5)
|
||||
{
|
||||
startQuestTimer("spam_text5", 15000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE6)
|
||||
{
|
||||
startQuestTimer("spam_text6", 18000, npc, null, true);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new TavernEmployee();
|
||||
}
|
||||
}
|
@ -1,620 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaosMonsters">
|
||||
<npc id="23330" x="-18840" y="-113652" z="-4008" heading="45242" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18323" y="-112802" z="-4008" heading="20728" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19272" y="-114727" z="-4056" heading="46376" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19169" y="-114794" z="-4072" heading="46376" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19090" y="-110624" z="-3440" heading="7886" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18615" y="-110048" z="-3448" heading="46531" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18592" y="-109897" z="-3448" heading="7046" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18078" y="-113297" z="-4008" heading="1130" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17827" y="-114638" z="-4048" heading="563" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18082" y="-114764" z="-4064" heading="46752" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17677" y="-114716" z="-4048" heading="2229" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16428" y="-113660" z="-4016" heading="7172" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16370" y="-113639" z="-4016" heading="51876" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16374" y="-113499" z="-4008" heading="1345" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16339" y="-111929" z="-3336" heading="64411" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16242" y="-109400" z="-3304" heading="14119" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14728" y="-114361" z="-3584" heading="16209" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14914" y="-113574" z="-3696" heading="16948" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15201" y="-114102" z="-3616" heading="51950" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16291" y="-111331" z="-3360" heading="3355" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15806" y="-111651" z="-3448" heading="58023" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16229" y="-109964" z="-3384" heading="31688" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15902" y="-110038" z="-3384" heading="4937" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14841" y="-110395" z="-3408" heading="38256" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14488" y="-110402" z="-3368" heading="48751" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15168" y="-110596" z="-3392" heading="58825" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20838" y="-113657" z="-4016" heading="24943" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20711" y="-114024" z="-4024" heading="5120" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20955" y="-113631" z="-4016" heading="217" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22399" y="-110892" z="-3448" heading="48586" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20646" y="-111311" z="-3408" heading="16340" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20846" y="-111868" z="-3432" heading="34077" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21837" y="-112380" z="-3480" heading="16893" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21050" y="-111949" z="-3384" heading="12912" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21587" y="-110938" z="-3424" heading="42092" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22018" y="-112759" z="-3472" heading="47220" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20660" y="-110240" z="-3424" heading="15430" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20361" y="-109968" z="-3376" heading="56354" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22075" y="-110554" z="-3392" heading="26484" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20872" y="-110122" z="-3424" heading="25753" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22626" y="-112676" z="-3440" heading="42197" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23752" y="-112722" z="-3424" heading="52385" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23849" y="-112732" z="-3392" heading="45356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23976" y="-112289" z="-3432" heading="55757" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24178" y="-110115" z="-3504" heading="47119" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24007" y="-110326" z="-3504" heading="4564" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23529" y="-110194" z="-3520" heading="47000" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23052" y="-109313" z="-3432" heading="13576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23700" y="-109586" z="-3536" heading="44512" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24335" y="-108170" z="-3552" heading="35405" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24767" y="-110033" z="-3496" heading="42108" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24359" y="-108132" z="-3552" heading="54603" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24487" y="-108516" z="-3544" heading="29050" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23148" y="-113740" z="-3320" heading="49720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23219" y="-114233" z="-3304" heading="28293" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23193" y="-113853" z="-3320" heading="25282" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25083" y="-116576" z="-3264" heading="8599" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24751" y="-116621" z="-3232" heading="53313" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24953" y="-116636" z="-3248" heading="22206" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23794" y="-115458" z="-3328" heading="26596" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23790" y="-114982" z="-3288" heading="33404" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23638" y="-115325" z="-3304" heading="42381" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21234" y="-116157" z="-4064" heading="34181" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21368" y="-116121" z="-4064" heading="38754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21665" y="-116269" z="-4032" heading="57910" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20375" y="-115053" z="-4048" heading="61576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20430" y="-115423" z="-4032" heading="59452" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20572" y="-114937" z="-4048" heading="28605" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23559" y="-117957" z="-3344" heading="18212" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23919" y="-117382" z="-3288" heading="7137" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24312" y="-117627" z="-3240" heading="20578" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20650" y="-117908" z="-4040" heading="18749" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20439" y="-118097" z="-4048" heading="9418" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20465" y="-118298" z="-4048" heading="55237" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25003" y="-119611" z="-3128" heading="3921" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24724" y="-120941" z="-3176" heading="61245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24483" y="-119743" z="-3184" heading="40341" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22751" y="-120353" z="-3192" heading="60843" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23173" y="-120343" z="-3216" heading="23713" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23456" y="-120265" z="-3160" heading="48745" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24622" y="-119898" z="-3168" heading="12126" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20573" y="-119820" z="-4048" heading="36819" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20731" y="-119762" z="-4048" heading="52219" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26216" y="-122172" z="-2696" heading="65063" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26068" y="-122499" z="-2728" heading="49591" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26392" y="-121497" z="-2704" heading="63262" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24185" y="-121279" z="-3224" heading="23042" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24683" y="-120894" z="-3192" heading="36843" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21993" y="-122086" z="-3280" heading="38676" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22237" y="-121817" z="-3312" heading="38782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22654" y="-121679" z="-3288" heading="30834" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-27202" y="-123922" z="-2704" heading="8314" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26942" y="-124406" z="-2712" heading="44135" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25102" y="-125040" z="-2680" heading="40033" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26629" y="-123621" z="-2688" heading="13397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25403" y="-123172" z="-2720" heading="60123" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25292" y="-122699" z="-2784" heading="9292" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25298" y="-122793" z="-2768" heading="11431" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25167" y="-124823" z="-2704" heading="28007" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25903" y="-124468" z="-2696" heading="22661" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24737" y="-123917" z="-2752" heading="29260" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23831" y="-123835" z="-2760" heading="32507" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24775" y="-123917" z="-2752" heading="38781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22957" y="-123896" z="-2928" heading="34728" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23191" y="-124120" z="-2920" heading="21823" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22440" y="-123881" z="-2976" heading="26996" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-27071" y="-124802" z="-2728" heading="904" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26809" y="-125359" z="-2704" heading="58409" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26945" y="-125125" z="-2712" heading="47402" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21653" y="-124157" z="-2984" heading="23390" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21265" y="-123646" z="-2944" heading="2330" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21585" y="-123717" z="-2960" heading="30727" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26311" y="-122324" z="-2704" heading="43326" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26190" y="-121703" z="-2720" heading="39434" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22643" y="-121467" z="-3280" heading="51755" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19409" y="-124414" z="-3176" heading="7239" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19473" y="-124006" z="-3096" heading="33485" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20207" y="-124087" z="-3056" heading="40189" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17394" y="-123188" z="-3192" heading="25686" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16312" y="-122746" z="-3192" heading="58333" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18452" y="-124032" z="-3184" heading="13126" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18077" y="-123952" z="-3224" heading="20288" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17813" y="-123898" z="-3240" heading="17447" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16903" y="-122879" z="-3248" heading="10900" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14357" y="-123286" z="-3064" heading="50241" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14382" y="-122984" z="-3088" heading="62419" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15441" y="-123680" z="-3248" heading="63928" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15917" y="-124012" z="-3248" heading="48804" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16024" y="-123555" z="-3248" heading="35821" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14593" y="-122486" z="-3048" heading="10250" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12956" y="-122178" z="-3000" heading="12986" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13195" y="-122641" z="-3048" heading="20077" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13527" y="-122662" z="-3008" heading="42202" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13296" y="-120768" z="-3240" heading="37761" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13595" y="-120787" z="-3152" heading="4758" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12888" y="-120804" z="-3256" heading="5765" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17633" y="-118629" z="-4064" heading="20180" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14294" y="-119371" z="-3352" heading="10250" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14237" y="-119949" z="-3328" heading="16166" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14058" y="-119472" z="-3344" heading="47600" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13306" y="-118641" z="-3392" heading="35632" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12162" y="-119456" z="-3320" heading="4352" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12905" y="-119080" z="-3360" heading="56908" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12704" y="-120041" z="-3304" heading="42301" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18502" y="-118624" z="-4056" heading="45649" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17828" y="-118497" z="-4056" heading="58554" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16467" y="-117936" z="-4056" heading="31546" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16498" y="-118242" z="-4048" heading="38386" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16323" y="-118017" z="-4048" heading="13758" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13125" y="-118288" z="-3368" heading="6883" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13668" y="-118574" z="-3408" heading="55972" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16521" y="-116328" z="-4056" heading="32827" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16445" y="-115633" z="-4048" heading="43020" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16491" y="-115444" z="-4048" heading="17135" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16543" y="-115155" z="-4072" heading="27698" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16044" y="-116772" z="-4088" heading="23217" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16146" y="-116555" z="-4064" heading="2262" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13526" y="-116345" z="-3720" heading="19917" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13768" y="-116362" z="-3704" heading="26554" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13760" y="-116374" z="-3704" heading="6037" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14208" y="-115401" z="-3600" heading="17983" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14058" y="-115550" z="-3616" heading="47316" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13952" y="-115370" z="-3656" heading="14529" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16523" y="-113654" z="-4024" heading="65194" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16523" y="-113267" z="-4008" heading="22597" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13671" y="-113126" z="-3704" heading="16818" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13228" y="-114100" z="-3688" heading="42324" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13373" y="-113204" z="-3696" heading="38586" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18168" y="-113183" z="-4008" heading="54864" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19632" y="-114904" z="-4024" heading="63080" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18763" y="-113710" z="-4008" heading="25524" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21071" y="-116541" z="-4064" heading="51518" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21286" y="-116174" z="-4064" heading="26148" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20546" y="-115108" z="-4048" heading="36015" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23334" x="-18494" y="-113398" z="-4008" heading="61876" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18424" y="-113136" z="-4008" heading="23991" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19431" y="-114883" z="-4048" heading="57006" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19171" y="-114723" z="-4072" heading="46923" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19402" y="-114848" z="-4056" heading="49328" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20357" y="-111992" z="-3400" heading="34879" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18569" y="-110678" z="-3408" heading="48673" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19095" y="-110208" z="-3448" heading="34405" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18693" y="-110199" z="-3448" heading="5222" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18224" y="-113233" z="-4008" heading="52992" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18045" y="-114715" z="-4056" heading="15602" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18183" y="-114870" z="-4072" heading="45907" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16591" y="-113632" z="-4024" heading="27056" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16742" y="-113375" z="-4000" heading="60472" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16950" y="-113133" z="-4000" heading="52953" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16170" y="-110208" z="-3384" heading="11470" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16168" y="-110108" z="-3384" heading="37356" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14716" y="-113611" z="-3696" heading="27698" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14645" y="-114028" z="-3648" heading="4497" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14904" y="-113997" z="-3624" heading="41084" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16287" y="-111790" z="-3336" heading="34650" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16474" y="-111284" z="-3320" heading="46923" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16311" y="-111065" z="-3368" heading="48586" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15970" y="-110402" z="-3392" heading="65276" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14996" y="-109971" z="-3408" heading="50589" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14887" y="-110358" z="-3424" heading="53574" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14570" y="-110603" z="-3376" heading="63086" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20543" y="-113967" z="-4016" heading="33677" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20563" y="-113703" z="-4008" heading="19191" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21301" y="-113510" z="-4016" heading="54913" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20627" y="-111276" z="-3408" heading="34700" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22335" y="-110865" z="-3448" heading="3282" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21018" y="-111952" z="-3384" heading="48148" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22121" y="-112741" z="-3472" heading="51184" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22493" y="-112743" z="-3440" heading="34034" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22260" y="-110642" z="-3416" heading="30546" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20825" y="-110416" z="-3440" heading="42694" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22282" y="-110250" z="-3416" heading="19286" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20567" y="-110311" z="-3408" heading="38447" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20666" y="-109499" z="-3456" heading="65363" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24330" y="-110925" z="-3432" heading="24862" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24235" y="-110946" z="-3448" heading="524" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22715" y="-112686" z="-3432" heading="51750" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23965" y="-112697" z="-3384" heading="46923" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23361" y="-111842" z="-3408" heading="20934" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23783" y="-112683" z="-3424" heading="36191" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24505" y="-110047" z="-3512" heading="859" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23837" y="-109647" z="-3536" heading="49940" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23658" y="-109980" z="-3528" heading="14775" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23874" y="-109414" z="-3536" heading="40328" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24273" y="-108045" z="-3552" heading="42515" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24294" y="-108140" z="-3552" heading="39119" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24266" y="-108148" z="-3552" heading="35872" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23286" y="-113490" z="-3360" heading="55023" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23464" y="-113656" z="-3368" heading="43524" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23264" y="-114063" z="-3304" heading="42033" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25155" y="-116687" z="-3272" heading="35409" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23486" y="-115099" z="-3272" heading="45171" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24131" y="-115796" z="-3264" heading="44211" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23953" y="-115906" z="-3264" heading="5492" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21016" y="-116607" z="-4064" heading="7660" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21754" y="-116903" z="-4040" heading="54573" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20362" y="-115319" z="-4032" heading="16877" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20506" y="-115201" z="-4048" heading="16962" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20515" y="-115291" z="-4048" heading="1047" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20759" y="-112150" z="-3392" heading="38793" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25092" y="-116774" z="-3280" heading="37741" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25231" y="-116891" z="-3280" heading="48671" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23933" y="-117681" z="-3288" heading="62098" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23866" y="-118325" z="-3296" heading="39807" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23936" y="-118132" z="-3296" heading="8363" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21581" y="-116956" z="-4040" heading="26981" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20447" y="-117834" z="-4048" heading="11237" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20814" y="-118600" z="-4048" heading="42216" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20367" y="-118316" z="-4048" heading="63002" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25037" y="-119651" z="-3128" heading="6035" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24555" y="-120048" z="-3192" heading="5725" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24813" y="-119351" z="-3184" heading="40601" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23538" y="-120474" z="-3176" heading="48978" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22715" y="-120027" z="-3160" heading="57223" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22910" y="-120698" z="-3176" heading="28762" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20782" y="-119783" z="-4040" heading="36900" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24865" y="-121332" z="-3096" heading="47747" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24463" y="-121320" z="-3184" heading="55537" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24924" y="-120605" z="-3168" heading="40378" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26414" y="-121752" z="-2696" heading="64546" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26179" y="-121466" z="-2728" heading="22661" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26222" y="-121506" z="-2728" heading="7580" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22257" y="-122146" z="-3248" heading="58301" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21978" y="-121743" z="-3320" heading="18249" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21851" y="-121860" z="-3296" heading="23439" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26481" y="-123960" z="-2720" heading="48521" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-27020" y="-123481" z="-2672" heading="44450" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-27274" y="-123602" z="-2656" heading="945" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25907" y="-124845" z="-2720" heading="2777" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25458" y="-123663" z="-2656" heading="2975" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25369" y="-123408" z="-2664" heading="33379" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25360" y="-123618" z="-2656" heading="15089" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25218" y="-125021" z="-2696" heading="13637" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22680" y="-124161" z="-2976" heading="15814" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22551" y="-123570" z="-2944" heading="54680" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24357" y="-124138" z="-2816" heading="48665" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24501" y="-124290" z="-2776" heading="50485" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24583" y="-124359" z="-2760" heading="30930" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22867" y="-124321" z="-2952" heading="9171" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-27301" y="-124902" z="-2728" heading="58985" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26675" y="-125034" z="-2712" heading="2092" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-27482" y="-125267" z="-2704" heading="13491" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25844" y="-125109" z="-2696" heading="20481" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21286" y="-124004" z="-3000" heading="65131" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20850" y="-123903" z="-2952" heading="0" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20967" y="-124308" z="-2944" heading="5651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24674" y="-121084" z="-3192" heading="38802" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24518" y="-121550" z="-3136" heading="50904" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24943" y="-120723" z="-3152" heading="47488" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26196" y="-121766" z="-2696" heading="38189" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26026" y="-121596" z="-2736" heading="3775" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26096" y="-121577" z="-2736" heading="27211" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22416" y="-122063" z="-3256" heading="27749" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19609" y="-124080" z="-3112" heading="11431" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20201" y="-123961" z="-3048" heading="53452" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19932" y="-124370" z="-3120" heading="26270" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16860" y="-122875" z="-3248" heading="22087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17749" y="-124059" z="-3256" heading="21054" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17779" y="-123612" z="-3248" heading="53150" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17718" y="-124333" z="-3272" heading="10258" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16889" y="-122802" z="-3248" heading="51506" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16846" y="-122821" z="-3248" heading="38227" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14632" y="-123164" z="-3136" heading="26871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15712" y="-124208" z="-3208" heading="37084" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15628" y="-124255" z="-3208" heading="54611" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15471" y="-124041" z="-3240" heading="13224" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14708" y="-122544" z="-3064" heading="50732" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13091" y="-123187" z="-3000" heading="26958" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14165" y="-122535" z="-3056" heading="51254" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13559" y="-122497" z="-2992" heading="10016" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13491" y="-122281" z="-2976" heading="26392" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13313" y="-121180" z="-3168" heading="1872" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13130" y="-120793" z="-3256" heading="6469" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17649" y="-118759" z="-4064" heading="8496" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18024" y="-118665" z="-4048" heading="8775" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14317" y="-119677" z="-3328" heading="50140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14225" y="-119911" z="-3328" heading="5554" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13358" y="-120753" z="-3224" heading="26132" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13975" y="-119863" z="-3320" heading="51930" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13037" y="-119806" z="-3360" heading="29990" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12695" y="-119044" z="-3344" heading="14699" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12201" y="-119650" z="-3320" heading="16266" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17933" y="-118465" z="-4048" heading="34077" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16231" y="-116825" z="-4064" heading="57929" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16451" y="-117870" z="-4056" heading="24943" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16537" y="-117982" z="-4056" heading="30423" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16359" y="-117936" z="-4048" heading="48286" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13882" y="-118543" z="-3384" heading="41100" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13267" y="-116957" z="-3656" heading="46914" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13127" y="-118448" z="-3336" heading="36690" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13344" y="-118364" z="-3352" heading="20105" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18038" y="-114784" z="-4056" heading="33947" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16260" y="-116347" z="-4056" heading="49153" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16593" y="-115550" z="-4048" heading="30529" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16311" y="-115247" z="-4032" heading="49328" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16484" y="-114743" z="-4040" heading="23807" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15986" y="-116427" z="-4048" heading="33235" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13277" y="-116700" z="-3704" heading="49677" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13343" y="-116138" z="-3704" heading="31361" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12258" y="-116014" z="-3696" heading="577" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13650" y="-114563" z="-3616" heading="6677" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13507" y="-114670" z="-3624" heading="1130" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13465" y="-115397" z="-3632" heading="3355" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18160" y="-113307" z="-4008" heading="23196" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17901" y="-114744" z="-4056" heading="30510" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16414" y="-113565" z="-4016" heading="62436" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16929" y="-113426" z="-4008" heading="2777" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17055" y="-113398" z="-4008" heading="34873" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14850" y="-113730" z="-3680" heading="40343" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14639" y="-113848" z="-3672" heading="16036" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15002" y="-114147" z="-3616" heading="43117" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13829" y="-113543" z="-3680" heading="30423" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13746" y="-113628" z="-3696" heading="53521" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13219" y="-113424" z="-3696" heading="405" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19339" y="-118591" z="-4040" heading="56667" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18520" y="-113305" z="-4008" heading="52382" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18343" y="-113312" z="-4008" heading="20553" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16649" y="-111397" z="-3280" heading="63092" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16189" y="-111197" z="-3376" heading="56934" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20980" y="-116467" z="-4056" heading="46528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21514" y="-116911" z="-4040" heading="65189" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20384" y="-115414" z="-4032" heading="13920" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20410" y="-114993" z="-4048" heading="32856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-18702" y="-113136" z="-4008" heading="18655" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20316" y="-111745" z="-3416" heading="30423" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19074" y="-110362" z="-3440" heading="21109" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18536" y="-110428" z="-3408" heading="16586" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18189" y="-113169" z="-4008" heading="38530" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18323" y="-114728" z="-4080" heading="64842" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18173" y="-114747" z="-4064" heading="40550" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16375" y="-113655" z="-4016" heading="63329" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16490" y="-113551" z="-4016" heading="55893" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16314" y="-111593" z="-3336" heading="8804" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16380" y="-109526" z="-3368" heading="5042" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14305" y="-113831" z="-3648" heading="54340" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14735" y="-114425" z="-3584" heading="36418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15868" y="-111502" z="-3440" heading="30067" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15910" y="-109719" z="-3376" heading="55429" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15237" y="-110216" z="-3400" heading="51348" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14769" y="-110124" z="-3408" heading="5554" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20982" y="-114203" z="-4024" heading="58581" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20737" y="-113745" z="-4024" heading="22388" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20341" y="-111872" z="-3416" heading="33863" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22353" y="-112863" z="-3456" heading="49529" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22433" y="-112815" z="-3440" heading="63016" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22042" y="-110615" z="-3392" heading="5222" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21963" y="-110239" z="-3392" heading="39411" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20563" y="-109855" z="-3392" heading="18112" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21088" y="-110174" z="-3408" heading="59007" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23630" y="-112644" z="-3440" heading="63171" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23517" y="-112644" z="-3456" heading="47137" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24467" y="-110382" z="-3440" heading="53024" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24210" y="-110292" z="-3480" heading="47667" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23264" y="-109496" z="-3456" heading="54132" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23700" y="-109229" z="-3520" heading="24143" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24255" y="-108211" z="-3544" heading="28083" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24371" y="-107601" z="-3568" heading="59522" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23305" y="-113914" z="-3344" heading="33824" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23664" y="-114383" z="-3336" heading="33994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24588" y="-116511" z="-3216" heading="63286" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23633" y="-114966" z="-3264" heading="39551" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24141" y="-115341" z="-3296" heading="29361" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20443" y="-115333" z="-4032" heading="6902" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24814" y="-116772" z="-3272" heading="62962" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23786" y="-117929" z="-3320" heading="32114" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23862" y="-117816" z="-3288" heading="16253" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21572" y="-117130" z="-4048" heading="46752" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21573" y="-116654" z="-4056" heading="34366" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20430" y="-118181" z="-4048" heading="1651" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20475" y="-117907" z="-4048" heading="62359" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25062" y="-119674" z="-3128" heading="62376" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22587" y="-120500" z="-3168" heading="5222" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23549" y="-120595" z="-3160" heading="19667" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24367" y="-119961" z="-3216" heading="14197" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20837" y="-119922" z="-4016" heading="3860" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24949" y="-121399" z="-3056" heading="51872" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25129" y="-121122" z="-3000" heading="53528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-26175" y="-121474" z="-2728" heading="3174" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25914" y="-122470" z="-2728" heading="38315" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22497" y="-121995" z="-3256" heading="17164" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21888" y="-121635" z="-3344" heading="50655" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20752" y="-120239" z="-4000" heading="22600" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-27019" y="-123638" z="-2672" heading="30182" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-27023" y="-123753" z="-2680" heading="2450" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25729" y="-123644" z="-2720" heading="42380" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25995" y="-123088" z="-2720" heading="8666" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25457" y="-124427" z="-2704" heading="4081" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24696" y="-124145" z="-2776" heading="59916" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24428" y="-124566" z="-2760" heading="8203" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23314" y="-123877" z="-2840" heading="4417" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22746" y="-124569" z="-2936" heading="30828" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-27410" y="-125117" z="-2712" heading="22782" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-27480" y="-125582" z="-2680" heading="38886" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25647" y="-125017" z="-2720" heading="42197" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21810" y="-124106" z="-2968" heading="42633" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20968" y="-123726" z="-2824" heading="61125" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24907" y="-121209" z="-3112" heading="46869" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25104" y="-121214" z="-3016" heading="18756" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-26112" y="-121659" z="-2728" heading="19719" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-26011" y="-122474" z="-2720" heading="1287" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22399" y="-122003" z="-3264" heading="31742" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19786" y="-124525" z="-3128" heading="35340" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19536" y="-124587" z="-3144" heading="35172" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17675" y="-123903" z="-3248" heading="34799" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17907" y="-123528" z="-3248" heading="23807" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16852" y="-122813" z="-3248" heading="40787" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16905" y="-122809" z="-3248" heading="55943" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15818" y="-123680" z="-3248" heading="53033" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15272" y="-123653" z="-3240" heading="41946" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14497" y="-122723" z="-3096" heading="5256" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14963" y="-122853" z="-3168" heading="61500" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-12913" y="-123137" z="-2984" heading="32421" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13429" y="-122640" z="-3032" heading="2841" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13406" y="-120700" z="-3224" heading="23869" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13025" y="-120745" z="-3256" heading="4370" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18157" y="-118697" z="-4048" heading="16687" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14309" y="-120281" z="-3328" heading="56027" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14179" y="-119896" z="-3328" heading="40549" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13896" y="-118762" z="-3400" heading="23774" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-12438" y="-119192" z="-3320" heading="40009" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-12473" y="-119783" z="-3312" heading="2274" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18006" y="-118449" z="-4048" heading="7866" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16368" y="-118067" z="-4048" heading="10442" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16379" y="-117983" z="-4048" heading="45948" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16192" y="-117074" z="-4056" heading="36837" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16175" y="-116959" z="-4056" heading="42783" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14121" y="-118655" z="-3344" heading="26090" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16597" y="-114848" z="-4080" heading="5748" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17225" y="-114965" z="-4088" heading="10466" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-12227" y="-115966" z="-3696" heading="33134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13317" y="-116659" z="-3704" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13226" y="-116554" z="-3704" heading="53033" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13750" y="-115116" z="-3672" heading="61245" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13546" y="-115376" z="-3656" heading="44161" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18158" y="-113076" z="-4008" heading="45797" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18331" y="-114827" z="-4072" heading="14977" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16492" y="-113793" z="-4032" heading="60268" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16612" y="-113344" z="-4008" heading="21938" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13395" y="-113324" z="-3704" heading="64842" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13586" y="-113842" z="-3688" heading="36198" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18611" y="-113104" z="-4008" heading="35685" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19409" y="-114873" z="-4056" heading="37956" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19242" y="-114719" z="-4056" heading="56362" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20342" y="-112018" z="-3384" heading="12849" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20464" y="-111932" z="-3400" heading="50596" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16442" y="-111517" z="-3304" heading="7987" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15963" y="-111514" z="-3416" heading="1290" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20582" y="-115503" z="-4064" heading="9299" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-18385" y="-113356" z="-4008" heading="5059" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18259" y="-113420" z="-4008" heading="27546" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19753" y="-114789" z="-4032" heading="37683" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19806" y="-114713" z="-4032" heading="49893" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19116" y="-110833" z="-3448" heading="61310" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18564" y="-110718" z="-3408" heading="9718" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18381" y="-114742" z="-4080" heading="40714" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18093" y="-114848" z="-4056" heading="58743" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16429" y="-113313" z="-4008" heading="18749" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16560" y="-113515" z="-4016" heading="56565" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14582" y="-114429" z="-3616" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14543" y="-114495" z="-3616" heading="37363" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16291" y="-111252" z="-3368" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16244" y="-111629" z="-3360" heading="51674" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16026" y="-109937" z="-3376" heading="24606" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16199" y="-110257" z="-3392" heading="44769" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14652" y="-110359" z="-3384" heading="1016" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15320" y="-110475" z="-3384" heading="53194" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20832" y="-113728" z="-4024" heading="39368" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21254" y="-114286" z="-4024" heading="10130" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22256" y="-111784" z="-3448" heading="13849" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20734" y="-111210" z="-3384" heading="37214" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21546" y="-110835" z="-3432" heading="42197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20433" y="-112165" z="-3296" heading="64756" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21620" y="-110769" z="-3432" heading="982" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21033" y="-109718" z="-3416" heading="19660" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20835" y="-110055" z="-3416" heading="41167" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22627" y="-112729" z="-3440" heading="46280" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23727" y="-112686" z="-3424" heading="29778" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23729" y="-112658" z="-3424" heading="39063" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24317" y="-110026" z="-3520" heading="22619" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23316" y="-109459" z="-3472" heading="33177" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23135" y="-109452" z="-3432" heading="50116" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24328" y="-108126" z="-3552" heading="46984" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24348" y="-108133" z="-3552" heading="52030" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24829" y="-110590" z="-3440" heading="21675" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23780" y="-113729" z="-3368" heading="34559" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23425" y="-114026" z="-3344" heading="8759" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21344" y="-114063" z="-4024" heading="20384" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24813" y="-116335" z="-3216" heading="51177" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23521" y="-115225" z="-3296" heading="42611" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24234" y="-115173" z="-3272" heading="32944" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21440" y="-116472" z="-4072" heading="15776" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20426" y="-115346" z="-4032" heading="3355" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20619" y="-115280" z="-4056" heading="38054" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21823" y="-110874" z="-3408" heading="44356" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25010" y="-117178" z="-3280" heading="22504" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23622" y="-117863" z="-3352" heading="4423" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23458" y="-117932" z="-3360" heading="42197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21458" y="-117099" z="-4048" heading="24195" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20341" y="-118144" z="-4048" heading="52467" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20675" y="-118371" z="-4048" heading="31824" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24682" y="-119244" z="-3224" heading="2612" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24212" y="-119854" z="-3240" heading="14627" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22633" y="-120308" z="-3176" heading="54864" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23581" y="-120558" z="-3168" heading="37023" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24764" y="-121610" z="-3080" heading="38184" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24912" y="-121214" z="-3112" heading="12365" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26014" y="-121659" z="-2728" heading="55710" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25672" y="-122154" z="-2760" heading="45198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22332" y="-121427" z="-3320" heading="52215" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22706" y="-121652" z="-3256" heading="65319" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26960" y="-124049" z="-2720" heading="21841" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26401" y="-124154" z="-2736" heading="36205" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25516" y="-123212" z="-2736" heading="60584" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25446" y="-123477" z="-2664" heading="20207" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22877" y="-124217" z="-2968" heading="10802" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24102" y="-123848" z="-2760" heading="5651" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24561" y="-123866" z="-2776" heading="12685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23060" y="-124464" z="-2896" heading="56338" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-27315" y="-125549" z="-2688" heading="52270" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26818" y="-124962" z="-2712" heading="19286" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25790" y="-125267" z="-2680" heading="15086" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25399" y="-125361" z="-2672" heading="45135" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21754" y="-124488" z="-2944" heading="31254" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21338" y="-124493" z="-2968" heading="56945" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24527" y="-121569" z="-3128" heading="1786" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24754" y="-121220" z="-3152" heading="39523" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26193" y="-121714" z="-2720" heading="58023" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25875" y="-122252" z="-2728" heading="46752" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22263" y="-121260" z="-3328" heading="12297" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22510" y="-121656" z="-3304" heading="32513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19566" y="-123862" z="-3072" heading="58485" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19724" y="-123682" z="-3048" heading="26437" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16883" y="-122906" z="-3232" heading="16045" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18217" y="-124351" z="-3240" heading="53678" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18055" y="-124252" z="-3248" heading="21297" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16859" y="-122807" z="-3248" heading="43122" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15284" y="-124188" z="-3248" heading="2681" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15340" y="-123578" z="-3232" heading="14905" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14322" y="-122489" z="-3056" heading="56118" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13292" y="-122895" z="-3032" heading="26183" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14265" y="-122613" z="-3064" heading="48107" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-12730" y="-122703" z="-2992" heading="2382" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13632" y="-120816" z="-3152" heading="64363" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13451" y="-120754" z="-3200" heading="23334" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18304" y="-118624" z="-4048" heading="16209" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18156" y="-118729" z="-4048" heading="5457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14246" y="-119357" z="-3352" heading="62338" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14000" y="-119946" z="-3312" heading="14125" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13727" y="-118768" z="-3416" heading="36843" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-12863" y="-119533" z="-3360" heading="7579" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-12439" y="-119079" z="-3320" heading="46103" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16344" y="-117914" z="-4048" heading="52103" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16518" y="-118081" z="-4056" heading="40344" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16013" y="-117110" z="-4064" heading="47753" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16407" y="-117068" z="-4048" heading="44056" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13743" y="-116994" z="-3672" heading="14135" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13648" y="-118397" z="-3376" heading="16340" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16291" y="-115387" z="-4032" heading="55157" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16457" y="-115335" z="-4048" heading="37397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-12268" y="-115989" z="-3696" heading="57835" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13628" y="-116303" z="-3712" heading="53083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13307" y="-114891" z="-3616" heading="578" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14283" y="-115408" z="-3600" heading="45298" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16649" y="-113406" z="-4000" heading="36941" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16728" y="-113756" z="-4024" heading="52289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14552" y="-114545" z="-3616" heading="51792" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14583" y="-114584" z="-3616" heading="11972" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13278" y="-113496" z="-3696" heading="46004" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13684" y="-113744" z="-3696" heading="30529" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19865" y="-118739" z="-4088" heading="20095" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18417" y="-113259" z="-4008" heading="38736" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18300" y="-113123" z="-4008" heading="21938" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16152" y="-111137" z="-3376" heading="7209" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21274" y="-116873" z="-4048" heading="12836" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20692" y="-115218" z="-4056" heading="58741" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
</spawn>
|
||||
</list>
|
469
L2J_Mobius_6.0_Fafurion/dist/game/data/spawns/Orc/LandOfChaos.xml
vendored
Normal file
469
L2J_Mobius_6.0_Fafurion/dist/game/data/spawns/Orc/LandOfChaos.xml
vendored
Normal file
@ -0,0 +1,469 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaos">
|
||||
<group>
|
||||
<npc id="23330" x="-13218" y="-123208" z="-2984" heading="44356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13329" y="-122172" z="-3008" heading="19903" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13397" y="-122601" z="-3016" heading="17906" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13422" y="-122851" z="-3040" heading="37838" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13726" y="-118866" z="-3408" heading="22154" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13745" y="-114868" z="-3664" heading="51971" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13811" y="-118812" z="-3408" heading="6432" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13844" y="-114907" z="-3656" heading="48890" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13883" y="-114762" z="-3632" heading="46046" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14039" y="-118835" z="-3360" heading="41269" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14067" y="-118411" z="-3352" heading="6869" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14158" y="-114820" z="-3616" heading="48802" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14766" y="-109924" z="-3368" heading="5651" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14804" y="-110749" z="-3376" heading="49766" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14882" y="-110543" z="-3400" heading="15344" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14984" y="-109679" z="-3368" heading="30127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16839" y="-122990" z="-3232" heading="42019" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16931" y="-122479" z="-3216" heading="19012" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16976" y="-123094" z="-3224" heading="18035" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17176" y="-122715" z="-3200" heading="60701" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20175" y="-111267" z="-3416" heading="56265" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20268" y="-111370" z="-3384" heading="4467" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20431" y="-111876" z="-3400" heading="64958" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20987" y="-111428" z="-3416" heading="43749" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21103" y="-124249" z="-2984" heading="22886" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21442" y="-124059" z="-3000" heading="21219" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21521" y="-123646" z="-2936" heading="43347" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21729" y="-123985" z="-2976" heading="39691" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22942" y="-120323" z="-3216" heading="10776" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23165" y="-120366" z="-3224" heading="15405" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23416" y="-120569" z="-3192" heading="19666" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23451" y="-115800" z="-3272" heading="40961" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23549" y="-115593" z="-3304" heading="57437" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23644" y="-120368" z="-3160" heading="27698" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23885" y="-115192" z="-3304" heading="3904" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24067" y="-115346" z="-3296" heading="11986" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25144" y="-124743" z="-2688" heading="13940" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25430" y="-125289" z="-2672" heading="44914" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25882" y="-125096" z="-2680" heading="43770" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25928" y="-125278" z="-2680" heading="55117" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23334" x="-12619" y="-122782" z="-2992" heading="54961" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12694" y="-123015" z="-2992" heading="48861" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12738" y="-122460" z="-2992" heading="9413" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12766" y="-122941" z="-2984" heading="64229" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12832" y="-122880" z="-3024" heading="62546" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12845" y="-122643" z="-3024" heading="18476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12965" y="-122313" z="-2992" heading="65087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13025" y="-122574" z="-3032" heading="58207" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13038" y="-122231" z="-3000" heading="32534" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13042" y="-122762" z="-3048" heading="61865" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13067" y="-122977" z="-3032" heading="15516" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13069" y="-123177" z="-3000" heading="2261" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13112" y="-122656" z="-3048" heading="46376" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13114" y="-122221" z="-2992" heading="26936" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13186" y="-118325" z="-3344" heading="4097" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13189" y="-123181" z="-2984" heading="694" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13198" y="-118794" z="-3360" heading="41453" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13227" y="-118162" z="-3384" heading="9337" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13227" y="-118939" z="-3360" heading="55526" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13241" y="-123060" z="-3008" heading="42258" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13243" y="-114992" z="-3616" heading="21219" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13262" y="-118699" z="-3376" heading="28896" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13276" y="-123110" z="-3008" heading="32359" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13277" y="-122219" z="-2992" heading="15223" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13284" y="-118591" z="-3384" heading="2330" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13289" y="-122477" z="-3016" heading="58767" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13298" y="-118248" z="-3368" heading="14647" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13304" y="-123091" z="-3008" heading="52289" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13322" y="-118153" z="-3352" heading="3100" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13323" y="-122458" z="-3024" heading="26183" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13345" y="-123121" z="-3008" heading="46914" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13357" y="-114954" z="-3616" heading="32743" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13361" y="-119077" z="-3368" heading="14000" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13364" y="-122662" z="-3032" heading="41496" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13393" y="-118518" z="-3368" heading="56421" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13399" y="-114822" z="-3616" heading="65069" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13410" y="-115333" z="-3608" heading="4885" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13421" y="-122830" z="-3040" heading="62324" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13442" y="-114943" z="-3648" heading="10776" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13458" y="-122493" z="-3008" heading="38950" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13517" y="-118466" z="-3392" heading="65479" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13524" y="-115264" z="-3640" heading="30901" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13531" y="-115465" z="-3632" heading="2807" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13533" y="-114715" z="-3616" heading="27309" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13545" y="-115130" z="-3648" heading="2492" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13551" y="-115347" z="-3656" heading="63486" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13572" y="-119253" z="-3344" heading="50435" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13575" y="-115238" z="-3664" heading="64497" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13588" y="-114878" z="-3648" heading="52366" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13601" y="-122428" z="-2976" heading="46202" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13607" y="-118413" z="-3400" heading="22035" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13628" y="-118347" z="-3376" heading="13027" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13635" y="-118960" z="-3392" heading="54864" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13643" y="-114836" z="-3648" heading="32505" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13643" y="-115151" z="-3672" heading="62634" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13644" y="-122801" z="-2984" heading="19556" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13648" y="-115329" z="-3648" heading="20955" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13668" y="-115313" z="-3664" heading="60701" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13672" y="-122975" z="-2984" heading="40879" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13689" y="-115136" z="-3672" heading="60894" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13700" y="-115226" z="-3672" heading="38975" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13702" y="-114777" z="-3632" heading="55551" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13721" y="-118349" z="-3368" heading="28315" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13739" y="-118464" z="-3392" heading="26247" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13771" y="-115594" z="-3608" heading="58023" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13774" y="-119055" z="-3360" heading="1382" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13788" y="-119068" z="-3360" heading="8189" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13798" y="-118568" z="-3408" heading="55070" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13843" y="-115387" z="-3656" heading="2973" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13855" y="-118927" z="-3400" heading="51792" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13858" y="-118301" z="-3352" heading="20095" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13876" y="-118803" z="-3392" heading="46752" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13879" y="-114913" z="-3656" heading="25974" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13885" y="-119189" z="-3360" heading="48627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13894" y="-118287" z="-3352" heading="40425" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13909" y="-115415" z="-3656" heading="45152" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13927" y="-118679" z="-3400" heading="25188" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13937" y="-118909" z="-3392" heading="10419" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13974" y="-115502" z="-3616" heading="56854" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14002" y="-118914" z="-3352" heading="42988" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14026" y="-115419" z="-3632" heading="30828" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14067" y="-114702" z="-3616" heading="47331" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14181" y="-115499" z="-3608" heading="30212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14315" y="-115315" z="-3608" heading="23435" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14453" y="-110150" z="-3352" heading="53911" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14605" y="-110288" z="-3392" heading="18476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14613" y="-110006" z="-3384" heading="60778" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14654" y="-110216" z="-3392" heading="26586" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14657" y="-110061" z="-3400" heading="34348" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14670" y="-110370" z="-3384" heading="48018" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14766" y="-109772" z="-3368" heading="5010" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14776" y="-110670" z="-3368" heading="34485" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14797" y="-110204" z="-3408" heading="40179" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14888" y="-110577" z="-3400" heading="30930" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14903" y="-110395" z="-3424" heading="39353" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14917" y="-109786" z="-3360" heading="34708" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14925" y="-109865" z="-3392" heading="2274" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14950" y="-110298" z="-3424" heading="22274" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14986" y="-110563" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15077" y="-109972" z="-3408" heading="8599" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15107" y="-110456" z="-3408" heading="38386" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15116" y="-109898" z="-3392" heading="27659" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15124" y="-110189" z="-3416" heading="4913" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15206" y="-110251" z="-3416" heading="34520" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15212" y="-109921" z="-3392" heading="41856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15224" y="-109846" z="-3376" heading="50524" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15228" y="-110250" z="-3416" heading="36125" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15240" y="-110177" z="-3400" heading="15907" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15254" y="-109762" z="-3360" heading="35536" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15460" y="-109989" z="-3360" heading="32680" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15507" y="-110177" z="-3360" heading="26345" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15545" y="-110242" z="-3352" heading="20207" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16406" y="-122855" z="-3184" heading="19465" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16466" y="-122486" z="-3192" heading="44718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16468" y="-122945" z="-3208" heading="405" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16480" y="-122386" z="-3200" heading="37131" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16691" y="-122624" z="-3216" heading="25933" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16799" y="-123045" z="-3224" heading="55865" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16828" y="-122337" z="-3184" heading="40810" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16841" y="-122402" z="-3192" heading="44042" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16858" y="-122639" z="-3240" heading="24904" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16889" y="-122272" z="-3184" heading="64583" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17028" y="-122654" z="-3224" heading="25811" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17082" y="-122323" z="-3192" heading="780" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17105" y="-122913" z="-3232" heading="44609" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17105" y="-123432" z="-3192" heading="50645" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17113" y="-122827" z="-3232" heading="59379" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17126" y="-122830" z="-3232" heading="36565" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17132" y="-123385" z="-3176" heading="34261" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17146" y="-123027" z="-3216" heading="60332" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17146" y="-123190" z="-3192" heading="63444" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17232" y="-122744" z="-3200" heading="30423" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17251" y="-122781" z="-3216" heading="5651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17291" y="-123297" z="-3200" heading="14481" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17326" y="-122562" z="-3184" heading="14585" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17331" y="-123020" z="-3192" heading="52270" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17357" y="-123247" z="-3192" heading="32418" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17365" y="-123178" z="-3192" heading="60151" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17445" y="-122690" z="-3200" heading="45298" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17491" y="-122809" z="-3192" heading="44746" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20139" y="-111539" z="-3392" heading="51476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20156" y="-111364" z="-3392" heading="43045" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20209" y="-112041" z="-3384" heading="48627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20297" y="-111910" z="-3400" heading="51212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20302" y="-111724" z="-3400" heading="18170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20304" y="-111411" z="-3408" heading="64900" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20324" y="-111931" z="-3408" heading="64727" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20334" y="-111085" z="-3408" heading="18645" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20337" y="-111452" z="-3416" heading="5378" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20345" y="-111959" z="-3408" heading="56704" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20351" y="-111652" z="-3400" heading="3445" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20357" y="-112103" z="-3384" heading="59612" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20364" y="-111654" z="-3424" heading="41548" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20367" y="-111455" z="-3408" heading="173" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20371" y="-111439" z="-3408" heading="56607" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20385" y="-111272" z="-3376" heading="46853" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20385" y="-111912" z="-3400" heading="20561" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20392" y="-111254" z="-3376" heading="4719" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20394" y="-111326" z="-3400" heading="7325" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20416" y="-111650" z="-3424" heading="59885" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20427" y="-111190" z="-3376" heading="45614" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20434" y="-111711" z="-3424" heading="30170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20435" y="-111186" z="-3376" heading="953" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20438" y="-112028" z="-3408" heading="38151" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20440" y="-111263" z="-3384" heading="52976" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20446" y="-111167" z="-3376" heading="6839" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20454" y="-111143" z="-3376" heading="10658" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20644" y="-112131" z="-3392" heading="56699" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20941" y="-124278" z="-2944" heading="35239" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20999" y="-124202" z="-2968" heading="19191" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21012" y="-124303" z="-2952" heading="56770" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21013" y="-124041" z="-2968" heading="7765" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21025" y="-124464" z="-2936" heading="55612" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21077" y="-124242" z="-2976" heading="3355" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21098" y="-123678" z="-2936" heading="61713" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21118" y="-124460" z="-2936" heading="40283" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21130" y="-124113" z="-2984" heading="59331" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21140" y="-124313" z="-2968" heading="62554" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21212" y="-123891" z="-2992" heading="16962" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21217" y="-124443" z="-2960" heading="62057" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21272" y="-123881" z="-2984" heading="7701" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21308" y="-124192" z="-3000" heading="28121" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21356" y="-123588" z="-2944" heading="23756" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21367" y="-124275" z="-3000" heading="58649" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21392" y="-123707" z="-2976" heading="14037" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21401" y="-123917" z="-3000" heading="43246" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21447" y="-123814" z="-3000" heading="40343" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21451" y="-123702" z="-2976" heading="47220" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21528" y="-124519" z="-2944" heading="53599" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21579" y="-124609" z="-2952" heading="58703" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21581" y="-123679" z="-2960" heading="43399" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21615" y="-123877" z="-2984" heading="31102" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21652" y="-123887" z="-2984" heading="56265" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21659" y="-124411" z="-2952" heading="57621" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21864" y="-124008" z="-2944" heading="50597" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21911" y="-124243" z="-2952" heading="48044" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22604" y="-120531" z="-3168" heading="18602" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22696" y="-120533" z="-3176" heading="1627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22749" y="-120311" z="-3176" heading="23713" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22765" y="-120640" z="-3168" heading="39139" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22780" y="-120645" z="-3168" heading="10985" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22807" y="-120595" z="-3176" heading="43576" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22850" y="-120382" z="-3200" heading="21200" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22877" y="-119939" z="-3184" heading="61374" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22914" y="-120591" z="-3208" heading="48298" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22931" y="-120717" z="-3192" heading="34735" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22937" y="-120160" z="-3216" heading="21841" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23020" y="-120112" z="-3216" heading="16253" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23048" y="-120604" z="-3192" heading="62538" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23051" y="-119892" z="-3184" heading="13933" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23063" y="-120513" z="-3216" heading="30085" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23114" y="-120288" z="-3216" heading="20363" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23116" y="-120590" z="-3192" heading="40976" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23139" y="-119851" z="-3160" heading="28087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23146" y="-120533" z="-3216" heading="18170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23162" y="-120806" z="-3168" heading="33510" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23250" y="-120726" z="-3184" heading="29810" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23253" y="-120199" z="-3208" heading="47753" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23261" y="-120777" z="-3168" heading="44056" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23282" y="-120611" z="-3192" heading="37137" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23294" y="-120237" z="-3208" heading="34224" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23295" y="-115289" z="-3280" heading="27351" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23306" y="-115357" z="-3264" heading="62181" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23312" y="-115389" z="-3264" heading="6384" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23364" y="-115363" z="-3264" heading="27280" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23430" y="-120139" z="-3160" heading="5636" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23450" y="-115512" z="-3280" heading="39096" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23452" y="-120190" z="-3160" heading="17949" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23475" y="-115121" z="-3272" heading="47856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23528" y="-115247" z="-3304" heading="53610" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23559" y="-120583" z="-3176" heading="43651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23583" y="-115762" z="-3272" heading="16356" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23644" y="-115392" z="-3312" heading="45411" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23658" y="-115850" z="-3264" heading="46460" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23660" y="-115741" z="-3304" heading="10702" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23725" y="-115037" z="-3296" heading="33596" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23768" y="-115468" z="-3328" heading="16514" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23775" y="-114886" z="-3256" heading="20288" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23865" y="-115293" z="-3312" heading="18928" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23911" y="-115219" z="-3312" heading="39132" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23938" y="-115635" z="-3312" heading="18120" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23974" y="-115580" z="-3320" heading="5754" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24022" y="-114905" z="-3280" heading="7091" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24055" y="-115508" z="-3320" heading="2280" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24091" y="-115356" z="-3296" heading="46002" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24115" y="-115171" z="-3272" heading="2625" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24146" y="-115468" z="-3296" heading="37175" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24230" y="-115635" z="-3264" heading="25149" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24239" y="-115638" z="-3264" heading="46406" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24297" y="-115433" z="-3272" heading="56920" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24305" y="-115456" z="-3264" heading="33990" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24401" y="-115387" z="-3248" heading="34434" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25227" y="-125054" z="-2696" heading="58390" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25237" y="-125085" z="-2688" heading="35831" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25272" y="-125015" z="-2696" heading="39691" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25287" y="-125049" z="-2696" heading="47290" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25329" y="-125343" z="-2680" heading="62455" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25337" y="-125132" z="-2696" heading="60138" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25349" y="-124410" z="-2672" heading="23652" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25378" y="-125347" z="-2672" heading="11909" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25389" y="-125198" z="-2672" heading="52442" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25441" y="-124945" z="-2720" heading="13210" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25459" y="-125417" z="-2672" heading="25794" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25519" y="-124828" z="-2736" heading="24606" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25703" y="-124441" z="-2704" heading="5473" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25779" y="-125103" z="-2696" heading="43651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25781" y="-125014" z="-2712" heading="57386" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25806" y="-125145" z="-2696" heading="30444" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25822" y="-125182" z="-2696" heading="45079" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25826" y="-124632" z="-2712" heading="58290" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25841" y="-124998" z="-2712" heading="59790" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25846" y="-125095" z="-2696" heading="50256" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25854" y="-125027" z="-2712" heading="31447" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25879" y="-124950" z="-2688" heading="63375" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25888" y="-125043" z="-2688" heading="44265" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25913" y="-124957" z="-2688" heading="32944" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26017" y="-124530" z="-2680" heading="11314" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26054" y="-124972" z="-2672" heading="54144" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26089" y="-124971" z="-2672" heading="44968" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13453" y="-122632" z="-3008" heading="34215" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13461" y="-114861" z="-3640" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13531" y="-118208" z="-3352" heading="32418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23336" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17088" y="-117220" z="-4053" heading="14397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16958" y="-116540" z="-4062" heading="14397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17471" y="-114680" z="-4075" heading="31994" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18099" y="-114635" z="-4060" heading="31994" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19727" y="-114800" z="-4061" heading="35145" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20232" y="-114920" z="-4084" heading="35145" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20824" y="-115560" z="-4049" heading="41273" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20882" y="-115804" z="-4053" heading="46626" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21192" y="-116968" z="-4054" heading="46308" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21289" y="-117267" z="-4054" heading="45923" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20888" y="-117944" z="-4053" heading="61134" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20797" y="-118031" z="-4055" heading="57547" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20251" y="-118843" z="-4066" heading="52449" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19801" y="-119156" z="-4059" heading="63592" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18823" y="-119228" z="-4062" heading="64880" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18569" y="-119237" z="-4068" heading="306" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17714" y="-118742" z="-4071" heading="6553" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17204" y="-118375" z="-4105" heading="6553" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16303" y="-117347" z="-4062" heading="13175" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16231" y="-116738" z="-4071" heading="17990" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16526" y="-115580" z="-4065" heading="19114" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16673" y="-114968" z="-4074" heading="18245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16835" y="-113924" z="-4044" heading="26198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17382" y="-113618" z="-4027" heading="28280" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18645" y="-113808" z="-4026" heading="38720" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19175" y="-114146" z="-4051" heading="38720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20919" y="-115110" z="-4050" heading="46891" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21093" y="-115712" z="-4051" heading="44514" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21436" y="-117517" z="-4056" heading="51490" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21246" y="-118115" z="-4056" heading="53781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19771" y="-119446" z="-4065" heading="58852" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19220" y="-119645" z="-4059" heading="1127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17430" y="-118215" z="-4061" heading="9570" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17048" y="-117713" z="-4061" heading="10999" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16868" y="-116016" z="-4058" heading="20754" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17124" y="-115441" z="-4068" heading="20754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18218" y="-114521" z="-4052" heading="27232" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18757" y="-114286" z="-4043" heading="33319" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20003" y="-114567" z="-4054" heading="37973" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20485" y="-114955" z="-4054" heading="41754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21202" y="-116390" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21216" y="-116451" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21196" y="-117069" z="-4059" heading="51083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20884" y="-117566" z="-4059" heading="58782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19856" y="-118370" z="-4066" heading="60455" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19432" y="-118600" z="-4047" heading="58542" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18163" y="-118468" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17591" y="-118203" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -37,7 +37,11 @@
|
||||
<npc id="34200" x="-50112" y="-148078" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34200" x="-49485" y="-148037" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34203" x="-50720" y="-149040" z="-14936" heading="26108" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34203" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34205" x="-50984" y="-147336" z="-14945" heading="14991" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-50184" y="-147864" z="-14158" heading="31287" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34206" x="-50136" y="-148568" z="-14157" heading="7775" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34207" x="-49625" y="-148723" z="-14152" heading="63138" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34189" x="-52646" y="-147041" z="-14944" heading="42728" respawnTime="60sec" /> <!-- Mistress, Auction House Manager -->
|
||||
<npc id="34190" x="-54000" y="-146768" z="-14944" heading="7504" respawnTime="60sec" /> <!-- Attitude, Grocer -->
|
||||
<npc id="34192" x="-53313" y="-148013" z="-14944" heading="16672" respawnTime="60sec" /> <!-- Fouette, Warehouse Keeper -->
|
||||
|
@ -2590,4 +2590,34 @@
|
||||
<point X="83482" Y="149278" Z="-3405" delay="16" run="true" /> <!-- Kekropus -->
|
||||
<point X="83307" Y="148431" Z="-3405" delay="21" run="true" /> <!-- Training Camp Manager -->
|
||||
</route>
|
||||
<route name="employee_1" repeat="true" repeatStyle="back">
|
||||
<target id="34205" spawnX="-50984" spawnY="-147336" spawnZ="-14945" />
|
||||
<point X="-50984" Y="-147336" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51208" Y="-147704" Z="-14945" delay="2" run="false" />
|
||||
<point X="-51160" Y="-148456" Z="-14946" delay="2" run="false" />
|
||||
<point X="-50728" Y="-148952" Z="-14944" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_2" repeat="true" repeatStyle="cycle">
|
||||
<target id="34204" spawnX="-50184" spawnY="-147864" spawnZ="-14158" />
|
||||
<point X="-50184" Y="-147864" Z="-14158" delay="2" run="false" />
|
||||
<point X="-50296" Y="-148104" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50056" Y="-148408" Z="-14158" delay="2" run="false" />
|
||||
<point X="-49768" Y="-148232" Z="-14186" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_3" repeat="true" repeatStyle="cycle">
|
||||
<target id="34206" spawnX="-50136" spawnY="-148568" spawnZ="-14157" />
|
||||
<point X="-50136" Y="-148568" Z="-14157" delay="2" run="false" />
|
||||
<point X="-50152" Y="-149032" Z="-14171" delay="2" run="false" />
|
||||
<point X="-49784" Y="-148408" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49880" Y="-148348" Z="-14184" delay="2" run="false" />
|
||||
</route>
|
||||
<route name="employee_4" repeat="true" repeatStyle="cycle">
|
||||
<target id="34207" spawnX="-49625" spawnY="-148723" spawnZ="-14152" />
|
||||
<point X="-49625" Y="-148723" Z="-14152" delay="2" run="false" />
|
||||
<point X="-49256" Y="-148680" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49272" Y="-148088" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49400" Y="-148024" Z="-14157" delay="2" run="false" />
|
||||
<point X="-49736" Y="-148264" Z="-14186" delay="2" run="false" />
|
||||
<point X="-49640" Y="-148360" Z="-14176" delay="0" run="false" />
|
||||
</route>
|
||||
</routes>
|
@ -0,0 +1,206 @@
|
||||
/*
|
||||
* This file is part of the L2J Mobius project.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
package ai.areas.GainakUnderground.TavernEmployee;
|
||||
|
||||
import org.l2jmobius.gameserver.enums.ChatType;
|
||||
import org.l2jmobius.gameserver.model.actor.Npc;
|
||||
import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance;
|
||||
import org.l2jmobius.gameserver.network.NpcStringId;
|
||||
import org.l2jmobius.gameserver.network.serverpackets.NpcSay;
|
||||
|
||||
import ai.AbstractNpcAI;
|
||||
|
||||
/**
|
||||
* Tavern Employee AI.
|
||||
* @author Edoo
|
||||
*/
|
||||
public class TavernEmployee extends AbstractNpcAI
|
||||
{
|
||||
// NPCs
|
||||
private static final int LOYEE1 = 34202;
|
||||
private static final int LOYEE2 = 34203;
|
||||
private static final int LOYEE3 = 34204;
|
||||
private static final int LOYEE4 = 34205;
|
||||
private static final int LOYEE5 = 34206;
|
||||
private static final int LOYEE6 = 34207;
|
||||
// Text
|
||||
private static final NpcStringId[] SPAM_TEXT1 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT2 =
|
||||
{
|
||||
NpcStringId.THE_MYSTIC_TAVERN_IS_OPEN_NOW
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT3 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT4 =
|
||||
{
|
||||
NpcStringId.ADVENTURER_THE_TAVERN_IS_THIS_WAY,
|
||||
NpcStringId.ARE_YOU_LOOKING_FOR_THE_TAVERN_IT_S_THIS_WAY,
|
||||
NpcStringId.COME_ON_CHANCES_LIKE_THESE_DON_T_COME_BY_OFTEN
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT5 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
private static final NpcStringId[] SPAM_TEXT6 =
|
||||
{
|
||||
NpcStringId.SIGH_BUSY_AS_ALWAYS,
|
||||
NpcStringId.HOW_LONG_UNTIL_WE_CAN_TELL_STORIES_TO_THE_CUSTOMERS_TOO,
|
||||
NpcStringId.I_WONDER_WHAT_HANNA_WILL_BE_MAKING_TODAY,
|
||||
NpcStringId.HEY_YOU_WE_DON_T_WANT_DRUNK_CUSTOMERS_HERE,
|
||||
NpcStringId.WHAT_DO_YOU_THINK_ABOUT_OUR_TAVERN_ISN_T_IT_GREAT,
|
||||
NpcStringId.YOU_CAN_PLACE_YOUR_ORDER_OVER_THERE,
|
||||
NpcStringId.JUST_RELAX_AND_HAVE_A_DRINK,
|
||||
NpcStringId.HANNA_S_COOKING_IS_THE_BEST,
|
||||
NpcStringId.YOU_ARE_A_REGULAR_RIGHT_THANKS_FOR_COMING_AGAIN,
|
||||
NpcStringId.HERE_YOU_CAN_FORGET_ABOUT_YOUR_RESPONSIBILITIES_FOR_A_WHILE,
|
||||
NpcStringId.LUPIA_INTRODUCED_ME_HERE_SO_THAT_S_HOW_I_STARTED_WORKING_HERE,
|
||||
NpcStringId.IS_THERE_ANYTHING_TO_CLEAN_UP,
|
||||
NpcStringId.I_WONDER_IF_THERE_S_ANYONE_COMING_FROM_THAT_SIDE,
|
||||
NpcStringId.I_THINK_WE_CAN_WAIT_FOR_SOME_MORE_CUSTOMERS,
|
||||
};
|
||||
|
||||
private TavernEmployee()
|
||||
{
|
||||
addSpawnId(LOYEE1);
|
||||
addSpawnId(LOYEE2);
|
||||
addSpawnId(LOYEE3);
|
||||
addSpawnId(LOYEE4);
|
||||
addSpawnId(LOYEE5);
|
||||
addSpawnId(LOYEE6);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onAdvEvent(String event, Npc npc, PlayerInstance player)
|
||||
{
|
||||
String htmltext = null;
|
||||
switch (event)
|
||||
{
|
||||
case "spam_text1":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT1[getRandom(SPAM_TEXT1.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text2":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT2[getRandom(SPAM_TEXT2.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text3":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT3[getRandom(SPAM_TEXT3.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text4":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT4[getRandom(SPAM_TEXT4.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text5":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT5[getRandom(SPAM_TEXT5.length)]));
|
||||
break;
|
||||
}
|
||||
case "spam_text6":
|
||||
{
|
||||
npc.broadcastPacket(new NpcSay(npc.getObjectId(), ChatType.NPC_GENERAL, npc.getId(), SPAM_TEXT6[getRandom(SPAM_TEXT6.length)]));
|
||||
break;
|
||||
}
|
||||
}
|
||||
return htmltext;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String onSpawn(Npc npc)
|
||||
{
|
||||
npc.setIsTalkable(false);
|
||||
|
||||
if (npc.getId() == LOYEE1)
|
||||
{
|
||||
startQuestTimer("spam_text1", 17000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE2)
|
||||
{
|
||||
startQuestTimer("spam_text2", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE3)
|
||||
{
|
||||
startQuestTimer("spam_text3", 16000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE4)
|
||||
{
|
||||
startQuestTimer("spam_text4", 180000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE5)
|
||||
{
|
||||
startQuestTimer("spam_text5", 15000, npc, null, true);
|
||||
}
|
||||
if (npc.getId() == LOYEE6)
|
||||
{
|
||||
startQuestTimer("spam_text6", 18000, npc, null, true);
|
||||
}
|
||||
return super.onSpawn(npc);
|
||||
}
|
||||
|
||||
public static void main(String[] args)
|
||||
{
|
||||
new TavernEmployee();
|
||||
}
|
||||
}
|
@ -1,620 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaosMonsters">
|
||||
<npc id="23330" x="-18840" y="-113652" z="-4008" heading="45242" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18323" y="-112802" z="-4008" heading="20728" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19272" y="-114727" z="-4056" heading="46376" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19169" y="-114794" z="-4072" heading="46376" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19090" y="-110624" z="-3440" heading="7886" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18615" y="-110048" z="-3448" heading="46531" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18592" y="-109897" z="-3448" heading="7046" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18078" y="-113297" z="-4008" heading="1130" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17827" y="-114638" z="-4048" heading="563" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18082" y="-114764" z="-4064" heading="46752" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17677" y="-114716" z="-4048" heading="2229" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16428" y="-113660" z="-4016" heading="7172" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16370" y="-113639" z="-4016" heading="51876" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16374" y="-113499" z="-4008" heading="1345" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16339" y="-111929" z="-3336" heading="64411" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16242" y="-109400" z="-3304" heading="14119" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14728" y="-114361" z="-3584" heading="16209" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14914" y="-113574" z="-3696" heading="16948" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15201" y="-114102" z="-3616" heading="51950" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16291" y="-111331" z="-3360" heading="3355" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15806" y="-111651" z="-3448" heading="58023" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16229" y="-109964" z="-3384" heading="31688" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15902" y="-110038" z="-3384" heading="4937" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14841" y="-110395" z="-3408" heading="38256" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14488" y="-110402" z="-3368" heading="48751" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15168" y="-110596" z="-3392" heading="58825" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20838" y="-113657" z="-4016" heading="24943" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20711" y="-114024" z="-4024" heading="5120" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20955" y="-113631" z="-4016" heading="217" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22399" y="-110892" z="-3448" heading="48586" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20646" y="-111311" z="-3408" heading="16340" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20846" y="-111868" z="-3432" heading="34077" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21837" y="-112380" z="-3480" heading="16893" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21050" y="-111949" z="-3384" heading="12912" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21587" y="-110938" z="-3424" heading="42092" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22018" y="-112759" z="-3472" heading="47220" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20660" y="-110240" z="-3424" heading="15430" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20361" y="-109968" z="-3376" heading="56354" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22075" y="-110554" z="-3392" heading="26484" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20872" y="-110122" z="-3424" heading="25753" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22626" y="-112676" z="-3440" heading="42197" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23752" y="-112722" z="-3424" heading="52385" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23849" y="-112732" z="-3392" heading="45356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23976" y="-112289" z="-3432" heading="55757" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24178" y="-110115" z="-3504" heading="47119" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24007" y="-110326" z="-3504" heading="4564" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23529" y="-110194" z="-3520" heading="47000" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23052" y="-109313" z="-3432" heading="13576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23700" y="-109586" z="-3536" heading="44512" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24335" y="-108170" z="-3552" heading="35405" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24767" y="-110033" z="-3496" heading="42108" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24359" y="-108132" z="-3552" heading="54603" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24487" y="-108516" z="-3544" heading="29050" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23148" y="-113740" z="-3320" heading="49720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23219" y="-114233" z="-3304" heading="28293" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23193" y="-113853" z="-3320" heading="25282" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25083" y="-116576" z="-3264" heading="8599" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24751" y="-116621" z="-3232" heading="53313" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24953" y="-116636" z="-3248" heading="22206" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23794" y="-115458" z="-3328" heading="26596" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23790" y="-114982" z="-3288" heading="33404" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23638" y="-115325" z="-3304" heading="42381" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21234" y="-116157" z="-4064" heading="34181" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21368" y="-116121" z="-4064" heading="38754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21665" y="-116269" z="-4032" heading="57910" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20375" y="-115053" z="-4048" heading="61576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20430" y="-115423" z="-4032" heading="59452" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20572" y="-114937" z="-4048" heading="28605" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23559" y="-117957" z="-3344" heading="18212" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23919" y="-117382" z="-3288" heading="7137" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24312" y="-117627" z="-3240" heading="20578" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20650" y="-117908" z="-4040" heading="18749" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20439" y="-118097" z="-4048" heading="9418" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20465" y="-118298" z="-4048" heading="55237" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25003" y="-119611" z="-3128" heading="3921" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24724" y="-120941" z="-3176" heading="61245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24483" y="-119743" z="-3184" heading="40341" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22751" y="-120353" z="-3192" heading="60843" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23173" y="-120343" z="-3216" heading="23713" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23456" y="-120265" z="-3160" heading="48745" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24622" y="-119898" z="-3168" heading="12126" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20573" y="-119820" z="-4048" heading="36819" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20731" y="-119762" z="-4048" heading="52219" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26216" y="-122172" z="-2696" heading="65063" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26068" y="-122499" z="-2728" heading="49591" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26392" y="-121497" z="-2704" heading="63262" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24185" y="-121279" z="-3224" heading="23042" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24683" y="-120894" z="-3192" heading="36843" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21993" y="-122086" z="-3280" heading="38676" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22237" y="-121817" z="-3312" heading="38782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22654" y="-121679" z="-3288" heading="30834" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-27202" y="-123922" z="-2704" heading="8314" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26942" y="-124406" z="-2712" heading="44135" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25102" y="-125040" z="-2680" heading="40033" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26629" y="-123621" z="-2688" heading="13397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25403" y="-123172" z="-2720" heading="60123" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25292" y="-122699" z="-2784" heading="9292" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25298" y="-122793" z="-2768" heading="11431" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25167" y="-124823" z="-2704" heading="28007" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25903" y="-124468" z="-2696" heading="22661" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24737" y="-123917" z="-2752" heading="29260" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23831" y="-123835" z="-2760" heading="32507" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24775" y="-123917" z="-2752" heading="38781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22957" y="-123896" z="-2928" heading="34728" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23191" y="-124120" z="-2920" heading="21823" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22440" y="-123881" z="-2976" heading="26996" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-27071" y="-124802" z="-2728" heading="904" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26809" y="-125359" z="-2704" heading="58409" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26945" y="-125125" z="-2712" heading="47402" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21653" y="-124157" z="-2984" heading="23390" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21265" y="-123646" z="-2944" heading="2330" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21585" y="-123717" z="-2960" heading="30727" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26311" y="-122324" z="-2704" heading="43326" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-26190" y="-121703" z="-2720" heading="39434" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22643" y="-121467" z="-3280" heading="51755" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19409" y="-124414" z="-3176" heading="7239" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19473" y="-124006" z="-3096" heading="33485" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20207" y="-124087" z="-3056" heading="40189" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17394" y="-123188" z="-3192" heading="25686" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16312" y="-122746" z="-3192" heading="58333" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18452" y="-124032" z="-3184" heading="13126" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18077" y="-123952" z="-3224" heading="20288" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17813" y="-123898" z="-3240" heading="17447" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16903" y="-122879" z="-3248" heading="10900" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14357" y="-123286" z="-3064" heading="50241" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14382" y="-122984" z="-3088" heading="62419" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15441" y="-123680" z="-3248" heading="63928" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-15917" y="-124012" z="-3248" heading="48804" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16024" y="-123555" z="-3248" heading="35821" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14593" y="-122486" z="-3048" heading="10250" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12956" y="-122178" z="-3000" heading="12986" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13195" y="-122641" z="-3048" heading="20077" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13527" y="-122662" z="-3008" heading="42202" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13296" y="-120768" z="-3240" heading="37761" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13595" y="-120787" z="-3152" heading="4758" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12888" y="-120804" z="-3256" heading="5765" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17633" y="-118629" z="-4064" heading="20180" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14294" y="-119371" z="-3352" heading="10250" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14237" y="-119949" z="-3328" heading="16166" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14058" y="-119472" z="-3344" heading="47600" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13306" y="-118641" z="-3392" heading="35632" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12162" y="-119456" z="-3320" heading="4352" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12905" y="-119080" z="-3360" heading="56908" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-12704" y="-120041" z="-3304" heading="42301" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18502" y="-118624" z="-4056" heading="45649" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17828" y="-118497" z="-4056" heading="58554" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16467" y="-117936" z="-4056" heading="31546" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16498" y="-118242" z="-4048" heading="38386" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16323" y="-118017" z="-4048" heading="13758" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13125" y="-118288" z="-3368" heading="6883" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13668" y="-118574" z="-3408" heading="55972" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16521" y="-116328" z="-4056" heading="32827" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16445" y="-115633" z="-4048" heading="43020" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16491" y="-115444" z="-4048" heading="17135" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16543" y="-115155" z="-4072" heading="27698" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16044" y="-116772" z="-4088" heading="23217" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16146" y="-116555" z="-4064" heading="2262" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13526" y="-116345" z="-3720" heading="19917" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13768" y="-116362" z="-3704" heading="26554" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13760" y="-116374" z="-3704" heading="6037" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14208" y="-115401" z="-3600" heading="17983" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14058" y="-115550" z="-3616" heading="47316" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13952" y="-115370" z="-3656" heading="14529" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16523" y="-113654" z="-4024" heading="65194" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16523" y="-113267" z="-4008" heading="22597" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13671" y="-113126" z="-3704" heading="16818" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13228" y="-114100" z="-3688" heading="42324" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13373" y="-113204" z="-3696" heading="38586" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18168" y="-113183" z="-4008" heading="54864" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-19632" y="-114904" z="-4024" heading="63080" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-18763" y="-113710" z="-4008" heading="25524" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21071" y="-116541" z="-4064" heading="51518" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21286" y="-116174" z="-4064" heading="26148" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20546" y="-115108" z="-4048" heading="36015" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23334" x="-18494" y="-113398" z="-4008" heading="61876" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18424" y="-113136" z="-4008" heading="23991" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19431" y="-114883" z="-4048" heading="57006" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19171" y="-114723" z="-4072" heading="46923" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19402" y="-114848" z="-4056" heading="49328" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20357" y="-111992" z="-3400" heading="34879" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18569" y="-110678" z="-3408" heading="48673" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19095" y="-110208" z="-3448" heading="34405" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18693" y="-110199" z="-3448" heading="5222" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18224" y="-113233" z="-4008" heading="52992" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18045" y="-114715" z="-4056" heading="15602" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18183" y="-114870" z="-4072" heading="45907" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16591" y="-113632" z="-4024" heading="27056" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16742" y="-113375" z="-4000" heading="60472" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16950" y="-113133" z="-4000" heading="52953" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16170" y="-110208" z="-3384" heading="11470" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16168" y="-110108" z="-3384" heading="37356" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14716" y="-113611" z="-3696" heading="27698" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14645" y="-114028" z="-3648" heading="4497" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14904" y="-113997" z="-3624" heading="41084" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16287" y="-111790" z="-3336" heading="34650" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16474" y="-111284" z="-3320" heading="46923" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16311" y="-111065" z="-3368" heading="48586" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15970" y="-110402" z="-3392" heading="65276" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14996" y="-109971" z="-3408" heading="50589" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14887" y="-110358" z="-3424" heading="53574" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14570" y="-110603" z="-3376" heading="63086" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20543" y="-113967" z="-4016" heading="33677" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20563" y="-113703" z="-4008" heading="19191" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21301" y="-113510" z="-4016" heading="54913" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20627" y="-111276" z="-3408" heading="34700" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22335" y="-110865" z="-3448" heading="3282" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21018" y="-111952" z="-3384" heading="48148" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22121" y="-112741" z="-3472" heading="51184" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22493" y="-112743" z="-3440" heading="34034" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22260" y="-110642" z="-3416" heading="30546" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20825" y="-110416" z="-3440" heading="42694" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22282" y="-110250" z="-3416" heading="19286" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20567" y="-110311" z="-3408" heading="38447" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20666" y="-109499" z="-3456" heading="65363" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24330" y="-110925" z="-3432" heading="24862" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24235" y="-110946" z="-3448" heading="524" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22715" y="-112686" z="-3432" heading="51750" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23965" y="-112697" z="-3384" heading="46923" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23361" y="-111842" z="-3408" heading="20934" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23783" y="-112683" z="-3424" heading="36191" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24505" y="-110047" z="-3512" heading="859" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23837" y="-109647" z="-3536" heading="49940" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23658" y="-109980" z="-3528" heading="14775" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23874" y="-109414" z="-3536" heading="40328" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24273" y="-108045" z="-3552" heading="42515" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24294" y="-108140" z="-3552" heading="39119" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24266" y="-108148" z="-3552" heading="35872" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23286" y="-113490" z="-3360" heading="55023" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23464" y="-113656" z="-3368" heading="43524" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23264" y="-114063" z="-3304" heading="42033" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25155" y="-116687" z="-3272" heading="35409" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23486" y="-115099" z="-3272" heading="45171" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24131" y="-115796" z="-3264" heading="44211" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23953" y="-115906" z="-3264" heading="5492" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21016" y="-116607" z="-4064" heading="7660" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21754" y="-116903" z="-4040" heading="54573" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20362" y="-115319" z="-4032" heading="16877" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20506" y="-115201" z="-4048" heading="16962" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20515" y="-115291" z="-4048" heading="1047" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20759" y="-112150" z="-3392" heading="38793" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25092" y="-116774" z="-3280" heading="37741" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25231" y="-116891" z="-3280" heading="48671" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23933" y="-117681" z="-3288" heading="62098" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23866" y="-118325" z="-3296" heading="39807" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23936" y="-118132" z="-3296" heading="8363" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21581" y="-116956" z="-4040" heading="26981" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20447" y="-117834" z="-4048" heading="11237" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20814" y="-118600" z="-4048" heading="42216" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20367" y="-118316" z="-4048" heading="63002" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25037" y="-119651" z="-3128" heading="6035" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24555" y="-120048" z="-3192" heading="5725" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24813" y="-119351" z="-3184" heading="40601" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23538" y="-120474" z="-3176" heading="48978" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22715" y="-120027" z="-3160" heading="57223" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22910" y="-120698" z="-3176" heading="28762" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20782" y="-119783" z="-4040" heading="36900" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24865" y="-121332" z="-3096" heading="47747" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24463" y="-121320" z="-3184" heading="55537" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24924" y="-120605" z="-3168" heading="40378" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26414" y="-121752" z="-2696" heading="64546" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26179" y="-121466" z="-2728" heading="22661" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26222" y="-121506" z="-2728" heading="7580" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22257" y="-122146" z="-3248" heading="58301" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21978" y="-121743" z="-3320" heading="18249" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21851" y="-121860" z="-3296" heading="23439" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26481" y="-123960" z="-2720" heading="48521" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-27020" y="-123481" z="-2672" heading="44450" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-27274" y="-123602" z="-2656" heading="945" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25907" y="-124845" z="-2720" heading="2777" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25458" y="-123663" z="-2656" heading="2975" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25369" y="-123408" z="-2664" heading="33379" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25360" y="-123618" z="-2656" heading="15089" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25218" y="-125021" z="-2696" heading="13637" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22680" y="-124161" z="-2976" heading="15814" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22551" y="-123570" z="-2944" heading="54680" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24357" y="-124138" z="-2816" heading="48665" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24501" y="-124290" z="-2776" heading="50485" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24583" y="-124359" z="-2760" heading="30930" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22867" y="-124321" z="-2952" heading="9171" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-27301" y="-124902" z="-2728" heading="58985" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26675" y="-125034" z="-2712" heading="2092" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-27482" y="-125267" z="-2704" heading="13491" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25844" y="-125109" z="-2696" heading="20481" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21286" y="-124004" z="-3000" heading="65131" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20850" y="-123903" z="-2952" heading="0" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20967" y="-124308" z="-2944" heading="5651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24674" y="-121084" z="-3192" heading="38802" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24518" y="-121550" z="-3136" heading="50904" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24943" y="-120723" z="-3152" heading="47488" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26196" y="-121766" z="-2696" heading="38189" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26026" y="-121596" z="-2736" heading="3775" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26096" y="-121577" z="-2736" heading="27211" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22416" y="-122063" z="-3256" heading="27749" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19609" y="-124080" z="-3112" heading="11431" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20201" y="-123961" z="-3048" heading="53452" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19932" y="-124370" z="-3120" heading="26270" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16860" y="-122875" z="-3248" heading="22087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17749" y="-124059" z="-3256" heading="21054" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17779" y="-123612" z="-3248" heading="53150" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17718" y="-124333" z="-3272" heading="10258" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16889" y="-122802" z="-3248" heading="51506" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16846" y="-122821" z="-3248" heading="38227" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14632" y="-123164" z="-3136" heading="26871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15712" y="-124208" z="-3208" heading="37084" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15628" y="-124255" z="-3208" heading="54611" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15471" y="-124041" z="-3240" heading="13224" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14708" y="-122544" z="-3064" heading="50732" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13091" y="-123187" z="-3000" heading="26958" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14165" y="-122535" z="-3056" heading="51254" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13559" y="-122497" z="-2992" heading="10016" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13491" y="-122281" z="-2976" heading="26392" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13313" y="-121180" z="-3168" heading="1872" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13130" y="-120793" z="-3256" heading="6469" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17649" y="-118759" z="-4064" heading="8496" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18024" y="-118665" z="-4048" heading="8775" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14317" y="-119677" z="-3328" heading="50140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14225" y="-119911" z="-3328" heading="5554" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13358" y="-120753" z="-3224" heading="26132" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13975" y="-119863" z="-3320" heading="51930" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13037" y="-119806" z="-3360" heading="29990" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12695" y="-119044" z="-3344" heading="14699" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12201" y="-119650" z="-3320" heading="16266" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17933" y="-118465" z="-4048" heading="34077" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16231" y="-116825" z="-4064" heading="57929" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16451" y="-117870" z="-4056" heading="24943" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16537" y="-117982" z="-4056" heading="30423" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16359" y="-117936" z="-4048" heading="48286" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13882" y="-118543" z="-3384" heading="41100" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13267" y="-116957" z="-3656" heading="46914" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13127" y="-118448" z="-3336" heading="36690" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13344" y="-118364" z="-3352" heading="20105" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18038" y="-114784" z="-4056" heading="33947" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16260" y="-116347" z="-4056" heading="49153" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16593" y="-115550" z="-4048" heading="30529" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16311" y="-115247" z="-4032" heading="49328" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16484" y="-114743" z="-4040" heading="23807" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15986" y="-116427" z="-4048" heading="33235" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13277" y="-116700" z="-3704" heading="49677" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13343" y="-116138" z="-3704" heading="31361" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12258" y="-116014" z="-3696" heading="577" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13650" y="-114563" z="-3616" heading="6677" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13507" y="-114670" z="-3624" heading="1130" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13465" y="-115397" z="-3632" heading="3355" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18160" y="-113307" z="-4008" heading="23196" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17901" y="-114744" z="-4056" heading="30510" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16414" y="-113565" z="-4016" heading="62436" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16929" y="-113426" z="-4008" heading="2777" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17055" y="-113398" z="-4008" heading="34873" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14850" y="-113730" z="-3680" heading="40343" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14639" y="-113848" z="-3672" heading="16036" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15002" y="-114147" z="-3616" heading="43117" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13829" y="-113543" z="-3680" heading="30423" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13746" y="-113628" z="-3696" heading="53521" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13219" y="-113424" z="-3696" heading="405" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-19339" y="-118591" z="-4040" heading="56667" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18520" y="-113305" z="-4008" heading="52382" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-18343" y="-113312" z="-4008" heading="20553" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16649" y="-111397" z="-3280" heading="63092" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16189" y="-111197" z="-3376" heading="56934" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20980" y="-116467" z="-4056" heading="46528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21514" y="-116911" z="-4040" heading="65189" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20384" y="-115414" z="-4032" heading="13920" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20410" y="-114993" z="-4048" heading="32856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-18702" y="-113136" z="-4008" heading="18655" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20316" y="-111745" z="-3416" heading="30423" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19074" y="-110362" z="-3440" heading="21109" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18536" y="-110428" z="-3408" heading="16586" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18189" y="-113169" z="-4008" heading="38530" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18323" y="-114728" z="-4080" heading="64842" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18173" y="-114747" z="-4064" heading="40550" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16375" y="-113655" z="-4016" heading="63329" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16490" y="-113551" z="-4016" heading="55893" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16314" y="-111593" z="-3336" heading="8804" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16380" y="-109526" z="-3368" heading="5042" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14305" y="-113831" z="-3648" heading="54340" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14735" y="-114425" z="-3584" heading="36418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15868" y="-111502" z="-3440" heading="30067" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15910" y="-109719" z="-3376" heading="55429" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15237" y="-110216" z="-3400" heading="51348" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14769" y="-110124" z="-3408" heading="5554" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20982" y="-114203" z="-4024" heading="58581" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20737" y="-113745" z="-4024" heading="22388" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20341" y="-111872" z="-3416" heading="33863" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22353" y="-112863" z="-3456" heading="49529" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22433" y="-112815" z="-3440" heading="63016" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22042" y="-110615" z="-3392" heading="5222" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21963" y="-110239" z="-3392" heading="39411" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20563" y="-109855" z="-3392" heading="18112" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21088" y="-110174" z="-3408" heading="59007" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23630" y="-112644" z="-3440" heading="63171" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23517" y="-112644" z="-3456" heading="47137" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24467" y="-110382" z="-3440" heading="53024" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24210" y="-110292" z="-3480" heading="47667" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23264" y="-109496" z="-3456" heading="54132" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23700" y="-109229" z="-3520" heading="24143" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24255" y="-108211" z="-3544" heading="28083" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24371" y="-107601" z="-3568" heading="59522" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23305" y="-113914" z="-3344" heading="33824" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23664" y="-114383" z="-3336" heading="33994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24588" y="-116511" z="-3216" heading="63286" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23633" y="-114966" z="-3264" heading="39551" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24141" y="-115341" z="-3296" heading="29361" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20443" y="-115333" z="-4032" heading="6902" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24814" y="-116772" z="-3272" heading="62962" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23786" y="-117929" z="-3320" heading="32114" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23862" y="-117816" z="-3288" heading="16253" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21572" y="-117130" z="-4048" heading="46752" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21573" y="-116654" z="-4056" heading="34366" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20430" y="-118181" z="-4048" heading="1651" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20475" y="-117907" z="-4048" heading="62359" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25062" y="-119674" z="-3128" heading="62376" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22587" y="-120500" z="-3168" heading="5222" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23549" y="-120595" z="-3160" heading="19667" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24367" y="-119961" z="-3216" heading="14197" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20837" y="-119922" z="-4016" heading="3860" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24949" y="-121399" z="-3056" heading="51872" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25129" y="-121122" z="-3000" heading="53528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-26175" y="-121474" z="-2728" heading="3174" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25914" y="-122470" z="-2728" heading="38315" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22497" y="-121995" z="-3256" heading="17164" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21888" y="-121635" z="-3344" heading="50655" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20752" y="-120239" z="-4000" heading="22600" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-27019" y="-123638" z="-2672" heading="30182" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-27023" y="-123753" z="-2680" heading="2450" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25729" y="-123644" z="-2720" heading="42380" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25995" y="-123088" z="-2720" heading="8666" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25457" y="-124427" z="-2704" heading="4081" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24696" y="-124145" z="-2776" heading="59916" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24428" y="-124566" z="-2760" heading="8203" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23314" y="-123877" z="-2840" heading="4417" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22746" y="-124569" z="-2936" heading="30828" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-27410" y="-125117" z="-2712" heading="22782" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-27480" y="-125582" z="-2680" heading="38886" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25647" y="-125017" z="-2720" heading="42197" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21810" y="-124106" z="-2968" heading="42633" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20968" y="-123726" z="-2824" heading="61125" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24907" y="-121209" z="-3112" heading="46869" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25104" y="-121214" z="-3016" heading="18756" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-26112" y="-121659" z="-2728" heading="19719" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-26011" y="-122474" z="-2720" heading="1287" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22399" y="-122003" z="-3264" heading="31742" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19786" y="-124525" z="-3128" heading="35340" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19536" y="-124587" z="-3144" heading="35172" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17675" y="-123903" z="-3248" heading="34799" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17907" y="-123528" z="-3248" heading="23807" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16852" y="-122813" z="-3248" heading="40787" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16905" y="-122809" z="-3248" heading="55943" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15818" y="-123680" z="-3248" heading="53033" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15272" y="-123653" z="-3240" heading="41946" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14497" y="-122723" z="-3096" heading="5256" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14963" y="-122853" z="-3168" heading="61500" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-12913" y="-123137" z="-2984" heading="32421" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13429" y="-122640" z="-3032" heading="2841" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13406" y="-120700" z="-3224" heading="23869" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13025" y="-120745" z="-3256" heading="4370" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18157" y="-118697" z="-4048" heading="16687" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14309" y="-120281" z="-3328" heading="56027" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14179" y="-119896" z="-3328" heading="40549" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13896" y="-118762" z="-3400" heading="23774" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-12438" y="-119192" z="-3320" heading="40009" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-12473" y="-119783" z="-3312" heading="2274" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18006" y="-118449" z="-4048" heading="7866" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16368" y="-118067" z="-4048" heading="10442" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16379" y="-117983" z="-4048" heading="45948" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16192" y="-117074" z="-4056" heading="36837" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16175" y="-116959" z="-4056" heading="42783" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14121" y="-118655" z="-3344" heading="26090" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16597" y="-114848" z="-4080" heading="5748" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17225" y="-114965" z="-4088" heading="10466" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-12227" y="-115966" z="-3696" heading="33134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13317" y="-116659" z="-3704" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13226" y="-116554" z="-3704" heading="53033" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13750" y="-115116" z="-3672" heading="61245" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13546" y="-115376" z="-3656" heading="44161" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18158" y="-113076" z="-4008" heading="45797" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18331" y="-114827" z="-4072" heading="14977" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16492" y="-113793" z="-4032" heading="60268" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16612" y="-113344" z="-4008" heading="21938" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13395" y="-113324" z="-3704" heading="64842" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13586" y="-113842" z="-3688" heading="36198" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-18611" y="-113104" z="-4008" heading="35685" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19409" y="-114873" z="-4056" heading="37956" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-19242" y="-114719" z="-4056" heading="56362" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20342" y="-112018" z="-3384" heading="12849" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20464" y="-111932" z="-3400" heading="50596" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-16442" y="-111517" z="-3304" heading="7987" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-15963" y="-111514" z="-3416" heading="1290" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20582" y="-115503" z="-4064" heading="9299" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-18385" y="-113356" z="-4008" heading="5059" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18259" y="-113420" z="-4008" heading="27546" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19753" y="-114789" z="-4032" heading="37683" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19806" y="-114713" z="-4032" heading="49893" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19116" y="-110833" z="-3448" heading="61310" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18564" y="-110718" z="-3408" heading="9718" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18381" y="-114742" z="-4080" heading="40714" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18093" y="-114848" z="-4056" heading="58743" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16429" y="-113313" z="-4008" heading="18749" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16560" y="-113515" z="-4016" heading="56565" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14582" y="-114429" z="-3616" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14543" y="-114495" z="-3616" heading="37363" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16291" y="-111252" z="-3368" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16244" y="-111629" z="-3360" heading="51674" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16026" y="-109937" z="-3376" heading="24606" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16199" y="-110257" z="-3392" heading="44769" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14652" y="-110359" z="-3384" heading="1016" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15320" y="-110475" z="-3384" heading="53194" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20832" y="-113728" z="-4024" heading="39368" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21254" y="-114286" z="-4024" heading="10130" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22256" y="-111784" z="-3448" heading="13849" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20734" y="-111210" z="-3384" heading="37214" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21546" y="-110835" z="-3432" heading="42197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20433" y="-112165" z="-3296" heading="64756" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21620" y="-110769" z="-3432" heading="982" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21033" y="-109718" z="-3416" heading="19660" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20835" y="-110055" z="-3416" heading="41167" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22627" y="-112729" z="-3440" heading="46280" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23727" y="-112686" z="-3424" heading="29778" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23729" y="-112658" z="-3424" heading="39063" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24317" y="-110026" z="-3520" heading="22619" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23316" y="-109459" z="-3472" heading="33177" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23135" y="-109452" z="-3432" heading="50116" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24328" y="-108126" z="-3552" heading="46984" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24348" y="-108133" z="-3552" heading="52030" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24829" y="-110590" z="-3440" heading="21675" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23780" y="-113729" z="-3368" heading="34559" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23425" y="-114026" z="-3344" heading="8759" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21344" y="-114063" z="-4024" heading="20384" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24813" y="-116335" z="-3216" heading="51177" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23521" y="-115225" z="-3296" heading="42611" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24234" y="-115173" z="-3272" heading="32944" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21440" y="-116472" z="-4072" heading="15776" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20426" y="-115346" z="-4032" heading="3355" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20619" y="-115280" z="-4056" heading="38054" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21823" y="-110874" z="-3408" heading="44356" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25010" y="-117178" z="-3280" heading="22504" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23622" y="-117863" z="-3352" heading="4423" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23458" y="-117932" z="-3360" heading="42197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21458" y="-117099" z="-4048" heading="24195" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20341" y="-118144" z="-4048" heading="52467" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20675" y="-118371" z="-4048" heading="31824" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24682" y="-119244" z="-3224" heading="2612" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24212" y="-119854" z="-3240" heading="14627" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22633" y="-120308" z="-3176" heading="54864" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23581" y="-120558" z="-3168" heading="37023" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24764" y="-121610" z="-3080" heading="38184" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24912" y="-121214" z="-3112" heading="12365" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26014" y="-121659" z="-2728" heading="55710" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25672" y="-122154" z="-2760" heading="45198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22332" y="-121427" z="-3320" heading="52215" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22706" y="-121652" z="-3256" heading="65319" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26960" y="-124049" z="-2720" heading="21841" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26401" y="-124154" z="-2736" heading="36205" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25516" y="-123212" z="-2736" heading="60584" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25446" y="-123477" z="-2664" heading="20207" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22877" y="-124217" z="-2968" heading="10802" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24102" y="-123848" z="-2760" heading="5651" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24561" y="-123866" z="-2776" heading="12685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23060" y="-124464" z="-2896" heading="56338" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-27315" y="-125549" z="-2688" heading="52270" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26818" y="-124962" z="-2712" heading="19286" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25790" y="-125267" z="-2680" heading="15086" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25399" y="-125361" z="-2672" heading="45135" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21754" y="-124488" z="-2944" heading="31254" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21338" y="-124493" z="-2968" heading="56945" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24527" y="-121569" z="-3128" heading="1786" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24754" y="-121220" z="-3152" heading="39523" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-26193" y="-121714" z="-2720" heading="58023" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25875" y="-122252" z="-2728" heading="46752" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22263" y="-121260" z="-3328" heading="12297" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22510" y="-121656" z="-3304" heading="32513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19566" y="-123862" z="-3072" heading="58485" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19724" y="-123682" z="-3048" heading="26437" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16883" y="-122906" z="-3232" heading="16045" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18217" y="-124351" z="-3240" heading="53678" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18055" y="-124252" z="-3248" heading="21297" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16859" y="-122807" z="-3248" heading="43122" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15284" y="-124188" z="-3248" heading="2681" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15340" y="-123578" z="-3232" heading="14905" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14322" y="-122489" z="-3056" heading="56118" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13292" y="-122895" z="-3032" heading="26183" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14265" y="-122613" z="-3064" heading="48107" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-12730" y="-122703" z="-2992" heading="2382" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13632" y="-120816" z="-3152" heading="64363" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13451" y="-120754" z="-3200" heading="23334" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18304" y="-118624" z="-4048" heading="16209" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18156" y="-118729" z="-4048" heading="5457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14246" y="-119357" z="-3352" heading="62338" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14000" y="-119946" z="-3312" heading="14125" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13727" y="-118768" z="-3416" heading="36843" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-12863" y="-119533" z="-3360" heading="7579" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-12439" y="-119079" z="-3320" heading="46103" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16344" y="-117914" z="-4048" heading="52103" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16518" y="-118081" z="-4056" heading="40344" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16013" y="-117110" z="-4064" heading="47753" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16407" y="-117068" z="-4048" heading="44056" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13743" y="-116994" z="-3672" heading="14135" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13648" y="-118397" z="-3376" heading="16340" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16291" y="-115387" z="-4032" heading="55157" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16457" y="-115335" z="-4048" heading="37397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-12268" y="-115989" z="-3696" heading="57835" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13628" y="-116303" z="-3712" heading="53083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13307" y="-114891" z="-3616" heading="578" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14283" y="-115408" z="-3600" heading="45298" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16649" y="-113406" z="-4000" heading="36941" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16728" y="-113756" z="-4024" heading="52289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14552" y="-114545" z="-3616" heading="51792" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14583" y="-114584" z="-3616" heading="11972" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13278" y="-113496" z="-3696" heading="46004" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13684" y="-113744" z="-3696" heading="30529" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-19865" y="-118739" z="-4088" heading="20095" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18417" y="-113259" z="-4008" heading="38736" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-18300" y="-113123" z="-4008" heading="21938" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16152" y="-111137" z="-3376" heading="7209" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21274" y="-116873" z="-4048" heading="12836" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20692" y="-115218" z="-4056" heading="58741" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
</spawn>
|
||||
</list>
|
469
L2J_Mobius_7.0_PreludeOfWar/dist/game/data/spawns/Orc/LandOfChaos.xml
vendored
Normal file
469
L2J_Mobius_7.0_PreludeOfWar/dist/game/data/spawns/Orc/LandOfChaos.xml
vendored
Normal file
@ -0,0 +1,469 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/spawns.xsd">
|
||||
<spawn name="LandOfChaos">
|
||||
<group>
|
||||
<npc id="23330" x="-13218" y="-123208" z="-2984" heading="44356" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13329" y="-122172" z="-3008" heading="19903" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13397" y="-122601" z="-3016" heading="17906" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13422" y="-122851" z="-3040" heading="37838" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13726" y="-118866" z="-3408" heading="22154" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13745" y="-114868" z="-3664" heading="51971" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13811" y="-118812" z="-3408" heading="6432" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13844" y="-114907" z="-3656" heading="48890" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-13883" y="-114762" z="-3632" heading="46046" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14039" y="-118835" z="-3360" heading="41269" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14067" y="-118411" z="-3352" heading="6869" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14158" y="-114820" z="-3616" heading="48802" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14766" y="-109924" z="-3368" heading="5651" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14804" y="-110749" z="-3376" heading="49766" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14882" y="-110543" z="-3400" heading="15344" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-14984" y="-109679" z="-3368" heading="30127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16839" y="-122990" z="-3232" heading="42019" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16931" y="-122479" z="-3216" heading="19012" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-16976" y="-123094" z="-3224" heading="18035" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-17176" y="-122715" z="-3200" heading="60701" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20175" y="-111267" z="-3416" heading="56265" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20268" y="-111370" z="-3384" heading="4467" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20431" y="-111876" z="-3400" heading="64958" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-20987" y="-111428" z="-3416" heading="43749" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21103" y="-124249" z="-2984" heading="22886" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21442" y="-124059" z="-3000" heading="21219" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21521" y="-123646" z="-2936" heading="43347" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-21729" y="-123985" z="-2976" heading="39691" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-22942" y="-120323" z="-3216" heading="10776" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23165" y="-120366" z="-3224" heading="15405" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23416" y="-120569" z="-3192" heading="19666" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23451" y="-115800" z="-3272" heading="40961" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23549" y="-115593" z="-3304" heading="57437" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23644" y="-120368" z="-3160" heading="27698" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-23885" y="-115192" z="-3304" heading="3904" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-24067" y="-115346" z="-3296" heading="11986" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25144" y="-124743" z="-2688" heading="13940" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25430" y="-125289" z="-2672" heading="44914" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25882" y="-125096" z="-2680" heading="43770" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23330" x="-25928" y="-125278" z="-2680" heading="55117" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23334" x="-12619" y="-122782" z="-2992" heading="54961" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12694" y="-123015" z="-2992" heading="48861" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12738" y="-122460" z="-2992" heading="9413" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12766" y="-122941" z="-2984" heading="64229" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12832" y="-122880" z="-3024" heading="62546" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12845" y="-122643" z="-3024" heading="18476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-12965" y="-122313" z="-2992" heading="65087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13025" y="-122574" z="-3032" heading="58207" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13038" y="-122231" z="-3000" heading="32534" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13042" y="-122762" z="-3048" heading="61865" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13067" y="-122977" z="-3032" heading="15516" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13069" y="-123177" z="-3000" heading="2261" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13112" y="-122656" z="-3048" heading="46376" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13114" y="-122221" z="-2992" heading="26936" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13186" y="-118325" z="-3344" heading="4097" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13189" y="-123181" z="-2984" heading="694" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13198" y="-118794" z="-3360" heading="41453" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13227" y="-118162" z="-3384" heading="9337" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13227" y="-118939" z="-3360" heading="55526" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13241" y="-123060" z="-3008" heading="42258" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13243" y="-114992" z="-3616" heading="21219" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13262" y="-118699" z="-3376" heading="28896" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13276" y="-123110" z="-3008" heading="32359" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13277" y="-122219" z="-2992" heading="15223" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13284" y="-118591" z="-3384" heading="2330" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13289" y="-122477" z="-3016" heading="58767" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13298" y="-118248" z="-3368" heading="14647" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13304" y="-123091" z="-3008" heading="52289" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13322" y="-118153" z="-3352" heading="3100" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13323" y="-122458" z="-3024" heading="26183" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13345" y="-123121" z="-3008" heading="46914" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13357" y="-114954" z="-3616" heading="32743" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13361" y="-119077" z="-3368" heading="14000" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13364" y="-122662" z="-3032" heading="41496" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13393" y="-118518" z="-3368" heading="56421" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13399" y="-114822" z="-3616" heading="65069" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13410" y="-115333" z="-3608" heading="4885" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13421" y="-122830" z="-3040" heading="62324" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13442" y="-114943" z="-3648" heading="10776" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13458" y="-122493" z="-3008" heading="38950" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13517" y="-118466" z="-3392" heading="65479" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13524" y="-115264" z="-3640" heading="30901" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13531" y="-115465" z="-3632" heading="2807" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13533" y="-114715" z="-3616" heading="27309" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13545" y="-115130" z="-3648" heading="2492" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13551" y="-115347" z="-3656" heading="63486" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13572" y="-119253" z="-3344" heading="50435" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13575" y="-115238" z="-3664" heading="64497" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13588" y="-114878" z="-3648" heading="52366" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13601" y="-122428" z="-2976" heading="46202" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13607" y="-118413" z="-3400" heading="22035" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13628" y="-118347" z="-3376" heading="13027" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13635" y="-118960" z="-3392" heading="54864" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13643" y="-114836" z="-3648" heading="32505" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13643" y="-115151" z="-3672" heading="62634" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13644" y="-122801" z="-2984" heading="19556" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13648" y="-115329" z="-3648" heading="20955" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13668" y="-115313" z="-3664" heading="60701" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13672" y="-122975" z="-2984" heading="40879" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13689" y="-115136" z="-3672" heading="60894" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13700" y="-115226" z="-3672" heading="38975" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13702" y="-114777" z="-3632" heading="55551" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13721" y="-118349" z="-3368" heading="28315" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13739" y="-118464" z="-3392" heading="26247" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13771" y="-115594" z="-3608" heading="58023" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13774" y="-119055" z="-3360" heading="1382" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13788" y="-119068" z="-3360" heading="8189" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13798" y="-118568" z="-3408" heading="55070" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13843" y="-115387" z="-3656" heading="2973" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13855" y="-118927" z="-3400" heading="51792" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13858" y="-118301" z="-3352" heading="20095" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13876" y="-118803" z="-3392" heading="46752" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13879" y="-114913" z="-3656" heading="25974" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13885" y="-119189" z="-3360" heading="48627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13894" y="-118287" z="-3352" heading="40425" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13909" y="-115415" z="-3656" heading="45152" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13927" y="-118679" z="-3400" heading="25188" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13937" y="-118909" z="-3392" heading="10419" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-13974" y="-115502" z="-3616" heading="56854" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14002" y="-118914" z="-3352" heading="42988" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14026" y="-115419" z="-3632" heading="30828" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14067" y="-114702" z="-3616" heading="47331" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14181" y="-115499" z="-3608" heading="30212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14315" y="-115315" z="-3608" heading="23435" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14453" y="-110150" z="-3352" heading="53911" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14605" y="-110288" z="-3392" heading="18476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14613" y="-110006" z="-3384" heading="60778" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14654" y="-110216" z="-3392" heading="26586" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14657" y="-110061" z="-3400" heading="34348" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14670" y="-110370" z="-3384" heading="48018" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14766" y="-109772" z="-3368" heading="5010" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14776" y="-110670" z="-3368" heading="34485" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14797" y="-110204" z="-3408" heading="40179" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14888" y="-110577" z="-3400" heading="30930" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14903" y="-110395" z="-3424" heading="39353" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14917" y="-109786" z="-3360" heading="34708" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14925" y="-109865" z="-3392" heading="2274" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14950" y="-110298" z="-3424" heading="22274" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-14986" y="-110563" z="-3400" heading="31414" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15077" y="-109972" z="-3408" heading="8599" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15107" y="-110456" z="-3408" heading="38386" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15116" y="-109898" z="-3392" heading="27659" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15124" y="-110189" z="-3416" heading="4913" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15206" y="-110251" z="-3416" heading="34520" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15212" y="-109921" z="-3392" heading="41856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15224" y="-109846" z="-3376" heading="50524" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15228" y="-110250" z="-3416" heading="36125" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15240" y="-110177" z="-3400" heading="15907" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15254" y="-109762" z="-3360" heading="35536" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15460" y="-109989" z="-3360" heading="32680" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15507" y="-110177" z="-3360" heading="26345" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-15545" y="-110242" z="-3352" heading="20207" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16406" y="-122855" z="-3184" heading="19465" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16466" y="-122486" z="-3192" heading="44718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16468" y="-122945" z="-3208" heading="405" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16480" y="-122386" z="-3200" heading="37131" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16691" y="-122624" z="-3216" heading="25933" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16799" y="-123045" z="-3224" heading="55865" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16828" y="-122337" z="-3184" heading="40810" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16841" y="-122402" z="-3192" heading="44042" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16858" y="-122639" z="-3240" heading="24904" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-16889" y="-122272" z="-3184" heading="64583" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17028" y="-122654" z="-3224" heading="25811" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17082" y="-122323" z="-3192" heading="780" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17105" y="-122913" z="-3232" heading="44609" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17105" y="-123432" z="-3192" heading="50645" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17113" y="-122827" z="-3232" heading="59379" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17126" y="-122830" z="-3232" heading="36565" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17132" y="-123385" z="-3176" heading="34261" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17146" y="-123027" z="-3216" heading="60332" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17146" y="-123190" z="-3192" heading="63444" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17232" y="-122744" z="-3200" heading="30423" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17251" y="-122781" z="-3216" heading="5651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17291" y="-123297" z="-3200" heading="14481" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17326" y="-122562" z="-3184" heading="14585" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17331" y="-123020" z="-3192" heading="52270" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17357" y="-123247" z="-3192" heading="32418" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17365" y="-123178" z="-3192" heading="60151" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17445" y="-122690" z="-3200" heading="45298" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-17491" y="-122809" z="-3192" heading="44746" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20139" y="-111539" z="-3392" heading="51476" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20156" y="-111364" z="-3392" heading="43045" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20209" y="-112041" z="-3384" heading="48627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20297" y="-111910" z="-3400" heading="51212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20302" y="-111724" z="-3400" heading="18170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20304" y="-111411" z="-3408" heading="64900" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20324" y="-111931" z="-3408" heading="64727" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20334" y="-111085" z="-3408" heading="18645" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20337" y="-111452" z="-3416" heading="5378" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20345" y="-111959" z="-3408" heading="56704" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20351" y="-111652" z="-3400" heading="3445" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20357" y="-112103" z="-3384" heading="59612" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20364" y="-111654" z="-3424" heading="41548" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20367" y="-111455" z="-3408" heading="173" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20371" y="-111439" z="-3408" heading="56607" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20385" y="-111272" z="-3376" heading="46853" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20385" y="-111912" z="-3400" heading="20561" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20392" y="-111254" z="-3376" heading="4719" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20394" y="-111326" z="-3400" heading="7325" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20416" y="-111650" z="-3424" heading="59885" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20427" y="-111190" z="-3376" heading="45614" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20434" y="-111711" z="-3424" heading="30170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20435" y="-111186" z="-3376" heading="953" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20438" y="-112028" z="-3408" heading="38151" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20440" y="-111263" z="-3384" heading="52976" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20446" y="-111167" z="-3376" heading="6839" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20454" y="-111143" z="-3376" heading="10658" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20644" y="-112131" z="-3392" heading="56699" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20941" y="-124278" z="-2944" heading="35239" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-20999" y="-124202" z="-2968" heading="19191" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21012" y="-124303" z="-2952" heading="56770" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21013" y="-124041" z="-2968" heading="7765" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21025" y="-124464" z="-2936" heading="55612" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21077" y="-124242" z="-2976" heading="3355" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21098" y="-123678" z="-2936" heading="61713" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21118" y="-124460" z="-2936" heading="40283" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21130" y="-124113" z="-2984" heading="59331" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21140" y="-124313" z="-2968" heading="62554" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21212" y="-123891" z="-2992" heading="16962" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21217" y="-124443" z="-2960" heading="62057" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21272" y="-123881" z="-2984" heading="7701" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21308" y="-124192" z="-3000" heading="28121" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21356" y="-123588" z="-2944" heading="23756" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21367" y="-124275" z="-3000" heading="58649" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21392" y="-123707" z="-2976" heading="14037" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21401" y="-123917" z="-3000" heading="43246" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21447" y="-123814" z="-3000" heading="40343" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21451" y="-123702" z="-2976" heading="47220" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21528" y="-124519" z="-2944" heading="53599" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21579" y="-124609" z="-2952" heading="58703" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21581" y="-123679" z="-2960" heading="43399" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21615" y="-123877" z="-2984" heading="31102" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21652" y="-123887" z="-2984" heading="56265" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21659" y="-124411" z="-2952" heading="57621" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21864" y="-124008" z="-2944" heading="50597" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-21911" y="-124243" z="-2952" heading="48044" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22604" y="-120531" z="-3168" heading="18602" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22696" y="-120533" z="-3176" heading="1627" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22749" y="-120311" z="-3176" heading="23713" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22765" y="-120640" z="-3168" heading="39139" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22780" y="-120645" z="-3168" heading="10985" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22807" y="-120595" z="-3176" heading="43576" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22850" y="-120382" z="-3200" heading="21200" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22877" y="-119939" z="-3184" heading="61374" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22914" y="-120591" z="-3208" heading="48298" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22931" y="-120717" z="-3192" heading="34735" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-22937" y="-120160" z="-3216" heading="21841" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23020" y="-120112" z="-3216" heading="16253" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23048" y="-120604" z="-3192" heading="62538" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23051" y="-119892" z="-3184" heading="13933" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23063" y="-120513" z="-3216" heading="30085" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23114" y="-120288" z="-3216" heading="20363" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23116" y="-120590" z="-3192" heading="40976" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23139" y="-119851" z="-3160" heading="28087" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23146" y="-120533" z="-3216" heading="18170" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23162" y="-120806" z="-3168" heading="33510" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23250" y="-120726" z="-3184" heading="29810" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23253" y="-120199" z="-3208" heading="47753" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23261" y="-120777" z="-3168" heading="44056" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23282" y="-120611" z="-3192" heading="37137" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23294" y="-120237" z="-3208" heading="34224" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23295" y="-115289" z="-3280" heading="27351" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23306" y="-115357" z="-3264" heading="62181" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23312" y="-115389" z="-3264" heading="6384" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23364" y="-115363" z="-3264" heading="27280" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23430" y="-120139" z="-3160" heading="5636" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23450" y="-115512" z="-3280" heading="39096" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23452" y="-120190" z="-3160" heading="17949" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23475" y="-115121" z="-3272" heading="47856" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23528" y="-115247" z="-3304" heading="53610" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23559" y="-120583" z="-3176" heading="43651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23583" y="-115762" z="-3272" heading="16356" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23644" y="-115392" z="-3312" heading="45411" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23658" y="-115850" z="-3264" heading="46460" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23660" y="-115741" z="-3304" heading="10702" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23725" y="-115037" z="-3296" heading="33596" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23768" y="-115468" z="-3328" heading="16514" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23775" y="-114886" z="-3256" heading="20288" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23865" y="-115293" z="-3312" heading="18928" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23911" y="-115219" z="-3312" heading="39132" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23938" y="-115635" z="-3312" heading="18120" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-23974" y="-115580" z="-3320" heading="5754" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24022" y="-114905" z="-3280" heading="7091" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24055" y="-115508" z="-3320" heading="2280" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24091" y="-115356" z="-3296" heading="46002" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24115" y="-115171" z="-3272" heading="2625" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24146" y="-115468" z="-3296" heading="37175" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24230" y="-115635" z="-3264" heading="25149" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24239" y="-115638" z="-3264" heading="46406" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24297" y="-115433" z="-3272" heading="56920" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24305" y="-115456" z="-3264" heading="33990" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-24401" y="-115387" z="-3248" heading="34434" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25227" y="-125054" z="-2696" heading="58390" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25237" y="-125085" z="-2688" heading="35831" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25272" y="-125015" z="-2696" heading="39691" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25287" y="-125049" z="-2696" heading="47290" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25329" y="-125343" z="-2680" heading="62455" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25337" y="-125132" z="-2696" heading="60138" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25349" y="-124410" z="-2672" heading="23652" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25378" y="-125347" z="-2672" heading="11909" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25389" y="-125198" z="-2672" heading="52442" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25441" y="-124945" z="-2720" heading="13210" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25459" y="-125417" z="-2672" heading="25794" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25519" y="-124828" z="-2736" heading="24606" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25703" y="-124441" z="-2704" heading="5473" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25779" y="-125103" z="-2696" heading="43651" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25781" y="-125014" z="-2712" heading="57386" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25806" y="-125145" z="-2696" heading="30444" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25822" y="-125182" z="-2696" heading="45079" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25826" y="-124632" z="-2712" heading="58290" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25841" y="-124998" z="-2712" heading="59790" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25846" y="-125095" z="-2696" heading="50256" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25854" y="-125027" z="-2712" heading="31447" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25879" y="-124950" z="-2688" heading="63375" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25888" y="-125043" z="-2688" heading="44265" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-25913" y="-124957" z="-2688" heading="32944" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26017" y="-124530" z="-2680" heading="11314" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26054" y="-124972" z="-2672" heading="54144" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26089" y="-124971" z="-2672" heading="44968" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23334" x="-26136" y="-124763" z="-2664" heading="38676" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23336" x="-12836" y="-122515" z="-3016" heading="25692" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13453" y="-122632" z="-3008" heading="34215" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13461" y="-114861" z="-3640" heading="15862" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-13531" y="-118208" z="-3352" heading="32418" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14010" y="-115426" z="-3632" heading="28605" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14156" y="-118894" z="-3352" heading="43536" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14573" y="-110159" z="-3392" heading="49850" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-14885" y="-109772" z="-3360" heading="9048" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17056" y="-122402" z="-3184" heading="9994" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-17319" y="-122668" z="-3192" heading="33379" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20305" y="-111509" z="-3400" heading="8682" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20480" y="-111947" z="-3400" heading="16036" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-20985" y="-123978" z="-2976" heading="24330" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-21431" y="-123755" z="-2976" heading="6781" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22583" y="-120413" z="-3168" heading="9793" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-22721" y="-120009" z="-3160" heading="16470" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-23512" y="-115413" z="-3288" heading="40961" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-24261" y="-115442" z="-3288" heading="30240" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25377" y="-124441" z="-2696" heading="20934" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23336" x="-25638" y="-124576" z="-2720" heading="27827" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23337" x="-12725" y="-122710" z="-2992" heading="24239" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13113" y="-123207" z="-2992" heading="64014" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13185" y="-118774" z="-3376" heading="14654" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13375" y="-123131" z="-3000" heading="20105" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13659" y="-115239" z="-3664" heading="54481" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13750" y="-115516" z="-3624" heading="24884" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-13931" y="-118328" z="-3352" heading="47856" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14020" y="-118929" z="-3352" heading="43225" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14282" y="-115096" z="-3616" heading="22228" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-14660" y="-109953" z="-3384" heading="31197" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15302" y="-110386" z="-3400" heading="29685" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-15317" y="-110557" z="-3368" heading="25811" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16397" y="-122867" z="-3184" heading="41457" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16734" y="-123053" z="-3216" heading="28658" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-16862" y="-123206" z="-3200" heading="62491" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20391" y="-111530" z="-3424" heading="49416" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20406" y="-111385" z="-3408" heading="694" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-20418" y="-111237" z="-3376" heading="27309" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21026" y="-124275" z="-2960" heading="8069" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21046" y="-124376" z="-2952" heading="17888" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-21703" y="-123718" z="-2944" heading="8886" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22600" y="-120456" z="-3168" heading="55528" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22901" y="-120593" z="-3176" heading="39603" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-22945" y="-120562" z="-3208" heading="48513" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-23339" y="-115536" z="-3272" heading="7885" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24009" y="-115340" z="-3312" heading="33715" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-24307" y="-115149" z="-3272" heading="41825" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25144" y="-125021" z="-2672" heading="12189" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25791" y="-125315" z="-2688" heading="62813" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23337" x="-25877" y="-125394" z="-2680" heading="39289" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23336" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17160" y="-117592" z="-4053" heading="19031" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17088" y="-117220" z="-4053" heading="14397" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16958" y="-116540" z="-4062" heading="14397" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17032" y="-114712" z="-4085" heading="19320" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17471" y="-114680" z="-4075" heading="31994" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18099" y="-114635" z="-4060" heading="31994" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19114" y="-114656" z="-4048" heading="35145" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19727" y="-114800" z="-4061" heading="35145" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20232" y="-114920" z="-4084" heading="35145" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20573" y="-115289" z="-4064" heading="41273" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20824" y="-115560" z="-4049" heading="41273" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20882" y="-115804" z="-4053" heading="46626" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21086" y="-116598" z="-4063" heading="46308" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21192" y="-116968" z="-4054" heading="46308" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21289" y="-117267" z="-4054" heading="45923" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21028" y="-117881" z="-4054" heading="61134" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20888" y="-117944" z="-4053" heading="61134" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20797" y="-118031" z="-4055" heading="57547" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20525" y="-118294" z="-4061" heading="57547" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20251" y="-118843" z="-4066" heading="52449" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19801" y="-119156" z="-4059" heading="63592" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19452" y="-119191" z="-4057" heading="64880" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18823" y="-119228" z="-4062" heading="64880" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18569" y="-119237" z="-4068" heading="306" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18072" y="-119000" z="-4056" heading="8122" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17714" y="-118742" z="-4071" heading="6553" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17204" y="-118375" z="-4105" heading="6553" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16636" y="-117804" z="-4060" heading="8201" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16303" y="-117347" z="-4062" heading="13175" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16231" y="-116738" z="-4071" heading="17990" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16355" y="-116186" z="-4059" heading="19528" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16526" y="-115580" z="-4065" heading="19114" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-16673" y="-114968" z="-4074" heading="18245" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16643" y="-114216" z="-4055" heading="15432" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16835" y="-113924" z="-4044" heading="26198" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17382" y="-113618" z="-4027" heading="28280" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18065" y="-113632" z="-4021" heading="32984" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18645" y="-113808" z="-4026" heading="38720" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19175" y="-114146" z="-4051" heading="38720" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20697" y="-114616" z="-4060" heading="37545" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20919" y="-115110" z="-4050" heading="46891" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21093" y="-115712" z="-4051" heading="44514" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21483" y="-116904" z="-4056" heading="46398" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21436" y="-117517" z="-4056" heading="51490" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-21246" y="-118115" z="-4056" heading="53781" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20262" y="-119052" z="-4066" heading="58718" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19771" y="-119446" z="-4065" heading="58852" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19220" y="-119645" z="-4059" heading="1127" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17824" y="-118707" z="-4061" heading="8995" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-17430" y="-118215" z="-4061" heading="9570" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17048" y="-117713" z="-4061" heading="10999" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-16692" y="-116608" z="-4054" heading="16226" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-16868" y="-116016" z="-4058" heading="20754" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17124" y="-115441" z="-4068" heading="20754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-17690" y="-114861" z="-4061" heading="25140" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18218" y="-114521" z="-4052" heading="27232" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-18757" y="-114286" z="-4043" heading="33319" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-19449" y="-114322" z="-4049" heading="33319" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-20003" y="-114567" z="-4054" heading="37973" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20485" y="-114955" z="-4054" heading="41754" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-21202" y="-116390" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-21216" y="-116451" z="-4059" heading="46937" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-21196" y="-117069" z="-4059" heading="51083" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-20884" y="-117566" z="-4059" heading="58782" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-20355" y="-117999" z="-4058" heading="57212" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-19856" y="-118370" z="-4066" heading="60455" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-19432" y="-118600" z="-4047" heading="58542" respawnTime="60sec" /> <!-- Rubble -->
|
||||
<npc id="23336" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Death Worm -->
|
||||
<npc id="23334" x="-18707" y="-118783" z="-4062" heading="6871" respawnTime="60sec" /> <!-- Shelop -->
|
||||
<npc id="23337" x="-18163" y="-118468" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Large Rubble -->
|
||||
<npc id="23330" x="-17591" y="-118203" z="-4076" heading="4576" respawnTime="60sec" /> <!-- Rubble -->
|
||||
</group>
|
||||
</spawn>
|
||||
</list>
|
@ -37,7 +37,11 @@
|
||||
<npc id="34200" x="-50112" y="-148078" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34200" x="-49485" y="-148037" z="-14120" heading="47800" respawnTime="60sec" /> <!-- Mystic Summoning -->
|
||||
<npc id="34203" x="-50720" y="-149040" z="-14936" heading="26108" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34203" x="-48607" y="-148127" z="-14512" heading="54840" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34205" x="-50984" y="-147336" z="-14945" heading="14991" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34204" x="-50184" y="-147864" z="-14158" heading="31287" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34206" x="-50136" y="-148568" z="-14157" heading="7775" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34207" x="-49625" y="-148723" z="-14152" heading="63138" respawnTime="60sec" /> <!-- Tavern Employee -->
|
||||
<npc id="34189" x="-52646" y="-147041" z="-14944" heading="42728" respawnTime="60sec" /> <!-- Mistress, Auction House Manager -->
|
||||
<npc id="34190" x="-54000" y="-146768" z="-14944" heading="7504" respawnTime="60sec" /> <!-- Attitude, Grocer -->
|
||||
<npc id="34192" x="-53313" y="-148013" z="-14944" heading="16672" respawnTime="60sec" /> <!-- Fouette, Warehouse Keeper -->
|
||||
|
Loading…
Reference in New Issue
Block a user