Separated the Classic Datapack to it's own folder.

This commit is contained in:
MobiusDev
2015-05-02 03:45:56 +00:00
parent 08e28fe058
commit 484bff80bb
11501 changed files with 2200482 additions and 627 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>L2J_Mobius_Ertheia</name>
<name>L2J_Mobius</name>
<comment></comment>
<projects>
</projects>

View File

@ -10,8 +10,8 @@
PathFinding = 0
# Pathnode directory
# Default: data/pathnode
PathnodeDirectory = data/pathnode
# Default: pathnode
PathnodeDirectory = pathnode
# Pathfinding array buffers configuration
PathFindBuffers = 100x6;128x6;192x6;256x4;320x4;384x4;500x2
@ -58,7 +58,7 @@ ForceGeoData = True
CoordSynchronize = -1
# Geodata files folder
GeoDataPath = ./data/geodata
GeoDataPath = geodata
# True: Try to load regions not specified below(won't disturb server startup when file does not exist)
# False: Don't load any regions other than the ones specified with True below

View File

@ -72,10 +72,14 @@ RequestServerID = 1
AcceptAlternateID = True
# Datapack root directory.
# Defaults to current directory from which the server is started unless the below line is uncommented.
# WARNING: <u><b><font color="red">If the specified path is invalid, it will lead to multiple errors!</font></b></u>
#Default: .
DatapackRoot = .
#Default: data\
DatapackRoot = data\
# Datapack root directory for Classic client support.
# WARNING: <u><b><font color="red">If the specified path is invalid, it will lead to multiple errors!</font></b></u>
#Default: data_classic\
ClassicDatapackRoot = data_classic\
# Define how many players are allowed to play simultaneously on your server.
# Default: 100

View File

@ -1,6 +0,0 @@
All files that are located in this folder will replace the ones from the html folder.
Any additional files in this folder will work as well as if they where in the html folder.
WARNING
LazyCache config at General.properties must be set as False

View File

@ -223,11 +223,9 @@ custom/events/TvT/TvTManager/TvTManager.java
custom/events/Wedding/Wedding.java
# Vehicles
vehicles/BoatGiranTalking.java
vehicles/BoatInnadrilTour.java
vehicles/BoatGludinRune.java
vehicles/BoatRunePrimeval.java
vehicles/BoatTalkingGludin.java
# Conquerable Clan Halls
conquerablehalls/flagwar/BanditStronghold/BanditStronghold.java

View File

@ -666,7 +666,7 @@ public final class Beleth extends AbstractNpcAI
html = "32470b.htm";
}
return HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/html/default/" + html);
return HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "html/default/" + html);
}
@Override

View File

@ -54,7 +54,7 @@ public class TarBeetleSpawn implements IXmlReader
@Override
public void load()
{
parseDatapackFile("data/spawnZones/tar_beetle.xml");
parseDatapackFile("spawnZones/tar_beetle.xml");
if (!zones.isEmpty())
{
spawnTask = ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(() -> zones.forEach(SpawnZone::refreshSpawn), 1000, 60000);

View File

@ -100,7 +100,7 @@ public final class ManorManager extends AbstractNpcAI
}
return "manager.htm";
}
return getHtm(player.getHtmlPrefix(), "data/html/npcdefault.htm");
return getHtm(player.getHtmlPrefix(), "html/npcdefault.htm");
}
// @formatter:off

View File

@ -112,7 +112,7 @@ public class MentorGuide extends AbstractNpcAI implements IXmlReader
@Override
public void load()
{
parseDatapackFile("config/MentorCoins.xml");
parseDatapackFile("../config/MentorCoins.xml");
LOGGER.log(Level.INFO, getClass().getSimpleName() + ": Loaded: " + MENTEE_COINS.size() + " mentee coins");
}

View File

@ -20,7 +20,6 @@ package ai.npc.Nomi;
import ai.npc.AbstractNpcAI;
import com.l2jserver.Config;
import com.l2jserver.gameserver.model.Location;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
@ -77,11 +76,6 @@ public final class Nomi extends AbstractNpcAI
addTalkId(NOMI);
addFirstTalkId(NOMI);
if (Config.SERVER_CLASSIC_SUPPORT)
{
return;
}
for (Location loc : SPAWN_LOCATIONS)
{
addSpawn(NOMI, loc, false, 0);

View File

@ -46,7 +46,7 @@ public class NpcBuffersData implements IXmlReader
@Override
public void load()
{
parseDatapackFile("data/scripts/ai/npc/NpcBuffers/NpcBuffersData.xml");
parseDatapackFile("scripts/ai/npc/NpcBuffers/NpcBuffersData.xml");
LOGGER.log(Level.INFO, getClass().getSimpleName() + ": Loaded: " + _npcBuffers.size() + " buffers data.");
}

View File

@ -816,7 +816,7 @@ public final class Raina extends AbstractNpcAI
private NpcHtmlMessage getNpcHtmlMessage(L2PcInstance player, L2Npc npc, String fileName)
{
final NpcHtmlMessage html = new NpcHtmlMessage(npc.getObjectId());
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/ai/npc/Raina/" + fileName));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/ai/npc/Raina/" + fileName));
return html;
}

View File

@ -93,7 +93,7 @@ public final class FortressOfResistance extends ClanHallSiegeEngine
private final void buildMessengerMessage()
{
String html = HtmCache.getInstance().getHtm(null, "data/scripts/conquerablehalls/FortressOfResistance/partisan_ordery_brakel001.htm");
String html = HtmCache.getInstance().getHtm(null, "scripts/conquerablehalls/FortressOfResistance/partisan_ordery_brakel001.htm");
if (html != null)
{
// FIXME: We don't have an object id to put in here :(

View File

@ -307,7 +307,7 @@ public final class RainbowSpringsChateau extends ClanHallSiegeEngine
if (npcId == MESSENGER)
{
final String main = (_rainbow.getOwnerId() > 0) ? "messenger_yetti001.htm" : "messenger_yetti001a.htm";
html = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/conquerablehalls/RainbowSpringsChateau/" + main);
html = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/conquerablehalls/RainbowSpringsChateau/" + main);
html = html.replace("%time%", _registrationEnds);
if (_rainbow.getOwnerId() > 0)
{

View File

@ -253,7 +253,7 @@ public final class Stage1 extends Quest
factory.setValidating(false);
factory.setIgnoringComments(true);
File file = new File(Config.DATAPACK_ROOT + "/data/spawnZones/seed_of_destruction.xml");
File file = new File(Config.DATAPACK_ROOT + "/spawnZones/seed_of_destruction.xml");
if (!file.exists())
{
_log.severe("[Seed of Destruction] Missing seed_of_destruction.xml. The quest wont work without it!");

View File

@ -448,7 +448,7 @@ public final class HallOfSuffering extends AbstractNpcAI
private String getPtLeaderText(L2PcInstance player, HSWorld world)
{
String htmltext = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "/data/scripts/instances/SeedOfInfinity/HallOfSuffering/32530-10.htm");
String htmltext = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "/scripts/instances/SeedOfInfinity/HallOfSuffering/32530-10.htm");
htmltext = htmltext.replaceAll("%ptLeader%", String.valueOf(world.ptLeaderName));
return htmltext;
}

View File

@ -57,7 +57,7 @@ public class L2StaticObjectInstanceAction implements IActionHandler
{
if (staticObject.getType() == 2)
{
final String filename = (staticObject.getId() == 24230101) ? "data/html/signboards/tomb_of_crystalgolem.htm" : "data/html/signboards/pvp_signboard.htm";
final String filename = (staticObject.getId() == 24230101) ? "html/signboards/tomb_of_crystalgolem.htm" : "html/signboards/pvp_signboard.htm";
final String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), filename);
final NpcHtmlMessage html = new NpcHtmlMessage(staticObject.getObjectId());

View File

@ -38,7 +38,7 @@ public class L2DoorInstanceActionShift implements IActionShiftHandler
activeChar.sendPacket(new StaticObject(door, activeChar.isGM()));
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/doorinfo.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/doorinfo.htm");
html.replace("%class%", target.getClass().getSimpleName());
html.replace("%hp%", String.valueOf((int) door.getCurrentHp()));
html.replace("%hpmax%", String.valueOf(door.getMaxHp()));

View File

@ -63,7 +63,7 @@ public class L2NpcActionShift implements IActionShiftHandler
activeChar.setTarget(target);
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/npcinfo.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/npcinfo.htm");
html.replace("%objid%", String.valueOf(target.getObjectId()));
html.replace("%class%", target.getClass().getSimpleName());

View File

@ -92,7 +92,7 @@ public class AdminAnnouncements implements IAdminCommandHandler
{
if (!st.hasMoreTokens())
{
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/announces-add.htm");
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/announces-add.htm");
Util.sendCBHtml(activeChar, content);
break;
}
@ -193,7 +193,7 @@ public class AdminAnnouncements implements IAdminCommandHandler
}
if (!st.hasMoreTokens())
{
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/announces-edit.htm");
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/announces-edit.htm");
String announcementId = "" + announce.getId();
String announcementType = announce.getType().name();
String announcementInital = "0";
@ -419,7 +419,7 @@ public class AdminAnnouncements implements IAdminCommandHandler
final IAnnouncement announce = AnnouncementsTable.getInstance().getAnnounce(id);
if (announce != null)
{
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/announces-show.htm");
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/announces-show.htm");
String announcementId = "" + announce.getId();
String announcementType = announce.getType().name();
String announcementInital = "0";
@ -459,7 +459,7 @@ public class AdminAnnouncements implements IAdminCommandHandler
}
}
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/announces-list.htm");
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/announces-list.htm");
final PageResult result = HtmlUtil.createPage(AnnouncementsTable.getInstance().getAllAnnouncements(), page, 8, currentPage ->
{
return "<td align=center><button action=\"bypass admin_announces list " + currentPage + "\" value=\"" + (currentPage + 1) + "\" width=35 height=20 back=\"L2UI_CT1.Button_DF_Down\" fore=\"L2UI_CT1.Button_DF\"></td>";

View File

@ -357,7 +357,7 @@ public final class AdminCHSiege implements IAdminCommandHandler
private void sendSiegableHallPage(L2PcInstance activeChar, String hallId, SiegableHall hall)
{
final NpcHtmlMessage msg = new NpcHtmlMessage();
msg.setFile(null, "data/html/admin/siegablehall.htm");
msg.setFile(null, "html/admin/siegablehall.htm");
msg.replace("%clanhallId%", hallId);
msg.replace("%clanhallName%", hall.getName());
if (hall.getOwnerId() > 0)

View File

@ -225,7 +225,7 @@ public final class AdminCastle implements IAdminCommandHandler
else
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/castlemanage.htm"));
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/castlemanage.htm"));
activeChar.sendPacket(html);
}
}
@ -240,7 +240,7 @@ public final class AdminCastle implements IAdminCommandHandler
{
final L2Clan ownerClan = castle.getOwner();
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/html/admin/castlemanage_selected.htm"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "html/admin/castlemanage_selected.htm"));
html.replace("%castleId%", castle.getResidenceId());
html.replace("%castleName%", castle.getName());
html.replace("%ownerName%", ownerClan != null ? ownerClan.getLeaderName() : "NPC");

View File

@ -71,7 +71,7 @@ public class AdminClan implements IAdminCommandHandler
}
final NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/claninfo.htm"));
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/claninfo.htm"));
html.replace("%clan_name%", clan.getName());
html.replace("%clan_leader%", clan.getLeaderName());
html.replace("%clan_level%", String.valueOf(clan.getLevel()));
@ -118,7 +118,7 @@ public class AdminClan implements IAdminCommandHandler
case "admin_clan_show_pending":
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/clanchanges.htm"));
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/clanchanges.htm"));
StringBuilder sb = new StringBuilder();
for (L2Clan clan : ClanTable.getInstance().getClans())
{

View File

@ -180,7 +180,7 @@ public class AdminClanHall implements IAdminCommandHandler
{
int i = 0;
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/clanhalls.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/clanhalls.htm");
final StringBuilder cList = new StringBuilder(500);
for (SiegableHall hall : CHSiegeManager.getInstance().getConquerableHalls().values())
{
@ -239,7 +239,7 @@ public class AdminClanHall implements IAdminCommandHandler
private void showClanHallPage(L2PcInstance activeChar, ClanHall clanhall)
{
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/clanhall.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/clanhall.htm");
adminReply.replace("%clanhallName%", clanhall.getName());
adminReply.replace("%clanhallId%", String.valueOf(clanhall.getId()));
final L2Clan owner = ClanTable.getInstance().getClan(clanhall.getOwnerId());
@ -255,7 +255,7 @@ public class AdminClanHall implements IAdminCommandHandler
private void showSiegableHallPage(L2PcInstance activeChar, SiegableHall hall)
{
final NpcHtmlMessage msg = new NpcHtmlMessage();
msg.setFile(null, "data/html/admin/siegablehall.htm");
msg.setFile(null, "html/admin/siegablehall.htm");
msg.replace("%clanhallId%", String.valueOf(hall.getId()));
msg.replace("%clanhallName%", hall.getName());
if (hall.getOwnerId() > 0)

View File

@ -93,7 +93,7 @@ public class AdminCursedWeapons implements IAdminCommandHandler
final Collection<CursedWeapon> cws = cwm.getCursedWeapons();
final StringBuilder replyMSG = new StringBuilder(cws.size() * 300);
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/cwinfo.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/cwinfo.htm");
for (CursedWeapon cw : cwm.getCursedWeapons())
{
itemId = cw.getItemId();

View File

@ -892,7 +892,7 @@ public class AdminEditChar implements IAdminCommandHandler
final L2PcInstance[] players = L2World.getInstance().getPlayersSortedBy(Comparator.comparingLong(L2PcInstance::getUptime));
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/charlist.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/charlist.htm");
final PageResult result = HtmlUtil.createPage(players, page, 20, i ->
{
@ -972,7 +972,7 @@ public class AdminEditChar implements IAdminCommandHandler
}
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/" + filename);
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/" + filename);
adminReply.replace("%name%", player.getName());
adminReply.replace("%level%", String.valueOf(player.getLevel()));
adminReply.replace("%clan%", String.valueOf(player.getClan() != null ? "<a action=\"bypass -h admin_clan_info " + player.getObjectId() + "\">" + player.getClan().getName() + "</a>" : null));
@ -1087,7 +1087,7 @@ public class AdminEditChar implements IAdminCommandHandler
int CharactersFound = 0;
String name;
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/charfind.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/charfind.htm");
final StringBuilder replyMSG = new StringBuilder(1000);
@ -1157,7 +1157,7 @@ public class AdminEditChar implements IAdminCommandHandler
String name, ip = "0.0.0.0";
final StringBuilder replyMSG = new StringBuilder(1000);
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/ipfind.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/ipfind.htm");
for (L2PcInstance player : L2World.getInstance().getPlayersSortedBy(Comparator.comparingLong(L2PcInstance::getUptime)))
{
client = player.getClient();
@ -1241,7 +1241,7 @@ public class AdminEditChar implements IAdminCommandHandler
chars.values().stream().forEachOrdered(name -> StringUtil.append(replyMSG, name, "<br1>"));
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/accountinfo.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/accountinfo.htm");
adminReply.replace("%account%", player.getAccountName());
adminReply.replace("%player%", characterName);
adminReply.replace("%characters%", replyMSG.toString());
@ -1298,7 +1298,7 @@ public class AdminEditChar implements IAdminCommandHandler
}
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/dualbox.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/dualbox.htm");
adminReply.replace("%multibox%", String.valueOf(multibox));
adminReply.replace("%results%", results.toString());
adminReply.replace("%strict%", "");
@ -1350,7 +1350,7 @@ public class AdminEditChar implements IAdminCommandHandler
}
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/dualbox.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/dualbox.htm");
adminReply.replace("%multibox%", String.valueOf(multibox));
adminReply.replace("%results%", results.toString());
adminReply.replace("%strict%", "strict_");
@ -1434,7 +1434,7 @@ public class AdminEditChar implements IAdminCommandHandler
private void gatherSummonInfo(L2Summon target, L2PcInstance activeChar)
{
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/petinfo.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/petinfo.htm");
String name = target.getName();
html.replace("%name%", name == null ? "N/A" : name);
html.replace("%level%", Integer.toString(target.getLevel()));
@ -1473,7 +1473,7 @@ public class AdminEditChar implements IAdminCommandHandler
{
boolean color = true;
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/partyinfo.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/partyinfo.htm");
StringBuilder text = new StringBuilder(400);
for (L2PcInstance member : target.getParty().getMembers())
{

View File

@ -583,7 +583,7 @@ public class AdminEffects implements IAdminCommandHandler
sb.append("<button action=\"bypass admin_ave_abnormal " + abnormalVisualEffect.name() + "\" align=left icon=teleport>" + abnormalVisualEffect.name() + "</button>");
}
final NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/ave_abnormal.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/ave_abnormal.htm");
html.replace("%abnormals%", sb.toString());
activeChar.sendPacket(html);
activeChar.sendMessage("Usage: //" + command.replace("admin_", "") + " <AbnormalVisualEffect> [radius]");

View File

@ -123,9 +123,9 @@ public class AdminEventEngine implements IAdminCommandHandler
{
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
DataInputStream in = new DataInputStream(new BufferedInputStream(new FileInputStream(Config.DATAPACK_ROOT + "/data/events/" + eventName)));
DataInputStream in = new DataInputStream(new BufferedInputStream(new FileInputStream(Config.DATAPACK_ROOT + "events/" + eventName)));
BufferedReader inbr = new BufferedReader(new InputStreamReader(in));
adminReply.setFile("en", "data/html/mods/EventEngine/Participation.htm");
adminReply.setFile("en", "html/mods/EventEngine/Participation.htm");
adminReply.replace("%eventName%", eventName);
adminReply.replace("%eventCreator%", inbr.readLine());
adminReply.replace("%eventInfo%", inbr.readLine());
@ -146,7 +146,7 @@ public class AdminEventEngine implements IAdminCommandHandler
{
// There is an exception here for not using the ST. We use spaces (ST delim) for the event name.
String eventName = command.substring(16);
File file = new File(Config.DATAPACK_ROOT + "/data/events/" + eventName);
File file = new File(Config.DATAPACK_ROOT + "events/" + eventName);
file.delete();
showMainPage(activeChar);
}
@ -165,7 +165,7 @@ public class AdminEventEngine implements IAdminCommandHandler
{
try
{
FileOutputStream file = new FileOutputStream(new File(Config.DATAPACK_ROOT, "data/events/" + tempName));
FileOutputStream file = new FileOutputStream(new File(Config.DATAPACK_ROOT, "events/" + tempName));
PrintStream p = new PrintStream(file);
p.println(activeChar.getName());
p.println(tempBuffer);
@ -438,7 +438,7 @@ public class AdminEventEngine implements IAdminCommandHandler
private String showStoredEvents()
{
final File dir = new File(Config.DATAPACK_ROOT, "/data/events");
final File dir = new File(Config.DATAPACK_ROOT, "events/");
if (dir.isFile())
{
return "<font color=\"FF0000\">The directory '" + dir.getAbsolutePath() + "' is a file or is corrupted!</font><br>";

View File

@ -152,7 +152,7 @@ public class AdminEvents implements IAdminCommandHandler
private void showMenu(L2PcInstance activeChar)
{
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/gm_events.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/gm_events.htm");
final StringBuilder cList = new StringBuilder(500);
for (Quest event : QuestManager.getInstance().getScripts().values())
{

View File

@ -102,7 +102,7 @@ public class AdminExpSp implements IAdminCommandHandler
return;
}
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/expsp.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/expsp.htm");
adminReply.replace("%name%", player.getName());
adminReply.replace("%level%", String.valueOf(player.getLevel()));
adminReply.replace("%xp%", String.valueOf(player.getExp()));

View File

@ -154,7 +154,7 @@ public class AdminFortSiege implements IAdminCommandHandler
{
int i = 0;
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/forts.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/forts.htm");
final List<Fort> forts = FortManager.getInstance().getForts();
final StringBuilder cList = new StringBuilder(forts.size() * 100);
@ -181,7 +181,7 @@ public class AdminFortSiege implements IAdminCommandHandler
private void showFortSiegePage(L2PcInstance activeChar, Fort fort)
{
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/fort.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/fort.htm");
adminReply.replace("%fortName%", fort.getName());
adminReply.replace("%fortId%", String.valueOf(fort.getResidenceId()));
activeChar.sendPacket(adminReply);

View File

@ -63,7 +63,7 @@ public class AdminGraciaSeeds implements IAdminCommandHandler
private void showMenu(L2PcInstance activeChar)
{
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/graciaseeds.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/graciaseeds.htm");
html.replace("%sodstate%", String.valueOf(GraciaSeedsManager.getInstance().getSoDState()));
html.replace("%sodtiatkill%", String.valueOf(GraciaSeedsManager.getInstance().getSoDTiatKilled()));
if (GraciaSeedsManager.getInstance().getSoDTimeForNextStateChange() > 0)

View File

@ -76,7 +76,7 @@ public class AdminGrandBoss implements IAdminCommandHandler
else
{
NpcHtmlMessage html = new NpcHtmlMessage(0, 1);
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/grandboss.htm"));
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/grandboss.htm"));
activeChar.sendPacket(html);
}
break;
@ -218,33 +218,33 @@ public class AdminGrandBoss implements IAdminCommandHandler
case ANTHARAS:
{
bossZone = ZoneManager.getInstance().getZoneById(ANTHARAS_ZONE, L2NoRestartZone.class);
htmlPatch = "data/html/admin/grandboss_antharas.htm";
htmlPatch = "html/admin/grandboss_antharas.htm";
break;
}
case VALAKAS:
{
htmlPatch = "data/html/admin/grandboss_valakas.htm";
htmlPatch = "html/admin/grandboss_valakas.htm";
break;
}
case BAIUM:
{
bossZone = ZoneManager.getInstance().getZoneById(BAIUM_ZONE, L2NoRestartZone.class);
htmlPatch = "data/html/admin/grandboss_baium.htm";
htmlPatch = "html/admin/grandboss_baium.htm";
break;
}
case QUEENANT:
{
htmlPatch = "data/html/admin/grandboss_queenant.htm";
htmlPatch = "html/admin/grandboss_queenant.htm";
break;
}
case ORFEN:
{
htmlPatch = "data/html/admin/grandboss_orfen.htm";
htmlPatch = "html/admin/grandboss_orfen.htm";
break;
}
case CORE:
{
htmlPatch = "data/html/admin/grandboss_core.htm";
htmlPatch = "html/admin/grandboss_core.htm";
break;
}
}

View File

@ -76,11 +76,11 @@ public class AdminHtml implements IAdminCommandHandler
/**
* Shows a html message to activeChar
* @param activeChar activeChar where html is shown
* @param path relative path from directory data/html/admin/ to html
* @param path relative path from directory html/admin/ to html
*/
public static void showAdminHtml(L2PcInstance activeChar, String path)
{
showHtml(activeChar, "data/html/admin/" + path, false);
showHtml(activeChar, "html/admin/" + path, false);
}
/**

View File

@ -20,7 +20,6 @@ package handlers.admincommandhandlers;
import java.util.StringTokenizer;
import com.l2jserver.Config;
import com.l2jserver.gameserver.data.xml.impl.ExperienceData;
import com.l2jserver.gameserver.handler.IAdminCommandHandler;
import com.l2jserver.gameserver.model.L2Object;
@ -65,7 +64,7 @@ public class AdminLevel implements IAdminCommandHandler
}
else if (actualCommand.equalsIgnoreCase("admin_set_level"))
{
final int maxLevel = Config.SERVER_CLASSIC_SUPPORT ? Config.MAX_CLASSIC_PLAYER_LEVEL : ExperienceData.getInstance().getMaxLevel();
final int maxLevel = ExperienceData.getInstance().getMaxLevel();
try
{
if (!(targetChar instanceof L2PcInstance))

View File

@ -168,7 +168,7 @@ public class AdminLogin implements IAdminCommandHandler
private void showMainPage(L2PcInstance activeChar)
{
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/login.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/login.htm");
html.replace("%server_name%", LoginServerThread.getInstance().getServerName());
html.replace("%status%", LoginServerThread.getInstance().getStatusString());
html.replace("%clock%", getServerTypeName(Config.SERVER_LIST_TYPE));

View File

@ -37,7 +37,7 @@ public final class AdminManor implements IAdminCommandHandler
{
final CastleManorManager manor = CastleManorManager.getInstance();
final NpcHtmlMessage msg = new NpcHtmlMessage();
msg.setFile(activeChar.getHtmlPrefix(), "data/html/admin/manor.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/admin/manor.htm");
msg.replace("%status%", manor.getCurrentModeName());
msg.replace("%change%", manor.getNextModeChange());

View File

@ -199,7 +199,7 @@ public final class AdminPCBangPoints implements IAdminCommandHandler
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
final L2PcInstance target = getTarget(activeChar);
final int points = target.getPcBangPoints();
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/pcbang.htm"));
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/pcbang.htm"));
html.replace("%points%", Util.formatAdena(points));
html.replace("%targetName%", target.getName());
activeChar.sendPacket(html);

View File

@ -209,7 +209,7 @@ public final class AdminPForge implements IAdminCommandHandler
private void showValuesPage(L2PcInstance activeChar, String[] opCodes, String format)
{
String sendBypass = null;
String valuesHtml = HtmCache.getInstance().getHtmForce(activeChar.getHtmlPrefix(), "data/html/admin/pforge/values.htm");
String valuesHtml = HtmCache.getInstance().getHtmForce(activeChar.getHtmlPrefix(), "html/admin/pforge/values.htm");
if (opCodes.length == 3)
{
valuesHtml = valuesHtml.replace("%opformat%", "chd");
@ -240,7 +240,7 @@ public final class AdminPForge implements IAdminCommandHandler
valuesHtml = valuesHtml.replace("%format%", format);
sendBypass += " " + format;
String editorTemplate = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/pforge/inc/editor.htm");
String editorTemplate = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/pforge/inc/editor.htm");
if (editorTemplate != null)
{

View File

@ -50,7 +50,7 @@ public class AdminPcCondOverride implements IAdminCommandHandler
case "admin_exceptions":
{
final NpcHtmlMessage msg = new NpcHtmlMessage(0, 1);
msg.setFile(activeChar.getHtmlPrefix(), "data/html/admin/cond_override.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/admin/cond_override.htm");
StringBuilder sb = new StringBuilder();
for (PcCondOverride ex : PcCondOverride.values())
{

View File

@ -111,7 +111,7 @@ public class AdminPremium implements IAdminCommandHandler
}
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/premium_menu.htm"));
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/premium_menu.htm"));
activeChar.sendPacket(html);
return true;
}

View File

@ -182,7 +182,7 @@ public final class AdminPrimePoints implements IAdminCommandHandler
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
final L2PcInstance target = getTarget(activeChar);
final int points = target.getPrimePoints();
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/primepoints.htm"));
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/primepoints.htm"));
html.replace("%points%", Util.formatAdena(points));
html.replace("%targetName%", target.getName());
activeChar.sendPacket(html);

View File

@ -79,7 +79,7 @@ public class AdminPunishment implements IAdminCommandHandler
{
if (!st.hasMoreTokens())
{
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/punishment.htm");
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/punishment.htm");
if (content != null)
{
content = content.replaceAll("%punishments%", Util.implode(PunishmentType.values(), ";"));
@ -88,7 +88,7 @@ public class AdminPunishment implements IAdminCommandHandler
}
else
{
_log.log(Level.WARNING, getClass().getSimpleName() + ": data/html/admin/punishment.htm is missing");
_log.log(Level.WARNING, getClass().getSimpleName() + ": html/admin/punishment.htm is missing");
}
}
else
@ -120,7 +120,7 @@ public class AdminPunishment implements IAdminCommandHandler
key = findCharId(key);
}
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/punishment-info.htm");
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/punishment-info.htm");
if (content != null)
{
StringBuilder sb = new StringBuilder();
@ -151,7 +151,7 @@ public class AdminPunishment implements IAdminCommandHandler
}
else
{
_log.log(Level.WARNING, getClass().getSimpleName() + ": data/html/admin/punishment-info.htm is missing");
_log.log(Level.WARNING, getClass().getSimpleName() + ": html/admin/punishment-info.htm is missing");
}
break;
}
@ -176,7 +176,7 @@ public class AdminPunishment implements IAdminCommandHandler
{
target = activeChar.getTarget().getActingPlayer();
}
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/punishment-player.htm");
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/punishment-player.htm");
if (content != null)
{
content = content.replaceAll("%player_name%", target.getName());
@ -188,7 +188,7 @@ public class AdminPunishment implements IAdminCommandHandler
}
else
{
_log.log(Level.WARNING, getClass().getSimpleName() + ": data/html/admin/punishment-player.htm is missing");
_log.log(Level.WARNING, getClass().getSimpleName() + ": html/admin/punishment-player.htm is missing");
}
break;
}

View File

@ -216,7 +216,7 @@ public class AdminQuest implements IAdminCommandHandler
}
final NpcHtmlMessage msg = new NpcHtmlMessage(0, 1);
msg.setFile(activeChar.getHtmlPrefix(), "data/html/admin/npc-quests.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/admin/npc-quests.htm");
msg.replace("%quests%", sb.toString());
msg.replace("%objid%", character.getObjectId());
msg.replace("%questName%", "");
@ -322,7 +322,7 @@ public class AdminQuest implements IAdminCommandHandler
}
final NpcHtmlMessage msg = new NpcHtmlMessage(0, 1);
msg.setFile(activeChar.getHtmlPrefix(), "data/html/admin/npc-quests.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/admin/npc-quests.htm");
msg.replace("%quests%", sb.toString());
msg.replace("%questName%", "<table><tr><td width=\"50\" align=\"left\"><a action=\"bypass -h admin_script_load " + quest.getName() + "\">Reload</a></td> <td width=\"150\" align=\"center\"><a action=\"bypass -h admin_quest_info " + quest.getName() + "\">" + quest.getName() + "</a></td> <td width=\"50\" align=\"right\"><a action=\"bypass -h admin_script_unload " + quest.getName() + "\">Unload</a></tr></td></table>");
activeChar.sendPacket(msg);

View File

@ -136,14 +136,8 @@ public class AdminReload implements IAdminCommandHandler
if (st.hasMoreElements())
{
final String path = st.nextToken();
final File file = new File(Config.DATAPACK_ROOT, "data/html/" + path);
final File file_classic = new File(Config.DATAPACK_ROOT, "data/html_classic/" + path);
if (Config.SERVER_CLASSIC_SUPPORT && file_classic.exists())
{
HtmCache.getInstance().reload(file_classic);
AdminData.getInstance().broadcastMessageToGMs(activeChar.getName() + ": Reloaded Htm File:" + file_classic.getName() + ".");
}
else if (file.exists())
final File file = new File(Config.DATAPACK_ROOT, "html/" + path);
if (file.exists())
{
HtmCache.getInstance().reload(file);
AdminData.getInstance().broadcastMessageToGMs(activeChar.getName() + ": Reloaded Htm File:" + file.getName() + ".");

View File

@ -125,7 +125,7 @@ public class AdminScan implements IAdminCommandHandler
private void sendNpcList(L2PcInstance activeChar, int radius)
{
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/admin/scan.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/admin/scan.htm");
final StringBuilder sb = new StringBuilder();
for (L2Character character : activeChar.getKnownList().getKnownCharactersInRadius(radius))
{

View File

@ -56,7 +56,7 @@ public class AdminServerInfo implements IAdminCommandHandler
final NpcHtmlMessage html = new NpcHtmlMessage();
final Runtime RunTime = Runtime.getRuntime();
final int mb = 1024 * 1024;
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/serverinfo.htm"));
html.setHtml(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/serverinfo.htm"));
html.replace("%os_name%", System.getProperty("os.name"));
html.replace("%os_ver%", System.getProperty("os.version"));

View File

@ -111,7 +111,7 @@ public class AdminShutdown implements IAdminCommandHandler
Calendar cal = Calendar.getInstance();
cal.set(Calendar.HOUR_OF_DAY, h);
cal.set(Calendar.MINUTE, m);
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/shutdown.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/shutdown.htm");
adminReply.replace("%count%", String.valueOf(L2World.getInstance().getAllPlayersCount()));
adminReply.replace("%used%", String.valueOf(Runtime.getRuntime().totalMemory() - Runtime.getRuntime().freeMemory()));
adminReply.replace("%time%", String.valueOf(format.format(cal.getTime())));

View File

@ -350,7 +350,7 @@ public class AdminSkill implements IAdminCommandHandler
}
final L2PcInstance player = target.getActingPlayer();
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/charskills.htm");
adminReply.setFile(activeChar.getHtmlPrefix(), "html/admin/charskills.htm");
adminReply.replace("%name%", player.getName());
adminReply.replace("%level%", String.valueOf(player.getLevel()));
adminReply.replace("%class%", ClassListData.getInstance().getClass(player.getClassId()).getClientCode());

View File

@ -113,7 +113,7 @@ public class AdminZone implements IAdminCommandHandler
private static void showHtml(L2PcInstance activeChar)
{
final String htmContent = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/admin/zone.htm");
final String htmContent = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/admin/zone.htm");
final NpcHtmlMessage adminReply = new NpcHtmlMessage();
adminReply.setHtml(htmContent);
adminReply.replace("%PEACE%", (activeChar.isInsideZone(ZoneId.PEACE) ? "<font color=\"LEVEL\">YES</font>" : "NO"));

View File

@ -43,19 +43,19 @@ public class BuyShadowItem implements IBypassHandler
final NpcHtmlMessage html = new NpcHtmlMessage(((L2Npc) target).getObjectId());
if (activeChar.getLevel() < 40)
{
html.setFile(activeChar.getHtmlPrefix(), "data/html/common/shadow_item-lowlevel.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/common/shadow_item-lowlevel.htm");
}
else if ((activeChar.getLevel() >= 40) && (activeChar.getLevel() < 46))
{
html.setFile(activeChar.getHtmlPrefix(), "data/html/common/shadow_item_d.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/common/shadow_item_d.htm");
}
else if ((activeChar.getLevel() >= 46) && (activeChar.getLevel() < 52))
{
html.setFile(activeChar.getHtmlPrefix(), "data/html/common/shadow_item_c.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/common/shadow_item_c.htm");
}
else if (activeChar.getLevel() >= 52)
{
html.setFile(activeChar.getHtmlPrefix(), "data/html/common/shadow_item_b.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/common/shadow_item_b.htm");
}
html.replace("%objectId%", String.valueOf(((L2Npc) target).getObjectId()));
activeChar.sendPacket(html);

View File

@ -78,7 +78,7 @@ public class ClanWarehouse implements IBypassHandler
if (Config.L2JMOD_ENABLE_WAREHOUSESORTING_CLAN)
{
final NpcHtmlMessage msg = new NpcHtmlMessage(((L2Npc) target).getObjectId());
msg.setFile(activeChar.getHtmlPrefix(), "data/html/mods/WhSortedC.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/mods/WhSortedC.htm");
msg.replace("%objectId%", String.valueOf(((L2Npc) target).getObjectId()));
activeChar.sendPacket(msg);
}

View File

@ -46,7 +46,7 @@ public class Link implements IBypassHandler
return false;
}
String filename = "data/html/" + htmlPath;
String filename = "html/" + htmlPath;
final NpcHtmlMessage html = new NpcHtmlMessage(target != null ? target.getObjectId() : 0);
html.setFile(activeChar.getHtmlPrefix(), filename);
html.replace("%objectId%", String.valueOf(target != null ? target.getObjectId() : 0));

View File

@ -144,7 +144,7 @@ public class NpcViewMod implements IBypassHandler
public static void sendNpcView(L2PcInstance activeChar, L2Npc npc)
{
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/mods/NpcView/Info.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/mods/NpcView/Info.htm");
html.replace("%name%", npc.getName());
html.replace("%hpGauge%", HtmlUtil.getHpGauge(250, (long) npc.getCurrentHp(), npc.getMaxHp(), false));
html.replace("%mpGauge%", HtmlUtil.getMpGauge(250, (long) npc.getCurrentMp(), npc.getMaxMp(), false));
@ -369,10 +369,10 @@ public class NpcViewMod implements IBypassHandler
bodySb.append("</td>");
bodySb.append("</tr></table>");
String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/mods/NpcView/DropList.htm");
String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/mods/NpcView/DropList.htm");
if (html == null)
{
_log.warning(NpcViewMod.class.getSimpleName() + ": The html file data/html/mods/NpcView/DropList.htm could not be found.");
_log.warning(NpcViewMod.class.getSimpleName() + ": The html file html/mods/NpcView/DropList.htm could not be found.");
return;
}
html = html.replaceAll("%name%", npc.getName());

View File

@ -63,7 +63,7 @@ public class PlayerHelp implements IBypassHandler
html = new NpcHtmlMessage();
}
html.setFile(activeChar.getHtmlPrefix(), "data/html/help/" + cmd[0]);
html.setFile(activeChar.getHtmlPrefix(), "html/help/" + cmd[0]);
activeChar.sendPacket(html);
}
catch (Exception e)

View File

@ -62,7 +62,7 @@ public class PrivateWarehouse implements IBypassHandler
if (Config.L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE)
{
final NpcHtmlMessage msg = new NpcHtmlMessage(((L2Npc) target).getObjectId());
msg.setFile(activeChar.getHtmlPrefix(), "data/html/mods/WhSortedP.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/mods/WhSortedP.htm");
msg.replace("%objectId%", String.valueOf(((L2Npc) target).getObjectId()));
activeChar.sendPacket(msg);
}

View File

@ -154,7 +154,7 @@ public class QuestLink implements IBypassHandler
* Open a quest window on client with the text of the L2NpcInstance.<br>
* <b><u>Actions</u>:</b><br>
* <ul>
* <li>Get the text of the quest state in the folder data/scripts/quests/questId/stateId.htm</li>
* <li>Get the text of the quest state in the folder scripts/quests/questId/stateId.htm</li>
* <li>Send a Server->Client NpcHtmlMessage containing the text of the L2NpcInstance to the L2PcInstance</li>
* <li>Send a Server->Client ActionFailed to the L2PcInstance in order to avoid that the client wait another packet</li>
* </ul>
@ -187,7 +187,7 @@ public class QuestLink implements IBypassHandler
if (player.getAllActiveQuests().length > 40)
{
final NpcHtmlMessage html = new NpcHtmlMessage(npc.getObjectId());
html.setFile(player.getHtmlPrefix(), "data/html/fullquest.html");
html.setFile(player.getHtmlPrefix(), "html/fullquest.html");
player.sendPacket(html);
return;
}

View File

@ -46,14 +46,14 @@ public class TerritoryStatus implements IBypassHandler
{
if (npc.getCastle().getOwnerId() > 0)
{
html.setFile(activeChar.getHtmlPrefix(), "data/html/territorystatus.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/territorystatus.htm");
L2Clan clan = ClanTable.getInstance().getClan(npc.getCastle().getOwnerId());
html.replace("%clanname%", clan.getName());
html.replace("%clanleadername%", clan.getLeaderName());
}
else
{
html.setFile(activeChar.getHtmlPrefix(), "data/html/territorynoclan.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/territorynoclan.htm");
}
}
html.replace("%castlename%", npc.getCastle().getName());

View File

@ -61,7 +61,7 @@ public class FavoriteBoard implements IParseBoardHandler
if (command.startsWith("_bbsgetfav"))
{
// Load Favorite links
final String list = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/favorite_list.html");
final String list = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/favorite_list.html");
final StringBuilder sb = new StringBuilder();
try (Connection con = L2DatabaseFactory.getInstance().getConnection();
PreparedStatement ps = con.prepareStatement(SELECT_FAVORITES))
@ -79,7 +79,7 @@ public class FavoriteBoard implements IParseBoardHandler
sb.append(link);
}
}
String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/favorite.html");
String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/favorite.html");
html = html.replaceAll("%fav_list%", sb.toString());
CommunityBoardHandler.separateAndSend(html, activeChar);
}

View File

@ -48,7 +48,7 @@ public class FriendsBoard implements IParseBoardHandler
{
CommunityBoardHandler.getInstance().addBypass(activeChar, "Friends List", command);
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/friends_list.html");
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/friends_list.html");
CommunityBoardHandler.separateAndSend(html, activeChar);
}
@ -56,7 +56,7 @@ public class FriendsBoard implements IParseBoardHandler
{
CommunityBoardHandler.getInstance().addBypass(activeChar, "Ignore list", command);
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/friends_block_list.html");
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/friends_block_list.html");
CommunityBoardHandler.separateAndSend(html, activeChar);
}

View File

@ -70,7 +70,7 @@ public final class HomeBoard implements IParseBoardHandler
final String customPath = Config.CUSTOM_CB_ENABLED ? "Custom/" : "";
CommunityBoardHandler.getInstance().addBypass(activeChar, "Home", command);
String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/" + customPath + "home.html");
String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/" + customPath + "home.html");
html = html.replaceAll("%fav_count%", String.valueOf(getFavoriteCount(activeChar)));
html = html.replaceAll("%region_count%", String.valueOf(getRegionCount(activeChar)));
html = html.replaceAll("%clan_count%", String.valueOf(getClansCount()));
@ -82,7 +82,7 @@ public final class HomeBoard implements IParseBoardHandler
final String path = command.replace("_bbstop;", "");
if ((path.length() > 0) && path.endsWith(".html"))
{
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/" + customPath + path);
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/" + customPath + path);
CommunityBoardHandler.separateAndSend(html, activeChar);
}
}
@ -92,14 +92,14 @@ public final class HomeBoard implements IParseBoardHandler
final String[] buypassOptions = fullBypass.split(",");
final int multisellId = Integer.parseInt(buypassOptions[0]);
final String page = buypassOptions[1];
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/Custom/" + page + ".html");
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/Custom/" + page + ".html");
CommunityBoardHandler.separateAndSend(html, activeChar);
MultisellData.getInstance().separateAndSend(multisellId, activeChar, null, false);
}
else if (Config.CUSTOM_CB_ENABLED && Config.COMMUNITYBOARD_ENABLE_MULTISELLS && command.startsWith("_bbssell"))
{
final String page = command.replace("_bbssell;", "");
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/Custom/" + page + ".html");
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/Custom/" + page + ".html");
CommunityBoardHandler.separateAndSend(html, activeChar);
activeChar.sendPacket(new BuyList(BuyListData.getInstance().getBuyList(423), activeChar.getAdena(), 0));
activeChar.sendPacket(new ExBuySellList(activeChar, false));
@ -147,7 +147,7 @@ public final class HomeBoard implements IParseBoardHandler
SkillData.getInstance().getSkill(buffId, buffLevel).applyEffects(activeChar.getPet(), activeChar.getPet());
}
}
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/Custom/" + page + ".html");
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/Custom/" + page + ".html");
CommunityBoardHandler.separateAndSend(html, activeChar);
}
return true;

View File

@ -43,7 +43,7 @@ public class HomepageBoard implements IParseBoardHandler
@Override
public boolean parseCommunityBoardCommand(String command, L2PcInstance activeChar)
{
CommunityBoardHandler.separateAndSend(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/homepage.html"), activeChar);
CommunityBoardHandler.separateAndSend(HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/homepage.html"), activeChar);
return true;
}
}

View File

@ -45,7 +45,7 @@ public class MailBoard implements IWriteBoardHandler
{
CommunityBoardHandler.getInstance().addBypass(activeChar, "Mail Command", command);
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/mail.html");
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/mail.html");
CommunityBoardHandler.separateAndSend(html, activeChar);
return true;
}

View File

@ -46,7 +46,7 @@ public class MemoBoard implements IWriteBoardHandler
{
CommunityBoardHandler.getInstance().addBypass(activeChar, "Memo Command", command);
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/memo.html");
final String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/memo.html");
CommunityBoardHandler.separateAndSend(html, activeChar);
return true;
}

View File

@ -58,7 +58,7 @@ public class RegionBoard implements IWriteBoardHandler
{
CommunityBoardHandler.getInstance().addBypass(activeChar, "Region", command);
final String list = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/region_list.html");
final String list = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/region_list.html");
final StringBuilder sb = new StringBuilder();
final List<Castle> castles = CastleManager.getInstance().getCastles();
for (int i = 0; i < REGIONS.length; i++)
@ -73,7 +73,7 @@ public class RegionBoard implements IWriteBoardHandler
sb.append(link);
}
String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "data/html/CommunityBoard/region.html");
String html = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), "html/CommunityBoard/region.html");
html = html.replace("%region_list%", sb.toString());
CommunityBoardHandler.separateAndSend(html, activeChar);
}

View File

@ -41,7 +41,7 @@ public class Book implements IItemHandler
L2PcInstance activeChar = (L2PcInstance) playable;
final int itemId = item.getId();
String filename = "data/html/help/" + itemId + ".htm";
String filename = "html/help/" + itemId + ".htm";
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), filename);
if (content == null)

View File

@ -40,7 +40,7 @@ public class Bypass implements IItemHandler
L2PcInstance activeChar = (L2PcInstance) playable;
final int itemId = item.getId();
String filename = "data/html/item/" + itemId + ".htm";
String filename = "html/item/" + itemId + ".htm";
String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), filename);
final NpcHtmlMessage html = new NpcHtmlMessage(0, item.getId());
if (content == null)

View File

@ -174,7 +174,7 @@ public class JailHandler implements IPunishmentHandler
// Open a Html message to inform the player
final NpcHtmlMessage msg = new NpcHtmlMessage();
String content = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/html/jail_in.htm");
String content = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "html/jail_in.htm");
if (content != null)
{
content = content.replaceAll("%reason%", task != null ? task.getReason() : "");
@ -210,7 +210,7 @@ public class JailHandler implements IPunishmentHandler
// Open a Html message to inform the player
final NpcHtmlMessage msg = new NpcHtmlMessage();
String content = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/html/jail_out.htm");
String content = HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "html/jail_out.htm");
if (content != null)
{
msg.setHtml(content);

View File

@ -79,7 +79,7 @@ public class SiegeStatus implements IUserCommandHandler
}
final NpcHtmlMessage html = new NpcHtmlMessage();
html.setFile(activeChar.getHtmlPrefix(), "data/html/siege/siege_status.htm");
html.setFile(activeChar.getHtmlPrefix(), "html/siege/siege_status.htm");
html.replace("%kill_count%", clan.getSiegeKills());
html.replace("%death_count%", clan.getSiegeDeaths());
html.replace("%member_list%", sb.toString());

View File

@ -94,7 +94,7 @@ public class ChangePassword implements IVoicedCommandHandler
else
{
// showHTML(activeChar);
String html = HtmCache.getInstance().getHtm("en", "data/html/mods/ChangePassword.htm");
String html = HtmCache.getInstance().getHtm("en", "html/mods/ChangePassword.htm");
if (html == null)
{
html = "<html><body><br><br><center><font color=LEVEL>404:</font> File Not Found</center></body></html>";

View File

@ -50,7 +50,7 @@ public class Lang implements IVoicedCommandHandler
StringUtil.append(html, "<button value=\"", lang.toUpperCase(), "\" action=\"bypass -h voice .lang ", lang, "\" width=60 height=21 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"><br>");
}
msg.setFile(activeChar.getHtmlPrefix(), "data/html/mods/Lang/LanguageSelect.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/mods/Lang/LanguageSelect.htm");
msg.replace("%list%", html.toString());
activeChar.sendPacket(msg);
return true;
@ -62,11 +62,11 @@ public class Lang implements IVoicedCommandHandler
final String lang = st.nextToken().trim();
if (activeChar.setLang(lang))
{
msg.setFile(activeChar.getHtmlPrefix(), "data/html/mods/Lang/Ok.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/mods/Lang/Ok.htm");
activeChar.sendPacket(msg);
return true;
}
msg.setFile(activeChar.getHtmlPrefix(), "data/html/mods/Lang/Error.htm");
msg.setFile(activeChar.getHtmlPrefix(), "html/mods/Lang/Error.htm");
activeChar.sendPacket(msg);
return true;
}

View File

@ -468,12 +468,12 @@ public abstract class Chamber extends AbstractInstance
{
if (player.getParty() == null)
{
htmltext = getHtm(player.getHtmlPrefix(), "data/scripts/instances/ChambersOfDelusion/no_party.html");
htmltext = getHtm(player.getHtmlPrefix(), "scripts/instances/ChambersOfDelusion/no_party.html");
}
else if (player.getParty().getLeaderObjectId() != player.getObjectId())
{
htmltext = getHtm(player.getHtmlPrefix(), "data/scripts/instances/ChambersOfDelusion/no_leader.html");
htmltext = getHtm(player.getHtmlPrefix(), "scripts/instances/ChambersOfDelusion/no_leader.html");
}
else if (hasQuestItems(player, DELUSION_MARK))
@ -485,18 +485,18 @@ public abstract class Chamber extends AbstractInstance
else
{
htmltext = getHtm(player.getHtmlPrefix(), "data/scripts/instances/ChambersOfDelusion/no_item.html");
htmltext = getHtm(player.getHtmlPrefix(), "scripts/instances/ChambersOfDelusion/no_item.html");
}
}
else if (event.equals("go_out"))
{
if (player.getParty() == null)
{
htmltext = getHtm(player.getHtmlPrefix(), "data/scripts/instances/ChambersOfDelusion/no_party.html");
htmltext = getHtm(player.getHtmlPrefix(), "scripts/instances/ChambersOfDelusion/no_party.html");
}
else if (player.getParty().getLeaderObjectId() != player.getObjectId())
{
htmltext = getHtm(player.getHtmlPrefix(), "data/scripts/instances/ChambersOfDelusion/no_leader.html");
htmltext = getHtm(player.getHtmlPrefix(), "scripts/instances/ChambersOfDelusion/no_leader.html");
}
else
{

View File

@ -261,7 +261,7 @@ public final class FinalEmperialTomb extends AbstractInstance
factory.setValidating(false);
factory.setIgnoringComments(true);
File file = new File(Config.DATAPACK_ROOT + "/data/spawnZones/final_emperial_tomb.xml");
File file = new File(Config.DATAPACK_ROOT + "/spawnZones/final_emperial_tomb.xml");
if (!file.exists())
{
_log.severe("[Final Emperial Tomb] Missing final_emperial_tomb.xml. The quest wont work without it!");

View File

@ -511,7 +511,7 @@ public class Q00350_EnhanceYourWeapon extends Quest
factory.setValidating(false);
factory.setIgnoringComments(true);
File file = new File(Config.DATAPACK_ROOT, "data/levelUpCrystalData.xml");
File file = new File(Config.DATAPACK_ROOT, "levelUpCrystalData.xml");
if (!file.exists())
{
_log.severe("[EnhanceYourWeapon] Missing levelUpCrystalData.xml. The quest wont work without it!");

View File

@ -48,7 +48,7 @@ public final class Q00655_AGrandPlanForTamingWildBeasts extends Quest
private static final int REQUIRED_CRYSTAL_COUNT = 10;
private static final int REQUIRED_CLAN_LEVEL = 4;
private static final int MINUTES_TO_SIEGE = 3600;
private static final String PATH_TO_HTML = "data/scripts/conquerablehalls/flagwar/WildBeastReserve/messenger_initial.htm";
private static final String PATH_TO_HTML = "scripts/conquerablehalls/flagwar/WildBeastReserve/messenger_initial.htm";
public Q00655_AGrandPlanForTamingWildBeasts()
{

View File

@ -105,7 +105,7 @@ public class Q10288_SecretMission extends Quest
{
return "32780-05.html";
}
return "data/html/default/32780.htm";
return "html/default/32780.htm";
}
@Override

View File

@ -235,7 +235,7 @@ public class Q10390_KekropusLetter extends Quest implements IBypassHandler
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10390_KekropusLetter/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10390_KekropusLetter/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -160,7 +160,7 @@ public class Q10393_KekropusLetter_AClueCompleted extends Quest implements IBypa
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10393_KekropusLetter_AClueCompleted/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10393_KekropusLetter_AClueCompleted/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -165,7 +165,7 @@ public class Q10397_KekropusLetter_ASuspiciousBadge extends Quest implements IBy
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10397_KekropusLetter_ASuspiciousBadge/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10397_KekropusLetter_ASuspiciousBadge/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -165,7 +165,7 @@ public class Q10401_KekropusLetter_DecodingTheBadge extends Quest implements IBy
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10401_KekropusLetter_DecodingTheBadge/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10401_KekropusLetter_DecodingTheBadge/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -165,7 +165,7 @@ public class Q10404_KekropusLetter_AHiddenMeaning extends Quest implements IBypa
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10404_KekropusLetter_AHiddenMeaning/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10404_KekropusLetter_AHiddenMeaning/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -169,7 +169,7 @@ public class Q10408_KekropusLetter_TheSwampOfScream extends Quest implements IBy
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10408_KekropusLetter_TheSwampOfScream/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10408_KekropusLetter_TheSwampOfScream/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -173,7 +173,7 @@ public class Q10411_KekropusLetter_TheForestOfTheDead extends Quest implements I
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10411_KekropusLetter_TheForestOfTheDead/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10411_KekropusLetter_TheForestOfTheDead/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -169,7 +169,7 @@ public class Q10414_KekropusLetter_WithCourage extends Quest implements IBypassH
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10414_KekropusLetter_WithCourage/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10414_KekropusLetter_WithCourage/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -170,7 +170,7 @@ public class Q10415_KekropusLetter_WithWisdom extends Quest implements IBypassHa
if (qs == null)
{
final NpcHtmlMessage html = new NpcHtmlMessage(0, 0);
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "data/scripts/quests/Q10415_KekropusLetter_WithWisdom/Announce.html"));
html.setHtml(HtmCache.getInstance().getHtm(player.getHtmlPrefix(), "scripts/quests/Q10415_KekropusLetter_WithWisdom/Announce.html"));
player.sendPacket(html);
}
return;

View File

@ -21,7 +21,6 @@ package vehicles;
import java.util.logging.Level;
import java.util.logging.Logger;
import com.l2jserver.Config;
import com.l2jserver.gameserver.ThreadPoolManager;
import com.l2jserver.gameserver.enums.ChatType;
import com.l2jserver.gameserver.instancemanager.BoatManager;
@ -168,11 +167,6 @@ public class BoatRunePrimeval implements Runnable
public static void main(String[] args)
{
if (Config.SERVER_CLASSIC_SUPPORT)
{
return;
}
final L2BoatInstance boat = BoatManager.getInstance().getNewBoat(5, 34381, -37680, -3610, 40785);
if (boat != null)
{

View File

@ -0,0 +1,492 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/AppearanceStones.xsd">
<!-- Normal -->
<appearance_stone id="22402" targetType="WEAPON" type="NORMAL" cost="800000"><!-- Weapon Appearance Stone (R-grade) -->
<grade>R</grade>
<grade>R95</grade>
<grade>R99</grade>
</appearance_stone>
<appearance_stone id="22403" targetType="WEAPON" type="NORMAL" cost="800000"> <!-- Weapon Appearance Stone (S-grade) -->
<grade>S</grade>
<grade>S80</grade>
</appearance_stone>
<appearance_stone id="22404" targetType="WEAPON" type="NORMAL" grade="A" cost="800000" /> <!-- Weapon Appearance Stone (A-grade) -->
<appearance_stone id="22405" targetType="WEAPON" type="NORMAL" grade="B" cost="800000" /> <!-- Weapon Appearance Stone (B-grade) -->
<appearance_stone id="22406" targetType="WEAPON" type="NORMAL" grade="C" cost="800000" /> <!-- Weapon Appearance Stone (C-grade) -->
<appearance_stone id="22407" targetType="WEAPON" type="NORMAL" grade="D" cost="800000" /> <!-- Weapon Appearance Stone (D-grade) -->
<!--Blessed -->
<appearance_stone id="22408" targetType="WEAPON" type="BLESSED"> <!-- Blessed Weapon Appearance Stone (R-grade) -->
<grade>R</grade>
<grade>R95</grade>
<grade>R99</grade>
</appearance_stone>
<appearance_stone id="22409" targetType="WEAPON" type="BLESSED"> <!-- Blessed Weapon Appearance Stone (S-grade) -->
<grade>S</grade>
<grade>S80</grade>
</appearance_stone>
<appearance_stone id="22410" targetType="WEAPON" type="BLESSED" grade="A" /> <!-- Blessed Weapon Appearance Stone (A-grade) -->
<appearance_stone id="22411" targetType="WEAPON" type="BLESSED" grade="B" /> <!-- Blessed Weapon Appearance Stone (B-grade) -->
<appearance_stone id="22412" targetType="WEAPON" type="BLESSED" grade="C" /> <!-- Blessed Weapon Appearance Stone (C-grade) -->
<appearance_stone id="22413" targetType="WEAPON" type="BLESSED" grade="D" /> <!-- Blessed Weapon Appearance Stone (D-grade) -->
<!--Restore -->
<appearance_stone id="22414" targetType="WEAPON" type="RESTORE"> <!-- Weapon Restoration Stone (R-grade) -->
<grade>R</grade>
<grade>R95</grade>
<grade>R99</grade>
</appearance_stone>
<appearance_stone id="22415" targetType="WEAPON" type="RESTORE"> <!-- Weapon Restoration Stone (S-grade) -->
<grade>S</grade>
<grade>S80</grade>
</appearance_stone>
<appearance_stone id="22416" targetType="WEAPON" type="RESTORE" grade="A" /> <!-- Weapon Restoration Stone (A-grade) -->
<appearance_stone id="22417" targetType="WEAPON" type="RESTORE" grade="B" /> <!-- Weapon Restoration Stone (B-grade) -->
<appearance_stone id="22418" targetType="WEAPON" type="RESTORE" grade="C" /> <!-- Weapon Restoration Stone (C-grade) -->
<appearance_stone id="22419" targetType="WEAPON" type="RESTORE" grade="D" /> <!-- Weapon Restoration Stone (D-grade) -->
<!--Fixed -->
<appearance_stone id="22666" targetType="WEAPON" type="FIXED" visualId="22650" weaponType="SWORD" /> <!-- Emerald Weapon Appearance Stone: Sword -->
<appearance_stone id="22727" targetType="WEAPON" type="FIXED" visualId="22711" weaponType="SWORD" /> <!-- Japanese Sword Appearance Stone -->
<appearance_stone id="36648" targetType="WEAPON" type="FIXED" visualId="22361" weaponType="SWORD" /> <!-- Emerald One-Handed Sword Appearance Stone -->
<appearance_stone id="23929" targetType="WEAPON" type="FIXED" visualId="23913" weaponType="SWORD" lifeTime="7days" /> <!-- Tears One-Handed Sword Appearance Stone (7 days ) -->
<appearance_stone id="37833" targetType="WEAPON" type="FIXED" visualId="37689" weaponType="SWORD" lifeTime="15days" /> <!-- Valentine Appearance Stone: One-handed Sword (15 days ) -->
<appearance_stone id="37849" targetType="WEAPON" type="FIXED" visualId="37689" weaponType="SWORD" lifeTime="30days" /> <!-- Valentine Appearance Stone: One-handed Sword (30 days ) -->
<appearance_stone id="37908" targetType="WEAPON" type="FIXED" visualId="37945" weaponType="SWORD" /> <!-- Chrono Cithara Appearance Stone: One-handed Sword //TODO: Needs verification -->
<appearance_stone id="37920" targetType="WEAPON" type="FIXED" visualId="37945" weaponType="SWORD" lifeTime="15days" /> <!-- Chrono Cithara Appearance Stone: One-handed Sword (15 days ) //TODO: Needs verification -->
<appearance_stone id="37919" targetType="WEAPON" type="FIXED" visualId="10167" weaponType="SWORD" lifeTime="15days" /> <!-- Pig Lollipop Appearance Stone: One-handed Sword (15 days ) -->
<appearance_stone id="38189" targetType="WEAPON" type="FIXED" visualId="38211" weaponType="SWORD" lifeTime="30days" /> <!-- Blue Mackerel Appearance Stone: One-handed Sword (30 days ) -->
<appearance_stone id="38200" targetType="WEAPON" type="FIXED" visualId="38211" weaponType="SWORD" /> <!-- Blue Mackerel Appearance Stone: One-handed Sword -->
<appearance_stone id="22668" targetType="WEAPON" type="FIXED" visualId="22652" weaponType="SWORD" handType="TWO_HANDED" /> <!-- Emerald Weapon Appearance Stone: Two-handed Sword -->
<appearance_stone id="22729" targetType="WEAPON" type="FIXED" visualId="22713" weaponType="SWORD" handType="TWO_HANDED" /> <!-- Japanese Long Sword Appearance Stone -->
<appearance_stone id="23931" targetType="WEAPON" type="FIXED" visualId="23915" weaponType="SWORD" handType="TWO_HANDED" /> <!-- Tears Two-handed Sword Appearance Stone -->
<appearance_stone id="37418" targetType="WEAPON" type="FIXED" visualId="22652" weaponType="SWORD" handType="TWO_HANDED" /> <!-- Emerald Weapon Appearance Stone: Two-handed Sword -->
<appearance_stone id="36650" targetType="WEAPON" type="FIXED" visualId="22652" weaponType="SWORD" handType="TWO_HANDED" lifeTime="7days" /> <!-- Emerald Weapon Appearance Stone: Two-handed Sword ( 7 days ) -->
<appearance_stone id="37402" targetType="WEAPON" type="FIXED" visualId="22652" weaponType="SWORD" handType="TWO_HANDED" lifeTime="15days" /> <!-- Emerald Weapon Appearance Stone: Two-handed Sword ( 15 days ) -->
<appearance_stone id="37834" targetType="WEAPON" type="FIXED" visualId="37690" weaponType="SWORD" handType="TWO_HANDED" lifeTime="15days" /> <!-- Valentine Appearance Stone: Two-handed Sword ( 15 days ) -->
<appearance_stone id="37850" targetType="WEAPON" type="FIXED" visualId="37690" weaponType="SWORD" handType="TWO_HANDED" lifeTime="30days" /> <!-- Valentine Appearance Stone: Two-handed Sword ( 30 days ) -->
<appearance_stone id="38191" targetType="WEAPON" type="FIXED" visualId="38213" weaponType="SWORD" handType="TWO_HANDED" lifeTime="30days" /> <!-- Shark Appearance Stone: Two-handed Sword ( 30 days ) -->
<appearance_stone id="38202" targetType="WEAPON" type="FIXED" visualId="38213" weaponType="SWORD" handType="TWO_HANDED" /> <!-- Shark Appearance Stone: Two-handed Sword -->
<appearance_stone id="22667" targetType="WEAPON" type="FIXED" visualId="22651" weaponType="DAGGER" /> <!-- Emerald Weapon Appearance Stone: Dagger -->
<appearance_stone id="22728" targetType="WEAPON" type="FIXED" visualId="22712" weaponType="DAGGER" /> <!-- Japanese Dagger Appearance Stone -->
<appearance_stone id="23215" targetType="WEAPON" type="FIXED" visualId="22821" weaponType="DAGGER" /> <!-- Steregos' Dagger Appearance Stone -->
<appearance_stone id="23930" targetType="WEAPON" type="FIXED" visualId="23914" weaponType="DAGGER" /> <!-- Tears Dagger Appearance Stone -->
<appearance_stone id="37417" targetType="WEAPON" type="FIXED" visualId="36633" weaponType="DAGGER" /> <!-- Emerald Weapon Appearance Stone: Dagger -->
<appearance_stone id="36649" targetType="WEAPON" type="FIXED" visualId="36633" weaponType="DAGGER" lifeTime="7days" /> <!-- Emerald Weapon Appearance Stone: Dagger ( 7 days ) -->
<appearance_stone id="37401" targetType="WEAPON" type="FIXED" visualId="36633" weaponType="DAGGER" lifeTime="15days" /> <!-- Emerald Weapon Appearance Stone: Dagger ( 15 days ) -->
<appearance_stone id="37075" targetType="WEAPON" type="FIXED" visualId="37055" weaponType="DAGGER" /> <!-- Monster Weapon Appearance Stone: Drakos' Dagger -->
<appearance_stone id="37832" targetType="WEAPON" type="FIXED" visualId="37688" weaponType="DAGGER" lifeTime="15days" /> <!-- Valentine Appearance Stone: Dagger ( 15 days ) -->
<appearance_stone id="37848" targetType="WEAPON" type="FIXED" visualId="37688" weaponType="DAGGER" lifeTime="30days" /> <!-- Valentine Appearance Stone: Dagger ( 30 days ) -->
<appearance_stone id="37913" targetType="WEAPON" type="FIXED" visualId="37916" weaponType="DAGGER" /> <!-- Pumpkin Dagger Appearance Stone: Dagger -->
<appearance_stone id="38176" targetType="WEAPON" type="FIXED" visualId="14296" weaponType="DAGGER" /> <!-- Crystal Dagger Appearance Stone -->
<appearance_stone id="38190" targetType="WEAPON" type="FIXED" visualId="14296" weaponType="DAGGER" lifeTime="30days" /> <!-- Trumpetfish Appearance Stone: Dagger ( 30 days ) -->
<appearance_stone id="38201" targetType="WEAPON" type="FIXED" visualId="38212" weaponType="DAGGER" /> <!-- Trumpetfish Appearance Stone: Dagger -->
<appearance_stone id="22677" targetType="WEAPON" type="FIXED" visualId="22362" weaponType="DUAL" /> <!-- Emerald Weapon Appearance Stone: Dualsword -->
<appearance_stone id="36659" targetType="WEAPON" type="FIXED" visualId="22362" weaponType="DUAL" lifeTime="7days" /> <!-- Emerald Dualsword Appearance Stone ( 7 days ) -->
<appearance_stone id="37411" targetType="WEAPON" type="FIXED" visualId="22362" weaponType="DUAL" lifeTime="15days" /> <!-- Emerald Dualsword Appearance Stone ( 15 days ) -->
<appearance_stone id="22738" targetType="WEAPON" type="FIXED" visualId="22722" weaponType="DUAL" /> <!-- Japanese Dualsword Appearance Stone -->
<appearance_stone id="23940" targetType="WEAPON" type="FIXED" visualId="23924" weaponType="DUAL" /> <!-- Tears Dualsword Appearance Stone -->
<appearance_stone id="37070" targetType="WEAPON" type="FIXED" visualId="37050" weaponType="DUAL" /> <!-- Monster Weapon Appearance Stone: Tegaffe's Dualsword -->
<appearance_stone id="37843" targetType="WEAPON" type="FIXED" visualId="37699" weaponType="DUAL" lifeTime="15days" /> <!-- Valentine Appearance Stone: Dualsword ( 15 days ) -->
<appearance_stone id="37859" targetType="WEAPON" type="FIXED" visualId="37699" weaponType="DUAL" lifeTime="30days" /> <!-- Valentine Appearance Stone: Dualsword ( 30 days ) -->
<appearance_stone id="37924" targetType="WEAPON" type="FIXED" visualId="37949" weaponType="DUAL" lifeTime="15days" /> <!-- Chrono Maracas Appearance Stone: Dualsword ( 15 days ) //TODO: Needs verification -->
<appearance_stone id="37912" targetType="WEAPON" type="FIXED" visualId="37949" weaponType="DUAL" /> <!-- Chrono Maracas Appearance Stone: Dualsword //TODO: Needs verification -->
<appearance_stone id="38199" targetType="WEAPON" type="FIXED" visualId="38221" weaponType="DUAL" lifeTime="30days" /> <!-- Blue Mackerel Appearance Stone: Dualsword ( 30 days ) -->
<appearance_stone id="38210" targetType="WEAPON" type="FIXED" visualId="38221" weaponType="DUAL" /> <!-- Blue Mackerel Appearance Stone: Dualsword -->
<appearance_stone id="22669" targetType="WEAPON" type="FIXED" visualId="22653" weaponType="DUALFIST" /> <!-- Emerald Weapon Appearance Stone: Fist Weapon -->
<appearance_stone id="22730" targetType="WEAPON" type="FIXED" visualId="22714" weaponType="DUALFIST" /> <!-- Japanese Fist Weapon Appearance Stone -->
<appearance_stone id="23932" targetType="WEAPON" type="FIXED" visualId="23916" weaponType="DUALFIST" lifeTime="7days" /> <!-- Tears Fist Weapon Appearance Stone ( 7 days ) -->
<appearance_stone id="37419" targetType="WEAPON" type="FIXED" visualId="22653" weaponType="DUALFIST" /> <!-- Emerald Weapon Appearance Stone: Fist Weapon -->
<appearance_stone id="36651" targetType="WEAPON" type="FIXED" visualId="22653" weaponType="DUALFIST" lifeTime="7days" /> <!-- Emerald Weapon Appearance Stone: Fist Weapon ( 7 days ) -->
<appearance_stone id="37403" targetType="WEAPON" type="FIXED" visualId="22653" weaponType="DUALFIST" lifeTime="15days" /> <!-- Emerald Weapon Appearance Stone: Fist Weapon ( 15 days ) -->
<appearance_stone id="37836" targetType="WEAPON" type="FIXED" visualId="37692" weaponType="DUALFIST" lifeTime="15days" /> <!-- Valentine Appearance Stone: Fist Weapon ( 15 days ) -->
<appearance_stone id="37852" targetType="WEAPON" type="FIXED" visualId="37692" weaponType="DUALFIST" lifeTime="30days" /> <!-- Valentine Appearance Stone: Fist Weapon ( 30 days ) -->
<appearance_stone id="37909" targetType="WEAPON" type="FIXED" visualId="37946" weaponType="DUALFIST" /> <!-- Chrono Unitus Appearance Stone: Fist Weapon //TODO: Needs verification -->
<appearance_stone id="37921" targetType="WEAPON" type="FIXED" visualId="37946" weaponType="DUALFIST" lifeTime="15days" /> <!-- Chrono Unitus Appearance Stone: Fist Weapon ( 15 days ) //TODO: Needs verification -->
<appearance_stone id="38194" targetType="WEAPON" type="FIXED" visualId="38216" weaponType="DUALFIST" lifeTime="30days" /> <!-- Lobster Appearance Stone: Fist Weapon ( 30 days ) -->
<appearance_stone id="38205" targetType="WEAPON" type="FIXED" visualId="38216" weaponType="DUALFIST" /> <!-- Lobster Appearance Stone: Fist Weapon -->
<appearance_stone id="22670" targetType="WEAPON" type="FIXED" visualId="22654" weaponType="POLE" /> <!-- Emerald Weapon Appearance Stone: Spear -->
<appearance_stone id="22731" targetType="WEAPON" type="FIXED" visualId="22715" weaponType="POLE" /> <!-- Japanese Great Spear Appearance Stone -->
<appearance_stone id="23933" targetType="WEAPON" type="FIXED" visualId="23917" weaponType="POLE" lifeTime="7days" /> <!-- Tears Spear Appearance Stone ( 7 days ) -->
<appearance_stone id="37420" targetType="WEAPON" type="FIXED" visualId="22654" weaponType="POLE" /> <!-- Emerald Weapon Appearance Stone: Spear -->
<appearance_stone id="36652" targetType="WEAPON" type="FIXED" visualId="22654" weaponType="POLE" lifeTime="7days" /> <!-- Emerald Weapon Appearance Stone: Spear ( 7 days ) -->
<appearance_stone id="37404" targetType="WEAPON" type="FIXED" visualId="22654" weaponType="POLE" lifeTime="15days" /> <!-- Emerald Weapon Appearance Stone: Spear ( 15 days ) -->
<appearance_stone id="37837" targetType="WEAPON" type="FIXED" visualId="37693" weaponType="POLE" lifeTime="15days" /> <!-- Valentine Appearance Stone: Spear ( 15 days ) -->
<appearance_stone id="37853" targetType="WEAPON" type="FIXED" visualId="37693" weaponType="POLE" lifeTime="30days" /> <!-- Valentine Appearance Stone: Spear ( 30 days ) -->
<appearance_stone id="37910" targetType="WEAPON" type="FIXED" visualId="37947" weaponType="POLE" /> <!-- Chrono Campana Appearance Stone: Spear //TODO: Needs verification -->
<appearance_stone id="37922" targetType="WEAPON" type="FIXED" visualId="37947" weaponType="POLE" lifeTime="15days" /> <!-- Chrono Campana Appearance Stone: Spear ( 15 days ) //TODO: Needs verification -->
<appearance_stone id="38192" targetType="WEAPON" type="FIXED" visualId="38214" weaponType="POLE" lifeTime="30days" /> <!-- Squid Appearance Stone: Spear ( 30 days ) -->
<appearance_stone id="38203" targetType="WEAPON" type="FIXED" visualId="38214" weaponType="POLE" /> <!-- Squid Appearance Stone: Spear -->
<appearance_stone id="22671" targetType="WEAPON" type="FIXED" visualId="22655" weaponType="BOW" /> <!-- Emerald Weapon Appearance Stone: Bow -->
<appearance_stone id="22732" targetType="WEAPON" type="FIXED" visualId="22716" weaponType="BOW" /> <!-- Japanese Bow Appearance Stone -->
<appearance_stone id="23934" targetType="WEAPON" type="FIXED" visualId="23918" weaponType="BOW" lifeTime="7days" /> <!-- Tears Bow Appearance Stone ( 7 days ) -->
<appearance_stone id="22671" targetType="WEAPON" type="FIXED" visualId="22655" weaponType="BOW" /> <!-- Emerald Weapon Appearance Stone: Bow -->
<appearance_stone id="36653" targetType="WEAPON" type="FIXED" visualId="22655" weaponType="BOW" lifeTime="7days" /> <!-- Emerald Weapon Appearance Stone: Bow ( 7 days ) -->
<appearance_stone id="22671" targetType="WEAPON" type="FIXED" visualId="22655" weaponType="BOW" lifeTime="15days" /> <!-- Emerald Weapon Appearance Stone: Bow ( 15 days ) -->
<appearance_stone id="37082" targetType="WEAPON" type="FIXED" visualId="37062" weaponType="BOW" /> <!-- Monster Weapon Appearance Stone: Kanadis' Bow -->
<appearance_stone id="37083" targetType="WEAPON" type="FIXED" visualId="37063" weaponType="BOW" /> <!-- Monster Weapon Appearance Stone: Centaur's Bow -->
<appearance_stone id="37838" targetType="WEAPON" type="FIXED" visualId="37694" weaponType="BOW" lifeTime="15days" /> <!-- Valentine Appearance Stone: Bow ( 15 days ) -->
<appearance_stone id="37854" targetType="WEAPON" type="FIXED" visualId="37694" weaponType="BOW" lifeTime="30days" /> <!-- Valentine Appearance Stone: Bow ( 30 days ) -->
<appearance_stone id="38195" targetType="WEAPON" type="FIXED" visualId="38217" weaponType="BOW" lifeTime="30days" /> <!-- Giant Crab Appearance Stone: Bow ( 30 days ) -->
<appearance_stone id="38206" targetType="WEAPON" type="FIXED" visualId="38217" weaponType="BOW" /> <!-- Giant Crab Appearance Stone: Bow -->
<!-- <appearance_stone id="40297" targetType="WEAPON" type="FIXED" visualId="?" weaponType="BOW" /> --> <!-- Monster Weapon Appearance Stone: Tayga Archer's Bow //TODO: Missing VisualID -->
<appearance_stone id="22672" targetType="WEAPON" type="FIXED" visualId="22656" weaponType="CROSSBOW" /> <!-- Emerald Weapon Appearance Stone: Crossbow -->
<appearance_stone id="22733" targetType="WEAPON" type="FIXED" visualId="22717" weaponType="CROSSBOW" /> <!-- Japanese Crossbow Appearance Stone -->
<appearance_stone id="23935" targetType="WEAPON" type="FIXED" visualId="23919" weaponType="CROSSBOW" lifeTime="7days" /> <!-- Tears Crossbow Appearance Stone ( 7 days ) -->
<appearance_stone id="36654" targetType="WEAPON" type="FIXED" visualId="22656" weaponType="CROSSBOW" lifeTime="7days" /> <!-- Emerald Weapon Appearance Stone: Crossbow ( 7 days ) -->
<appearance_stone id="37406" targetType="WEAPON" type="FIXED" visualId="22656" weaponType="CROSSBOW" lifeTime="15days" /> <!-- Emerald Weapon Appearance Stone: Crossbow ( 15 days ) -->
<appearance_stone id="37422" targetType="WEAPON" type="FIXED" visualId="22656" weaponType="CROSSBOW" /> <!-- Emerald Weapon Appearance Stone: Crossbow -->
<appearance_stone id="37084" targetType="WEAPON" type="FIXED" visualId="37064" weaponType="CROSSBOW" /> <!-- Monster Weapon Appearance Stone: Spicula's Crossbow -->
<appearance_stone id="37855" targetType="WEAPON" type="FIXED" visualId="37695" weaponType="CROSSBOW" lifeTime="30days" /> <!-- Valentine Appearance Stone: Crossbow ( 30 days ) -->
<appearance_stone id="37839" targetType="WEAPON" type="FIXED" visualId="37695" weaponType="CROSSBOW" lifeTime="15days" /> <!-- Valentine Appearance Stone: Crossbow ( 15 days ) -->
<appearance_stone id="38196" targetType="WEAPON" type="FIXED" visualId="38218" weaponType="CROSSBOW" lifeTime="30days" /> <!-- Crayfish Appearance Stone: Crossbow ( 30 days ) -->
<appearance_stone id="38207" targetType="WEAPON" type="FIXED" visualId="38218" weaponType="CROSSBOW" /> <!-- Crayfish Appearance Stone: Crossbow -->
<appearance_stone id="22673" targetType="WEAPON" type="FIXED" visualId="22657" weaponType="BLUNT" /> <!-- Weapon Appearance Stone: One-handed Blunt Weapon -->
<appearance_stone id="22734" targetType="WEAPON" type="FIXED" visualId="22718" weaponType="BLUNT" /> <!-- Japanese Blunt Appearance Stone -->
<appearance_stone id="22675" targetType="WEAPON" type="FIXED" visualId="22659" weaponType="BLUNT" magicType="MAGICAL" /> <!-- Emerald Weapon Appearance Stone: One-handed Magic Blunt Weapon -->
<appearance_stone id="22736" targetType="WEAPON" type="FIXED" visualId="22720" weaponType="BLUNT" magicType="MAGICAL" /> <!-- Japanese Magic Blunt Appearance Stone -->
<appearance_stone id="22674" targetType="WEAPON" type="FIXED" visualId="22658" weaponType="BLUNT" handType="TWO_HANDED" /> <!-- Emerald Weapon Appearance Stone: Two-handed Blunt Weapon -->
<appearance_stone id="22735" targetType="WEAPON" type="FIXED" visualId="22719" weaponType="BLUNT" handType="TWO_HANDED" /> <!-- Japanese Giant Blunt Appearance Stone -->
<appearance_stone id="22676" targetType="WEAPON" type="FIXED" visualId="22660" weaponType="BLUNT" handType="TWO_HANDED" magicType="MAGICAL" /> <!-- Emerald Weapon Appearance Stone: Two-handed Magic Blunt Weapon -->
<appearance_stone id="22676" targetType="WEAPON" type="FIXED" visualId="38215" weaponType="BLUNT" handType="TWO_HANDED" magicType="MAGICAL" /> <!-- Sea Horse Two-handed Magic Blunt Appearance Stone -->
<appearance_stone id="22737" targetType="WEAPON" type="FIXED" visualId="22721" weaponType="BLUNT" handType="TWO_HANDED" magicType="MAGICAL" /> <!-- Japanese Giant Magic Blunt Appearance Stone -->
<appearance_stone id="22678" targetType="WEAPON" type="FIXED" visualId="22662" weaponType="DUALDAGGER" /> <!-- Emerald Weapon Appearance Stone: Dual Dagger -->
<appearance_stone id="22739" targetType="WEAPON" type="FIXED" visualId="22723" weaponType="DUALDAGGER" /> <!-- Japanese Double Dagger Appearance Stone -->
<appearance_stone id="22679" targetType="WEAPON" type="FIXED" visualId="22663" weaponType="DUALBLUNT" /> <!-- Emerald Weapon Appearance Stone: Dual Blunt Weapon -->
<appearance_stone id="22740" targetType="WEAPON" type="FIXED" visualId="22724" weaponType="DUALBLUNT" /> <!-- Japanese Double Blunt Appearance Stone -->
<!--Armor Appearance Stones -->
<!--Normal -->
<appearance_stone id="22682" targetType="ARMOR" type="NORMAL" cost="125000"> <!-- Armor Appearance Stone (R-grade) -->
<grade>R</grade>
<grade>R95</grade>
<grade>R99</grade>
</appearance_stone>
<appearance_stone id="22683" targetType="ARMOR" type="NORMAL" cost="125000"> <!-- Armor Appearance Stone (S-grade) -->
<grade>S</grade>
<grade>S80</grade>
</appearance_stone>
<appearance_stone id="22684" targetType="ARMOR" type="NORMAL" grade="A" cost="125000" /> <!-- Armor Appearance Stone (A-grade) -->
<appearance_stone id="22685" targetType="ARMOR" type="NORMAL" grade="B" cost="125000" /> <!-- Armor Appearance Stone (B-grade) -->
<appearance_stone id="22686" targetType="ARMOR" type="NORMAL" grade="C" cost="125000" /> <!-- Armor Appearance Stone (C-grade) -->
<appearance_stone id="22687" targetType="ARMOR" type="NORMAL" grade="D" cost="125000" /> <!-- Armor Appearance Stone (D-grade) -->
<!--Blessed -->
<appearance_stone id="22688" targetType="ARMOR" type="BLESSED"> <!-- Blessed Armor Appearance Stone (R-grade) -->
<grade>R</grade>
<grade>R95</grade>
<grade>R99</grade>
</appearance_stone>
<appearance_stone id="22689" targetType="ARMOR" type="BLESSED"> <!--Blessed Armor Appearance Stone (S-grade) -->
<grade>S</grade>
<grade>S80</grade>
</appearance_stone>
<appearance_stone id="22690" targetType="ARMOR" type="BLESSED" grade="A" /> <!-- Blessed Armor Appearance Stone (A-grade) -->
<appearance_stone id="22691" targetType="ARMOR" type="BLESSED" grade="B" /> <!-- Blessed Armor Appearance Stone (B-grade) -->
<appearance_stone id="22692" targetType="ARMOR" type="BLESSED" grade="C" /> <!-- Blessed Armor Appearance Stone (C-grade) -->
<appearance_stone id="22693" targetType="ARMOR" type="BLESSED" grade="D" /> <!-- Blessed Armor Appearance Stone (D-grade) -->
<!--Restore -->
<appearance_stone id="22694" targetType="ARMOR" type="RESTORE"> <!-- Armor Restoration Stone (R-grade) -->
<grade>R</grade>
<grade>R95</grade>
<grade>R99</grade>
</appearance_stone>
<appearance_stone id="22695" targetType="ARMOR" type="RESTORE"> <!-- Armor Restoration Stone (S-grade) -->
<grade>S</grade>
<grade>S80</grade>
</appearance_stone>
<appearance_stone id="22696" targetType="ARMOR" type="RESTORE" grade="A" /> <!-- Armor Restoration Stone (A-grade) -->
<appearance_stone id="22697" targetType="ARMOR" type="RESTORE" grade="B" /> <!-- Armor Restoration Stone (B-grade) -->
<appearance_stone id="22698" targetType="ARMOR" type="RESTORE" grade="C" /> <!-- Armor Restoration Stone (C-grade) -->
<appearance_stone id="22699" targetType="ARMOR" type="RESTORE" grade="D" /> <!-- Armor Restoration Stone (D-grade) -->
<!--Restore -->
<appearance_stone id="22700" type="RESTORE"> <!-- Equipment Restoration Stone (R-grade) -->
<grade>R</grade>
<grade>R95</grade>
<grade>R99</grade>
<targetType>WEAPON</targetType>
<targetType>ARMOR</targetType>
</appearance_stone>
<appearance_stone id="22701" type="RESTORE"> <!-- Equipment Restoration Stone (S-grade) -->
<grade>S</grade>
<grade>S80</grade>
<targetType>WEAPON</targetType>
<targetType>ARMOR</targetType>
</appearance_stone>
<appearance_stone id="22702" type="RESTORE" grade="A"> <!-- Equipment Restoration Stone (A-grade) -->
<targetType>WEAPON</targetType>
<targetType>ARMOR</targetType>
</appearance_stone>
<appearance_stone id="22703" type="RESTORE" grade="B"> <!-- Equipment Restoration Stone (B-grade) -->
<targetType>WEAPON</targetType>
<targetType>ARMOR</targetType>
</appearance_stone>
<appearance_stone id="22704" type="RESTORE" grade="C"> <!-- Equipment Restoration Stone (C-grade) -->
<targetType>WEAPON</targetType>
<targetType>ARMOR</targetType>
</appearance_stone>
<appearance_stone id="22705" type="RESTORE" grade="D"> <!-- Equipment Restoration Stone (D-grade) -->
<targetType>WEAPON</targetType>
<targetType>ARMOR</targetType>
</appearance_stone>
<!--Fixed -->
<!-- Metal Suit -->
<appearance_stone id="23493" targetType="ARMOR" type="FIXED" visualId="23448"> <!-- Metal Top Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23494" targetType="ARMOR" type="FIXED" visualId="23449" bodyPart="legs" /> <!-- Metal Pants Appearance Stone -->
<appearance_stone id="23495" targetType="ARMOR" type="FIXED" visualId="23450" bodyPart="gloves" /> <!-- Metal Gloves Appearance Stone -->
<appearance_stone id="23496" targetType="ARMOR" type="FIXED" visualId="23451" bodyPart="feet" /> <!-- Metal Shoes Appearance Stone -->
<appearance_stone id="23497" targetType="ACCESSORY" type="FIXED" visualId="23452"> <!-- Metal Hair Accessory Appearance Stone -->
<bodyPart>hair</bodyPart>
<bodyPart>hair2</bodyPart>
<bodyPart>hairall</bodyPart>
</appearance_stone>
<!-- Metal Suit with skill -->
<appearance_stone id="23712" targetType="ARMOR" type="FIXED" visualId="23708"> <!-- Metal Top Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23713" targetType="ARMOR" type="FIXED" visualId="23709" bodyPart="legs" /> <!-- Metal Pants Appearance Stone -->
<appearance_stone id="23714" targetType="ARMOR" type="FIXED" visualId="23710" bodyPart="gloves" /> <!-- Metal Gloves Appearance Stone -->
<appearance_stone id="23715" targetType="ARMOR" type="FIXED" visualId="23711" bodyPart="feet" /> <!-- Metal Shoes Appearance Stone -->
<!-- Military Suit -->
<appearance_stone id="23503" targetType="ARMOR" type="FIXED" visualId="23453" raceNot="ERTHEIA"> <!-- Military Top Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23504" targetType="ARMOR" type="FIXED" visualId="23454" bodyPart="legs" raceNot="ERTHEIA" /> <!-- Military Pants Appearance Stone -->
<appearance_stone id="23505" targetType="ARMOR" type="FIXED" visualId="23455" bodyPart="gloves" raceNot="ERTHEIA" /> <!-- Military Gloves Appearance Stone -->
<appearance_stone id="23506" targetType="ARMOR" type="FIXED" visualId="23456" bodyPart="feet" raceNot="ERTHEIA" /> <!-- Military Shoes Appearance Stone -->
<appearance_stone id="23507" targetType="ACCESSORY" type="FIXED" visualId="23457" raceNot="ERTHEIA"> <!-- Military Hair Accessory Appearance Stone -->
<bodyPart>hair</bodyPart>
<bodyPart>hair2</bodyPart>
<bodyPart>hairall</bodyPart>
</appearance_stone>
<!-- Military Suit with skill -->
<appearance_stone id="23720" targetType="ARMOR" type="FIXED" visualId="23716" raceNot="ERTHEIA"> <!-- Military Top Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23721" targetType="ARMOR" type="FIXED" visualId="23717" bodyPart="legs" raceNot="ERTHEIA" /> <!-- Military Pants Appearance Stone -->
<appearance_stone id="23722" targetType="ARMOR" type="FIXED" visualId="23718" bodyPart="gloves" raceNot="ERTHEIA" /> <!-- Military Gloves Appearance Stone -->
<appearance_stone id="23723" targetType="ARMOR" type="FIXED" visualId="23719" bodyPart="feet" raceNot="ERTHEIA" /> <!-- Military Shoes Appearance Stone -->
<!-- Ninja Suit -->
<appearance_stone id="23189" targetType="ARMOR" type="FIXED" visualId="23554"> <!-- Ninja Top Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23190" targetType="ARMOR" type="FIXED" visualId="23555" bodyPart="legs" raceNot="ERTHEIA" /> <!-- Ninja Pants Appearance Stone -->
<appearance_stone id="23191" targetType="ARMOR" type="FIXED" visualId="23556" bodyPart="gloves" raceNot="ERTHEIA" /> <!-- Ninja Gloves Appearance Stone -->
<appearance_stone id="23192" targetType="ARMOR" type="FIXED" visualId="23557" bodyPart="feet" raceNot="ERTHEIA" /> <!-- Ninja Shoes Appearance Stone -->
<appearance_stone id="23193" targetType="ACCESSORY" type="FIXED" visualId="23558" raceNot="ERTHEIA"> <!-- Ninja Hair Accessory Appearance Stone -->
<bodyPart>hair</bodyPart>
<bodyPart>hair2</bodyPart>
<bodyPart>hairall</bodyPart>
</appearance_stone>
<!-- Ninja Suit with skill -->
<appearance_stone id="23564" targetType="ARMOR" type="FIXED" visualId="23554"> <!-- Ninja Top Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23565" targetType="ARMOR" type="FIXED" visualId="23555" bodyPart="legs" raceNot="ERTHEIA" /> <!-- Ninja Pants Appearance Stone -->
<appearance_stone id="23566" targetType="ARMOR" type="FIXED" visualId="23556" bodyPart="gloves" raceNot="ERTHEIA" /> <!-- Ninja Gloves Appearance Stone -->
<appearance_stone id="23567" targetType="ARMOR" type="FIXED" visualId="23557" bodyPart="feet" raceNot="ERTHEIA" /> <!-- Ninja Shoes Appearance Stone -->
<!-- Traditional Taiwanese Suit -->
<appearance_stone id="23194" targetType="ARMOR" type="FIXED" visualId="23184"> <!-- Traditional Taiwanese Top Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23195" targetType="ARMOR" type="FIXED" visualId="23185" bodyPart="legs" raceNot="ERTHEIA" /> <!-- Traditional Taiwanese Pants Appearance Stone -->
<appearance_stone id="23196" targetType="ARMOR" type="FIXED" visualId="23186" bodyPart="gloves" raceNot="ERTHEIA" /> <!-- Traditional Taiwanese Gloves Appearance Stone -->
<appearance_stone id="23197" targetType="ARMOR" type="FIXED" visualId="23187" bodyPart="feet" raceNot="ERTHEIA" /> <!-- Traditional Taiwanese Shoes Appearance Stone -->
<appearance_stone id="23198" targetType="ACCESSORY" type="FIXED" visualId="23188" raceNot="ERTHEIA"> <!-- Traditional Taiwanese Hair Accessory Appearance Stone -->
<bodyPart>hair</bodyPart>
<bodyPart>hair2</bodyPart>
<bodyPart>hairall</bodyPart>
</appearance_stone>
<!-- Onepiece -->
<appearance_stone id="23172" targetType="ARMOR" type="FIXED" visualId="23171" raceNot="ERTHEIA"> <!-- Beach Swimsuit Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23234" targetType="ARMOR" type="FIXED" visualId="23173" raceNot="ERTHEIA"> <!-- Alluring Swimsuit Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23235" targetType="ARMOR" type="FIXED" visualId="23226" raceNot="ERTHEIA"> <!-- Seductive Swimsuit Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23486" targetType="ARMOR" type="FIXED" visualId="23485"> <!-- Santa Outfit Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23487" targetType="ARMOR" type="FIXED" visualId="23485"> <!-- Santa Outfit Appearance Stone -->
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<!-- Shield and Sigils -->
<appearance_stone id="22680" targetType="ARMOR" type="FIXED" visualId="22664" armorType="SHIELD" raceNot="ERTHEIA" /> <!-- Emerald Weapon Appearance Stone: Shield -->
<appearance_stone id="22681" targetType="ARMOR" type="FIXED" visualId="22665" armorType="SIGIL" raceNot="ERTHEIA" /> <!-- Emerald Weapon Appearance Stone: Sigil -->
<appearance_stone id="22741" targetType="ARMOR" type="FIXED" visualId="22725" armorType="SHIELD" raceNot="ERTHEIA" /> <!-- Japanese Shield Appearance Stone -->
<appearance_stone id="22742" targetType="ARMOR" type="FIXED" visualId="22726" armorType="SIGIL" raceNot="ERTHEIA" /> <!-- Japanese Sigil Appearance Stone -->
<!--Accessory Appearance Stones -->
<!--Normal -->
<appearance_stone id="22708" targetType="ACCESSORY" type="NORMAL" cost="125000" /> <!-- Accessory Appearance Stone -->
<!--Blessed -->
<appearance_stone id="22709" targetType="ACCESSORY" type="BLESSED" /> <!-- Accessory Appearance Stone -->
<!--Restore -->
<appearance_stone id="22882" targetType="ACCESSORY" type="RESTORE" /> <!-- Hair Accessory Appearance Restoration Stone -->
<!--Anakim Outfit -->
<appearance_stone id="23882" targetType="ARMOR" type="FIXED" visualId="23881" raceNot="ERTHEIA">
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<!--Dark Assassion Suit -->
<appearance_stone id="24134" targetType="ARMOR" type="FIXED" visualId="24133">
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<!--Vampire Suit -->
<appearance_stone id="23888" targetType="ARMOR" type="FIXED" visualId="23883" raceNot="ERTHEIA">
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23889" targetType="ARMOR" type="FIXED" visualId="23884" bodyPart="legs" raceNot="ERTHEIA" />
<appearance_stone id="23890" targetType="ARMOR" type="FIXED" visualId="23885" bodyPart="gloves" raceNot="ERTHEIA" />
<appearance_stone id="23891" targetType="ARMOR" type="FIXED" visualId="23886" bodyPart="feet" raceNot="ERTHEIA" />
<appearance_stone id="23892" targetType="ACCESSORY" type="FIXED" visualId="23887" raceNot="ERTHEIA">
<bodyPart>hair</bodyPart>
<bodyPart>hair2</bodyPart>
<bodyPart>hairall</bodyPart>
</appearance_stone>
<!--Samurai Outfit -->
<appearance_stone id="23880" targetType="ARMOR" type="FIXED" visualId="23879">
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="23878" targetType="ACCESSORY" type="FIXED" visualId="23877">
<bodyPart>hair</bodyPart>
<bodyPart>hair2</bodyPart>
<bodyPart>hairall</bodyPart>
</appearance_stone>
<!--NC Dinos Uniform -->
<appearance_stone id="45435" targetType="ARMOR" type="FIXED" visualId="37725" lifeTime="30days">
<bodyPart>chest</bodyPart>
<bodyPart>fullarmor</bodyPart>
</appearance_stone>
<appearance_stone id="45433" targetType="ACCESSORY" type="FIXED" visualId="37726" lifeTime="30days">
<bodyPart>hair</bodyPart>
<bodyPart>hair2</bodyPart>
<bodyPart>hairall</bodyPart>
</appearance_stone>
<!-- Tears One-handed Blunt Weapon -->
<appearance_stone id="23936" targetType="WEAPON" type="FIXED" visualId="23920" weaponType="BLUNT" bodyPart="lhand" lifeTime="7days" />
<!-- Tears Magic Sword -->
<appearance_stone id="23937" targetType="WEAPON" type="FIXED" visualId="23921" weaponType="SWORD" magicType="MAGICAL" bodyPart="lhand" lifeTime="7days" />
<!-- Tears Tears One-handed Magic Blunt Weapon -->
<appearance_stone id="23938" targetType="WEAPON" type="FIXED" visualId="23922" weaponType="BLUNT" magicType="MAGICAL" lifeTime="7days" />
<!-- Tears Two-handed Magic Blunt Weapon -->
<appearance_stone id="23939" targetType="WEAPON" type="FIXED" visualId="23923" weaponType="DUALBLUNT" magicType="MAGICAL" lifeTime="7days" />
<!-- Tears Dual Dagger -->
<appearance_stone id="23941" targetType="WEAPON" type="FIXED" visualId="23945" weaponType="DUALDAGGER" lifeTime="7days" />
<!-- Tears Dual Blunt Weapon -->
<appearance_stone id="23942" targetType="WEAPON" type="FIXED" visualId="23946" weaponType="DUALBLUNT" lifeTime="7days" />
<!-- Tears Shield -->
<appearance_stone id="23943" targetType="ARMOR" type="FIXED" visualId="23927" armorType="SHIELD" lifeTime="7days" />
<!-- Tears Sigil -->
<appearance_stone id="23944" targetType="ARMOR" type="FIXED" visualId="23928" armorType="SIGIL" lifeTime="7days" />
<!-- Valentine Dagger -->
<appearance_stone id="37688" targetType="WEAPON" type="FIXED" visualId="37688" weaponType="DAGGER" lifeTime="15days" />
<!-- Valentine One-handed Sword -->
<appearance_stone id="37689" targetType="WEAPON" type="FIXED" visualId="37689" weaponType="SWORD" lifeTime="15days" />
<!-- Valentine Two-handed Sword -->
<appearance_stone id="37690" targetType="WEAPON" type="FIXED" visualId="37690" weaponType="SWORD" bodyPart="lrhand" lifeTime="15days" />
<!-- Valentine One-handed Blunt Weapon -->
<appearance_stone id="37691" targetType="WEAPON" type="FIXED" visualId="37691" weaponType="BLUNT" bodyPart="lhand" lifeTime="15days" />
<!-- Valentine Fist Weapon -->
<appearance_stone id="37692" targetType="WEAPON" type="FIXED" visualId="37692" weaponType="DUALFIST" lifeTime="15days" />
<!-- Valentine Spear -->
<appearance_stone id="37693" targetType="WEAPON" type="FIXED" visualId="37693" weaponType="POLE" lifeTime="15days" />
<!-- Valentine Bow -->
<appearance_stone id="37694" targetType="WEAPON" type="FIXED" visualId="37694" weaponType="BOW" lifeTime="15days" />
<!-- Valentine Crossbow -->
<appearance_stone id="37695" targetType="WEAPON" type="FIXED" visualId="37695" weaponType="CROSSBOW" lifeTime="15days" />
<!-- Valentine One-handed Magic Sword -->
<appearance_stone id="37696" targetType="WEAPON" type="FIXED" visualId="37696" weaponType="SWORD" lifeTime="15days" />
<!-- Valentine One-handed Magic Blunt Weapon -->
<appearance_stone id="37697" targetType="WEAPON" type="FIXED" visualId="37697" weaponType="BLUNT" magicType="MAGICAL" lifeTime="15days" />
<!-- Valentine Two-handed Magic Blunt Weapon -->
<appearance_stone id="37698" targetType="WEAPON" type="FIXED" visualId="37698" weaponType="DUALBLUNT" magicType="MAGICAL" lifeTime="15days" />
<!-- Valentine Dualsword -->
<appearance_stone id="37699" targetType="WEAPON" type="FIXED" visualId="37699" weaponType="DUAL" lifeTime="15days" />
<!-- Valentine Dual Dagger -->
<appearance_stone id="37700" targetType="WEAPON" type="FIXED" visualId="37700" weaponType="DUALDAGGER" lifeTime="15days" />
<!-- Valentine Dual Blunt Weapon -->
<appearance_stone id="37701" targetType="WEAPON" type="FIXED" visualId="37701" weaponType="DUALBLUNT" lifeTime="15days" />
<!-- Valentine Shield -->
<appearance_stone id="37702" targetType="ARMOR" type="FIXED" visualId="37702" armorType="SHIELD" lifeTime="15days" />
<!-- Valentine Sigil -->
<appearance_stone id="37703" targetType="ARMOR" type="FIXED" visualId="37703" armorType="SIGIL" lifeTime="15days" />
<!-- Pig Lollipop Appearance Stone: One-handed Sword -->
<appearance_stone id="37907" targetType="WEAPON" type="FIXED" visualId="37629" weaponType="SWORD" />
<!-- Chrono Cithara Appearance Stone: One-handed Sword -->
<appearance_stone id="37908" targetType="WEAPON" type="FIXED" visualId="37945" weaponType="SWORD" />
<!-- Chrono Unitus Appearance Stone: Fist Weapon -->
<appearance_stone id="37909" targetType="WEAPON" type="FIXED" visualId="37946" weaponType="DUALFIST" />
<!-- Chrono Campana Appearance Stone: Spear -->
<appearance_stone id="37910" targetType="WEAPON" type="FIXED" visualId="37947" weaponType="POLE" />
<!-- Chrono Darbuka Appearance Stone: Two-handed Blunt Weapon -->
<appearance_stone id="37911" targetType="WEAPON" type="FIXED" visualId="37948" weaponType="DUALBLUNT" />
<!-- Chrono Maracas Appearance Stone: Dualsword -->
<appearance_stone id="37912" targetType="WEAPON" type="FIXED" visualId="37949" weaponType="DUAL" />
<!-- Pumpkin Dagger Appearance Stone: Dagger -->
<appearance_stone id="37913" targetType="WEAPON" type="FIXED" visualId="37916" weaponType="DAGGER" />
<!-- Pumpkin Dual Dagger Appearance Stone: Dual Dagger -->
<appearance_stone id="37914" targetType="WEAPON" type="FIXED" visualId="37917" weaponType="DUALDAGGER" />
<!-- Scarecrow Sword Appearance Stone: One-handed Magic Sword -->
<appearance_stone id="37915" targetType="WEAPON" type="FIXED" visualId="37918" weaponType="SWORD" magicType="MAGICAL" />
</list>

View File

@ -0,0 +1,965 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/BeautyShop.xsd">
<race type="HUMAN">
<sex type="MALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
<sex type="FEMALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000" beauty_shop_ticket="0">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
</race>
<race type="ELF">
<sex type="MALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
<sex type="FEMALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
</race>
<race type="DARK_ELF">
<sex type="MALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
<sex type="FEMALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
</race>
<race type="ORC">
<sex type="MALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
<sex type="FEMALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
</race>
<race type="DWARF">
<sex type="MALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
<sex type="FEMALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
</race>
<race type="KAMAEL">
<sex type="MALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
</race>
<race type="ERTHEIA">
<sex type="FEMALE">
<hair id="10008" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10001" adena="15000000" reset_adena="1000000">
<color id="101" />
</hair>
<hair id="10009" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10002" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10010" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10003" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10011" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10004" reset_adena="1000000" beauty_shop_ticket="4">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10005" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10013" reset_adena="1000000" beauty_shop_ticket="7">
<color id="104" adena="3000000" />
<color id="105" adena="3000000" />
<color id="106" adena="3000000" />
<color id="107" adena="3000000" />
<color id="108" adena="3000000" />
<color id="101" adena="3000000" />
<color id="109" adena="3000000" />
<color id="102" adena="3000000" />
<color id="110" adena="3000000" />
<color id="103" adena="3000000" />
</hair>
<hair id="10006" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<hair id="10007" reset_adena="1000000" beauty_shop_ticket="4">
<color id="101" />
</hair>
<face id="20001" adena="2000000" reset_adena="500000" />
<face id="20002" adena="2000000" reset_adena="500000" />
<face id="20003" adena="2000000" reset_adena="500000" />
<face id="20004" reset_adena="1000000" beauty_shop_ticket="1" />
<face id="20005" reset_adena="1000000" beauty_shop_ticket="1" />
</sex>
</race>
</list>

View File

@ -0,0 +1,159 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/CrystalizableItems.xsd">
<crystalizable_item id="19776"> <!-- Seraph Gloves - Recovery Type / Robe -->
<item id="17527" count="4" chance="76.65" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="6.39" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="53.23" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="7.67" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19777"> <!-- Seraph Shoes - Recovery Type / Robe -->
<item id="17527" count="4" chance="76.65" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="6.39" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="53.23" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="7.67" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19473"> <!-- Twilight Belt -->
<item id="17527" count="1" chance="47.76" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="1.0" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="8.29" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="1.19" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="18065"> <!-- Blessed Seraph Sigil - Robe -->
<item id="17527" count="5" chance="80.49" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="8.38" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="69.87" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="10.06" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="18706"> <!-- Apocalypse Shaper - Focus -->
<item id="17526" count="2" chance="55.16" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="19447" count="1" chance="3.53" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="36386" count="1" chance="29.42" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="36514" count="1" chance="35.3" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="6676"> <!-- Sealed Imperial Crusader Gauntlets -->
<item id="960" count="1" chance="63.9" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="6578" count="1" chance="2.84" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
<item id="36390" count="1" chance="1.78" /> <!-- Giant's Scroll: Enchant Armor (S-grade) -->
<item id="36513" count="1" chance="3.2" /> <!-- Elcyum Powder -->
</crystalizable_item>
<crystalizable_item id="19544"> <!-- Twilight Leather Helmet - Assassin Type / Light -->
<item id="17527" count="2" chance="74.95" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="3.12" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="26.02" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="3.75" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="16025"> <!-- Freya's Necklace -->
<item id="960" count="4" chance="75.96" /> <!-- Scroll: Enchant Armor (S-grade) -->
<item id="6578" count="1" chance="13.5" /> <!-- Blessed Scroll: Enchant Armor (S-grade) -->
<item id="36390" count="1" chance="8.44" /> <!-- Giant's Scroll: Enchant Armor (S-grade) -->
<item id="36513" count="1" chance="15.19" /> <!-- Elcyum Powder -->
</crystalizable_item>
<crystalizable_item id="19545"> <!-- Twilight Leather Armor - Assassin Type / Light -->
<item id="17527" count="4" chance="99.93" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="8.33" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="69.39" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="9.99" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19546"> <!-- Twilight Leather Leggings - Assassin Type / Light -->
<item id="17527" count="3" chance="83.27" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="5.2" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="43.37" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="6.25" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19547"> <!-- Twilight Leather Gloves - Assassin Type / Light -->
<item id="17527" count="1" chance="99.93" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="2.08" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="17.35" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="2.5" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19548"> <!-- Twilight Leather Boots - Assassin Type / Light -->
<item id="17527" count="1" chance="99.93" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="2.08" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="17.35" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="2.5" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="30048"> <!-- Apocalypse Buster - Mana Up + Acumen -->
<item id="17526" count="2" chance="62.35" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="19447" count="1" chance="3.99" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="36386" count="1" chance="33.25" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="36514" count="1" chance="39.9" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="18722"> <!-- Apocalypse Thrower - Damage Up -->
<item id="17526" count="2" chance="55.16" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="19447" count="1" chance="3.53" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="36386" count="1" chance="29.42" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="36514" count="1" chance="35.3" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19746"> <!-- Twilight Helmet - Defense Type / Heavy -->
<item id="17527" count="2" chance="74.95" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="3.12" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="26.02" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="3.75" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19747"> <!-- Twilight Breastplate - Defense Type / Heavy -->
<item id="17527" count="4" chance="99.93" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="8.33" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="69.39" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="9.99" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19748"> <!-- Twilight Gaiters - Defense Type / Heavy -->
<item id="17527" count="3" chance="83.27" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="5.2" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="43.37" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="6.25" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19749"> <!-- Twilight Gauntlets - Defense Type / Heavy -->
<item id="17527" count="1" chance="99.93" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="2.08" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="17.35" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="2.5" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19750"> <!-- Twilight Boots - Defense Type / Heavy -->
<item id="17527" count="1" chance="99.93" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="2.08" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="17.35" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="2.5" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19751"> <!-- Twilight Shield - Defense Type / Heavy -->
<item id="17527" count="1" chance="99.93" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="2.08" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="17.35" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="2.5" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="18732"> <!-- Apocalypse Caster - Acumen -->
<item id="17526" count="2" chance="55.16" /> <!-- Scroll: Enchant Weapon (R-grade) -->
<item id="19447" count="1" chance="3.53" /> <!-- Blessed Scroll: Enchant Weapon (R-grade) -->
<item id="36386" count="1" chance="29.42" /> <!-- Giant's Scroll: Enchant Weapon (R-grade) -->
<item id="36514" count="1" chance="35.3" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="17401"> <!-- Seraph Shield - Heavy Armor -->
<item id="17527" count="4" chance="80.49" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="6.71" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="55.89" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="8.05" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19773"> <!-- Seraph Circlet - Recovery Type / Robe -->
<item id="17527" count="5" chance="91.98" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="9.58" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="79.85" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="11.5" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19774"> <!-- Seraph Tunic - Recovery Type / Robe -->
<item id="17527" count="13" chance="94.34" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="25.55" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="3" chance="70.98" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="30.66" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19455"> <!-- Istina's Bracelet -->
<item id="17527" count="1" chance="28.45" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="0.59" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="1" chance="4.94" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="0.71" /> <!-- Elcyum Crystal -->
</crystalizable_item>
<crystalizable_item id="19775"> <!-- Seraph Stockings - Recovery Type / Robe -->
<item id="17527" count="8" chance="95.82" /> <!-- Scroll: Enchant Armor (R-grade) -->
<item id="19448" count="1" chance="15.97" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
<item id="36389" count="2" chance="66.54" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
<item id="36514" count="1" chance="19.16" /> <!-- Elcyum Crystal -->
</crystalizable_item>
</list>

View File

@ -0,0 +1,535 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ItemAuctions.xsd">
<!-- Documentation: -->
<!-- <instance id="NPC ID of the auctioneer" day_of_week="1 - Monday, 7 - Sunday" hour_of_day="0-23" minute_of_hour="0-59"> -->
<!-- <item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="100000000" auctionLenght="300 (in minutes)"> -->
<!-- <extra enchant_level="15" augmentation_id="you can take it from item_attributes table" augmentation_skill_id="3241" augmentation_skill_lvl="10" /> -->
<!-- </item> -->
<!-- </instance> -->
<!-- instead of day_of_week you can use interval between auction in days -->
<!-- <instance id="NPC ID of the auctioneer" interval="1" hour_of_day="0-23" minute_of_hour="0-59"> -->
<!-- <item auctionItemId="1" itemId="10485" itemCount="1" auctionInitBid="100000000" auctionLenght="300" /> -->
<!-- </instance> -->
<instance id="32320" day_of_week="5" hour_of_day="17">
<!-- Improved Weapons (No-Grade) +15 -->
<!-- Improved Falchion -->
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Great Spear -->
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Iron Hammer -->
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Sword Breaker -->
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Viper Fang -->
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Composite Bow -->
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Flanged Mace -->
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Mage Staff -->
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Life Stones -->
<!-- Top-Grade Life Stone - Level 80 -->
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Top-Grade Life Stone - Level 82 -->
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 15 -->
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 15 -->
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 15 -->
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 16 -->
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 16 -->
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 16 -->
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 80 -->
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 82 -->
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scrolls -->
<!-- Forgotten Scroll - Protection of Rune -->
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Elemental -->
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Alignment -->
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Fighter's Will -->
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Archer's Will -->
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Magician's Will -->
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Hair Accessories -->
<!-- Refined Chick Hat -->
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Wizard Hat -->
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Black Feather Mask -->
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Romantic Chapeau -->
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Carnival Circlet -->
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Jester Hat -->
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High Grade S84 Weapons -->
<!-- Periel Sword -->
<item auctionItemId="31" itemId="15558" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Edge -->
<item auctionItemId="32" itemId="15559" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Vigwik Axe -->
<item auctionItemId="33" itemId="15560" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Devilish Maul -->
<item auctionItemId="34" itemId="15561" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Feather Eye Blade -->
<item auctionItemId="35" itemId="15562" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Octo Claw -->
<item auctionItemId="36" itemId="15563" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Doubletop Spear -->
<item auctionItemId="37" itemId="15564" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Rising Star -->
<item auctionItemId="38" itemId="15565" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Black Visage -->
<item auctionItemId="39" itemId="15566" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Veniplant Sword -->
<item auctionItemId="40" itemId="15567" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Carnium Bow -->
<item auctionItemId="41" itemId="15568" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Gemtail Rapier -->
<item auctionItemId="42" itemId="15569" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Finale Blade -->
<item auctionItemId="43" itemId="15570" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Dominion Crossbow -->
<item auctionItemId="44" itemId="15571" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Edge Dual Daggers -->
<item auctionItemId="45" itemId="16152" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Periel Dual Sword -->
<item auctionItemId="46" itemId="16154" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Top Grade S84 Weapons -->
<!-- Eternal Core Sword -->
<item auctionItemId="47" itemId="15544" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Mamba Edge -->
<item auctionItemId="48" itemId="15545" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Eversor Mace -->
<item auctionItemId="49" itemId="15546" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Contristo Hammer -->
<item auctionItemId="50" itemId="15547" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Lava Saw -->
<item auctionItemId="51" itemId="15548" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Jade Claw -->
<item auctionItemId="52" itemId="15549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Demitelum -->
<item auctionItemId="53" itemId="15550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Sacredium -->
<item auctionItemId="54" itemId="15551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Cyclic Cane -->
<item auctionItemId="55" itemId="15552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Archangel Sword -->
<item auctionItemId="56" itemId="15553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Recurve Thorne Bow -->
<item auctionItemId="57" itemId="15554" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Heavenstare Rapier -->
<item auctionItemId="58" itemId="15555" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Pyseal Blade -->
<item auctionItemId="59" itemId="15556" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Thorne Crossbow -->
<item auctionItemId="60" itemId="15557" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Mamba Edge Dual Daggers -->
<item auctionItemId="61" itemId="16156" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Eternal Core Dual Sword -->
<item auctionItemId="62" itemId="16158" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Armors -->
<!-- Elegia Helmet -->
<item auctionItemId="63" itemId="15572" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Helmet -->
<item auctionItemId="64" itemId="15573" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Circlet -->
<item auctionItemId="65" itemId="15574" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Breastplate -->
<item auctionItemId="66" itemId="15575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Breastplate -->
<item auctionItemId="67" itemId="15576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Tunic -->
<item auctionItemId="68" itemId="15577" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gaiter -->
<item auctionItemId="69" itemId="15578" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Legging -->
<item auctionItemId="70" itemId="15579" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Stockings -->
<item auctionItemId="71" itemId="15580" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gauntlet -->
<item auctionItemId="72" itemId="15581" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Gloves -->
<item auctionItemId="73" itemId="15582" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gloves -->
<item auctionItemId="74" itemId="15583" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Boots -->
<item auctionItemId="75" itemId="15584" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Boots -->
<item auctionItemId="76" itemId="15585" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Shoes -->
<item auctionItemId="77" itemId="15586" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Shield -->
<item auctionItemId="78" itemId="15587" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Sigil -->
<item auctionItemId="79" itemId="15588" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Enchaced Epic Jewelery -->
<!-- Greater Queen Ant's Ring -->
<item auctionItemId="80" itemId="22174" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Greater Zaken's Earring of Immortality -->
<item auctionItemId="81" itemId="22175" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Greater Baium's Ring -->
<item auctionItemId="82" itemId="22173" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
</instance>
<instance id="32321" day_of_week="1" hour_of_day="17">
<!-- Improved Weapons (No-Grade) +15 -->
<!-- Improved Falchion -->
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Great Spear -->
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Iron Hammer -->
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Sword Breaker -->
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Viper Fang -->
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Composite Bow -->
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Flanged Mace -->
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Mage Staff -->
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Life Stones -->
<!-- Top-Grade Life Stone - Level 80 -->
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Top-Grade Life Stone - Level 82 -->
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 15 -->
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 15 -->
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 15 -->
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 16 -->
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 16 -->
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 16 -->
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 80 -->
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 82 -->
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scrolls -->
<!-- Forgotten Scroll - Protection of Rune -->
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Elemental -->
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Alignment -->
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Fighter's Will -->
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Archer's Will -->
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Magician's Will -->
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Hair Accessories -->
<!-- Refined Chick Hat -->
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Wizard Hat -->
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Black Feather Mask -->
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Romantic Chapeau -->
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Carnival Circlet -->
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Jester Hat -->
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High Grade S84 Weapons -->
<!-- Periel Sword -->
<item auctionItemId="31" itemId="15558" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Edge -->
<item auctionItemId="32" itemId="15559" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Vigwik Axe -->
<item auctionItemId="33" itemId="15560" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Devilish Maul -->
<item auctionItemId="34" itemId="15561" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Feather Eye Blade -->
<item auctionItemId="35" itemId="15562" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Octo Claw -->
<item auctionItemId="36" itemId="15563" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Doubletop Spear -->
<item auctionItemId="37" itemId="15564" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Rising Star -->
<item auctionItemId="38" itemId="15565" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Black Visage -->
<item auctionItemId="39" itemId="15566" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Veniplant Sword -->
<item auctionItemId="40" itemId="15567" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Carnium Bow -->
<item auctionItemId="41" itemId="15568" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Gemtail Rapier -->
<item auctionItemId="42" itemId="15569" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Finale Blade -->
<item auctionItemId="43" itemId="15570" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Dominion Crossbow -->
<item auctionItemId="44" itemId="15571" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Edge Dual Daggers -->
<item auctionItemId="45" itemId="16152" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Periel Dual Sword -->
<item auctionItemId="46" itemId="16154" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Top Grade S84 Weapons -->
<!-- Eternal Core Sword -->
<item auctionItemId="47" itemId="15544" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Mamba Edge -->
<item auctionItemId="48" itemId="15545" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Eversor Mace -->
<item auctionItemId="49" itemId="15546" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Contristo Hammer -->
<item auctionItemId="50" itemId="15547" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Lava Saw -->
<item auctionItemId="51" itemId="15548" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Jade Claw -->
<item auctionItemId="52" itemId="15549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Demitelum -->
<item auctionItemId="53" itemId="15550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Sacredium -->
<item auctionItemId="54" itemId="15551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Cyclic Cane -->
<item auctionItemId="55" itemId="15552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Archangel Sword -->
<item auctionItemId="56" itemId="15553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Recurve Thorne Bow -->
<item auctionItemId="57" itemId="15554" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Heavenstare Rapier -->
<item auctionItemId="58" itemId="15555" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Pyseal Blade -->
<item auctionItemId="59" itemId="15556" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Thorne Crossbow -->
<item auctionItemId="60" itemId="15557" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Mamba Edge Dual Daggers -->
<item auctionItemId="61" itemId="16156" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Eternal Core Dual Sword -->
<item auctionItemId="62" itemId="16158" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Armors -->
<!-- Elegia Helmet -->
<item auctionItemId="63" itemId="15572" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Helmet -->
<item auctionItemId="64" itemId="15573" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Circlet -->
<item auctionItemId="65" itemId="15574" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Breastplate -->
<item auctionItemId="66" itemId="15575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Breastplate -->
<item auctionItemId="67" itemId="15576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Tunic -->
<item auctionItemId="68" itemId="15577" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gaiter -->
<item auctionItemId="69" itemId="15578" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Legging -->
<item auctionItemId="70" itemId="15579" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Stockings -->
<item auctionItemId="71" itemId="15580" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gauntlet -->
<item auctionItemId="72" itemId="15581" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Gloves -->
<item auctionItemId="73" itemId="15582" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gloves -->
<item auctionItemId="74" itemId="15583" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Boots -->
<item auctionItemId="75" itemId="15584" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Boots -->
<item auctionItemId="76" itemId="15585" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Shoes -->
<item auctionItemId="77" itemId="15586" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Shield -->
<item auctionItemId="78" itemId="15587" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Sigil -->
<item auctionItemId="79" itemId="15588" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Enchaced Epic Jewelery -->
<!-- Greater Queen Ant's Ring -->
<item auctionItemId="80" itemId="22174" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Greater Zaken's Earring of Immortality -->
<item auctionItemId="81" itemId="22175" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Greater Baium's Ring -->
<item auctionItemId="82" itemId="22173" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
</instance>
<instance id="32322" day_of_week="3" hour_of_day="17">
<!-- Improved Weapons (No-Grade) +15 -->
<!-- Improved Falchion -->
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Great Spear -->
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Iron Hammer -->
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Sword Breaker -->
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Viper Fang -->
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Composite Bow -->
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Flanged Mace -->
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Improved Mage Staff -->
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Life Stones -->
<!-- Top-Grade Life Stone - Level 80 -->
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Top-Grade Life Stone - Level 82 -->
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 15 -->
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 15 -->
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 15 -->
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 16 -->
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 16 -->
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 16 -->
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 80 -->
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 82 -->
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scrolls -->
<!-- Forgotten Scroll - Protection of Rune -->
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Elemental -->
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Alignment -->
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Fighter's Will -->
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Archer's Will -->
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Forgotten Scroll - Magician's Will -->
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Hair Accessories -->
<!-- Refined Chick Hat -->
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Wizard Hat -->
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Black Feather Mask -->
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Romantic Chapeau -->
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Carnival Circlet -->
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Refined Jester Hat -->
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- High Grade S84 Weapons -->
<!-- Periel Sword -->
<item auctionItemId="31" itemId="15558" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Edge -->
<item auctionItemId="32" itemId="15559" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Vigwik Axe -->
<item auctionItemId="33" itemId="15560" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Devilish Maul -->
<item auctionItemId="34" itemId="15561" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Feather Eye Blade -->
<item auctionItemId="35" itemId="15562" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Octo Claw -->
<item auctionItemId="36" itemId="15563" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Doubletop Spear -->
<item auctionItemId="37" itemId="15564" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Rising Star -->
<item auctionItemId="38" itemId="15565" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Black Visage -->
<item auctionItemId="39" itemId="15566" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Veniplant Sword -->
<item auctionItemId="40" itemId="15567" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Carnium Bow -->
<item auctionItemId="41" itemId="15568" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Gemtail Rapier -->
<item auctionItemId="42" itemId="15569" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Finale Blade -->
<item auctionItemId="43" itemId="15570" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Dominion Crossbow -->
<item auctionItemId="44" itemId="15571" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Skull Edge Dual Daggers -->
<item auctionItemId="45" itemId="16152" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Periel Dual Sword -->
<item auctionItemId="46" itemId="16154" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Top Grade S84 Weapons -->
<!-- Eternal Core Sword -->
<item auctionItemId="47" itemId="15544" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Mamba Edge -->
<item auctionItemId="48" itemId="15545" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Eversor Mace -->
<item auctionItemId="49" itemId="15546" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Contristo Hammer -->
<item auctionItemId="50" itemId="15547" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Lava Saw -->
<item auctionItemId="51" itemId="15548" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Jade Claw -->
<item auctionItemId="52" itemId="15549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Demitelum -->
<item auctionItemId="53" itemId="15550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Sacredium -->
<item auctionItemId="54" itemId="15551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Cyclic Cane -->
<item auctionItemId="55" itemId="15552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Archangel Sword -->
<item auctionItemId="56" itemId="15553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Recurve Thorne Bow -->
<item auctionItemId="57" itemId="15554" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Heavenstare Rapier -->
<item auctionItemId="58" itemId="15555" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Pyseal Blade -->
<item auctionItemId="59" itemId="15556" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Thorne Crossbow -->
<item auctionItemId="60" itemId="15557" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Mamba Edge Dual Daggers -->
<item auctionItemId="61" itemId="16156" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Eternal Core Dual Sword -->
<item auctionItemId="62" itemId="16158" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Armors -->
<!-- Elegia Helmet -->
<item auctionItemId="63" itemId="15572" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Helmet -->
<item auctionItemId="64" itemId="15573" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Circlet -->
<item auctionItemId="65" itemId="15574" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Breastplate -->
<item auctionItemId="66" itemId="15575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Breastplate -->
<item auctionItemId="67" itemId="15576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Tunic -->
<item auctionItemId="68" itemId="15577" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gaiter -->
<item auctionItemId="69" itemId="15578" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Legging -->
<item auctionItemId="70" itemId="15579" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Stockings -->
<item auctionItemId="71" itemId="15580" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gauntlet -->
<item auctionItemId="72" itemId="15581" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Gloves -->
<item auctionItemId="73" itemId="15582" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Gloves -->
<item auctionItemId="74" itemId="15583" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Boots -->
<item auctionItemId="75" itemId="15584" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Leather Boots -->
<item auctionItemId="76" itemId="15585" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Shoes -->
<item auctionItemId="77" itemId="15586" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Shield -->
<item auctionItemId="78" itemId="15587" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Elegia Sigil -->
<item auctionItemId="79" itemId="15588" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Enchaced Epic Jewelery -->
<!-- Greater Queen Ant's Ring -->
<item auctionItemId="80" itemId="22174" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Greater Zaken's Earring of Immortality -->
<item auctionItemId="81" itemId="22175" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Greater Baium's Ring -->
<item auctionItemId="82" itemId="22173" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
</instance>
</list>

View File

@ -0,0 +1,488 @@
<?xml version="1.0" encoding="UTF-8"?>
<list>
<!-- <FlyToLocation ToX="-111994" ToY="257250" ToZ="-1392" Type="2"/> -->
<track trackId="12" zone="Talking Island Village -> Essar to Gila ruins" ToX="-111994" ToY="257250" ToZ="-1392">
<way id="0"><jumpLoc next="1" x="-112860" y="256154" z="-1232" /></way>
<way id="1"><jumpLoc next="2" x="-113337" y="255468" z="-1064" /></way>
<way id="2"><jumpLoc next="3" x="-113486" y="254176" z="-1200" /></way>
<way id="3"><jumpLoc next="4" x="-114259" y="252583" z="-1536" /></way>
<way id="4"><jumpLoc next="5" x="-114192" y="249690" z="-1768" /></way>
<way id="5"><jumpLoc next="6" x="-114910" y="248363" z="-1896" /></way>
<way id="6"><jumpLoc next="7" x="-117316" y="246637" z="-2312" /></way>
<way id="7"><jumpLoc next="8" x="-116685" y="245179" z="-1944" /></way>
<way id="8"><jumpLoc next="9" x="-116402" y="243260" z="-1440" /></way>
<way id="9"><jumpLoc next="10" x="-116609" y="241530" z="-2568" /></way>
<way id="10"><jumpLoc next="11" x="-117165" y="239769" z="-2736" /></way>
<way id="11"><jumpLoc next="12" x="-116650" y="238339" z="-2472" /></way>
<way id="12"><jumpLoc next="-1" x="-115737" y="236295" z="-3088" /></way>
</track>
<!-- <FlyToLocation ToX="205888" ToY="80560" ToZ="1928" Type="2"/> -->
<track trackId="14" zone="Ancient capital of Ya Erkang -> Deep in the boreal forest / Timmy Nell embrace" ToX="205888" ToY="80560" ToZ="1928">
<way id="0">
<jumpLoc next="-1" x="205564" y="80480" z="404" />
<jumpLoc next="1" x="205324" y="77300" z="872" />
<jumpLoc next="5" x="207240" y="80900" z="608" />
</way>
<way id="1"><jumpLoc next="2" x="203776" y="74224" z="832" /></way>
<way id="2"><jumpLoc next="3" x="205088" y="73600" z="1228" /></way>
<way id="3"><jumpLoc next="4" x="204828" y="71336" z="1312" /></way>
<way id="4"><jumpLoc next="-1" x="205536" y="71256" z="996" /></way>
<way id="5"><jumpLoc next="6" x="208432" y="80028" z="592" /></way>
<way id="6"><jumpLoc next="7" x="211104" y="80768" z="-112" /></way>
<way id="7"><jumpLoc next="8" x="212288" y="79124" z="496" /></way>
<way id="8"><jumpLoc next="9" x="213100" y="80004" z="1612" /></way>
<way id="9"><jumpLoc next="-1" x="213968" y="81232" z="816" /></way>
</track>
<!-- <FlyToLocation ToX="211824" ToY="82800" ToZ="1456" Type="2"/> -->
<track trackId="15" zone="Ancient Yaer Kang (right) -> Deep Southern Forest / Timmy Nell embrace" ToX="211824" ToY="82800" ToZ="1456">
<way id="0">
<jumpLoc next="-1" x="211952" y="82592" z="136" />
<jumpLoc next="1" x="213152" y="84496" z="980" />
<jumpLoc next="9" x="213604" y="81868" z="1836" />
</way>
<way id="1"><jumpLoc next="2" x="214112" y="85312" z="1440" /></way>
<way id="2"><jumpLoc next="3" x="214896" y="86480" z="1640" /></way>
<way id="3"><jumpLoc next="4" x="217584" y="87984" z="1332" /></way>
<way id="4"><jumpLoc next="5" x="219680" y="88000" z="1328" /></way>
<way id="5"><jumpLoc next="6" x="220976" y="88368" z="1088" /></way>
<way id="6"><jumpLoc next="7" x="222336" y="88288" z="1064" /></way>
<way id="7"><jumpLoc next="8" x="222448" y="88424" z="1584" /></way>
<way id="8"><jumpLoc next="-1" x="222064" y="88944" z="812" /></way>
<way id="9"><jumpLoc next="-1" x="214032" y="81304" z="824" /></way>
</track>
<!-- <FlyToLocation ToX="213512" ToY="80556" ToZ="1524" Type="2"/> -->
<track trackId="16" zone="Leprechaun colonies (left) -> Ancient Yaer Kang (left)" ToX="213512" ToY="80556" ToZ="1524">
<way id="0"><jumpLoc next="1" x="211088" y="81056" z="112" /></way>
<way id="1"><jumpLoc next="2" x="209216" y="80240" z="-112" /></way>
<way id="2"><jumpLoc next="3" x="208512" y="79952" z="592" /></way>
<way id="3"><jumpLoc next="4" x="206336" y="80432" z="1604" /></way>
<way id="4"><jumpLoc next="-1" x="205264" y="80420" z="416" /></way>
</track>
<!-- <FlyToLocation ToX="214576" ToY="81936" ToZ="1960" Type="2"/> -->
<track trackId="17" zone="Leprechaun colonies (right) -> Ancient Yaer Kang (right)" ToX="214576" ToY="81936" ToZ="1960">
<way id="0"><jumpLoc next="1" x="213120" y="84432" z="944" /></way>
<way id="1"><jumpLoc next="2" x="212548" y="83588" z="544" /></way>
<way id="2"><jumpLoc next="3" x="211968" y="82880" z="960" /></way>
<way id="3"><jumpLoc next="-1" x="212096" y="82528" z="144" /></way>
</track>
<!-- <FlyToLocation ToX="207189" ToY="110330" ToZ="-1147" Type="2"/> -->
<track trackId="18" zone="Creation Garden (on) -> " ToX="207189" ToY="110330" ToZ="-1147">
<way id="0">
<jumpLoc next="23" x="207786" y="109675" z="-1102" />
<jumpLoc next="25" x="206864" y="111818" z="-1263" />
</way>
<way id="1"><jumpLoc next="7" x="209457" y="108552" z="-1056" /></way>
<way id="2"><jumpLoc next="3" x="205028" y="114828" z="-1292" /></way>
<way id="3">
<jumpLoc next="4" x="206386" y="114871" z="-1242" />
<jumpLoc next="5" x="205124" y="116584" z="-1037" />
</way>
<way id="4"><jumpLoc next="26" x="208298" y="115264" z="-1684" /></way>
<way id="5"><jumpLoc next="6" x="205948" y="118978" z="-1224" /></way>
<way id="6"><jumpLoc next="-1" x="205912" y="119379" z="-1673" /></way>
<way id="7"><jumpLoc next="8" x="211246" y="108653" z="-886" /></way>
<way id="8"><jumpLoc next="9" x="212654" y="108160" z="-1149" /></way>
<way id="9"><jumpLoc next="10" x="214113" y="108549" z="-1048" /></way>
<way id="10">
<jumpLoc next="11" x="215489" y="107803" z="-1001" />
<jumpLoc next="13" x="214095" y="109218" z="-638" />
</way>
<way id="11"><jumpLoc next="12" x="217554" y="107266" z="-796" /></way>
<way id="12"><jumpLoc next="-1" x="217768" y="107458" z="-1673" /></way>
<way id="13"><jumpLoc next="14" x="213567" y="110362" z="-1055" /></way>
<way id="14"><jumpLoc next="24" x="214033" y="111348" z="-1253" /></way>
<way id="15"><jumpLoc next="16" x="216195" y="114178" z="-1162" /></way>
<way id="16"><jumpLoc next="17" x="217493" y="115253" z="-895" /></way>
<way id="17"><jumpLoc next="-1" x="217662" y="115261" z="-1274" /></way>
<way id="18">
<jumpLoc next="-1" x="209608" y="115641" z="-1679" />
<jumpLoc next="19" x="210657" y="116738" z="-956" />
</way>
<way id="19"><jumpLoc next="20" x="211883" y="117085" z="-682" /></way>
<way id="20"><jumpLoc next="21" x="212718" y="117794" z="-1158" /></way>
<way id="21"><jumpLoc next="22" x="213693" y="119065" z="-897" /></way>
<way id="22"><jumpLoc next="-1" x="213696" y="119227" z="-1274" /></way>
<way id="23"><jumpLoc next="1" x="208453" y="109434" z="-848" /></way>
<way id="24">
<jumpLoc next="-1" x="214096" y="111164" z="-1679" />
<jumpLoc next="15" x="214991" y="112448" z="-938" />
</way>
<way id="25"><jumpLoc next="2" x="206071" y="113246" z="-1128" /></way>
<way id="26"><jumpLoc next="18" x="209494" y="115818" z="-1220" /></way>
</track>
<!-- <FlyToLocation ToX="219719" ToY="119344" ToZ="-1075" Type="2"/> -->
<track trackId="19" zone="Creation Garden (next) -> " ToX="219719" ToY="119344" ToZ="-1075">
<way id="0">
<jumpLoc next="1" x="217793" y="119365" z="-1412" />
<jumpLoc next="4" x="219721" y="117432" z="-1191" />
</way>
<way id="1">
<jumpLoc next="-1" x="217791" y="119065" z="-1764" />
<jumpLoc next="2" x="215886" y="119357" z="-1071" />
</way>
<way id="2"><jumpLoc next="3" x="213693" y="119065" z="-897" /></way>
<way id="3"><jumpLoc next="-1" x="213692" y="118426" z="-1026" /></way>
<way id="4"><jumpLoc next="5" x="218586" y="116649" z="-909" /></way>
<way id="5"><jumpLoc next="6" x="218072" y="115261" z="-1341" /></way>
<way id="6">
<jumpLoc next="7" x="218950" y="115019" z="-715" />
<jumpLoc next="11" x="215865" y="114365" z="-342" />
</way>
<way id="7"><jumpLoc next="8" x="219675" y="114155" z="-819" /></way>
<way id="8"><jumpLoc next="9" x="220943" y="113582" z="-1202" /></way>
<way id="9"><jumpLoc next="10" x="221926" y="111849" z="-1236" /></way>
<way id="10"><jumpLoc next="-1" x="221489" y="111141" z="-1680" /></way>
<way id="11"><jumpLoc next="12" x="215148" y="113648" z="-490" /></way>
<way id="12"><jumpLoc next="13" x="214493" y="112627" z="-40" /></way>
<way id="13"><jumpLoc next="14" x="211524" y="111880" z="-1136" /></way>
<way id="14"><jumpLoc next="15" x="209650" y="112165" z="-1474" /></way>
<way id="15"><jumpLoc next="16" x="207541" y="112487" z="-1807" /></way>
<way id="16"><jumpLoc next="-1" x="207825" y="112263" z="-2060" /></way>
</track>
<!-- <FlyToLocation ToX="-114646" ToY="226867" ToZ="-2860" Type="2"/> -->
<track trackId="20" zone="Tomb of souls -> Talking Island Village" ToX="-114646" ToY="226867" ToZ="-2860">
<way id="0"><jumpLoc next="1" x="-115382" y="228370" z="-2688" /></way>
<way id="1"><jumpLoc next="2" x="-115677" y="230311" z="-3592" /></way>
<way id="2"><jumpLoc next="3" x="-115470" y="232174" z="-3120" /></way>
<way id="3"><jumpLoc next="4" x="-115605" y="234757" z="-2824" /></way>
<way id="4"><jumpLoc next="5" x="-114147" y="236166" z="-2912" /></way>
<way id="5"><jumpLoc next="6" x="-112827" y="237548" z="-2776" /></way>
<way id="6"><jumpLoc next="7" x="-112374" y="237981" z="-2664" /></way>
<way id="7"><jumpLoc next="8" x="-111860" y="239665" z="-2920" /></way>
<way id="8"><jumpLoc next="9" x="-110831" y="241012" z="-2744" /></way>
<way id="9"><jumpLoc next="10" x="-110581" y="242703" z="-2408" /></way>
<way id="10"><jumpLoc next="11" x="-110901" y="243271" z="-2008" /></way>
<way id="11"><jumpLoc next="12" x="-110839" y="244080" z="-1560" /></way>
<way id="12"><jumpLoc next="13" x="-111069" y="245466" z="-1880" /></way>
<way id="13"><jumpLoc next="14" x="-111952" y="247788" z="-1984" /></way>
<way id="14"><jumpLoc next="15" x="-112756" y="249137" z="-1784" /></way>
<way id="15"><jumpLoc next="16" x="-113540" y="253377" z="-1208" /></way>
<way id="16"><jumpLoc next="17" x="-113501" y="254172" z="-1200" /></way>
<way id="17"><jumpLoc next="18" x="-113124" y="255947" z="-1136" /></way>
<way id="18"><jumpLoc next="-1" x="-112093" y="256836" z="-1440" /></way>
</track>
<!-- <FlyToLocation ToX="-15591" ToY="30748" ToZ="-3600" Type="2"/> -->
<track trackId="21" zone="Dark Elf Forest -> Blood Swamp / Monster altar" ToX="-15591" ToY="30748" ToZ="-3600">
<way id="0">
<jumpLoc next="-1" x="-15778" y="30638" z="-3616" />
<jumpLoc next="1" x="-15076" y="32311" z="-3560" />
<jumpLoc next="7" x="-14368" y="25609" z="-3592" />
</way>
<way id="1"><jumpLoc next="2" x="-14569" y="33547" z="-3504" /></way>
<way id="2"><jumpLoc next="3" x="-13977" y="36452" z="-1251" /></way>
<way id="3"><jumpLoc next="4" x="-15379" y="38120" z="-3648" /></way>
<way id="4"><jumpLoc next="5" x="-14032" y="41275" z="-3704" /></way>
<way id="5"><jumpLoc next="6" x="-14602" y="43737" z="-3584" /></way>
<way id="6"><jumpLoc next="-1" x="-14602" y="43737" z="-3584" /></way>
<way id="7"><jumpLoc next="8" x="-15510" y="23868" z="-3712" /></way>
<way id="8"><jumpLoc next="9" x="-16195" y="22424" z="-3696" /></way>
<way id="9"><jumpLoc next="10" x="-13982" y="22124" z="-3616" /></way>
<way id="10"><jumpLoc next="-1" x="-13982" y="22124" z="-3616" /></way>
</track>
<!-- <FlyToLocation ToX="-150678" ToY="252758" ToZ="-1369" Type="2"/> -->
<track trackId="22" zone="Old Lu Dingfei empty boat dock -> Kese DeGeneres League Joint Base" ToX="-150678" ToY="252758" ToZ="-1369">
<way id="0"><jumpLoc next="1" x="-152694" y="253517" z="-825" /></way>
<way id="1"><jumpLoc next="2" x="-155227" y="253348" z="-1305" /></way>
<way id="2"><jumpLoc next="3" x="-156214" y="255930" z="-761" /></way>
<way id="3"><jumpLoc next="4" x="-158959" y="254966" z="-477" /></way>
<way id="4"><jumpLoc next="5" x="-160496" y="256829" z="-990" /></way>
<way id="5"><jumpLoc next="6" x="-163173" y="255571" z="-301" /></way>
<way id="6"><jumpLoc next="7" x="-166964" y="258460" z="170" /></way>
<way id="7"><jumpLoc next="8" x="-168406" y="255825" z="714" /></way>
<way id="8"><jumpLoc next="9" x="-167861" y="253295" z="1770" /></way>
<way id="9"><jumpLoc next="10" x="-170385" y="251797" z="778" /></way>
<way id="10"><jumpLoc next="11" x="-172266" y="252408" z="1269" /></way>
<way id="11"><jumpLoc next="12" x="-170225" y="249979" z="2408" /></way>
<way id="12"><jumpLoc next="13" x="-173368" y="249680" z="2198" /></way>
<way id="13"><jumpLoc next="14" x="-172144" y="245589" z="2397" /></way>
<way id="14"><jumpLoc next="15" x="-175238" y="242801" z="2031" /></way>
<way id="15"><jumpLoc next="16" x="-178198" y="243477" z="1162" /></way>
<way id="16"><jumpLoc next="17" x="-180790" y="243953" z="2666" /></way>
<way id="17"><jumpLoc next="18" x="-182344" y="242399" z="2122" /></way>
<way id="18"><jumpLoc next="19" x="-184413" y="243376" z="3114" /></way>
<way id="19"><jumpLoc next="-1" x="-186243" y="243560" z="2608" /></way>
</track>
<!-- <FlyToLocation ToX="-184413" ToY="243376" ToZ="3114" Type="2"/> -->
<track trackId="23" zone="Kese DeGeneres League Joint Base -> Old Lu Dingfei empty boat dock" ToX="-184413" ToY="243376" ToZ="3114">
<way id="0"><jumpLoc next="1" x="-182344" y="242399" z="2122" /></way>
<way id="1"><jumpLoc next="2" x="-180790" y="243953" z="2666" /></way>
<way id="2"><jumpLoc next="3" x="-178198" y="243477" z="1162" /></way>
<way id="3"><jumpLoc next="4" x="-175238" y="242801" z="2031" /></way>
<way id="4"><jumpLoc next="5" x="-172144" y="245589" z="2397" /></way>
<way id="5"><jumpLoc next="6" x="-173368" y="249680" z="2198" /></way>
<way id="6"><jumpLoc next="7" x="-170225" y="249979" z="2408" /></way>
<way id="7"><jumpLoc next="8" x="-172266" y="252408" z="1269" /></way>
<way id="8"><jumpLoc next="9" x="-170385" y="251797" z="778" /></way>
<way id="9"><jumpLoc next="10" x="-167861" y="253295" z="1770" /></way>
<way id="10"><jumpLoc next="11" x="-168406" y="255825" z="714" /></way>
<way id="11"><jumpLoc next="12" x="-166964" y="258460" z="170" /></way>
<way id="12"><jumpLoc next="13" x="-163173" y="255571" z="-301" /></way>
<way id="13"><jumpLoc next="14" x="-160496" y="256829" z="-990" /></way>
<way id="14"><jumpLoc next="15" x="-158959" y="254966" z="-477" /></way>
<way id="15"><jumpLoc next="16" x="-156214" y="255930" z="-761" /></way>
<way id="16"><jumpLoc next="17" x="-155227" y="253348" z="-1305" /></way>
<way id="17"><jumpLoc next="18" x="-152694" y="253517" z="-825" /></way>
<way id="18"><jumpLoc next="19" x="-150678" y="252758" z="-1369" /></way>
<way id="19"><jumpLoc next="-1" x="-149482" y="253328" z="-120" /></way>
</track>
<!-- <FlyToLocation ToX="46888" ToY="154499" ToZ="-1928" Type="2"/> -->
<track trackId="24" zone="Execution ground floor (south) -> Torture chamber upper (south)" ToX="46888" ToY="154499" ToZ="-1928">
<way id="0">
<jumpLoc next="-1" x="46891" y="154392" z="-1928" />
<jumpLoc next="1" x="46455" y="156097" z="-864" />
</way>
<way id="1"><jumpLoc next="2" x="45213" y="157407" z="-864" /></way>
<way id="2"><jumpLoc next="3" x="44882" y="156814" z="-1048" /></way>
<way id="3"><jumpLoc next="-1" x="44882" y="156814" z="-1048" /></way>
</track>
<!-- <FlyToLocation ToX="45092" ToY="154679" ToZ="-1072" Type="2"/> -->
<track trackId="25" zone="Execution ground upper (South) -> Execution ground floor (south)" ToX="45092" ToY="154679" ToZ="-1072">
<way id="0"><jumpLoc next="1" x="45531" y="154481" z="-864" /></way>
<way id="1"><jumpLoc next="2" x="43293" y="153730" z="-1520" /></way>
<way id="2"><jumpLoc next="3" x="43679" y="152511" z="-1936" /></way>
<way id="3"><jumpLoc next="-1" x="43679" y="152511" z="-1936" /></way>
</track>
<!-- <FlyToLocation ToX="44379" ToY="142183" ToZ="-2552" Type="2"/> -->
<track trackId="26" zone="Execution ground floor (north) -> Execution ground level (North)" ToX="44379" ToY="142183" ToZ="-2552">
<way id="0"><jumpLoc next="1" x="41350" y="142449" z="-2288" /></way>
<way id="1"><jumpLoc next="2" x="40307" y="139914" z="-1928" /></way>
<way id="2"><jumpLoc next="3" x="40816" y="138463" z="-1232" /></way>
<way id="3"><jumpLoc next="4" x="41264" y="139373" z="-1280" /></way>
<way id="4"><jumpLoc next="5" x="43048" y="138903" z="-1280" /></way>
<way id="5"><jumpLoc next="6" x="42845" y="139463" z="-1464" /></way>
<way id="6"><jumpLoc next="-1" x="42845" y="139463" z="-1464" /></way>
</track>
<!-- <FlyToLocation ToX="15415" ToY="143182" ToZ="-2688" Type="2"/> -->
<track trackId="27" zone="Dean towns -> Jiluo De fortress Simon / North Gate" ToX="14655" ToY="143185" ToZ="-2600">
<way id="0">
<jumpLoc next="-1" x="14905" y="143251" z="-2665" />
<jumpLoc next="1" x="16113" y="142617" z="-2336" />
<jumpLoc next="8" x="19583" y="144840" z="-2672" />
</way>
<way id="1"><jumpLoc next="2" x="19629" y="143349" z="-2728" /></way>
<way id="2"><jumpLoc next="3" x="24557" y="142920" z="-2848" /></way>
<way id="3"><jumpLoc next="4" x="26465" y="143645" z="-2592" /></way>
<way id="4"><jumpLoc next="5" x="27431" y="144696" z="-2664" /></way>
<way id="5"><jumpLoc next="6" x="29360" y="146178" z="-2288" /></way>
<way id="6"><jumpLoc next="7" x="33206" y="144729" z="-3408" /></way>
<way id="7"><jumpLoc next="-1" x="33206" y="144729" z="-3408" /></way>
<way id="8"><jumpLoc next="9" x="20292" y="143878" z="-2776" /></way>
<way id="9"><jumpLoc next="10" x="20877" y="144338" z="-2632" /></way>
<way id="10"><jumpLoc next="11" x="21374" y="143669" z="-2936" /></way>
<way id="11"><jumpLoc next="12" x="22302" y="139026" z="-3376" /></way>
<way id="12"><jumpLoc next="13" x="23489" y="136897" z="-3192" /></way>
<way id="13"><jumpLoc next="14" x="26637" y="137534" z="-3192" /></way>
<way id="14"><jumpLoc next="15" x="27631" y="134332" z="-2568" /></way>
<way id="15"><jumpLoc next="16" x="28642" y="133682" z="-2616" /></way>
<way id="16"><jumpLoc next="17" x="30860" y="134905" z="-3088" /></way>
<way id="17"><jumpLoc next="18" x="31406" y="133822" z="-3080" /></way>
<way id="18"><jumpLoc next="19" x="31546" y="133000" z="-3112" /></way>
<way id="19"><jumpLoc next="20" x="32056" y="133043" z="-2936" /></way>
<way id="20"><jumpLoc next="21" x="34572" y="132706" z="-2904" /></way>
<way id="21"><jumpLoc next="22" x="37324" y="131962" z="-2912" /></way>
<way id="22"><jumpLoc next="23" x="40739" y="129898" z="-2912" /></way>
<way id="23"><jumpLoc next="24" x="46737" y="132039" z="-3224" /></way>
<way id="24"><jumpLoc next="25" x="50467" y="133963" z="-1952" /></way>
<way id="25"><jumpLoc next="26" x="54118" y="135247" z="-1376" /></way>
<way id="26"><jumpLoc next="27" x="54477" y="138044" z="-2536" /></way>
<way id="27"><jumpLoc next="-1" x="54477" y="138044" z="-2536" /></way>
</track>
<!-- <FlyToLocation ToX="146365" ToY="19678" ToZ="-1952" Type="2"/> -->
<track trackId="28" zone="Aden town north -> Aden Town West" ToX="146365" ToY="19678" ToZ="-1952">
<way id="0"><jumpLoc next="1" x="145855" y="20160" z="-1197" /></way>
<way id="1"><jumpLoc next="2" x="147434" y="23748" z="-568" /></way>
<way id="2"><jumpLoc next="3" x="147455" y="25104" z="-568" /></way>
<way id="3">
<jumpLoc next="4" x="146063" y="27140" z="-1552" />
<jumpLoc next="7" x="148859" y="27169" z="-1552" />
</way>
<way id="4"><jumpLoc next="5" x="143409" y="25560" z="-1392" /></way>
<way id="5"><jumpLoc next="6" x="140277" y="25564" z="-2240" /></way>
<way id="6"><jumpLoc next="-1" x="140277" y="25564" z="-2240" /></way>
<way id="7"><jumpLoc next="8" x="151492" y="26898" z="-1248" /></way>
<way id="8"><jumpLoc next="9" x="152799" y="25529" z="-2144" /></way>
<way id="9"><jumpLoc next="-1" x="152799" y="25529" z="-2144" /></way>
</track>
<!-- <FlyToLocation ToX="153235" ToY="24565" ToZ="-2104" Type="2"/> -->
<track trackId="29" zone="Aden town Oriental -> Aden Town West" ToX="153235" ToY="24565" ToZ="-2104">
<way id="0"><jumpLoc next="1" x="151215" y="23809" z="-1256" /></way>
<way id="1"><jumpLoc next="2" x="149513" y="24697" z="-1320" /></way>
<way id="2">
<jumpLoc next="3" x="147930" y="26384" z="-1288" />
<jumpLoc next="8" x="148110" y="23755" z="-568" />
</way>
<way id="3"><jumpLoc next="4" x="146986" y="26402" z="-1288" /></way>
<way id="4"><jumpLoc next="5" x="145708" y="25394" z="-1512" /></way>
<way id="5"><jumpLoc next="6" x="143266" y="25584" z="-1392" /></way>
<way id="6"><jumpLoc next="7" x="142081" y="24439" z="-2240" /></way>
<way id="7"><jumpLoc next="-1" x="142081" y="24439" z="-2240" /></way>
<way id="8"><jumpLoc next="9" x="148510" y="20262" z="-1200" /></way>
<way id="9"><jumpLoc next="10" x="149000" y="16754" z="-1528" /></way>
<way id="10"><jumpLoc next="-1" x="149000" y="16754" z="-1528" /></way>
</track>
<!-- <FlyToLocation ToX="140400" ToY="25200" ToZ="-2208" Type="2"/> -->
<track trackId="30" zone="Aden Town West -> Aden town Orient" ToX="140400" ToY="25200" ToZ="-2208">
<way id="0"><jumpLoc next="1" x="143390" y="25209" z="-1512" /></way>
<way id="1"><jumpLoc next="2" x="146043" y="26667" z="-1552" /></way>
<way id="2">
<jumpLoc next="3" x="148853" y="27622" z="-1088" />
<jumpLoc next="6" x="146327" y="24394" z="-2008" />
</way>
<way id="3"><jumpLoc next="4" x="151261" y="26957" z="-1240" /></way>
<way id="4"><jumpLoc next="5" x="153312" y="24995" z="-2112" /></way>
<way id="5"><jumpLoc next="-1" x="153312" y="24995" z="-2112" /></way>
<way id="6"><jumpLoc next="7" x="145825" y="22984" z="-1384" /></way>
<way id="7"><jumpLoc next="8" x="146174" y="20168" z="-1200" /></way>
<way id="8"><jumpLoc next="9" x="145943" y="16913" z="-1568" /></way>
<way id="9"><jumpLoc next="-1" x="145943" y="16913" z="-1568" /></way>
</track>
<!-- <FlyToLocation ToX="28015" ToY="-49177" ToZ="-1280" Type="2"/> -->
<track trackId="31" zone="Lu because outside the city -> Lu because of the city on the 1st district" ToX="28015" ToY="-49177" ToZ="-1280">
<way id="0"><jumpLoc next="1" x="27814" y="-49529" z="-1152" /></way>
<way id="1"><jumpLoc next="2" x="26936" y="-51106" z="-1080" /></way>
<way id="2"><jumpLoc next="3" x="23112" y="-50806" z="-1560" /></way>
<way id="3"><jumpLoc next="4" x="22582" y="-50670" z="-1256" /></way>
<way id="4">
<jumpLoc next="5" x="22551" y="-49385" z="-1104" />
<jumpLoc next="6" x="22096" y="-49760" z="-1296" />
</way>
<way id="5"><jumpLoc next="-1" x="22096" y="-49760" z="-1296" /></way>
<way id="6"><jumpLoc next="7" x="22096" y="-48413" z="-1296" /></way>
<way id="7"><jumpLoc next="-1" x="22096" y="-48413" z="-1296" /></way>
</track>
<!-- <FlyToLocation ToX="22263" ToY="-50416" ToZ="-1296" Type="2"/> -->
<track trackId="32" zone="Lu because of the city -> Lu outside the city because No. 1 region" ToX="22263" ToY="-50416" ToZ="-1296">
<way id="0"><jumpLoc next="1" x="22562" y="-50147" z="-1256" /></way>
<way id="1"><jumpLoc next="2" x="22228" y="-50718" z="-904" /></way>
<way id="2"><jumpLoc next="3" x="24093" y="-49345" z="-1128" /></way>
<way id="3"><jumpLoc next="4" x="26957" y="-49328" z="-1112" /></way>
<way id="4">
<jumpLoc next="5" x="27314" y="-51562" z="-1352" />
<jumpLoc next="6" x="28697" y="-48710" z="-1352" />
</way>
<way id="5"><jumpLoc next="-1" x="27314" y="-51562" z="-1352" /></way>
<way id="6"><jumpLoc next="-1" x="28697" y="-48710" z="-1352" /></way>
</track>
<!-- <FlyToLocation ToX="40741" ToY="-52143" ToZ="-832" Type="2"/> -->
<track trackId="33" zone="Lu because towns -> Lu outside the city because of the 1st district" ToX="40741" ToY="-52143" ToZ="-832">
<way id="0"><jumpLoc next="1" x="39753" y="-52598" z="-800" /></way>
<way id="1"><jumpLoc next="2" x="37910" y="-52776" z="-976" /></way>
<way id="2"><jumpLoc next="3" x="35820" y="-51690" z="-1056" /></way>
<way id="3"><jumpLoc next="4" x="34411" y="-53193" z="-1208" /></way>
<way id="4"><jumpLoc next="5" x="33209" y="-50683" z="-392" /></way>
<way id="5"><jumpLoc next="6" x="31584" y="-50164" z="-608" /></way>
<way id="6">
<jumpLoc next="7" x="28992" y="-48644" z="-1336" />
<jumpLoc next="8" x="27762" y="-50166" z="-1304" />
</way>
<way id="7"><jumpLoc next="-1" x="28992" y="-48644" z="-1336" /></way>
<way id="8"><jumpLoc next="-1" x="27762" y="-50166" z="-1304" /></way>
</track>
<!-- <FlyToLocation ToX="83964" ToY="147720" ToZ="-3400" Type="2"/> -->
<track trackId="34" zone="Rocks towns -> Jiluo De fortress Eastgate / North Gate" ToX="83964" ToY="147720" ToZ="-3400">
<way id="0">
<jumpLoc next="-1" x="83951" y="147548" z="-3400" />
<jumpLoc next="1" x="81756" y="148447" z="-3136" />
<jumpLoc next="10" x="82884" y="146666" z="-2936" />
</way>
<way id="1"><jumpLoc next="2" x="80668" y="148470" z="-2952" /></way>
<way id="2"><jumpLoc next="3" x="78580" y="148107" z="-2448" /></way>
<way id="3"><jumpLoc next="4" x="75786" y="150098" z="-2976" /></way>
<way id="4"><jumpLoc next="5" x="73158" y="151248" z="-2400" /></way>
<way id="5"><jumpLoc next="6" x="74529" y="154253" z="-2272" /></way>
<way id="6"><jumpLoc next="7" x="69588" y="153160" z="-2096" /></way>
<way id="7"><jumpLoc next="8" x="61029" y="156010" z="-1776" /></way>
<way id="8"><jumpLoc next="9" x="59874" y="154371" z="-2640" /></way>
<way id="9"><jumpLoc next="-1" x="59874" y="154371" z="-2640" /></way>
<way id="10"><jumpLoc next="11" x="82054" y="145324" z="-2384" /></way>
<way id="11"><jumpLoc next="12" x="79742" y="145440" z="-2880" /></way>
<way id="12"><jumpLoc next="13" x="77639" y="143755" z="-3376" /></way>
<way id="13"><jumpLoc next="14" x="75335" y="142661" z="-3608" /></way>
<way id="14"><jumpLoc next="15" x="73213" y="141394" z="-3528" /></way>
<way id="15"><jumpLoc next="16" x="71292" y="141068" z="-3120" /></way>
<way id="16"><jumpLoc next="17" x="66851" y="138289" z="-2520" /></way>
<way id="17"><jumpLoc next="18" x="60557" y="131728" z="-1616" /></way>
<way id="18"><jumpLoc next="19" x="54395" y="137376" z="-2592" /></way>
<way id="19"><jumpLoc next="-1" x="54395" y="137376" z="-2592" /></way>
</track>
<!-- <FlyToLocation ToX="49080" ToY="142612" ToZ="-3656" Type="2"/> -->
<track trackId="35" zone="Execution ground floor (north) -> Execution ground floor (north)" ToX="49080" ToY="142612" ToZ="-3656">
<way id="0">
<jumpLoc next="-1" x="48953" y="142850" z="-3680" />
<jumpLoc next="1" x="48767" y="139432" z="-2048" />
</way>
<way id="1"><jumpLoc next="2" x="49425" y="140227" z="-2920" /></way>
<way id="2"><jumpLoc next="-1" x="49425" y="140227" z="-2920" /></way>
</track>
<!-- <FlyToLocation ToX="50803" ToY="152847" ToZ="-3544" Type="2"/> -->
<track trackId="36" zone="Execution ground floor (south) -> Execution ground floor (south)" ToX="50803" ToY="152847" ToZ="-3544">
<way id="0">
<jumpLoc next="-1" x="50498" y="152819" z="-3568" />
<jumpLoc next="1" x="51559" y="155203" z="-1840" />
</way>
<way id="1"><jumpLoc next="2" x="50051" y="155608" z="-2744" /></way>
<way id="2"><jumpLoc next="-1" x="50051" y="155608" z="-2744" /></way>
</track>
<!-- <FlyToLocation ToX="-74601" ToY="53172" ToZ="-3689" Type="2"/> -->
<track trackId="37" zone="Harbor Island souls -> 2nd base / 3rd base" ToX="-74601" ToY="53172" ToZ="-3689">
<way id="0">
<jumpLoc next="-1" x="-74569" y="53397" z="-3680" />
<jumpLoc next="1" x="-79081" y="53684" z="-2361" />
<jumpLoc next="6" x="-74332" y="51980" z="-2985" />
</way>
<way id="1"><jumpLoc next="2" x="-85716" y="52123" z="-1496" /></way>
<way id="2"><jumpLoc next="3" x="-89465" y="51188" z="-2105" /></way>
<way id="3"><jumpLoc next="4" x="-92585" y="52596" z="-1529" /></way>
<way id="4"><jumpLoc next="5" x="-94777" y="52484" z="-1609" /></way>
<way id="5"><jumpLoc next="-1" x="-94874" y="51974" z="-2024" /></way>
<way id="6"><jumpLoc next="7" x="-74701" y="50543" z="-3285" /></way>
<way id="7"><jumpLoc next="8" x="-73919" y="47882" z="-2677" /></way>
<way id="8"><jumpLoc next="9" x="-73580" y="46015" z="-2677" /></way>
<way id="9"><jumpLoc next="10" x="-75310" y="43052" z="-1670" /></way>
<way id="10"><jumpLoc next="11" x="-82173" y="40927" z="-1917" /></way>
<way id="11"><jumpLoc next="12" x="-84946" y="39482" z="-1353" /></way>
<way id="12"><jumpLoc next="13" x="-84989" y="37659" z="-1853" /></way>
<way id="13"><jumpLoc next="-1" x="-86079" y="37178" z="-2048" /></way>
</track>
<!-- <FlyToLocation ToX="-86059" ToY="37025" ToZ="-2053" Type="2"/> -->
<track trackId="38" zone="3rd base -> souls Island Harbor / 2nd base" ToX="-86059" ToY="37025" ToZ="-2053">
<way id="0">
<jumpLoc next="-1" x="-86075" y="36737" z="-2053" />
<jumpLoc next="1" x="-84946" y="39482" z="-1353" />
<jumpLoc next="8" x="-87890" y="40798" z="-1581" />
</way>
<way id="1"><jumpLoc next="2" x="-82173" y="40927" z="-1917" /></way>
<way id="2"><jumpLoc next="3" x="-75310" y="43052" z="-1670" /></way>
<way id="3"><jumpLoc next="4" x="-73580" y="46015" z="-2677" /></way>
<way id="4"><jumpLoc next="5" x="-73919" y="47882" z="-2677" /></way>
<way id="5"><jumpLoc next="6" x="-74701" y="50543" z="-3285" /></way>
<way id="6"><jumpLoc next="7" x="-74332" y="51980" z="-2985" /></way>
<way id="7"><jumpLoc next="-1" x="-74569" y="53397" z="-3680" /></way>
<way id="8"><jumpLoc next="9" x="-89644" y="42483" z="-1124" /></way>
<way id="9"><jumpLoc next="10" x="-89643" y="47813" z="-1189" /></way>
<way id="10"><jumpLoc next="11" x="-91354" y="48907" z="-1165" /></way>
<way id="11"><jumpLoc next="12" x="-93768" y="52185" z="-1309" /></way>
<way id="12"><jumpLoc next="13" x="-95291" y="51610" z="-1642" /></way>
<way id="13"><jumpLoc next="-1" x="-94802" y="51981" z="-2024" /></way>
</track>
<!-- <FlyToLocation ToX="-95049" ToY="52004" ToZ="-2025" Type="2"/> -->
<track trackId="39" zone="Second base -> souls Island Port / 3rd base" ToX="-95049" ToY="52004" ToZ="-2025">
<way id="0">
<jumpLoc next="-1" x="-95273" y="52196" z="-2025" />
<jumpLoc next="1" x="-92585" y="52596" z="-1529" />
<jumpLoc next="6" x="-96003" y="48814" z="-1024" />
</way>
<way id="1"><jumpLoc next="2" x="-89465" y="51188" z="-2105" /></way>
<way id="2"><jumpLoc next="3" x="-85716" y="52123" z="-1496" /></way>
<way id="3"><jumpLoc next="4" x="-79081" y="53684" z="-2361" /></way>
<way id="4"><jumpLoc next="5" x="-75129" y="53060" z="-3289" /></way>
<way id="5"><jumpLoc next="-1" x="-74720" y="53302" z="-3680" /></way>
<way id="6"><jumpLoc next="7" x="-93820" y="49460" z="-1456" /></way>
<way id="7"><jumpLoc next="8" x="-93115" y="48057" z="-1320" /></way>
<way id="8"><jumpLoc next="9" x="-92117" y="45035" z="-1457" /></way>
<way id="9"><jumpLoc next="10" x="-89329" y="42534" z="-1104" /></way>
<way id="10"><jumpLoc next="11" x="-87890" y="40798" z="-1581" /></way>
<way id="11"><jumpLoc next="12" x="-86589" y="37047" z="-1689" /></way>
<way id="12"><jumpLoc next="-1" x="-86079" y="37178" z="-2048" /></way>
</track>
</list>

View File

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Documentation: -->
<!-- defaultPriceConfig -> ID of one of the price configs defined to be used when NPC has no price config. Can be ANY of the defined priceConfigs. Cannot be ommited, althrough you can emulate this by creating a dummy priceConfig. -->
<!-- id -> Defines the ID for relational references. -->
<!-- name -> Name of the area, for human-friendlyness and debugging, cannot be ommited. -->
<!-- baseTax -> Used on merchant item price calculation (see formula in the end), cannot be ommited. -->
<!-- castleId -> ID of the castle that controls merchants of this config, castle tax will apply to merchants price. Can be ommited (causes it to assume that no castle controls this config). -->
<!-- zoneId -> Attaches a given Town Zone to this priceConfig for convenience. -->
<!-- Merchant NPCs that dont explicit define an priceConfig will check if they are inside of the zone of an priceConfig, if yes that priceConfig is used for that npc. Can be ommited, then no NPC will be added based on zone (ie priceConfig direct assigned to NPCs through config or when used as the default priceConfig). -->
<!-- Merchant Price Formula price = baseItemPrice * (1 + baseTax/100 + castleTax/100) -->
<merchantPriceConfig defaultPriceConfig="18" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/MerchantPriceConfig.xsd">
<priceConfig id="0" name="Giran Town" baseTax="10" castleId="3" zoneId="11020" />
<priceConfig id="1" name="DE Village" baseTax="15" castleId="4" zoneId="11021" />
<priceConfig id="2" name="Talking Island" baseTax="15" castleId="1" zoneId="11022" />
<priceConfig id="3" name="Elven Village" baseTax="15" castleId="4" zoneId="11023" />
<priceConfig id="4" name="Orc Village" baseTax="15" castleId="9" zoneId="11024" />
<priceConfig id="5" name="Gludin Village" baseTax="20" castleId="1" zoneId="11025" />
<priceConfig id="6" name="Dwarven Village" baseTax="15" castleId="9" zoneId="11026" />
<priceConfig id="7" name="Kamael Village" baseTax="15" castleId="5" zoneId="11038" />
<priceConfig id="8" name="Gludio Town" baseTax="20" castleId="1" zoneId="11027" />
<priceConfig id="9" name="Dion Town" baseTax="20" castleId="2" zoneId="11028" />
<priceConfig id="10" name="Oren Town" baseTax="15" castleId="4" zoneId="11029" />
<priceConfig id="11" name="Hunters Village" baseTax="30" castleId="5" zoneId="11030" />
<priceConfig id="12" name="Aden Town" baseTax="20" castleId="5" zoneId="11031" />
<priceConfig id="13" name="Goddard Town" baseTax="20" castleId="7" zoneId="11032" />
<priceConfig id="14" name="Rune Town" baseTax="20" castleId="8" zoneId="11033" />
<priceConfig id="15" name="Heine Town" baseTax="20" castleId="6" zoneId="11034" />
<priceConfig id="16" name="Schuttgart Town" baseTax="20" castleId="9" zoneId="11035" />
<priceConfig id="17" name="Floran Village" baseTax="50" castleId="2" zoneId="11036" />
<priceConfig id="18" name="Neutral Territory" baseTax="50" />
<priceConfig id="19" name="Gludio Castle" baseTax="10" castleId="1" zoneId="11200" />
<priceConfig id="20" name="Dion Castle" baseTax="10" castleId="2" zoneId="11201" />
<priceConfig id="21" name="Giran Castle" baseTax="10" castleId="3" zoneId="11202" />
<priceConfig id="22" name="Oren Castle" baseTax="10" castleId="4" zoneId="11203" />
<priceConfig id="23" name="Aden Castle" baseTax="10" castleId="5" zoneId="11204" />
<priceConfig id="24" name="Innadril Castle" baseTax="10" castleId="6" zoneId="11205" />
<priceConfig id="25" name="Goddard Castle" baseTax="10" castleId="7" zoneId="11206" />
<priceConfig id="26" name="Rune Castle" baseTax="10" castleId="8" zoneId="11207" />
<priceConfig id="27" name="Schuttgart Castle" baseTax="10" castleId="9" zoneId="11208" />
</merchantPriceConfig>

View File

@ -0,0 +1,735 @@
<?xml version="1.0" encoding="UTF-8"?>
<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/PrimeShop.xsd">
<item id="1010030" cat="2" paymentType="0" price="8" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20332" count="5000" /> <!-- Beast Soulshot-->
</item>
<item id="1010031" cat="2" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20334" count="5000" /> <!-- Blessed Beast Spiritshot-->
</item>
<item id="1010235" cat="6" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22744" count="1" /> <!-- Vitality Suspending Potion Pack-->
</item>
<item id="1010394" cat="6" paymentType="0" price="60" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22979" count="1" /> <!-- SP Rune 50% Pack (1-hour)-->
</item>
<item id="1010520" cat="5" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23393" count="1" /> <!-- Brilliant Talisman Pack-->
</item>
<item id="1010609" cat="6" paymentType="0" price="60" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23295" count="1" /> <!-- Drop Rate Rune 200% Pack (1-hour)-->
</item>
<item id="1010848" cat="2" paymentType="0" price="23" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22500" count="1" /> <!-- My Teleport Scroll 10-unit Pack-->
</item>
<item id="1010857" cat="2" paymentType="0" price="39" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22932" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 85 Solo-->
</item>
<item id="1010891" cat="2" paymentType="0" price="39" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21210" count="3" /> <!-- MP Recovery Potion-->
</item>
<item id="1010895" cat="2" paymentType="0" price="39" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="36270" count="1" /> <!-- Entrance Pass: Teredor-->
</item>
<item id="1010929" cat="2" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22576" count="1" /> <!-- Mysterious Soulshot Large Pack (S-grade)-->
</item>
<item id="1010972" cat="6" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21212" count="1" /> <!-- Vitality Recovering Potion-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1010973" cat="6" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22980" count="1" /> <!-- XP Rune I (Lv. 1-85) 100% Pack (1-hour)-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1010974" cat="6" paymentType="0" price="160" panelType="0" recommended="4" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22966" count="1" /> <!-- Vitality Maintaining Potion (1-hour)-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1010975" cat="6" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22883" count="1" /> <!-- Scroll: Replenish Vitality-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1010976" cat="6" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="17206" count="1" /> <!-- XP Buff 50% (1-hour)-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1010977" cat="6" paymentType="0" price="290" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="17211" count="1" /> <!-- XP Buff 50% (4-hour)-->
<item itemId="23805" count="4" /> <!-- Hero Coin-->
</item>
<item id="1010978" cat="6" paymentType="0" price="120" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22981" count="1" /> <!-- XP Rune I (Lv. 1-85) 200% Pack (1-hour)-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1010979" cat="6" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22884" count="1" /> <!-- Scroll: Replenish Vitality (High-grade)-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1010980" cat="6" paymentType="0" price="640" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22885" count="1" /> <!-- Scroll: Replenish Vitality (Top-grade)-->
<item itemId="23805" count="8" /> <!-- Hero Coin-->
</item>
<item id="1010981" cat="6" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23284" count="1" /> <!-- SP Rune 100% Pack (1-hour)-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1010982" cat="6" paymentType="0" price="960" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23285" count="1" /> <!-- SP Rune 100% Pack (7-day)-->
<item itemId="23805" count="13" /> <!-- Hero Coin-->
</item>
<item id="1010983" cat="6" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23287" count="1" /> <!-- SP Rune 200% Pack (1-hour)-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1010984" cat="6" paymentType="0" price="1920" panelType="0" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23288" count="1" /> <!-- SP Rune 200% Pack (7-day)-->
<item itemId="23805" count="26" /> <!-- Hero Coin-->
</item>
<item id="1010985" cat="6" paymentType="0" price="100" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22906" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (1-hour)-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1010986" cat="6" paymentType="0" price="1120" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20553" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (7-day)-->
<item itemId="23805" count="15" /> <!-- Hero Coin-->
</item>
<item id="1010987" cat="6" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23277" count="1" /> <!-- XP Rune III (Lv. 1-99) 100% Pack (1-hour)-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1010988" cat="6" paymentType="0" price="2240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23278" count="1" /> <!-- XP Rune III (Lv. 1-99) 100% Pack (7-day)-->
<item itemId="23805" count="32" /> <!-- Hero Coin-->
</item>
<item id="1010989" cat="6" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23280" count="1" /> <!-- XP Rune III (Lv. 1-99) 200% Pack (1-hour)-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1010990" cat="6" paymentType="0" price="4480" panelType="0" recommended="4" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23281" count="1" /> <!-- XP Rune III (Lv. 1-99) 200% Pack (7-day)-->
<item itemId="23805" count="67" /> <!-- Hero Coin-->
</item>
<item id="1010991" cat="6" paymentType="0" price="640" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20559" count="1" /> <!-- SP Rune 50% Pack (7-day)-->
<item itemId="23805" count="8" /> <!-- Hero Coin-->
</item>
<item id="1010992" cat="6" paymentType="0" price="560" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="7" /> <!-- Hero Coin-->
<item itemId="34043" count="1" /> <!-- XP Rune I (Lv. 1-85) 100% Pack (7-day)-->
</item>
<item id="1010993" cat="6" paymentType="0" price="1199" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="17" /> <!-- Hero Coin-->
<item itemId="34046" count="1" /> <!-- XP Rune I (Lv. 1-85) 200% Pack (7-day)-->
</item>
<item id="1010994" cat="6" paymentType="0" price="299" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23389" count="1" /> <!-- XP Rune II (Lv. 1-95) 100% Pack (1-hour)-->
<item itemId="23805" count="4" /> <!-- Hero Coin-->
</item>
<item id="1010995" cat="6" paymentType="0" price="1499" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="21" /> <!-- Hero Coin-->
<item itemId="35977" count="1" /> <!-- XP Rune II (Lv. 1-95) 100% Pack (7-day) - Event-->
</item>
<item id="1010996" cat="6" paymentType="0" price="599" panelType="0" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22774" count="1" /> <!-- Drop Rate Rune 200% Pack (7-day)-->
<item itemId="23805" count="8" /> <!-- Hero Coin-->
</item>
<item id="1010997" cat="4" paymentType="0" price="2400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23133" count="1" /> <!-- Gender Change Ticket-->
<item itemId="23805" count="33" /> <!-- Hero Coin-->
</item>
<item id="1010998" cat="4" paymentType="0" price="2400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23134" count="1" /> <!-- Name Change Ticket-->
<item itemId="23805" count="33" /> <!-- Hero Coin-->
</item>
<item id="1010999" cat="4" paymentType="0" price="2400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="33" /> <!-- Hero Coin-->
<item itemId="23814" count="1" /> <!-- Chaos Essence Pack - 30-day-->
</item>
<item id="1011000" cat="4" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="17" /> <!-- Hero Coin-->
<item itemId="23815" count="1" /> <!-- Chaos Essence Pack (Dual Class) - 30-day-->
</item>
<item id="1011001" cat="4" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="13750" count="3" /> <!-- Warrior's Quick Healing Potion-->
<item itemId="20553" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (7-day)-->
<item itemId="21037" count="10" /> <!-- Warrior's Quick CP Potion-->
<item itemId="22768" count="1" /> <!-- Drop Rate Rune 50% Pack (7-day)-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
<item itemId="34082" count="1" /> <!-- Heavenly Cocktail-->
</item>
<item id="1011002" cat="4" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="13750" count="9" /> <!-- Warrior's Quick Healing Potion-->
<item itemId="21037" count="30" /> <!-- Warrior's Quick CP Potion-->
<item itemId="23276" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (30-day)-->
<item itemId="23296" count="1" /> <!-- Drop Rate Rune 50% Pack (30-day)-->
<item itemId="23805" count="17" /> <!-- Hero Coin-->
<item itemId="34082" count="3" /> <!-- Heavenly Cocktail-->
</item>
<item id="1011003" cat="4" paymentType="0" price="3600" panelType="0" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="13750" count="37" /> <!-- Warrior's Quick Healing Potion-->
<item itemId="21037" count="90" /> <!-- Warrior's Quick CP Potion-->
<item itemId="23279" count="1" /> <!-- XP Rune III (Lv. 1-99) 100% Pack (30-day)-->
<item itemId="23297" count="1" /> <!-- Drop Rate Rune 100% Pack (30-day)-->
<item itemId="23805" count="54" /> <!-- Hero Coin-->
<item itemId="34082" count="9" /> <!-- Heavenly Cocktail-->
</item>
<item id="1011004" cat="3" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21584" count="1" /> <!-- Festival's Cloak - Pitch Black Pack-->
<item itemId="23805" count="17" /> <!-- Hero Coin-->
</item>
<item id="1011005" cat="3" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21589" count="1" /> <!-- Festival's Cloak - Pearl White Pack-->
<item itemId="23805" count="17" /> <!-- Hero Coin-->
</item>
<item id="1011006" cat="3" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21421" count="1" /> <!-- Color Title Pack-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011007" cat="3" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="1" /> <!-- Hero Coin-->
<item itemId="36308" count="1" /> <!-- Beauty Shop Ticket-->
</item>
<item id="1011008" cat="3" paymentType="0" price="799" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23193" count="1" /> <!-- Ninja Hair Accessory Appearance Stone-->
<item itemId="23531" count="2" /> <!-- Automatic Appearance Stone: Japanese Weapon-->
<item itemId="23696" count="1" /> <!-- Ninja Top Appearance Stone - Modified Set-->
<item itemId="23697" count="1" /> <!-- Ninja Pants Appearance Stone - Modified Set-->
<item itemId="23698" count="1" /> <!-- Ninja Gloves Appearance Stone - Modified Set-->
<item itemId="23699" count="1" /> <!-- Ninja Shoes Appearance Stone - Modified Set-->
<item itemId="23805" count="10" /> <!-- Hero Coin-->
</item>
<item id="1011009" cat="3" paymentType="0" price="479" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23497" count="1" /> <!-- Metal Suit Hair Accessory Appearance Stone-->
<item itemId="23712" count="1" /> <!-- Metal Suit Top Appearance Stone - Modified Set-->
<item itemId="23713" count="1" /> <!-- Metal Suit Pants Appearance Stone - Modified Set-->
<item itemId="23714" count="1" /> <!-- Metal Suit Gloves Appearance Stone - Modified Set-->
<item itemId="23715" count="1" /> <!-- Metal Suit Shoes Appearance Stone - Modified Set-->
<item itemId="23805" count="6" /> <!-- Hero Coin-->
</item>
<item id="1011010" cat="3" paymentType="0" price="479" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23507" count="1" /> <!-- Military Hair Accessory Appearance Stone-->
<item itemId="23720" count="1" /> <!-- Military Top Appearance Stone - Modified Set-->
<item itemId="23721" count="1" /> <!-- Military Pants Appearance Stone - Modified Set-->
<item itemId="23722" count="1" /> <!-- Military Gloves Appearance Stone - Modified Set-->
<item itemId="23723" count="1" /> <!-- Military Shoes Appearance Stone - Modified Set-->
<item itemId="23805" count="6" /> <!-- Hero Coin-->
</item>
<item id="1011011" cat="3" paymentType="0" price="239" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23513" count="1" /> <!-- Maid Appearance Stone-->
<item itemId="23514" count="1" /> <!-- Maid Hair Accessory Appearance Stone-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011015" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21167" count="1" /> <!-- Agathion - Zaken's Spirit Swords Pack-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011021" cat="3" paymentType="0" price="799" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21413" count="1" /> <!-- Mount - Jet Bike Pack-->
<item itemId="23805" count="10" /> <!-- Hero Coin-->
</item>
<item id="1011022" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22402" count="1" /> <!-- Weapon Appearance Stone (R-grade)-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011023" cat="3" paymentType="0" price="799" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22408" count="1" /> <!-- Blessed Weapon Appearance Stone (R-grade)-->
<item itemId="23805" count="10" /> <!-- Hero Coin-->
</item>
<item id="1011024" cat="3" paymentType="0" price="319" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22682" count="1" /> <!-- Armor Appearance Stone (R-grade)-->
<item itemId="23805" count="4" /> <!-- Hero Coin-->
</item>
<item id="1011025" cat="3" paymentType="0" price="639" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22688" count="1" /> <!-- Blessed Armor Appearance Stone (R-grade)-->
<item itemId="23805" count="8" /> <!-- Hero Coin-->
</item>
<item id="1011026" cat="3" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22708" count="1" /> <!-- Hair Accessory Appearance Stone-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011027" cat="3" paymentType="0" price="319" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22709" count="1" /> <!-- Blessed Hair Accessory Appearance Stone-->
<item itemId="23805" count="4" /> <!-- Hero Coin-->
</item>
<item id="1011043" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23482" count="1" /> <!-- Top Hat-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011044" cat="3" paymentType="0" price="799" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23530" count="1" /> <!-- Automatic Appearance Stone: Emerald Weapon-->
<item itemId="23805" count="10" /> <!-- Hero Coin-->
</item>
<item id="1011045" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21126" count="1" /> <!-- Warrior's Helmet-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011046" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20022" count="1" /> <!-- Ruthless Tribe Mask-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011058" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="9886" count="1" /> <!-- Wizard Hat - Big Head-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011059" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="13498" count="1" /> <!-- Refined Wizard Hat-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011062" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="5" /> <!-- Hero Coin-->
<item itemId="37661" count="1" /> <!-- Refined Romantic Chapeau: Blue-->
</item>
<item id="1011063" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="5" /> <!-- Hero Coin-->
<item itemId="37662" count="1" /> <!-- Refined Romantic Chapeau: Gold-->
</item>
<item id="1011064" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="5" /> <!-- Hero Coin-->
<item itemId="37663" count="1" /> <!-- Refined Romantic Chapeau: Green-->
</item>
<item id="1011065" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="5" /> <!-- Hero Coin-->
<item itemId="37664" count="1" /> <!-- Refined Romantic Chapeau: Red-->
</item>
<item id="1011066" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="5" /> <!-- Hero Coin-->
<item itemId="37665" count="1" /> <!-- Refined Romantic Chapeau: Yellow-->
</item>
<item id="1011067" cat="5" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="2" /> <!-- Hero Coin-->
<item itemId="33855" count="1" /> <!-- Lucky Enchant Stone: Weapon (R-grade) - Event-->
</item>
<item id="1011068" cat="5" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="1" /> <!-- Hero Coin-->
<item itemId="33861" count="1" /> <!-- Lucky Enchant Stone: Armor (R-grade) - Event-->
</item>
<item id="1011069" cat="5" paymentType="0" price="320" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="4" /> <!-- Hero Coin-->
<item itemId="36008" count="1" /> <!-- High-grade Lucky Enchant Stone: Weapon (R-grade)-->
</item>
<item id="1011070" cat="5" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="2" /> <!-- Hero Coin-->
<item itemId="36009" count="1" /> <!-- High-grade Lucky Enchant Stone: Armor (R-grade)-->
</item>
<item id="1011071" cat="5" paymentType="0" price="120" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23399" count="1" /> <!-- Blessed Scroll: Enchant Armor Pack-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011072" cat="5" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23398" count="1" /> <!-- Blessed Scroll: Enchant Weapon Pack-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011073" cat="5" paymentType="0" price="279" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23385" count="1" /> <!-- Life Stone: Adenian Underwear-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011074" cat="5" paymentType="0" price="1599" panelType="0" recommended="4" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="22" /> <!-- Hero Coin-->
<item itemId="35562" count="25" /> <!-- Energy of Destruction-->
<item itemId="35563" count="30" /> <!-- Giant's Energy-->
<item itemId="37622" count="1" /> <!-- Kaliel's Energy Box - Western Winds-->
</item>
<item id="1011075" cat="5" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="1" /> <!-- Hero Coin-->
<item itemId="35562" count="2" /> <!-- Energy of Destruction-->
</item>
<item id="1011076" cat="5" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21580" count="1" /> <!-- Power Shirt-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011077" cat="5" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22905" count="1" /> <!-- Blessed Scroll: Enchant Power Shirt-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011078" cat="5" paymentType="0" price="319" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="4" /> <!-- Hero Coin-->
<item itemId="37566" count="1" /> <!-- Blessed Lucky Enchant Stone: Weapon (R-grade)-->
</item>
<item id="1011079" cat="5" paymentType="0" price="159" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="2" /> <!-- Hero Coin-->
<item itemId="37567" count="1" /> <!-- Blessed Lucky Enchant Stone: Armor (R-grade)-->
</item>
<item id="1011080" cat="5" paymentType="0" price="639" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="8" /> <!-- Hero Coin-->
<item itemId="38757" count="1" /> <!-- Blessed High-grade Lucky Enchant Stone: Weapon (R-grade)-->
</item>
<item id="1011081" cat="5" paymentType="0" price="319" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="4" /> <!-- Hero Coin-->
<item itemId="38758" count="1" /> <!-- Blessed High-grade Lucky Enchant Stone: Armor (R-grade)-->
</item>
<item id="1011082" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="14065" count="1" /> <!-- Superior Minion Coupon - 5-hour-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011083" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22312" count="1" /> <!-- Top-grade Magic Pin Cloth Belt-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011084" cat="2" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22313" count="1" /> <!-- Top-grade Magic Pouch Cloth Belt-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011085" cat="2" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22900" count="1" /> <!-- Expand Inventory Lv. 1-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011086" cat="2" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22901" count="1" /> <!-- Expand Inventory Lv. 2-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011087" cat="2" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22902" count="1" /> <!-- Spellbook: Expand Warehouse Lv. 1-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011088" cat="2" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22903" count="1" /> <!-- Spellbook: Expand Warehouse Lv. 2-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011089" cat="2" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22542" count="1" /> <!-- Improved Mithril Bracelet Pack-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011090" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22888" count="5000" /> <!-- Mysterious Soulshot (R-grade)-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011091" cat="2" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22889" count="5000" /> <!-- Mysterious Blessed Spiritshot (R-grade)-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011092" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23232" count="1" /> <!-- Traces of Ancient Kartia's Labyrinth-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011093" cat="2" paymentType="0" price="599" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23225" count="1" /> <!-- Soul Avatar's Giant Placid-->
<item itemId="23805" count="8" /> <!-- Hero Coin-->
</item>
<item id="1011094" cat="2" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="5" /> <!-- Hero Coin-->
<item itemId="35757" count="1" /> <!-- Scroll: Reputation (Top-grade) - Event-->
</item>
<item id="1011095" cat="2" paymentType="0" price="159" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20914" count="1" /> <!-- Enhanced Rose Spirit Coupon (5-hour)-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011096" cat="2" paymentType="0" price="560" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20904" count="250" /> <!-- Rose Essence-->
<item itemId="23805" count="7" /> <!-- Hero Coin-->
</item>
<item id="1011097" cat="2" paymentType="0" price="159" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22499" count="1" /> <!-- My Teleport Book Pack-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011098" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22504" count="1" /> <!-- My Teleport Flag 10-unit Pack-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011099" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21237" count="3" /> <!-- Super Healthy Juice Pack (HP)-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011100" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21241" count="3" /> <!-- Super Healthy Juice Pack (CP)-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011101" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22933" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 90 Solo-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011102" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22934" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 95 Solo-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011103" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22935" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 85 Party-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011104" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22936" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 90 Party-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011106" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21037" count="100" /> <!-- Warrior's Quick CP Potion-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011107" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="2" /> <!-- Hero Coin-->
<item itemId="36275" count="1" /> <!-- Entrance Pass: Istina (Normal)-->
</item>
<item id="1011108" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="1" /> <!-- Hero Coin-->
<item itemId="36273" count="1" /> <!-- Entrance Pass: Fortuna-->
</item>
<item id="1011109" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="2" /> <!-- Hero Coin-->
<item itemId="36274" count="1" /> <!-- Entrance Pass: Nornil's Garden-->
</item>
<item id="1011110" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="2" /> <!-- Hero Coin-->
<item itemId="36272" count="1" /> <!-- Entrance Pass: Spezion (Epic)-->
</item>
<item id="1011111" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="1" /> <!-- Hero Coin-->
<item itemId="36271" count="1" /> <!-- Entrance Pass: Spezion (Normal)-->
</item>
<item id="1011112" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="2" /> <!-- Hero Coin-->
<item itemId="36276" count="1" /> <!-- Entrance Pass: Octavis (Normal)-->
</item>
<item id="1011113" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="2" /> <!-- Hero Coin-->
<item itemId="36277" count="1" /> <!-- Entrance Pass: Baylor-->
</item>
<item id="1011115" cat="2" paymentType="0" price="239" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="3" /> <!-- Hero Coin-->
<item itemId="38159" count="1" /> <!-- Entrance Pass: Fantasy Fishing Dock (1-hour)-->
</item>
<item id="1011116" cat="2" paymentType="0" price="239" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="3" /> <!-- Hero Coin-->
<item itemId="37867" count="1" /> <!-- Valiant Scroll-->
</item>
<item id="1011117" cat="2" paymentType="0" price="1600" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="22" /> <!-- Hero Coin-->
<item itemId="38572" count="1" /> <!-- Apparition Stone (Lv. 88)-->
</item>
<item id="1011118" cat="2" paymentType="0" price="2000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="28" /> <!-- Hero Coin-->
<item itemId="38573" count="1" /> <!-- Apparition Stone (Lv. 93)-->
</item>
<item id="1011119" cat="2" paymentType="0" price="4000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="55" /> <!-- Hero Coin-->
<item itemId="38574" count="1" /> <!-- Apparition Stone (Lv. 98)-->
</item>
<item id="1011120" cat="7" paymentType="2" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="1538" count="1" /> <!-- Blessed Scroll of Escape-->
</item>
<item id="1011121" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22204" count="1" /> <!-- Attribute Stone Pack - Event-->
</item>
<item id="1011122" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37612" count="2" /> <!-- Ingredient Box - Western Winds-->
</item>
<item id="1011123" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22888" count="2500" /> <!-- Mysterious Soulshot (R-grade)-->
</item>
<item id="1011124" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22889" count="1000" /> <!-- Mysterious Blessed Spiritshot (R-grade)-->
</item>
<item id="1011125" cat="7" paymentType="2" price="3" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37607" count="1" /> <!-- Treasure Chest - Western Winds-->
</item>
<item id="1011126" cat="7" paymentType="2" price="4" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37671" count="2" /> <!-- Heavenly Recovery Potion-->
</item>
<item id="1011128" cat="7" paymentType="2" price="5" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="3936" count="1" /> <!-- Blessed Scroll of Resurrection-->
</item>
<item id="1011131" cat="7" paymentType="2" price="8" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="21619" count="10" /> <!-- Rune of Feather Pack (24-hour)-->
</item>
<item id="1011132" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37660" count="1" /> <!-- Magmeld's Instrument-->
</item>
<item id="1011133" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="36002" count="1" /> <!-- Heavenly CP Cookie-->
</item>
<item id="1011134" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="34082" count="1" /> <!-- Heavenly Cocktail-->
</item>
<item id="1011136" cat="7" paymentType="2" price="20" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
<item itemId="37622" count="1" /> <!-- Kaliel's Energy Box - Western Winds-->
</item>
<item id="1011138" cat="7" paymentType="2" price="30" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35563" count="1" /> <!-- Giant's Energy-->
</item>
<item id="1011139" cat="7" paymentType="2" price="30" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35562" count="1" /> <!-- Energy of Destruction-->
</item>
<item id="1011140" cat="7" paymentType="2" price="50" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35742" count="1" /> <!-- Scroll: Reputation (Low-grade) - Event-->
</item>
<item id="1011141" cat="7" paymentType="2" price="50" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35741" count="1" /> <!-- Scroll: PK (Low-grade) - Event-->
</item>
<item id="1011142" cat="7" paymentType="2" price="75" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="36979" count="1" /> <!-- Life Stone: Hair Accessory-->
</item>
<item id="1011143" cat="7" paymentType="2" price="100" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
<item itemId="37609" count="1" /> <!-- Pendant Pack - Western Winds-->
</item>
<item id="1011144" cat="7" paymentType="2" price="125" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="36155" count="1" /> <!-- Enhanced Kaliel's Attribute Stone Pack-->
</item>
<item id="1011145" cat="7" paymentType="2" price="125" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35749" count="1" /> <!-- Weapon Attribute Change Crystal (R-grade) - Event-->
</item>
<item id="1011146" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="36978" count="1" /> <!-- Scroll: Enchant Hair Accessory-->
</item>
<item id="1011147" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="38583" count="1" /> <!-- Emperor's Dessert Set (Defense Type)-->
</item>
<item id="1011148" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="38582" count="1" /> <!-- Emperor's Dessert Set (Magic Type)-->
</item>
<item id="1011149" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="38581" count="1" /> <!-- Emperor's Dessert Set (Attack Type)-->
</item>
<item id="1011151" cat="7" paymentType="2" price="175" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20948" count="1" /> <!-- Agathion - Phoenix Pack (7-day) - Nirvana Rebirth-->
</item>
<item id="1011152" cat="7" paymentType="2" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37613" count="1" /> <!-- Hero's Treasure Chest - Western Winds-->
</item>
<item id="1011153" cat="7" paymentType="2" price="250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20588" count="1" /> <!-- Agathion - Weaver Pack (24-hour) - Power of the Golden Calf-->
<item itemId="20597" count="3" /> <!-- Girl's Soulstone-->
</item>
<item id="1011154" cat="7" paymentType="2" price="250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="20597" count="3" /> <!-- Girl's Soulstone-->
<item itemId="20619" count="1" /> <!-- Agathion - Weaver Pack (24-hour) - Flute Sound-->
</item>
<item id="1011156" cat="7" paymentType="2" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23774" count="1" /> <!-- Improved Lucky Enchant Stone: Weapon (R-grade)-->
</item>
<item id="1011159" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22202" count="1" /> <!-- Weapon Pack (S80-grade) - Event-->
</item>
<item id="1011160" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="34953" count="1" /> <!-- Lv. 5 Giant Dye Pack - Event-->
</item>
<item id="1011161" cat="7" paymentType="2" price="750" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23786" count="1" /> <!-- Lesser Giant's Lucky Enchant Stone: Armor (R-grade)-->
</item>
<item id="1011162" cat="7" paymentType="2" price="750" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35569" count="1" /> <!-- Bloody Eternal Enhancement Stone-->
</item>
<item id="1011163" cat="7" paymentType="2" price="1000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="34955" count="1" /> <!-- Lv. 5 Ancient Dye Pack - Event-->
</item>
<item id="1011164" cat="7" paymentType="2" price="1250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="36156" count="1" /> <!-- Enhanced Kaliel's Attribute Crystal Pack-->
</item>
<item id="1011167" cat="7" paymentType="2" price="1500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22188" count="1" /> <!-- Birthday Vitality Potion-->
</item>
<item id="1011170" cat="7" paymentType="2" price="2500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23785" count="1" /> <!-- Lesser Giant's Lucky Enchant Stone: Weapon (R-grade)-->
</item>
<item id="1011171" cat="7" paymentType="2" price="3000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
<item itemId="39345" count="1" /> <!-- Amaranthine Weapon Pack-->
</item>
<item id="1011173" cat="7" paymentType="2" price="10000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="34775" count="1" /> <!-- Scroll of Blessing (R2-grade) - Event-->
</item>
<item id="1011174" cat="7" paymentType="2" price="10000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35568" count="1" /> <!-- Bloody Amaranthine Enhancement Stone-->
</item>
<item id="1011185" cat="7" paymentType="2" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
<item itemId="35664" count="2" /> <!-- Scroll: 10,000 Individual Fame-->
</item>
<item id="1011186" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
<item itemId="30275" count="1" /> <!-- Scroll: 1,000,000 SP-->
</item>
<item id="1011187" cat="7" paymentType="2" price="15" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="18563" count="1" /> <!-- Life Stone (R-grade)-->
</item>
<item id="1011188" cat="7" paymentType="2" price="25" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22205" count="1" /> <!-- Attribute Crystal Pack - Event-->
</item>
<item id="1011189" cat="7" paymentType="2" price="50" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="10649" count="1" /> <!-- Feather of Blessing-->
</item>
<item id="1011190" cat="7" paymentType="2" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
<item itemId="36405" count="1" /> <!-- Rare Accessory Pack (Expiratory) - Event-->
</item>
<item id="1011191" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
<item itemId="37566" count="1" /> <!-- Blessed Lucky Enchant Stone: Weapon (R-grade)-->
</item>
<item id="1011192" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="39341" count="1" /> <!-- Elegia Armor Pack-->
</item>
<item id="1011193" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37567" count="1" /> <!-- Blessed Lucky Enchant Stone: Armor (R-grade)-->
</item>
<item id="1011194" cat="7" paymentType="2" price="1000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
<item itemId="22427" count="1" /> <!-- Divine Scroll: Enchant Weapon (R-grade)-->
</item>
<item id="1011195" cat="7" paymentType="2" price="2000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37566" count="1" /> <!-- Blessed Lucky Enchant Stone: Weapon (R-grade)-->
</item>
<item id="1011196" cat="7" paymentType="2" price="1750" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="34774" count="1" /> <!-- Scroll of Blessing (R1-grade) - Event-->
</item>
<item id="1011197" cat="7" paymentType="2" price="5000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37666" count="1" /> <!-- Rare Accessory Pack-->
</item>
<item id="1011198" cat="7" paymentType="2" price="6500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35567" count="1" /> <!-- Dark Eternal Enhancement Stone-->
</item>
<item id="1011207" cat="7" paymentType="2" price="1500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="34954" count="1" /> <!-- Lv. 5 Legendary Dye Pack - Event-->
</item>
<item id="1011208" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22577" count="1" /> <!-- Mysterious Blessed Spiritshot Large Pack (S-grade)-->
<item itemId="23805" count="1" /> <!-- Hero Coin-->
</item>
<item id="1011209" cat="2" paymentType="0" price="199" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22937" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 95 Party-->
<item itemId="23805" count="3" /> <!-- Hero Coin-->
</item>
<item id="1011211" cat="7" paymentType="2" price="8" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="38105" count="200" /> <!-- Superior CP Potion-->
</item>
<item id="1011249" cat="7" paymentType="2" price="100500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="36147" count="1" /> <!-- Dark Amaranthine Weapon Pack-->
</item>
<item id="1011250" cat="7" paymentType="2" price="87500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37717" count="1" /> <!-- Talisman - Seven Signs-->
</item>
<item id="1011251" cat="7" paymentType="2" price="71750" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35564" count="1" /> <!-- Ruler's Authority-->
</item>
<item id="1011252" cat="7" paymentType="2" price="45000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35649" count="1" /> <!-- Sealed Talisman - Longing-->
</item>
<item id="1011253" cat="7" paymentType="2" price="45000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="36146" count="1" /> <!-- Bloody Amaranthine Weapon Pack-->
</item>
<item id="1011254" cat="7" paymentType="2" price="30000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="34777" count="1" /> <!-- Scroll of Blessing (R99-grade) - Event-->
</item>
<item id="1011255" cat="7" paymentType="2" price="24000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23860" count="1" /> <!-- Raid Boss' Soul Pack-->
</item>
<item id="1011256" cat="7" paymentType="2" price="20250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="37623" count="1" /> <!-- Soul Bottle Pack - Western Winds-->
</item>
<item id="1011257" cat="7" paymentType="2" price="17875" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="35566" count="1" /> <!-- Dark Amaranthine Enhancement Stone-->
</item>
<item id="1011258" cat="7" paymentType="2" price="12500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="34776" count="1" /> <!-- Scroll of Blessing (R95-grade) - Event-->
</item>
<item id="1011315" cat="6" paymentType="0" price="160" panelType="3" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23728" count="1" /> <!-- Erupting Vitality XP Potion-->
<item itemId="23805" count="2" /> <!-- Hero Coin-->
</item>
<item id="1011334" cat="2" paymentType="0" price="80" panelType="3" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="23805" count="1" /> <!-- Hero Coin-->
<item itemId="23985" count="1" /> <!-- Extra Pass: Ancient Kartia's Labyrinth-->
</item>
<item id="1011341" cat="4" paymentType="0" price="320" panelType="1" recommended="1" startSale="1404896400" endSale="1406710800" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22883" count="1" /> <!-- Scroll: Replenish Vitality-->
<item itemId="22966" count="1" /> <!-- Vitality Maintaining Potion (1-hour)-->
<item itemId="23728" count="1" /> <!-- Erupting Vitality XP Potion-->
<item itemId="23805" count="5" /> <!-- Hero Coin-->
</item>
<item id="1011342" cat="4" paymentType="0" price="2000" panelType="1" recommended="1" startSale="1404896400" endSale="1406710800" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
<item itemId="22885" count="2" /> <!-- Scroll: Replenish Vitality (Top-grade)-->
<item itemId="22966" count="5" /> <!-- Vitality Maintaining Potion (1-hour)-->
<item itemId="23728" count="5" /> <!-- Erupting Vitality XP Potion-->
<item itemId="23805" count="30" /> <!-- Hero Coin-->
</item>
</list>

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>31380</npc> <!-- Diyabu -->
</npcs>
<item id="1835" price="8" /> <!-- Soulshot: No Grade -->
<item id="2509" price="18" /> <!-- Spiritshot: No Grade -->
<item id="3947" price="42" /> <!-- Blessed Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" price="13860" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" price="5940" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" price="2760" /> <!-- Compressed Package of Soulshots: No Grade -->
<item id="5262" price="46200" /> <!-- Greater Compressed Package of Blessed Spiritshots (No-Grade) -->
<item id="5256" price="19800" /> <!-- Greater Compressed Package of Spiritshots (No-Grade) -->
<item id="5250" price="9240" /> <!-- Greater Compressed Package of Soulshots (No-Grade) -->
<item id="17" price="2" /> <!-- Wooden Arrow -->
<item id="1341" price="3" /> <!-- Bone Arrow -->
<item id="1342" price="6" /> <!-- Steel Arrow -->
<item id="1060" price="108" /> <!-- Lesser Healing Potion -->
<item id="1061" price="396" /> <!-- Greater Healing Potion -->
<item id="1831" price="90" /> <!-- Antidote -->
<item id="1832" price="216" /> <!-- Greater Antidote -->
<item id="1833" price="90" /> <!-- Bandage -->
<item id="1834" price="216" /> <!-- Emergency Dressing -->
<item id="734" price="1440" /> <!-- Haste Potion -->
<item id="735" price="2880" /> <!-- Alacrity Potion -->
<item id="6035" price="2880" /> <!-- Magic Haste Potion -->
<item id="6037" price="120" /> <!-- Waking Scroll -->
<item id="736" price="480" /> <!-- Scroll of Escape -->
<item id="737" price="2400" /> <!-- Scroll of Resurrection -->
<item id="1829" price="600" /> <!-- Scroll of Escape: Clan Hall -->
<item id="1830" price="600" /> <!-- Scroll of Escape: Castle -->
<item id="5589" price="120" /> <!-- Energy Stone -->
<item id="1661" price="1200" /> <!-- Thief Key -->
<item id="4625" price="600" /> <!-- Dice (Heart) -->
<item id="4626" price="600" /> <!-- Dice (Spade) -->
<item id="4627" price="600" /> <!-- Dice (Clover) -->
<item id="4628" price="600" /> <!-- Dice (Diamond) -->
<item id="8622" price="1526" /> <!-- Elixir of Life (No Grade) -->
<item id="8623" price="4050" /> <!-- Elixir of Life (D-Grade) -->
<item id="8634" price="704" /> <!-- Elixir of CP (No Grade) -->
<item id="8635" price="1643" /> <!-- Elixir of CP (D-Grade) -->
<item id="8636" price="3522" /> <!-- Elixir of CP (C-Grade) -->
<item id="8637" price="4695" /> <!-- Elixir of CP (B-Grade) -->
<item id="8594" price="2700" /> <!-- Scroll: Recovery (No Grade) -->
<item id="8595" price="6480" /> <!-- Scroll: Recovery (Grade D) -->
<item id="8596" price="18900" /> <!-- Scroll: Recovery (Grade C) -->
<item id="8597" price="37800" /> <!-- Scroll: Recovery (Grade B) -->
<item id="8598" price="64800" /> <!-- Scroll: Recovery (Grade A) -->
</list>

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>31373</npc> <!-- Atan -->
</npcs>
<item id="1835" price="8" /> <!-- Soulshot: No Grade -->
<item id="2509" price="18" /> <!-- Spiritshot: No Grade -->
<item id="3947" price="42" /> <!-- Blessed Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" price="13860" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" price="5940" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" price="2760" /> <!-- Compressed Package of Soulshots: No Grade -->
<item id="5262" price="46200" /> <!-- Greater Compressed Package of Blessed Spiritshots (No-Grade) -->
<item id="5256" price="19800" /> <!-- Greater Compressed Package of Spiritshots (No-Grade) -->
<item id="5250" price="9240" /> <!-- Greater Compressed Package of Soulshots (No-Grade) -->
<item id="17" price="2" /> <!-- Wooden Arrow -->
<item id="1341" price="3" /> <!-- Bone Arrow -->
<item id="1342" price="6" /> <!-- Steel Arrow -->
<item id="1060" price="108" /> <!-- Lesser Healing Potion -->
<item id="1061" price="396" /> <!-- Greater Healing Potion -->
<item id="1831" price="90" /> <!-- Antidote -->
<item id="1832" price="216" /> <!-- Greater Antidote -->
<item id="1833" price="90" /> <!-- Bandage -->
<item id="1834" price="216" /> <!-- Emergency Dressing -->
<item id="734" price="1440" /> <!-- Haste Potion -->
<item id="735" price="2880" /> <!-- Alacrity Potion -->
<item id="6035" price="2880" /> <!-- Magic Haste Potion -->
<item id="6037" price="120" /> <!-- Waking Scroll -->
<item id="736" price="480" /> <!-- Scroll of Escape -->
<item id="737" price="2400" /> <!-- Scroll of Resurrection -->
<item id="1829" price="600" /> <!-- Scroll of Escape: Clan Hall -->
<item id="1830" price="600" /> <!-- Scroll of Escape: Castle -->
<item id="5589" price="120" /> <!-- Energy Stone -->
<item id="1661" price="1200" /> <!-- Thief Key -->
<item id="4625" price="600" /> <!-- Dice (Heart) -->
<item id="4626" price="600" /> <!-- Dice (Spade) -->
<item id="4627" price="600" /> <!-- Dice (Clover) -->
<item id="4628" price="600" /> <!-- Dice (Diamond) -->
<item id="8622" price="1526" /> <!-- Elixir of Life (No Grade) -->
<item id="8623" price="4050" /> <!-- Elixir of Life (D-Grade) -->
<item id="8634" price="704" /> <!-- Elixir of CP (No Grade) -->
<item id="8635" price="1643" /> <!-- Elixir of CP (D-Grade) -->
<item id="8636" price="3522" /> <!-- Elixir of CP (C-Grade) -->
<item id="8637" price="4695" /> <!-- Elixir of CP (B-Grade) -->
<item id="8594" price="2700" /> <!-- Scroll: Recovery (No Grade) -->
<item id="8595" price="6480" /> <!-- Scroll: Recovery (Grade D) -->
<item id="8596" price="18900" /> <!-- Scroll: Recovery (Grade C) -->
<item id="8597" price="37800" /> <!-- Scroll: Recovery (Grade B) -->
<item id="8598" price="64800" /> <!-- Scroll: Recovery (Grade A) -->
</list>

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<item id="736" price="600" /> <!-- Scroll of Escape -->
<item id="737" price="3000" /> <!-- Scroll of Resurrection -->
<item id="734" price="1800" /> <!-- Haste Potion -->
<item id="735" price="3600" /> <!-- Alacrity Potion -->
<item id="1831" price="112" /> <!-- Antidote -->
<item id="1833" price="112" /> <!-- Bandage -->
<item id="1061" price="495" /> <!-- Greater Healing Potion -->
<item id="8786" price="7500" /> <!-- Primeval Potion -->
<item id="8598" price="72000" /> <!-- Scroll: Recovery (Grade A) -->
<item id="8599" price="120000" /> <!-- Scroll: Recovery (Grade S) -->
<item id="8615" price="52500" /> <!-- Summoning Crystal -->
</list>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>35383</npc> <!-- Tamutak -->
</npcs>
<item id="6902" /> <!-- Pledge Shield -->
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5169" count="5" restock_delay="60" /> <!-- Deluxe Food for Strider -->
</list>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>35384</npc> <!-- Black -->
</npcs>
<item id="6902" /> <!-- Pledge Shield -->
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5169" count="5" restock_delay="60" /> <!-- Deluxe Food for Strider -->
</list>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>35386</npc> <!-- Boyer -->
</npcs>
<item id="6902" /> <!-- Pledge Shield -->
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5169" count="5" restock_delay="60" /> <!-- Deluxe Food for Strider -->
</list>

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