Initial changes.

This commit is contained in:
MobiusDevelopment
2019-10-23 11:35:17 +00:00
parent 04872348c9
commit 5eca412756
2202 changed files with 51480 additions and 201568 deletions

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>L2J_Mobius_CT_2.6_HighFive</name>
<name>L2J_Mobius_CT_2.4_Epilogue</name>
<comment></comment>
<projects>
</projects>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE xml>
<project name="L2J_Mobius_CT_2.6_HighFive" default="cleanup" basedir=".">
<project name="L2J_Mobius_CT_2.4_Epilogue" default="cleanup" basedir=".">
<description>
This file is part of the L2J Mobius project.
@@ -131,15 +131,15 @@
</target>
<target name="adding-core" depends="jar" description="Adding the compiled jars to the Zip file.">
<zip destfile="${build}/L2J_Mobius_CT_2.6_HighFive.zip" basedir="${build.dist}" level="9" />
<zip destfile="${build}/L2J_Mobius_CT_2.4_Epilogue.zip" basedir="${build.dist}" level="9" />
</target>
<target name="adding-datapack" depends="adding-core" description="Updating the Zip file with datapack content.">
<zip destfile="${build}/L2J_Mobius_CT_2.6_HighFive.zip" basedir="${datapack}" update="true" level="9" />
<zip destfile="${build}/L2J_Mobius_CT_2.4_Epilogue.zip" basedir="${datapack}" update="true" level="9" />
</target>
<target name="adding-readme" depends="adding-datapack" description="Adding readme.txt to the Zip file.">
<zip destfile="${build}/L2J_Mobius_CT_2.6_HighFive.zip" basedir="." includes="readme.txt" update="true" level="9" />
<zip destfile="${build}/L2J_Mobius_CT_2.4_Epilogue.zip" basedir="." includes="readme.txt" update="true" level="9" />
</target>
<target name="cleanup" depends="adding-readme" description="Cleaning the build folder.">

View File

@@ -11,4 +11,4 @@ CREATE TABLE IF NOT EXISTS `announcements` (
INSERT INTO announcements (`type`, `author`, `content`) VALUES
(0, 'L2jMobius', 'Thanks for using L2jMobius!'),
(0, 'L2jMobius', '[=http://www.l2jmobius.org/=]');
(0, 'L2jMobius', 'http://www.l2jmobius.com');

View File

@@ -1,7 +0,0 @@
CREATE TABLE IF NOT EXISTS `character_reco_bonus` (
`charId` int(10) unsigned NOT NULL,
`rec_have` tinyint(3) unsigned NOT NULL DEFAULT '0',
`rec_left` tinyint(3) unsigned NOT NULL DEFAULT '0',
`time_left` bigint(13) unsigned NOT NULL DEFAULT '0',
UNIQUE KEY `charId` (`charId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

View File

@@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS `character_recommends` (
`charId` INT UNSIGNED NOT NULL default 0,
`target_id` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`,`target_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

View File

@@ -56,6 +56,9 @@ CREATE TABLE IF NOT EXISTS `characters` (
`createDate` date NOT NULL DEFAULT '2015-01-01',
`language` VARCHAR(2) DEFAULT NULL,
`faction` TINYINT UNSIGNED NOT NULL DEFAULT '0',
`last_recom_date` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`rec_have` TINYINT UNSIGNED NOT NULL DEFAULT 0,
`rec_left` TINYINT UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`),
KEY `account_name` (`account_name`),
KEY `char_name` (`char_name`),

View File

@@ -1,14 +1,10 @@
CREATE TABLE IF NOT EXISTS `olympiad_nobles` (
`charId` int(10) unsigned NOT NULL DEFAULT 0,
`class_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`olympiad_points` int(10) unsigned NOT NULL DEFAULT 0,
`competitions_done` smallint(3) unsigned NOT NULL DEFAULT 0,
`competitions_won` smallint(3) unsigned NOT NULL DEFAULT 0,
`competitions_lost` smallint(3) unsigned NOT NULL DEFAULT 0,
`competitions_drawn` smallint(3) unsigned NOT NULL DEFAULT 0,
`competitions_done_week` tinyint(3) unsigned NOT NULL DEFAULT 0,
`competitions_done_week_classed` tinyint(3) unsigned NOT NULL DEFAULT 0,
`competitions_done_week_non_classed` tinyint(3) unsigned NOT NULL DEFAULT 0,
`competitions_done_week_team` tinyint(3) unsigned NOT NULL DEFAULT 0,
`charId` INT UNSIGNED NOT NULL default 0,
`class_id` decimal(3,0) NOT NULL default 0,
`olympiad_points` decimal(10,0) NOT NULL default 0,
`competitions_done` decimal(3,0) NOT NULL default 0,
`competitions_won` decimal(3,0) NOT NULL default 0,
`competitions_lost` decimal(3,0) NOT NULL default 0,
`competitions_drawn` decimal(3,0) NOT NULL default 0,
PRIMARY KEY (`charId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

View File

@@ -1,10 +1,10 @@
CREATE TABLE IF NOT EXISTS `olympiad_nobles_eom` (
`charId` int(10) unsigned NOT NULL DEFAULT 0,
`class_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`olympiad_points` int(10) unsigned NOT NULL DEFAULT 0,
`competitions_done` smallint(3) unsigned NOT NULL DEFAULT 0,
`competitions_won` smallint(3) unsigned NOT NULL DEFAULT 0,
`competitions_lost` smallint(3) unsigned NOT NULL DEFAULT 0,
`competitions_drawn` smallint(3) unsigned NOT NULL DEFAULT 0,
`charId` INT UNSIGNED NOT NULL default 0,
`class_id` decimal(3,0) NOT NULL default 0,
`olympiad_points` decimal(10,0) NOT NULL default 0,
`competitions_done` decimal(3,0) NOT NULL default 0,
`competitions_won` decimal(3,0) NOT NULL default 0,
`competitions_lost` decimal(3,0) NOT NULL default 0,
`competitions_drawn` decimal(3,0) NOT NULL default 0,
PRIMARY KEY (`charId`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;

View File

@@ -0,0 +1,17 @@
-- taken from l2j epilogue
DELETE FROM teleport WHERE id in(
69,1060,1076,9041,9042,9043,9044,9045,9941,9942,9943,9944,9945);
INSERT INTO `teleport` VALUES
('Giran -> Dragon Valley',69,73024,118485,-3688,1800,0,57),
('Giran -> Antharas Lair',1060,131557,114509,-3712,7000,0,57),
('Oren -> Skyshadow Meadow',1076,89914,46276,-3616,780,0,57),
('Antharas Lair 1 - 1000 adena',9041,147071,120156,-4520,1000,1,57),
('Antharas Lair 2 - 1000 adena',9042,151689,112615,-5520,1000,1,57),
('Antharas Lair,Magic Force Field Bridge - 1000 adena',9043,146494,109285,-3448,1000,1,57),
('Antharas Lair,Heart of Warding - 1000 adena',9044,154396,121235,-3808,1000,1,57),
('Dragon Valley,Traders Post - 1000 adena',9045,122824,110836,-3720,1000,1,57),
('Antharas Lair 1 - 1 Noble Gate Pass',9941,147071,120156,-4520,1,1,13722),
('Antharas Lair 2 - 1 Noble Gate Pass',9942,151689,112615,-5520,1,1,13722),
('Antharas Lair, Magic Force Field Bridge - 1 Noble Gate Pass',9943,146494,109285,-3448,1,1,13722),
('Antharas Lair,Heart of Warding - 1 Noble Gate Pass',9944,154396,121235,-3808,1,1,13722),
('Dragon Valley,Traders Post - 1 Noble Gate Pass',9945,122824,110836,-3720,1,1,13722);

View File

@@ -0,0 +1,13 @@
-- Raidbosses that where removed in Hi5
-- taken from l2j Epilogue branch and client comparison
DELETE FROM raidboss_spawnlist WHERE boss_id in(25073,25109,25176,25217,25234,25407,25412,25696,25697,25698,25725,25726,25727);
INSERT INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
(25073,143265,110044,-3944,0,129600,86400,875948,2917), -- Bloody Priest Rudelto (69)
(25109,152660,110387,-5520,0,129600,86400,935092,3274), -- Antharas Priest Cloe (74)
(25176,92544,115232,-3200,0,129600,86400,451391,1975), -- Black Lily (55)
(25217,89904,105712,-3292,0,129600,86400,369009,1660), -- Cursed Clara (50)
(25234,120080,111248,-3047,0,129600,86400,1052436,2301), -- Ancient Weird Drake (60)
(25407,115072,112272,-3018,0,129600,86400,526218,2301), -- Lord Ishka (60)
(25412,81920,113136,-3056,0,129600,86400,319791,2301); -- Necrosentinel Royal Guard (47)

View File

@@ -0,0 +1,5 @@
-- Anais
DELETE FROM raidboss_spawnlist WHERE boss_id in(25701,29096);
INSERT INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
(29096,112798,-76800,-10,-15544,129600,86400,2231403,48422);

View File

@@ -0,0 +1 @@
REPLACE INTO grandboss_data VALUES(29045, 0, 0, 0, 0, 0, 1216600, 11100, 0);

View File

@@ -0,0 +1,5 @@
-- Andreas Van Halter
DELETE FROM raidboss_spawnlist WHERE boss_id in (29062);
INSERT INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
(29062,-16373,-53562,-10447,0,129600,86400,275385,9999);

View File

@@ -283,28 +283,6 @@ StartingVitalityPoints = 20000
RaidbossUseVitality = False
# ---------------------------------------------------------------------------
# Nevit System
# ---------------------------------------------------------------------------
# Enable the Nevit system.
# Default: True
NevitEnabled = True
# Default NevitMaxPoints: 7200
NevitMaxPoints = 7200
# Default NevitBonusEffectTime: 180
NevitBonusEffectTime = 180
# Default NevitAdventTime: 14400
NevitAdventTime = 14400
# Give Nevit's Blessing at all times.
# Retail: False
NevitIgnoreAdventTime = True
# ---------------------------------------------------------------------------
# Limits
# ---------------------------------------------------------------------------
@@ -814,6 +792,10 @@ MaxPetitionsPending = 25
# Default: False
FreeTeleporting = False
# Allow character to recommend same person more then once per day.
# Default: False
AltRecommend = False
# Allow character deletion after days set below. To disallow character deletion, set this equal to 0.
# Default: 7
DeleteCharAfterDays = 7

View File

@@ -64,6 +64,16 @@ IntervalOfQueenAntSpawn = 24
# Random interval. Range 1-192
RandomOfQueenAntSpawn = 2
# ---------------------------------------------------------------------------
# Frintezza
# ---------------------------------------------------------------------------
# Interval time of Frintezza. Value is hour. Range 1-480
IntervalOfFrintezzaSpawn = 48
# Random interval. Range 1-192
RandomOfFrintezzaSpawn = 8
# ---------------------------------------------------------------------------
# Beleth
# ---------------------------------------------------------------------------

View File

@@ -26,9 +26,9 @@ AltOlyMaxBuffs = 5
# Default: 21600000
AltOlyCPeriod = 21600000
# Olympiad Battle Period, Default 5 minutes.
# Default: 300000
AltOlyBattle = 300000
# Olympiad Battle Period, Default 6 minutes.
# Default: 360000
AltOlyBattle = 360000
# Olympiad Weekly Period, Default 1 week
# Used for adding points to nobles
@@ -39,81 +39,59 @@ AltOlyWPeriod = 604800000
# Default: 86400000
AltOlyVPeriod = 86400000
# Points for reaching Noblesse for the first time
# Default: 10
AltOlyStartPoints = 10
# Points every week
# Default: 10
AltOlyWeeklyPoints = 10
# Required number of participants for the class based games
# Default: 11
# Required number of participants for Classed and Non-Classed matches, Default 5 & 9
# Default: 5
AltOlyClassedParticipants = 5
# Required number of participants for the non-class based games
# Default: 11
# Default: 9
AltOlyNonClassedParticipants = 9
# Required number of participants for the 3x3 teams games
# Default: 6
AltOlyTeamsParticipants = 6
# Number used for displaying amount of registered participants, messages "Fewer than ..." or "More than ...".
# 0 for displaying digits instead of text phrase (old style).
# Default: 100
AltOlyRegistrationDisplayNumber = 100
# Reward for the class based games
# Format: itemId1,itemNum1;itemId2,itemNum2...
# Default: 13722,50
AltOlyClassedReward = 13722,50
# Olympiad battle winner reward for class and non-class games.
# Default: 13722
AltOlyBattleRewItem = 13722
# Reward for the non-class based games
# Format: itemId1,itemNum1;itemId2,itemNum2...
# Default: 13722,40
AltOlyNonClassedReward = 13722,40
# Default: 50
AltOlyClassedRewItemCount = 50
# Reward for the 3x3 teams games
# Format: itemId1,itemNum1;itemId2,itemNum2...
# Default: 13722,85
AltOlyTeamReward = 13722,85
# Default: 40
AltOlyNonClassedRewItemCount = 40
# ItemId used for exchanging to the points.
# ItemId for this reward.
# Default: 13722
AltOlyCompRewItem = 13722
# The minimal matches you need to participate to receive point rewards
# Default: 15
AltOlyMinMatchesForPoints = 15
# Rate to exchange points to reward item.
# Default: 1000
AltOlyGPPerPoint = 1000
# Noblesse points awarded to Heroes.
# Default: 200
AltOlyHeroPoints = 200
# Default: 180
AltOlyHeroPoints = 180
# Noblesse points awarded to Rank 1 members.
# Default: 100
AltOlyRank1Points = 100
# Default: 120
AltOlyRank1Points = 120
# Noblesse points awarded to Rank 2 members.
# Default: 75
AltOlyRank2Points = 75
# Default: 80
AltOlyRank2Points = 80
# Noblesse points awarded to Rank 3 members.
# Default: 55
AltOlyRank3Points = 55
# Noblesse points awarded to Rank 4 members.
# Default: 40
AltOlyRank4Points = 40
# Default: 35
AltOlyRank4Points = 35
# Noblesse points awarded to Rank 5 members.
# Default: 30
AltOlyRank5Points = 30
# Default: 20
AltOlyRank5Points = 20
# Maximum points that player can gain/lose on a match.
# Default: 10
@@ -128,9 +106,8 @@ AltOlyShowMonthlyWinners = True
AltOlyAnnounceGames = True
# Restrict specified items in Olympiad. ItemID's need to be separated with a comma (ex. 1,200,350)
# Equipped items will be moved to inventory during port.
# Default: 6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,9388,9389,9390,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,20759,20775,20776,20777,20778,14774
AltOlyRestrictedItems = 6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,9388,9389,9390,17049,17050,17051,17052,17053,17054,17055,17056,17057,17058,17059,17060,17061,20759,20775,20776,20777,20778,14774
# Default: 0
AltOlyRestrictedItems = 0
# Enchant limit for items during Olympiad battles. Disabled = -1.
# Default: -1
@@ -141,30 +118,11 @@ AltOlyEnchantLimit = -1
AltOlyLogFights = False
# Time to wait before teleported to arena.
# Possible choices are: 120, 60, 30, 15, or 5.
# If any other number is entered, the time will be set to 120 seconds.
# Default: 120
AltOlyWaitTime = 120
# Divider for points in classed and non-classed games
# Default: 5, 5
AltOlyDividerClassed = 5
AltOlyDividerNonClassed = 5
# Maximum number of matches a Noblesse character can join per week
# Default: 70
AltOlyMaxWeeklyMatches = 70
# Maximum number of Class-Irrelevant Individual matches a character can join per week
# Default: 60
AltOlyMaxWeeklyMatchesNonClassed = 60
# Maximum number of Class Individual matches a character can join per week
# Default: 30
AltOlyMaxWeeklyMatchesClassed = 30
# Maximum number of Class-Irrelevant Team matches a character can join per week
# Default: 10
AltOlyMaxWeeklyMatchesTeam = 10
# ---------------------------------------------------------------------------
# Custom Olympiad period settings

View File

@@ -41,8 +41,8 @@ GameserverPort = 7777
Driver = org.mariadb.jdbc.Driver
# Database URL
# Default: jdbc:mariadb://localhost/l2jmobiush5?useUnicode=true&characterEncoding=utf-8&useSSL=false
URL = jdbc:mariadb://localhost/l2jmobiush5?useUnicode=true&characterEncoding=utf-8&useSSL=false
# Default: jdbc:mariadb://localhost/l2jmobiusepilogue?useUnicode=true&characterEncoding=utf-8&useSSL=false
URL = jdbc:mariadb://localhost/l2jmobiusepilogue?useUnicode=true&characterEncoding=utf-8&useSSL=false
# Database user info (default is "root" but it's not recommended)
Login = root
@@ -101,8 +101,8 @@ MaximumOnlineUsers = 2000
# Numbers of protocol revisions that server allows to connect.
# Delimiter is ;
# WARNING: <u><b><font color="red">Changing the protocol revision may result in incompatible communication and many errors in game!</font></b></u>
# Default: 267;268;271;273
AllowedProtocolRevisions = 267;268;271;273
# Default: 152
AllowedProtocolRevisions = 152
# Displays server type next to the server name on character selection.
# Notes:

View File

@@ -32,138 +32,6 @@
<door id="12240030" name="gate_of_fortress_01" open_method="0" height="150" baseHpMax="200000" hp_showable="true" basePDef="20000" baseMDef="20000" pos="-251436;214385;-12122" node1="-251627,214372" node2="-251262,214370" node3="-251261,214452" node4="-251628,214455" nodeZ="-12087" default_status="close" targetable="true" />
<door id="12240031" name="door_of_throne_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-251450;212260;-12021" node1="-251558,212249" node2="-251342,212248" node3="-251343,212272" node4="-251558,212273" nodeZ="-12021" default_status="open" targetable="false" />
<door id="14240102" name="zone3_entrance_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-179553;207192;-15508" node1="-179821,207178" node2="-179290,207177" node3="-179290,207211" node4="-179821,207211" nodeZ="-15546" default_status="open" targetable="false" />
<door id="15100001" name="olympiad_door_046" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-252637;-3341" node1="-154371,-252765" node2="-154346,-252765" node3="-154346,-252510" node4="-154370,-252510" nodeZ="-3341" default_status="close" />
<door id="15100002" name="olympiad_door_045" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-252637;-3341" node1="-152735,-252765" node2="-152701,-252765" node3="-152701,-252510" node4="-152735,-252510" nodeZ="-3341" default_status="close" />
<door id="15100003" name="olympiad_door_048" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-252637;-3341" node1="-150146,-252765" node2="-150121,-252765" node3="-150121,-252510" node4="-150145,-252510" nodeZ="-3341" default_status="close" />
<door id="15100004" name="olympiad_door_047" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-252637;-3341" node1="-148510,-252765" node2="-148476,-252765" node3="-148476,-252510" node4="-148510,-252510" nodeZ="-3341" default_status="close" />
<door id="15100005" name="olympiad_door_050" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-252637;-3341" node1="-145957,-252765" node2="-145932,-252765" node3="-145932,-252510" node4="-145956,-252510" nodeZ="-3341" default_status="close" />
<door id="15100006" name="olympiad_door_049" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144285;-252637;-3341" node1="-144300,-252765" node2="-144266,-252765" node3="-144266,-252510" node4="-144300,-252510" nodeZ="-3341" default_status="close" />
<door id="15100007" name="olympiad_door_052" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-252637;-3341" node1="-142038,-252765" node2="-142013,-252765" node3="-142013,-252510" node4="-142037,-252510" nodeZ="-3341" default_status="close" />
<door id="15100008" name="olympiad_door_051" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-252637;-3341" node1="-140402,-252765" node2="-140368,-252765" node3="-140368,-252510" node4="-140402,-252510" nodeZ="-3341" default_status="close" />
<door id="15100009" name="olympiad_door_054" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-249762;-3341" node1="-154371,-249890" node2="-154346,-249890" node3="-154346,-249635" node4="-154370,-249635" nodeZ="-3341" default_status="close" />
<door id="15100010" name="olympiad_door_053" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-249762;-3341" node1="-152735,-249890" node2="-152701,-249890" node3="-152701,-249635" node4="-152735,-249635" nodeZ="-3341" default_status="close" />
<door id="15100011" name="olympiad_door_056" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-249762;-3341" node1="-150146,-249890" node2="-150121,-249890" node3="-150121,-249635" node4="-150145,-249635" nodeZ="-3341" default_status="close" />
<door id="15100012" name="olympiad_door_055" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-249762;-3341" node1="-148510,-249890" node2="-148476,-249890" node3="-148476,-249635" node4="-148510,-249635" nodeZ="-3341" default_status="close" />
<door id="15100013" name="olympiad_door_058" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-249762;-3341" node1="-145957,-249890" node2="-145932,-249890" node3="-145932,-249635" node4="-145956,-249635" nodeZ="-3341" default_status="close" />
<door id="15100014" name="olympiad_door_057" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-249762;-3341" node1="-144321,-249890" node2="-144287,-249890" node3="-144287,-249635" node4="-144321,-249635" nodeZ="-3341" default_status="close" />
<door id="15100015" name="olympiad_door_060" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-249762;-3341" node1="-142038,-249890" node2="-142013,-249890" node3="-142013,-249635" node4="-142037,-249635" nodeZ="-3341" default_status="close" />
<door id="15100016" name="olympiad_door_059" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-249762;-3341" node1="-140402,-249890" node2="-140368,-249890" node3="-140368,-249635" node4="-140402,-249635" nodeZ="-3341" default_status="close" />
<door id="15100017" name="olympiad_door_062" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-246955;-3341" node1="-154371,-247083" node2="-154346,-247083" node3="-154346,-246828" node4="-154370,-246828" nodeZ="-3341" default_status="close" />
<door id="15100018" name="olympiad_door_061" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-246955;-3341" node1="-152735,-247083" node2="-152701,-247083" node3="-152701,-246828" node4="-152735,-246828" nodeZ="-3341" default_status="close" />
<door id="15100019" name="olympiad_door_064" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-246955;-3341" node1="-150146,-247083" node2="-150121,-247083" node3="-150121,-246828" node4="-150145,-246828" nodeZ="-3341" default_status="close" />
<door id="15100020" name="olympiad_door_063" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-246955;-3341" node1="-148510,-247083" node2="-148476,-247083" node3="-148476,-246828" node4="-148510,-246828" nodeZ="-3341" default_status="close" />
<door id="15100021" name="olympiad_door_066" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-246955;-3341" node1="-145957,-247083" node2="-145932,-247083" node3="-145932,-246828" node4="-145956,-246828" nodeZ="-3341" default_status="close" />
<door id="15100022" name="olympiad_door_065" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-246955;-3341" node1="-144321,-247083" node2="-144287,-247083" node3="-144287,-246828" node4="-144321,-246828" nodeZ="-3341" default_status="close" />
<door id="15100023" name="olympiad_door_068" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-246955;-3341" node1="-142038,-247083" node2="-142013,-247083" node3="-142013,-246828" node4="-142037,-246828" nodeZ="-3341" default_status="close" />
<door id="15100024" name="olympiad_door_067" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-246955;-3341" node1="-140402,-247083" node2="-140368,-247083" node3="-140368,-246828" node4="-140402,-246828" nodeZ="-3341" default_status="close" />
<door id="15100025" name="olympiad_door_070" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-244275;-3341" node1="-154371,-244403" node2="-154346,-244403" node3="-154346,-244148" node4="-154370,-244148" nodeZ="-3341" default_status="close" />
<door id="15100026" name="olympiad_door_069" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-244275;-3341" node1="-152735,-244403" node2="-152701,-244403" node3="-152701,-244148" node4="-152735,-244148" nodeZ="-3341" default_status="close" />
<door id="15100027" name="olympiad_door_072" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-244275;-3341" node1="-150146,-244403" node2="-150121,-244403" node3="-150121,-244148" node4="-150145,-244148" nodeZ="-3341" default_status="close" />
<door id="15100028" name="olympiad_door_071" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-244275;-3341" node1="-148510,-244403" node2="-148476,-244403" node3="-148476,-244148" node4="-148510,-244148" nodeZ="-3341" default_status="close" />
<door id="15100029" name="olympiad_door_074" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-244275;-3341" node1="-145957,-244403" node2="-145932,-244403" node3="-145932,-244148" node4="-145956,-244148" nodeZ="-3341" default_status="close" />
<door id="15100030" name="olympiad_door_073" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-244275;-3341" node1="-144321,-244403" node2="-144287,-244403" node3="-144287,-244148" node4="-144321,-244148" nodeZ="-3341" default_status="close" />
<door id="15100031" name="olympiad_door_076" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-244275;-3341" node1="-142038,-244403" node2="-142013,-244403" node3="-142013,-244148" node4="-142037,-244148" nodeZ="-3341" default_status="close" />
<door id="15100032" name="olympiad_door_075" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-244275;-3341" node1="-140402,-244403" node2="-140368,-244403" node3="-140368,-244148" node4="-140402,-244148" nodeZ="-3341" default_status="close" />
<door id="15100033" name="olympiad_door_078" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-241480;-3341" node1="-154371,-241608" node2="-154346,-241608" node3="-154346,-241353" node4="-154370,-241353" nodeZ="-3341" default_status="close" />
<door id="15100034" name="olympiad_door_077" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-241480;-3341" node1="-152735,-241608" node2="-152701,-241608" node3="-152701,-241353" node4="-152735,-241353" nodeZ="-3341" default_status="close" />
<door id="15100035" name="olympiad_door_080" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-241480;-3341" node1="-150146,-241608" node2="-150121,-241608" node3="-150121,-241353" node4="-150145,-241353" nodeZ="-3341" default_status="close" />
<door id="15100036" name="olympiad_door_079" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-241480;-3341" node1="-148510,-241608" node2="-148476,-241608" node3="-148476,-241353" node4="-148510,-241353" nodeZ="-3341" default_status="close" />
<door id="15100037" name="olympiad_door_082" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-241480;-3341" node1="-145957,-241608" node2="-145932,-241608" node3="-145932,-241353" node4="-145956,-241353" nodeZ="-3341" default_status="close" />
<door id="15100038" name="olympiad_door_081" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-241480;-3341" node1="-144321,-241608" node2="-144287,-241608" node3="-144287,-241353" node4="-144321,-241353" nodeZ="-3341" default_status="close" />
<door id="15100039" name="olympiad_door_084" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-241480;-3341" node1="-142038,-241608" node2="-142013,-241608" node3="-142013,-241353" node4="-142037,-241353" nodeZ="-3341" default_status="close" />
<door id="15100040" name="olympiad_door_083" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-241480;-3341" node1="-140402,-241608" node2="-140368,-241608" node3="-140368,-241353" node4="-140402,-241353" nodeZ="-3341" default_status="close" />
<door id="15100041" name="olympiad_door_086" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154336;-238836;-3341" node1="-154347,-238964" node2="-154322,-238964" node3="-154322,-238709" node4="-154346,-238709" nodeZ="-3341" default_status="close" />
<door id="15100042" name="olympiad_door_085" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152696;-238836;-3341" node1="-152711,-238964" node2="-152677,-238964" node3="-152677,-238709" node4="-152711,-238709" nodeZ="-3341" default_status="close" />
<door id="15100043" name="olympiad_door_088" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-238836;-3341" node1="-150146,-238964" node2="-150121,-238964" node3="-150121,-238709" node4="-150145,-238709" nodeZ="-3341" default_status="close" />
<door id="15100044" name="olympiad_door_087" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-238836;-3341" node1="-148510,-238964" node2="-148476,-238964" node3="-148476,-238709" node4="-148510,-238709" nodeZ="-3341" default_status="close" />
<door id="15110001" name="olympiad_door_090" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-219869;-3341" node1="-154371,-219997" node2="-154346,-219997" node3="-154346,-219742" node4="-154370,-219742" nodeZ="-3341" default_status="close" />
<door id="15110002" name="olympiad_door_089" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-219869;-3341" node1="-152735,-219997" node2="-152701,-219997" node3="-152701,-219742" node4="-152735,-219742" nodeZ="-3341" default_status="close" />
<door id="15110003" name="olympiad_door_092" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-219869;-3341" node1="-150146,-219997" node2="-150121,-219997" node3="-150121,-219742" node4="-150145,-219742" nodeZ="-3341" default_status="close" />
<door id="15110004" name="olympiad_door_091" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-219869;-3341" node1="-148510,-219997" node2="-148476,-219997" node3="-148476,-219742" node4="-148510,-219742" nodeZ="-3341" default_status="close" />
<door id="15110005" name="olympiad_door_094" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-219869;-3341" node1="-145957,-219997" node2="-145932,-219997" node3="-145932,-219742" node4="-145956,-219742" nodeZ="-3341" default_status="close" />
<door id="15110006" name="olympiad_door_093" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144285;-219869;-3341" node1="-144300,-219997" node2="-144266,-219997" node3="-144266,-219742" node4="-144300,-219742" nodeZ="-3341" default_status="close" />
<door id="15110007" name="olympiad_door_096" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-219869;-3341" node1="-142038,-219997" node2="-142013,-219997" node3="-142013,-219742" node4="-142037,-219742" nodeZ="-3341" default_status="close" />
<door id="15110008" name="olympiad_door_095" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-219869;-3341" node1="-140402,-219997" node2="-140368,-219997" node3="-140368,-219742" node4="-140402,-219742" nodeZ="-3341" default_status="close" />
<door id="15110009" name="olympiad_door_098" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-216994;-3341" node1="-154371,-217122" node2="-154346,-217122" node3="-154346,-216867" node4="-154370,-216867" nodeZ="-3341" default_status="close" />
<door id="15110010" name="olympiad_door_097" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-216994;-3341" node1="-152735,-217122" node2="-152701,-217122" node3="-152701,-216867" node4="-152735,-216867" nodeZ="-3341" default_status="close" />
<door id="15110011" name="olympiad_door_100" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-216994;-3341" node1="-150146,-217122" node2="-150121,-217122" node3="-150121,-216867" node4="-150145,-216867" nodeZ="-3341" default_status="close" />
<door id="15110012" name="olympiad_door_099" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-216994;-3341" node1="-148510,-217122" node2="-148476,-217122" node3="-148476,-216867" node4="-148510,-216867" nodeZ="-3341" default_status="close" />
<door id="15110013" name="olympiad_door_102" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-216994;-3341" node1="-145957,-217122" node2="-145932,-217122" node3="-145932,-216867" node4="-145956,-216867" nodeZ="-3341" default_status="close" />
<door id="15110014" name="olympiad_door_101" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-216994;-3341" node1="-144321,-217122" node2="-144287,-217122" node3="-144287,-216867" node4="-144321,-216867" nodeZ="-3341" default_status="close" />
<door id="15110015" name="olympiad_door_104" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-216994;-3341" node1="-142038,-217122" node2="-142013,-217122" node3="-142013,-216867" node4="-142037,-216867" nodeZ="-3341" default_status="close" />
<door id="15110016" name="olympiad_door_103" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-216994;-3341" node1="-140402,-217122" node2="-140368,-217122" node3="-140368,-216867" node4="-140402,-216867" nodeZ="-3341" default_status="close" />
<door id="15110017" name="olympiad_door_106" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-214187;-3341" node1="-154371,-214315" node2="-154346,-214315" node3="-154346,-214060" node4="-154370,-214060" nodeZ="-3341" default_status="close" />
<door id="15110018" name="olympiad_door_105" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-214187;-3341" node1="-152735,-214315" node2="-152701,-214315" node3="-152701,-214060" node4="-152735,-214060" nodeZ="-3341" default_status="close" />
<door id="15110019" name="olympiad_door_108" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-214187;-3341" node1="-150146,-214315" node2="-150121,-214315" node3="-150121,-214060" node4="-150145,-214060" nodeZ="-3341" default_status="close" />
<door id="15110020" name="olympiad_door_107" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-214187;-3341" node1="-148510,-214315" node2="-148476,-214315" node3="-148476,-214060" node4="-148510,-214060" nodeZ="-3341" default_status="close" />
<door id="15110021" name="olympiad_door_110" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-214187;-3341" node1="-145957,-214315" node2="-145932,-214315" node3="-145932,-214060" node4="-145956,-214060" nodeZ="-3341" default_status="close" />
<door id="15110022" name="olympiad_door_109" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-214187;-3341" node1="-144321,-214315" node2="-144287,-214315" node3="-144287,-214060" node4="-144321,-214060" nodeZ="-3341" default_status="close" />
<door id="15110023" name="olympiad_door_112" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-214187;-3341" node1="-142038,-214315" node2="-142013,-214315" node3="-142013,-214060" node4="-142037,-214060" nodeZ="-3341" default_status="close" />
<door id="15110024" name="olympiad_door_111" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-214187;-3341" node1="-140402,-214315" node2="-140368,-214315" node3="-140368,-214060" node4="-140402,-214060" nodeZ="-3341" default_status="close" />
<door id="15110025" name="olympiad_door_114" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-211507;-3341" node1="-154371,-211635" node2="-154346,-211635" node3="-154346,-211380" node4="-154370,-211380" nodeZ="-3341" default_status="close" />
<door id="15110026" name="olympiad_door_113" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-211507;-3341" node1="-152735,-211635" node2="-152701,-211635" node3="-152701,-211380" node4="-152735,-211380" nodeZ="-3341" default_status="close" />
<door id="15110027" name="olympiad_door_116" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-211507;-3341" node1="-150146,-211635" node2="-150121,-211635" node3="-150121,-211380" node4="-150145,-211380" nodeZ="-3341" default_status="close" />
<door id="15110028" name="olympiad_door_115" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-211507;-3341" node1="-148510,-211635" node2="-148476,-211635" node3="-148476,-211380" node4="-148510,-211380" nodeZ="-3341" default_status="close" />
<door id="15110029" name="olympiad_door_118" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-211507;-3341" node1="-145957,-211635" node2="-145932,-211635" node3="-145932,-211380" node4="-145956,-211380" nodeZ="-3341" default_status="close" />
<door id="15110030" name="olympiad_door_117" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-211507;-3341" node1="-144321,-211635" node2="-144287,-211635" node3="-144287,-211380" node4="-144321,-211380" nodeZ="-3341" default_status="close" />
<door id="15110031" name="olympiad_door_120" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-211507;-3341" node1="-142038,-211635" node2="-142013,-211635" node3="-142013,-211380" node4="-142037,-211380" nodeZ="-3341" default_status="close" />
<door id="15110032" name="olympiad_door_119" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-211507;-3341" node1="-140402,-211635" node2="-140368,-211635" node3="-140368,-211380" node4="-140402,-211380" nodeZ="-3341" default_status="close" />
<door id="15110033" name="olympiad_door_122" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-208712;-3341" node1="-154371,-208840" node2="-154346,-208840" node3="-154346,-208585" node4="-154370,-208585" nodeZ="-3341" default_status="close" />
<door id="15110034" name="olympiad_door_121" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-208712;-3341" node1="-152735,-208840" node2="-152701,-208840" node3="-152701,-208585" node4="-152735,-208585" nodeZ="-3341" default_status="close" />
<door id="15110035" name="olympiad_door_124" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-208712;-3341" node1="-150146,-208840" node2="-150121,-208840" node3="-150121,-208585" node4="-150145,-208585" nodeZ="-3341" default_status="close" />
<door id="15110036" name="olympiad_door_123" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-208712;-3341" node1="-148510,-208840" node2="-148476,-208840" node3="-148476,-208585" node4="-148510,-208585" nodeZ="-3341" default_status="close" />
<door id="15110037" name="olympiad_door_126" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-208712;-3341" node1="-145957,-208840" node2="-145932,-208840" node3="-145932,-208585" node4="-145956,-208585" nodeZ="-3341" default_status="close" />
<door id="15110038" name="olympiad_door_125" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-208712;-3341" node1="-144321,-208840" node2="-144287,-208840" node3="-144287,-208585" node4="-144321,-208585" nodeZ="-3341" default_status="close" />
<door id="15110039" name="olympiad_door_128" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-208712;-3341" node1="-142038,-208840" node2="-142013,-208840" node3="-142013,-208585" node4="-142037,-208585" nodeZ="-3341" default_status="close" />
<door id="15110040" name="olympiad_door_127" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-208712;-3341" node1="-140402,-208840" node2="-140368,-208840" node3="-140368,-208585" node4="-140402,-208585" nodeZ="-3341" default_status="close" />
<door id="15110041" name="olympiad_door_130" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154336;-206068;-3341" node1="-154347,-206196" node2="-154322,-206196" node3="-154322,-205941" node4="-154346,-205941" nodeZ="-3341" default_status="close" />
<door id="15110042" name="olympiad_door_129" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152696;-206068;-3341" node1="-152711,-206196" node2="-152677,-206196" node3="-152677,-205941" node4="-152711,-205941" nodeZ="-3341" default_status="close" />
<door id="15110043" name="olympiad_door_132" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-206068;-3341" node1="-150146,-206196" node2="-150121,-206196" node3="-150121,-205941" node4="-150145,-205941" nodeZ="-3341" default_status="close" />
<door id="15110044" name="olympiad_door_131" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-206068;-3341" node1="-148510,-206196" node2="-148476,-206196" node3="-148476,-205941" node4="-148510,-205941" nodeZ="-3341" default_status="close" />
<door id="15120001" name="olympiad_door_134" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-187101;-3341" node1="-154371,-187229" node2="-154346,-187229" node3="-154346,-186974" node4="-154370,-186974" nodeZ="-3341" default_status="close" />
<door id="15120002" name="olympiad_door_133" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-187101;-3341" node1="-152735,-187229" node2="-152701,-187229" node3="-152701,-186974" node4="-152735,-186974" nodeZ="-3341" default_status="close" />
<door id="15120003" name="olympiad_door_136" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-187101;-3341" node1="-150146,-187229" node2="-150121,-187229" node3="-150121,-186974" node4="-150145,-186974" nodeZ="-3341" default_status="close" />
<door id="15120004" name="olympiad_door_135" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-187101;-3341" node1="-148510,-187229" node2="-148476,-187229" node3="-148476,-186974" node4="-148510,-186974" nodeZ="-3341" default_status="close" />
<door id="15120005" name="olympiad_door_138" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-187101;-3341" node1="-145957,-187229" node2="-145932,-187229" node3="-145932,-186974" node4="-145956,-186974" nodeZ="-3341" default_status="close" />
<door id="15120006" name="olympiad_door_137" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144285;-187101;-3341" node1="-144300,-187229" node2="-144266,-187229" node3="-144266,-186974" node4="-144300,-186974" nodeZ="-3341" default_status="close" />
<door id="15120007" name="olympiad_door_140" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-187101;-3341" node1="-142038,-187229" node2="-142013,-187229" node3="-142013,-186974" node4="-142037,-186974" nodeZ="-3341" default_status="close" />
<door id="15120008" name="olympiad_door_139" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-187101;-3341" node1="-140402,-187229" node2="-140368,-187229" node3="-140368,-186974" node4="-140402,-186974" nodeZ="-3341" default_status="close" />
<door id="15120009" name="olympiad_door_142" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-184226;-3341" node1="-154371,-184354" node2="-154346,-184354" node3="-154346,-184099" node4="-154370,-184099" nodeZ="-3341" default_status="close" />
<door id="15120010" name="olympiad_door_141" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-184226;-3341" node1="-152735,-184354" node2="-152701,-184354" node3="-152701,-184099" node4="-152735,-184099" nodeZ="-3341" default_status="close" />
<door id="15120011" name="olympiad_door_144" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-184226;-3341" node1="-150146,-184354" node2="-150121,-184354" node3="-150121,-184099" node4="-150145,-184099" nodeZ="-3341" default_status="close" />
<door id="15120012" name="olympiad_door_143" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-184226;-3341" node1="-148510,-184354" node2="-148476,-184354" node3="-148476,-184099" node4="-148510,-184099" nodeZ="-3341" default_status="close" />
<door id="15120013" name="olympiad_door_146" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-184226;-3341" node1="-145957,-184354" node2="-145932,-184354" node3="-145932,-184099" node4="-145956,-184099" nodeZ="-3341" default_status="close" />
<door id="15120014" name="olympiad_door_145" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-184226;-3341" node1="-144321,-184354" node2="-144287,-184354" node3="-144287,-184099" node4="-144321,-184099" nodeZ="-3341" default_status="close" />
<door id="15120015" name="olympiad_door_148" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-184226;-3341" node1="-142038,-184354" node2="-142013,-184354" node3="-142013,-184099" node4="-142037,-184099" nodeZ="-3341" default_status="close" />
<door id="15120016" name="olympiad_door_147" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-184226;-3341" node1="-140402,-184354" node2="-140368,-184354" node3="-140368,-184099" node4="-140402,-184099" nodeZ="-3341" default_status="close" />
<door id="15120017" name="olympiad_door_150" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-181419;-3341" node1="-154371,-181547" node2="-154346,-181547" node3="-154346,-181292" node4="-154370,-181292" nodeZ="-3341" default_status="close" />
<door id="15120018" name="olympiad_door_149" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-181419;-3341" node1="-152735,-181547" node2="-152701,-181547" node3="-152701,-181292" node4="-152735,-181292" nodeZ="-3341" default_status="close" />
<door id="15120019" name="olympiad_door_152" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-181419;-3341" node1="-150146,-181547" node2="-150121,-181547" node3="-150121,-181292" node4="-150145,-181292" nodeZ="-3341" default_status="close" />
<door id="15120020" name="olympiad_door_151" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-181419;-3341" node1="-148510,-181547" node2="-148476,-181547" node3="-148476,-181292" node4="-148510,-181292" nodeZ="-3341" default_status="close" />
<door id="15120021" name="olympiad_door_154" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-181419;-3341" node1="-145957,-181547" node2="-145932,-181547" node3="-145932,-181292" node4="-145956,-181292" nodeZ="-3341" default_status="close" />
<door id="15120022" name="olympiad_door_153" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-181419;-3341" node1="-144321,-181547" node2="-144287,-181547" node3="-144287,-181292" node4="-144321,-181292" nodeZ="-3341" default_status="close" />
<door id="15120023" name="olympiad_door_156" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-181419;-3341" node1="-142038,-181547" node2="-142013,-181547" node3="-142013,-181292" node4="-142037,-181292" nodeZ="-3341" default_status="close" />
<door id="15120024" name="olympiad_door_155" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-181419;-3341" node1="-140402,-181547" node2="-140368,-181547" node3="-140368,-181292" node4="-140402,-181292" nodeZ="-3341" default_status="close" />
<door id="15120025" name="olympiad_door_158" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-178739;-3341" node1="-154371,-178867" node2="-154346,-178867" node3="-154346,-178612" node4="-154370,-178612" nodeZ="-3341" default_status="close" />
<door id="15120026" name="olympiad_door_157" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-178739;-3341" node1="-152735,-178867" node2="-152701,-178867" node3="-152701,-178612" node4="-152735,-178612" nodeZ="-3341" default_status="close" />
<door id="15120027" name="olympiad_door_160" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-178739;-3341" node1="-150146,-178867" node2="-150121,-178867" node3="-150121,-178612" node4="-150145,-178612" nodeZ="-3341" default_status="close" />
<door id="15120028" name="olympiad_door_159" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-178739;-3341" node1="-148510,-178867" node2="-148476,-178867" node3="-148476,-178612" node4="-148510,-178612" nodeZ="-3341" default_status="close" />
<door id="15120029" name="olympiad_door_162" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-178739;-3341" node1="-145957,-178867" node2="-145932,-178867" node3="-145932,-178612" node4="-145956,-178612" nodeZ="-3341" default_status="close" />
<door id="15120030" name="olympiad_door_161" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-178739;-3341" node1="-144321,-178867" node2="-144287,-178867" node3="-144287,-178612" node4="-144321,-178612" nodeZ="-3341" default_status="close" />
<door id="15120031" name="olympiad_door_164" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-178739;-3341" node1="-142038,-178867" node2="-142013,-178867" node3="-142013,-178612" node4="-142037,-178612" nodeZ="-3341" default_status="close" />
<door id="15120032" name="olympiad_door_163" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-178739;-3341" node1="-140402,-178867" node2="-140368,-178867" node3="-140368,-178612" node4="-140402,-178612" nodeZ="-3341" default_status="close" />
<door id="15120033" name="olympiad_door_166" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154360;-175944;-3341" node1="-154371,-176072" node2="-154346,-176072" node3="-154346,-175817" node4="-154370,-175817" nodeZ="-3341" default_status="close" />
<door id="15120034" name="olympiad_door_165" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152720;-175944;-3341" node1="-152735,-176072" node2="-152701,-176072" node3="-152701,-175817" node4="-152735,-175817" nodeZ="-3341" default_status="close" />
<door id="15120035" name="olympiad_door_168" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-175944;-3341" node1="-150146,-176072" node2="-150121,-176072" node3="-150121,-175817" node4="-150145,-175817" nodeZ="-3341" default_status="close" />
<door id="15120036" name="olympiad_door_167" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-175944;-3341" node1="-148510,-176072" node2="-148476,-176072" node3="-148476,-175817" node4="-148510,-175817" nodeZ="-3341" default_status="close" />
<door id="15120037" name="olympiad_door_170" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-145946;-175944;-3341" node1="-145957,-176072" node2="-145932,-176072" node3="-145932,-175817" node4="-145956,-175817" nodeZ="-3341" default_status="close" />
<door id="15120038" name="olympiad_door_169" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-144306;-175944;-3341" node1="-144321,-176072" node2="-144287,-176072" node3="-144287,-175817" node4="-144321,-175817" nodeZ="-3341" default_status="close" />
<door id="15120039" name="olympiad_door_172" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-142027;-175944;-3341" node1="-142038,-176072" node2="-142013,-176072" node3="-142013,-175817" node4="-142037,-175817" nodeZ="-3341" default_status="close" />
<door id="15120040" name="olympiad_door_171" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-140387;-175944;-3341" node1="-140402,-176072" node2="-140368,-176072" node3="-140368,-175817" node4="-140402,-175817" nodeZ="-3341" default_status="close" />
<door id="15120041" name="olympiad_door_174" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-154336;-173300;-3341" node1="-154347,-173428" node2="-154322,-173428" node3="-154322,-173173" node4="-154346,-173173" nodeZ="-3341" default_status="close" />
<door id="15120042" name="olympiad_door_173" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-152696;-173300;-3341" node1="-152711,-173428" node2="-152677,-173428" node3="-152677,-173173" node4="-152711,-173173" nodeZ="-3341" default_status="close" />
<door id="15120043" name="olympiad_door_176" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-150135;-173300;-3341" node1="-150146,-173428" node2="-150121,-173428" node3="-150121,-173173" node4="-150145,-173173" nodeZ="-3341" default_status="close" />
<door id="15120044" name="olympiad_door_175" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-148495;-173300;-3341" node1="-148510,-173428" node2="-148476,-173428" node3="-148476,-173173" node4="-148510,-173173" nodeZ="-3341" default_status="close" />
<door id="16200001" name="nornildg_a" open_method="0" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-109704;76424;-12656" node1="-109818,76417" node2="-109589,76416" node3="-109589,76434" node4="-109818,76435" nodeZ="-12650" emitter_id="16200101" default_status="close" />
<door id="16200002" name="nornildg_b" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-110856;77960;-12848" node1="-110839,78060" node2="-110838,77861" node3="-110873,77862" node4="-110874,78060" nodeZ="-12842" emitter_id="16200102" default_status="close" />
<door id="16200003" name="nornildg_e" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-111624;77960;-12848" node1="-111607,78060" node2="-111606,77861" node3="-111641,77862" node4="-111642,78060" nodeZ="-12842" emitter_id="16200103" default_status="close" />
@@ -187,36 +55,52 @@
<door id="16200023" name="nornildg_bdg01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-109201;81920;-12907" node1="-109145,81792" node2="-108802,82135" node3="-108985,82319" node4="-109327,81975" nodeZ="-12907" default_status="close" targetable="false" stealth="true" />
<door id="16200024" name="nornildg_bdg02" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-110473;82417;-12906" node1="-110602,82367" node2="-110342,82367" node3="-110343,82854" node4="-110601,82854" nodeZ="-12906" default_status="close" targetable="false" stealth="true" />
<door id="16200025" name="nornildg_bdg03" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-111741;81914;-12908" node1="-111795,81786" node2="-111612,81969" node3="-111956,82315" node4="-112141,82130" nodeZ="-12908" default_status="close" targetable="false" stealth="true" />
<door id="17100001" name="Olympiad_Gate_1" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-89120;-252843;-3341" node1="-89130,-252918" node2="-89110,-252918" node3="-89110,-252768" node4="-89130,-252768" nodeZ="-3341" default_status="close" targetable="false" />
<door id="17100002" name="Olympiad_Gate_2" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87043;-252843;-3341" node1="-87053,-252918" node2="-87033,-252918" node3="-87033,-252768" node4="-87053,-252768" nodeZ="-3341" default_status="close" targetable="false" />
<door id="17100101" name="Olympiad_Gate_101" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-76480;-252461;-7741" node1="-76490,-252536" node2="-76470,-252536" node3="-76470,-252386" node4="-76490,-252386" nodeZ="-7741" default_status="close" targetable="false" />
<door id="17100102" name="Olympiad_Gate_102" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-74450;-252461;-7741" node1="-74460,-252536" node2="-74440,-252536" node3="-74440,-252386" node4="-74460,-252386" nodeZ="-7741" default_status="close" targetable="false" />
<door id="17100201" name="Olympiad_Gate_201" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-88912;-239351;-8475" node1="-88922,-239426" node2="-88902,-239426" node3="-88902,-239276" node4="-88922,-239276" nodeZ="-8475" default_status="close" targetable="false" />
<door id="17100202" name="Olympiad_Gate_202" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87278;-239351;-8475" node1="-87288,-239426" node2="-87268,-239426" node3="-87268,-239276" node4="-87288,-239276" nodeZ="-8475" default_status="close" targetable="false" />
<door id="17100301" name="Olympiad_Gate_301" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-76375;-239182;-8218" node1="-76385,-239257" node2="-76365,-239257" node3="-76365,-239107" node4="-76385,-239107" nodeZ="-8218" default_status="close" targetable="false" />
<door id="17100302" name="Olympiad_Gate_303" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-74538;-239182;-8218" node1="-74548,-239257" node2="-74528,-239257" node3="-74528,-239107" node4="-74548,-239107" nodeZ="-8218" default_status="close" targetable="false" />
<door id="17130042" name="frintessa_new_door_151" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87952;-142871;-9032" node1="-88130,-142927" node2="-87774,-142928" node3="-87775,-142866" node4="-88130,-142866" nodeZ="-9224" default_status="close" targetable="false" />
<door id="17130043" name="frintessa_new_door_252" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87953;-145483;-9032" node1="-88131,-145539" node2="-87775,-145540" node3="-87776,-145478" node4="-88131,-145478" nodeZ="-9224" default_status="close" targetable="false" />
<door id="17130045" name="frintessa_new_door_251" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87953;-148635;-9025" node1="-88131,-148691" node2="-87775,-148692" node3="-87776,-148630" node4="-88131,-148630" nodeZ="-9217" default_status="close" targetable="false" />
<door id="17130046" name="frintessa_new_door_351" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87779;-151317;-8987" node1="-88018,-151360" node2="-87541,-151360" node3="-87541,-151271" node4="-88018,-151272" nodeZ="-9216" default_status="close" targetable="false" />
<door id="17130051" name="frintessa_new_door_101" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-88883;-141304;-8948" node1="-88956,-141735" node2="-88797,-141735" node3="-88801,-140873" node4="-88960,-140873" nodeZ="-9229" default_status="close" targetable="false" />
<door id="17130052" name="frintessa_new_door_102" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-88614;-142001;-8948" node1="-88367,-142340" node2="-88303,-142215" node3="-88818,-141691" node4="-88965,-141763" nodeZ="-9229" default_status="close" targetable="false" />
<door id="17130053" name="frintessa_new_door_103" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87916;-142287;-8948" node1="-87484,-142341" node2="-87532,-142229" node3="-88289,-142221" node4="-88344,-142343" nodeZ="-9229" default_status="close" targetable="false" />
<door id="17130054" name="frintessa_new_door_104" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87224;-142010;-8948" node1="-86886,-141725" node2="-86993,-141703" node3="-87541,-142236" node4="-87484,-142353" nodeZ="-9229" default_status="close" targetable="false" />
<door id="17130055" name="frintessa_new_door_105" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-86940;-141317;-8948" node1="-86882,-140888" node2="-87004,-140934" node3="-86997,-141703" node4="-86883,-141744" nodeZ="-9229" default_status="close" targetable="false" />
<door id="17130056" name="frintessa_new_door_106" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87211;-140616;-8948" node1="-87478,-140277" node2="-87524,-140390" node3="-86986,-140934" node4="-86868,-140881" nodeZ="-9229" default_status="close" targetable="false" />
<door id="17130057" name="frintessa_new_door_107" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87908;-140336;-8948" node1="-88343,-140276" node2="-88297,-140400" node3="-87523,-140405" node4="-87468,-140268" nodeZ="-9229" default_status="close" targetable="false" />
<door id="17130058" name="frintessa_new_door_108" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-88600;-140606;-8948" node1="-88944,-140865" node2="-88825,-140929" node3="-88280,-140383" node4="-88335,-140264" nodeZ="-9229" default_status="close" targetable="false" />
<door id="17130061" name="frintessa_new_door_201" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87509;-148298;-8955" node1="-87568,-148546" node2="-87454,-148540" node3="-87451,-148038" node4="-87567,-148032" nodeZ="-9223" default_status="close" targetable="false" />
<door id="17130062" name="frintessa_new_door_202" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87385;-147793;-8955" node1="-87313,-147423" node2="-87171,-147480" node3="-87472,-148098" node4="-87593,-148046" nodeZ="-9221" default_status="close" targetable="false" />
<door id="17130063" name="frintessa_new_door_203" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87251;-147073;-8941" node1="-87315,-147453" node2="-87187,-147499" node3="-87184,-146658" node4="-87307,-146712" nodeZ="-9223" default_status="close" targetable="false" />
<door id="17130064" name="frintessa_new_door_204" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87375;-146352;-8955" node1="-87300,-146721" node2="-87169,-146660" node3="-87456,-146049" node4="-87574,-146104" nodeZ="-9222" default_status="close" targetable="false" />
<door id="17130065" name="frintessa_new_door_205" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-87509;-145832;-8955" node1="-87564,-146090" node2="-87448,-146101" node3="-87449,-145587" node4="-87567,-145584" nodeZ="-9223" default_status="close" targetable="false" />
<door id="17130066" name="frintessa_new_door_206" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-88381;-145832;-8955" node1="-88435,-146085" node2="-88326,-146087" node3="-88325,-145577" node4="-88433,-145577" nodeZ="-9223" default_status="close" targetable="false" />
<door id="17130067" name="frintessa_new_door_207" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-88505;-146336;-8955" node1="-88696,-146636" node2="-88582,-146700" node3="-88308,-146082" node4="-88431,-146047" nodeZ="-9232" default_status="close" targetable="false" />
<door id="17130068" name="frintessa_new_door_208" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-88640;-147056;-8941" node1="-88708,-147475" node2="-88567,-147470" node3="-88573,-146668" node4="-88704,-146667" nodeZ="-9224" default_status="close" targetable="false" />
<door id="17130069" name="frintessa_new_door_209" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-88515;-147777;-8955" node1="-88428,-148054" node2="-88315,-148014" node3="-88570,-147451" node4="-88708,-147459" nodeZ="-9221" default_status="close" targetable="false" />
<door id="17130070" name="frintessa_new_door_210" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="-88382;-148298;-8955" node1="-88442,-148547" node2="-88329,-148544" node3="-88325,-148044" node4="-88438,-148047" nodeZ="-9224" default_status="close" targetable="false" />
<!-- Olympiad Doors-->
<door id="17100001" name="Olympiad_Gate_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-89120;-252843;-3341" node1="-89130,-252918" node2="-89110,-252918" node3="-89110,-252768" node4="-89130,-252768" nodeZ="-3341" default_status="close" targetable="false" />
<door id="17100002" name="Olympiad_Gate_02" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87043;-252843;-3341" node1="-87053,-252918" node2="-87033,-252918" node3="-87033,-252768" node4="-87053,-252768" nodeZ="-3341" default_status="close" targetable="false" />
<door id="17100003" name="Olympiad_Gate_03" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84599;-252637;-3342" node1="-84611,-252766" node2="-84585,-252510" node3="-84585,-252510" node4="-84611,-252766" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100004" name="Olympiad_Gate_04" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82959;-252637;-3342" node1="-82975,-252766" node2="-82940,-252510" node3="-82940,-252510" node4="-82975,-252766" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100005" name="Olympiad_Gate_05" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80410;-252637;-3342" node1="-80422,-252766" node2="-80396,-252510" node3="-80396,-252510" node4="-80422,-252766" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100006" name="Olympiad_Gate_06" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78749;-252637;-3342" node1="-78765,-252766" node2="-78730,-252510" node3="-78730,-252510" node4="-78765,-252766" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100007" name="Olympiad_Gate_07" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-76491;-252637;-3342" node1="-76503,-252766" node2="-76477,-252510" node3="-76477,-252510" node4="-76503,-252766" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100008" name="Olympiad_Gate_08" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-74851;-252637;-3342" node1="-74867,-252766" node2="-74832,-252510" node3="-74832,-252510" node4="-74867,-252766" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100009" name="Olympiad_Gate_09" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-88824;-249762;-3342" node1="-88836,-249891" node2="-88810,-249635" node3="-88810,-249635" node4="-88836,-249891" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100010" name="Olympiad_Gate_10" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87184;-249762;-3342" node1="-87200,-249891" node2="-87165,-249635" node3="-87165,-249635" node4="-87200,-249891" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100011" name="Olympiad_Gate_11" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84599;-249762;-3342" node1="-84611,-249891" node2="-84585,-249635" node3="-84585,-249635" node4="-84611,-249891" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100012" name="Olympiad_Gate_12" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82959;-249762;-3342" node1="-82975,-249891" node2="-82940,-249635" node3="-82940,-249635" node4="-82975,-249891" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100013" name="Olympiad_Gate_13" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80410;-249762;-3342" node1="-80422,-249891" node2="-80396,-249635" node3="-80396,-249635" node4="-80422,-249891" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100014" name="Olympiad_Gate_14" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78770;-249762;-3342" node1="-78786,-249891" node2="-78751,-249635" node3="-78751,-249635" node4="-78786,-249891" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100015" name="Olympiad_Gate_15" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-76491;-249762;-3342" node1="-76503,-249891" node2="-76477,-249635" node3="-76477,-249635" node4="-76503,-249891" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100016" name="Olympiad_Gate_16" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-74851;-249762;-3342" node1="-74867,-249891" node2="-74832,-249635" node3="-74832,-249635" node4="-74867,-249891" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100017" name="Olympiad_Gate_17" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-88824;-246955;-3342" node1="-88836,-247084" node2="-88810,-246828" node3="-88810,-246828" node4="-88836,-247084" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100018" name="Olympiad_Gate_18" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87184;-246955;-3342" node1="-87200,-247084" node2="-87165,-246828" node3="-87165,-246828" node4="-87200,-247084" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100019" name="Olympiad_Gate_19" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84599;-246955;-3342" node1="-84611,-247084" node2="-84585,-246828" node3="-84585,-246828" node4="-84611,-247084" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100020" name="Olympiad_Gate_20" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82959;-246955;-3342" node1="-82975,-247084" node2="-82940,-246828" node3="-82940,-246828" node4="-82975,-247084" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100021" name="Olympiad_Gate_21" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80410;-246955;-3342" node1="-80422,-247084" node2="-80396,-246828" node3="-80396,-246828" node4="-80422,-247084" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100022" name="Olympiad_Gate_22" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78770;-246955;-3342" node1="-78786,-247084" node2="-78751,-246828" node3="-78751,-246828" node4="-78786,-247084" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100023" name="Olympiad_Gate_23" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-76491;-246955;-3342" node1="-76503,-247084" node2="-76477,-246828" node3="-76477,-246828" node4="-76503,-247084" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100024" name="Olympiad_Gate_24" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-74851;-246955;-3342" node1="-74867,-247084" node2="-74832,-246828" node3="-74832,-246828" node4="-74867,-247084" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100025" name="Olympiad_Gate_25" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-88824;-244275;-3342" node1="-88836,-244404" node2="-88810,-244148" node3="-88810,-244148" node4="-88836,-244404" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100026" name="Olympiad_Gate_26" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87184;-244275;-3342" node1="-87200,-244404" node2="-87165,-244148" node3="-87165,-244148" node4="-87200,-244404" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100027" name="Olympiad_Gate_27" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84599;-244275;-3342" node1="-84611,-244404" node2="-84585,-244148" node3="-84585,-244148" node4="-84611,-244404" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100028" name="Olympiad_Gate_28" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82959;-244275;-3342" node1="-82975,-244404" node2="-82940,-244148" node3="-82940,-244148" node4="-82975,-244404" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100029" name="Olympiad_Gate_29" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80410;-244275;-3342" node1="-80422,-244404" node2="-80396,-244148" node3="-80396,-244148" node4="-80422,-244404" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100030" name="Olympiad_Gate_30" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78770;-244275;-3342" node1="-78786,-244404" node2="-78751,-244148" node3="-78751,-244148" node4="-78786,-244404" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100031" name="Olympiad_Gate_31" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-76491;-244275;-3342" node1="-76503,-244404" node2="-76477,-244148" node3="-76477,-244148" node4="-76503,-244404" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100032" name="Olympiad_Gate_32" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-74851;-244275;-3342" node1="-74867,-244404" node2="-74832,-244148" node3="-74832,-244148" node4="-74867,-244404" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100033" name="Olympiad_Gate_33" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-88824;-241480;-3342" node1="-88836,-241609" node2="-88810,-241353" node3="-88810,-241353" node4="-88836,-241609" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100034" name="Olympiad_Gate_34" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87184;-241480;-3342" node1="-87200,-241609" node2="-87165,-241353" node3="-87165,-241353" node4="-87200,-241609" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100035" name="Olympiad_Gate_35" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84599;-241480;-3342" node1="-84611,-241609" node2="-84585,-241353" node3="-84585,-241353" node4="-84611,-241609" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100036" name="Olympiad_Gate_36" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82959;-241480;-3342" node1="-82975,-241609" node2="-82940,-241353" node3="-82940,-241353" node4="-82975,-241609" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100037" name="Olympiad_Gate_37" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80410;-241480;-3342" node1="-80422,-241609" node2="-80396,-241353" node3="-80396,-241353" node4="-80422,-241609" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100038" name="Olympiad_Gate_38" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78770;-241480;-3342" node1="-78786,-241609" node2="-78751,-241353" node3="-78751,-241353" node4="-78786,-241609" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100039" name="Olympiad_Gate_39" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-76491;-241480;-3342" node1="-76503,-241609" node2="-76477,-241353" node3="-76477,-241353" node4="-76503,-241609" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100040" name="Olympiad_Gate_40" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-74851;-241480;-3342" node1="-74867,-241609" node2="-74832,-241353" node3="-74832,-241353" node4="-74867,-241609" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100041" name="Olympiad_Gate_41" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-88800;-238836;-3342" node1="-88812,-238965" node2="-88786,-238709" node3="-88786,-238709" node4="-88812,-238965" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100042" name="Olympiad_Gate_42" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87160;-238836;-3342" node1="-87176,-238965" node2="-87141,-238709" node3="-87141,-238709" node4="-87176,-238965" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100043" name="Olympiad_Gate_43" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84599;-238836;-3342" node1="-84611,-238965" node2="-84585,-238709" node3="-84585,-238709" node4="-84611,-238965" nodeZ="-3342" default_status="close" targetable="false" />
<door id="17100044" name="Olympiad_Gate_44" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82959;-238836;-3342" node1="-82975,-238965" node2="-82940,-238709" node3="-82940,-238709" node4="-82975,-238965" nodeZ="-3342" default_status="close" targetable="false" />
<!-- Olympiad Doors End-->
<door id="17150001" name="cratae_1715_001" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-86401;-8384" node1="-85966,-86411" node2="-85842,-86411" node3="-85841,-86389" node4="-85966,-86389" nodeZ="-8384" default_status="close" targetable="false" />
<door id="17150002" name="cratae_1715_002" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-86401;-8384" node1="-83966,-86411" node2="-83842,-86411" node3="-83841,-86389" node4="-83966,-86389" nodeZ="-8384" default_status="close" targetable="false" />
<door id="17150003" name="cratae_1715_003" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-86401;-8384" node1="-81966,-86411" node2="-81842,-86411" node3="-81841,-86389" node4="-81966,-86389" nodeZ="-8384" default_status="close" targetable="false" />
@@ -661,8 +545,8 @@
<door id="19160015" name="altar_inner_gate01" open_method="0" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="-17961;-54975;-10498" node1="-18093,-54986" node2="-17827,-54986" node3="-17825,-54963" node4="-18090,-54963" nodeZ="-10645" default_status="open" />
<door id="19160016" name="altar_flame_gate02" open_method="0" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="-15363;-54861;-10402" node1="-15388,-55019" node2="-15339,-55018" node3="-15341,-54696" node4="-15384,-54695" nodeZ="-10498" default_status="close" />
<door id="19160017" name="altar_flame_gate01" open_method="0" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="-17423;-54861;-10403" node1="-17448,-55019" node2="-17399,-55018" node3="-17401,-54696" node4="-17444,-54695" nodeZ="-10499" default_status="close" />
<door id="19170001" name="olympiad_door_991" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-21667;-21072;-3037" node1="-21677,-21147" node2="-21657,-21147" node3="-21657,-20997" node4="-21677,-20997" nodeZ="-3037" default_status="close" />
<door id="19170002" name="olympiad_door_990" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-20027;-21072;-3037" node1="-20037,-21147" node2="-20017,-21147" node3="-20017,-20997" node4="-20037,-20997" nodeZ="-3037" default_status="close" />
<door id="19170001" name="olympiad_door_991" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-21667;-21072;-3037" node1="-21677,-21147" node2="-21657,-21147" node3="-21657,-20997" node4="-21677,-20997" nodeZ="-3037" default_status="close" targetable="false" />
<door id="19170002" name="olympiad_door_990" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-20027;-21072;-3037" node1="-20037,-21147" node2="-20017,-21147" node3="-20017,-20997" node4="-20037,-20997" nodeZ="-3037" default_status="close" targetable="false" />
<door id="19210001" name="gludio_castle_outter_001" open_method="0" height="320" baseHpMax="633000" basePDef="644" baseMDef="518" pos="-18481;113065;-2476" node1="-18481,113059" node2="-18351,113059" node3="-18351,113071" node4="-18481,113071" nodeZ="-2799" />
<door id="19210002" name="gludio_castle_outter_002" open_method="0" height="320" baseHpMax="633000" basePDef="644" baseMDef="518" pos="-18219;113065;-2476" node1="-18350,113059" node2="-18219,113059" node3="-18219,113071" node4="-18350,113071" nodeZ="-2799" />
<door id="19210003" name="gludio_castle_wall_001" is_wall="true" open_method="0" height="460" baseHpMax="1357680" basePDef="837" baseMDef="674" pos="-19912;111381;-2688" node1="-19975,111082" node2="-19849,111082" node3="-19848,111680" node4="-19975,111680" nodeZ="-2922" />

View File

@@ -27,19 +27,18 @@
<enchant id="6576" targetGrade="D" maxEnchant="16" />
<enchant id="6578" targetGrade="S" maxEnchant="16" />
<!-- Not used anymore. -->
<!-- Crystal Scrolls: Enchant Weapon -->
<!-- <enchant id="731" targetGrade="A" bonusRate="100" /> -->
<!-- <enchant id="949" targetGrade="B" bonusRate="100" /> -->
<!-- <enchant id="953" targetGrade="C" bonusRate="100" /> -->
<!-- <enchant id="957" targetGrade="D" bonusRate="100" /> -->
<!-- <enchant id="961" targetGrade="S" bonusRate="100" /> -->
<enchant id="731" targetGrade="A" bonusRate="100" />
<enchant id="949" targetGrade="B" bonusRate="100" />
<enchant id="953" targetGrade="C" bonusRate="100" />
<enchant id="957" targetGrade="D" bonusRate="100" />
<enchant id="961" targetGrade="S" bonusRate="100" />
<!-- Crystal Scrolls: Enchant Armor -->
<!-- <enchant id="732" targetGrade="A" bonusRate="100" /> -->
<!-- <enchant id="950" targetGrade="B" bonusRate="100" /> -->
<!-- <enchant id="954" targetGrade="C" bonusRate="100" /> -->
<!-- <enchant id="958" targetGrade="D" bonusRate="100" /> -->
<!-- <enchant id="962" targetGrade="S" bonusRate="100" /> -->
<enchant id="732" targetGrade="A" bonusRate="100" />
<enchant id="950" targetGrade="B" bonusRate="100" />
<enchant id="954" targetGrade="C" bonusRate="100" />
<enchant id="958" targetGrade="D" bonusRate="100" />
<enchant id="962" targetGrade="S" bonusRate="100" />
<!-- Weapon Enchant Scrolls -->
<enchant id="22006" targetGrade="D" bonusRate="10" maxEnchant="16" />
@@ -72,42 +71,11 @@
<enchant id="22021" targetGrade="A" bonusRate="100" />
<enchant id="20522" targetGrade="S" bonusRate="100" />
<!-- Scroll: Enchant Weapon of Destruction -->
<enchant id="22221" targetGrade="S" maxEnchant="15" />
<enchant id="22223" targetGrade="A" maxEnchant="15" />
<enchant id="22225" targetGrade="B" maxEnchant="15" />
<enchant id="22227" targetGrade="C" maxEnchant="15" />
<enchant id="22229" targetGrade="D" maxEnchant="15" />
<!-- Scroll: Enchant Armor of Destruction -->
<enchant id="22222" targetGrade="S" maxEnchant="6" />
<enchant id="22224" targetGrade="A" maxEnchant="6" />
<enchant id="22226" targetGrade="B" maxEnchant="6" />
<enchant id="22228" targetGrade="C" maxEnchant="6" />
<enchant id="22230" targetGrade="D" maxEnchant="6" />
<!-- Master Yogi's Scroll: Enchant Weapon -->
<enchant id="13540" maxEnchant="23">
<item id="13539" /> <!-- Staff of Master Yogi -->
</enchant>
<!-- Olf's T-shirt Enchant Scroll -->
<enchant id="21581" maxEnchant="10">
<item id="21580" /> <!-- Olf's T-shirt -->
<item id="21706" /> <!-- Olf's T-shirt (Event) -->
</enchant>
<!-- Blessed Olf's T-shirt Enchant Scroll -->
<enchant id="21582" maxEnchant="10">
<item id="21580" /> <!-- Olf's T-shirt -->
<item id="21706" /> <!-- Olf's T-shirt (Event) -->
</enchant>
<!-- Blessed Olf's T-shirt Enchant Scroll - Event -->
<enchant id="21707" maxEnchant="10">
<item id="21580" /> <!-- Olf's T-shirt -->
<item id="21706" /> <!-- Olf's T-shirt (Event) -->
</enchant>
<!-- Event - Herdsman's Love Scroll Event -->
<enchant id="15381" maxEnchant="16">
<item id="15383" /> <!-- Weaver's Multi-colored Clothes (7-day limited period) -->

View File

@@ -2,534 +2,330 @@
<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)"> -->
<!-- <item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="1000000" 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" /> -->
<!-- <item auctionItemId="1" itemId="10485" itemCount="1" auctionInitBid="1000000" 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" />
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Great Spear -->
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Iron Hammer -->
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Sword Breaker -->
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Viper Fang -->
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Composite Bow -->
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Flanged Mace -->
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Mage Staff -->
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Life Stones -->
<!-- Top-Grade Life Stone - Level 80 -->
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Top-Grade Life Stone - Level 82 -->
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 15 -->
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 15 -->
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 15 -->
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 16 -->
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 16 -->
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 16 -->
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 80 -->
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 82 -->
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Forgotten Scrolls -->
<!-- Forgotten Scroll - Protection of Rune -->
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Elemental -->
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Alignment -->
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Fighter's Will -->
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Archer's Will -->
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Magician's Will -->
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Hair Accessories -->
<!-- Refined Chick Hat -->
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Wizard Hat -->
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Black Feather Mask -->
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Romantic Chapeau -->
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Carnival Circlet -->
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Jester Hat -->
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="20000000" 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" />
<item auctionItemId="31" itemId="13470" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="32" itemId="13466" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="33" itemId="13464" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="34" itemId="13458" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="35" itemId="13465" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="36" itemId="13463" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="37" itemId="13467" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="38" itemId="13469" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="39" itemId="13460" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="40" itemId="52" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="41" itemId="13884" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="42" itemId="13461" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="43" itemId="13462" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="44" itemId="13468" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="45" itemId="13459" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="46" itemId="13457" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Vesper Armors -->
<item auctionItemId="47" itemId="13440" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="48" itemId="13443" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="49" itemId="13446" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="50" itemId="13439" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="51" itemId="13445" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="52" itemId="13442" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="53" itemId="13139" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="54" itemId="13137" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="55" itemId="13138" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="56" itemId="13433" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="57" itemId="13441" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="58" itemId="13432" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="59" itemId="13438" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="60" itemId="13434" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="61" itemId="13444" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Epic Jewelery -->
<!-- Queen Ant's Ring -->
<item auctionItemId="62" itemId="6660" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Zaken's Earring -->
<item auctionItemId="63" itemId="6659" itemCount="1" auctionInitBid="300000000" auctionLenght="300" />
<!-- Ring Of Baium -->
<item auctionItemId="64" itemId="6658" itemCount="1" auctionInitBid="200000000" 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" />
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Great Spear -->
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Iron Hammer -->
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Sword Breaker -->
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Viper Fang -->
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Composite Bow -->
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Flanged Mace -->
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Mage Staff -->
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Life Stones -->
<!-- Top-Grade Life Stone - Level 80 -->
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Top-Grade Life Stone - Level 82 -->
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 15 -->
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 15 -->
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 15 -->
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 16 -->
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 16 -->
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 16 -->
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 80 -->
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 82 -->
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Forgotten Scrolls -->
<!-- Forgotten Scroll - Protection of Rune -->
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Elemental -->
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Alignment -->
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Fighter's Will -->
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Archer's Will -->
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Magician's Will -->
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Hair Accessories -->
<!-- Refined Chick Hat -->
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Wizard Hat -->
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Black Feather Mask -->
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Romantic Chapeau -->
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Carnival Circlet -->
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Jester Hat -->
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="20000000" 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" />
<item auctionItemId="31" itemId="13470" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="32" itemId="13466" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="33" itemId="13464" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="34" itemId="13458" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="35" itemId="13465" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="36" itemId="13463" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="37" itemId="13467" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="38" itemId="13469" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="39" itemId="13460" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="40" itemId="52" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="41" itemId="13884" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="42" itemId="13461" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="43" itemId="13462" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="44" itemId="13468" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="45" itemId="13459" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="46" itemId="13457" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Vesper Armors -->
<item auctionItemId="47" itemId="13440" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="48" itemId="13443" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="49" itemId="13446" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="50" itemId="13439" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="51" itemId="13445" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="52" itemId="13442" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="53" itemId="13139" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="54" itemId="13137" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="55" itemId="13138" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="56" itemId="13433" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="57" itemId="13441" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="58" itemId="13432" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="59" itemId="13438" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="60" itemId="13434" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="61" itemId="13444" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Epic Jewelery -->
<!-- Queen Ant's Ring -->
<item auctionItemId="62" itemId="6660" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Zaken's Earring -->
<item auctionItemId="63" itemId="6659" itemCount="1" auctionInitBid="300000000" auctionLenght="300" />
<!-- Ring Of Baium -->
<item auctionItemId="64" itemId="6658" itemCount="1" auctionInitBid="200000000" 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" />
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Great Spear -->
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Iron Hammer -->
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Sword Breaker -->
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Viper Fang -->
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Composite Bow -->
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Flanged Mace -->
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Improved Mage Staff -->
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="1000000" auctionLenght="300" />
<!-- Life Stones -->
<!-- Top-Grade Life Stone - Level 80 -->
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Top-Grade Life Stone - Level 82 -->
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 15 -->
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 15 -->
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 15 -->
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="40000000" auctionLenght="300" />
<!-- Red Soul Crystal - Stage 16 -->
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Green Soul Crystal - Stage 16 -->
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Blue Soul Crystal - Stage 16 -->
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 80 -->
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- High-Grade Life Stone - Level 82 -->
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Forgotten Scrolls -->
<!-- Forgotten Scroll - Protection of Rune -->
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Elemental -->
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Protection of Alignment -->
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Fighter's Will -->
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Archer's Will -->
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Forgotten Scroll - Magician's Will -->
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="30000000" auctionLenght="300" />
<!-- Hair Accessories -->
<!-- Refined Chick Hat -->
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Wizard Hat -->
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Black Feather Mask -->
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Romantic Chapeau -->
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Carnival Circlet -->
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="20000000" auctionLenght="300" />
<!-- Refined Jester Hat -->
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="20000000" 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" />
<item auctionItemId="31" itemId="13470" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="32" itemId="13466" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="33" itemId="13464" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="34" itemId="13458" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="35" itemId="13465" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="36" itemId="13463" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="37" itemId="13467" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="38" itemId="13469" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="39" itemId="13460" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="40" itemId="52" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="41" itemId="13884" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="42" itemId="13461" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="43" itemId="13462" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="44" itemId="13468" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="45" itemId="13459" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<item auctionItemId="46" itemId="13457" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Vesper Armors -->
<item auctionItemId="47" itemId="13440" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="48" itemId="13443" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="49" itemId="13446" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="50" itemId="13439" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="51" itemId="13445" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="52" itemId="13442" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="53" itemId="13139" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="54" itemId="13137" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="55" itemId="13138" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="56" itemId="13433" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="57" itemId="13441" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="58" itemId="13432" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="59" itemId="13438" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="60" itemId="13434" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<item auctionItemId="61" itemId="13444" itemCount="1" auctionInitBid="50000000" auctionLenght="300" />
<!-- Epic Jewelery -->
<!-- Queen Ant's Ring -->
<item auctionItemId="62" itemId="6660" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
<!-- Zaken's Earring -->
<item auctionItemId="63" itemId="6659" itemCount="1" auctionInitBid="300000000" auctionLenght="300" />
<!-- Ring Of Baium -->
<item auctionItemId="64" itemId="6658" itemCount="1" auctionInitBid="200000000" auctionLenght="300" />
</instance>
</list>

View File

@@ -17,8 +17,6 @@
<item itemId="5908" level="13" leveledItemId="9570" /> <!-- RED 13 - 14 -->
<item itemId="9570" level="14" leveledItemId="10480" /> <!-- RED 14 - 15 -->
<item itemId="10480" level="15" leveledItemId="13071" /> <!-- RED 15 - 16 -->
<item itemId="13071" level="16" leveledItemId="15541" /> <!-- RED 16 - 17 -->
<item itemId="15541" level="17" leveledItemId="15826" /> <!-- RED 17 - 18 -->
<item itemId="4640" level="0" leveledItemId="4641" /> <!-- GREEN 0 - 1 -->
<item itemId="4641" level="1" leveledItemId="4642" /> <!-- GREEN 1 - 2 -->
@@ -36,8 +34,6 @@
<item itemId="5911" level="13" leveledItemId="9572" /> <!-- GREEN 13 - 14 -->
<item itemId="9572" level="14" leveledItemId="10482" /> <!-- GREEN 14 - 15 -->
<item itemId="10482" level="15" leveledItemId="13073" /> <!-- GREEN 15 - 16 -->
<item itemId="13073" level="16" leveledItemId="15543" /> <!-- GREEN 16 - 17 -->
<item itemId="15543" level="17" leveledItemId="15828" /> <!-- GREEN 17 - 18 -->
<item itemId="4651" level="0" leveledItemId="4652" /> <!-- BLUE 0 - 1 -->
<item itemId="4652" level="1" leveledItemId="4653" /> <!-- BLUE 1 - 2 -->
@@ -55,8 +51,6 @@
<item itemId="5914" level="13" leveledItemId="9571" /> <!-- BLUE 13 - 14 -->
<item itemId="9571" level="14" leveledItemId="10481" /> <!-- BLUE 14 - 15 -->
<item itemId="10481" level="15" leveledItemId="13072" /> <!-- BLUE 15 - 16 -->
<item itemId="13072" level="16" leveledItemId="15542" /> <!-- BLUE 16 - 17 -->
<item itemId="15542" level="17" leveledItemId="15827" /> <!-- BLUE 17 - 18 -->
</crystal>
<npc>
<!-- Mobs that level up crystal from Level 1 up to 10 -->
@@ -367,7 +361,7 @@
<detail chance="9" skill="true" maxLevel="8" />
</item>
<!-- RaidBosses or GrandBosses that level up crystal from Level 10 up to 18 -->
<!-- RaidBosses or GrandBosses that level up crystal from Level 10 up to 16 -->
<item npcId="29001"> <!-- Queen Ant -->
<detail chance="5" absorbType="FULL_PARTY" levelList="10" />
</item>
@@ -384,11 +378,6 @@
<item npcId="29176"> <!-- Daytime Zaken -->
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="10, 11" />
</item>
<item npcId="29181"> <!-- Night-time Zaken -->
<detail chance="20" absorbType="PARTY_ONE_RANDOM" levelList="12, 13" />
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="14, 15" />
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="16" />
</item>
<item npcId="25016"> <!-- The 3rd Underwater Guardian -->
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11" />
</item>
@@ -531,9 +520,6 @@
<item npcId="25524"> <!-- Flamestone Giant -->
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12" />
</item>
<item npcId="25703"> <!-- Gigantic Golem -->
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12" />
</item>
<item npcId="25143"> <!-- Fire of Wrath Shuriel -->
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12" />
</item>
@@ -733,10 +719,6 @@
<detail chance="10" absorbType="FULL_PARTY" levelList="12, 13, 14, 15" />
<detail chance="1" absorbType="FULL_PARTY" levelList="16" />
</item>
<item npcId="25701"> <!-- Anais -->
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="12, 13" />
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="14" />
</item>
<item npcId="25677"> <!-- Water Spirit Lian -->
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="12, 13" />
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="14" />
@@ -751,64 +733,25 @@
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="14" />
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="15" />
</item>
<item npcId="25713"> <!-- Darnel -->
<detail chance="1" absorbType="PARTY_ONE_RANDOM" levelList="12, 13, 14, 15" />
</item>
<item npcId="25714"> <!-- Kechi -->
<detail chance="1" absorbType="PARTY_ONE_RANDOM" levelList="12, 13, 14, 15" />
</item>
<item npcId="25716"> <!-- Tears -->
<detail chance="1" absorbType="PARTY_ONE_RANDOM" levelList="12, 13, 14, 15" />
</item>
<item npcId="25699"> <!-- Ice Knight Captain Normal Mode -->
<detail chance="10" absorbType="FULL_PARTY" levelList="12, 13" />
</item>
<item npcId="25700"> <!-- Ice Knight Captain Extreme Mode -->
<detail chance="20" absorbType="FULL_PARTY" levelList="12, 13, 14" />
</item>
<item npcId="25696"> <!-- Taklacan -->
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="12, 13, 14" />
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="15" />
</item>
<item npcId="25698"> <!-- Dopagen -->
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="12, 13, 14" />
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="15" />
</item>
<item npcId="29186"> <!-- Baylor -->
<detail chance="1" absorbType="PARTY_ONE_RANDOM" levelList="12, 13, 14, 15, 16" />
</item>
<item npcId="29047"> <!-- Scarlet van Halisha -->
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13" />
<detail chance="50" absorbType="FULL_PARTY" levelList="14" />
<detail chance="10" absorbType="FULL_PARTY" levelList="15" />
</item>
<item npcId="29179"> <!-- Freya Normal Mode -->
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14" />
<detail chance="10" absorbType="FULL_PARTY" levelList="15" />
</item>
<item npcId="29180"> <!-- Freya Extreme Mode -->
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15" />
<detail chance="50" absorbType="FULL_PARTY" levelList="16, 17" />
</item>
<item npcId="29019"> <!-- Antharas -->
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
<detail chance="50" absorbType="FULL_PARTY" levelList="17" />
</item>
<item npcId="29066"> <!-- Antharas -->
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
<detail chance="50" absorbType="FULL_PARTY" levelList="17" />
</item>
<item npcId="29067"> <!-- Antharas -->
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
<detail chance="50" absorbType="FULL_PARTY" levelList="17" />
</item>
<item npcId="29068"> <!-- Antharas -->
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
<detail chance="50" absorbType="FULL_PARTY" levelList="17" />
</item>
<item npcId="29028"> <!-- Valakas -->
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
<detail chance="50" absorbType="FULL_PARTY" levelList="17" />
</item>
</npc>
</list>

View File

@@ -43,31 +43,31 @@
</route>
<!-- Hellbound Town routes for Patrols -->
<route name="castletownguard01" repeat="true" repeatStyle="random">
<target id="22360" spawnX="14840" spawnY="251949" spawnZ="-2009" /> <!-- Town Patrolman -->
<target id="22360" spawnX="14840" spawnY="251949" spawnZ="-2009" /> <!-- Town Patrolman -->
<point X="14840" Y="251949" Z="-1992" delay="0" run="false" />
<point X="14679" Y="253399" Z="-2016" delay="0" run="false" />
</route>
<route name="castletownguard02" repeat="true" repeatStyle="random">
<target id="22360" spawnX="16082" spawnY="251790" spawnZ="-2000" /> <!-- Town Patrolman -->
<target id="22360" spawnX="16082" spawnY="251790" spawnZ="-2000" /> <!-- Town Patrolman -->
<point X="16082" Y="251790" Z="-1992" delay="0" run="false" />
<point X="16388" Y="252456" Z="-2000" delay="0" run="false" />
<point X="16093" Y="254443" Z="-2064" delay="0" run="false" />
</route>
<route name="castletownguard03" repeat="true" repeatStyle="random">
<target id="22360" spawnX="16524" spawnY="255244" spawnZ="-2080" /> <!-- Town Patrolman -->
<target id="22360" spawnX="16524" spawnY="255244" spawnZ="-2080" /> <!-- Town Patrolman -->
<point X="16524" Y="255244" Z="-2072" delay="0" run="false" />
<point X="17211" Y="256290" Z="-2064" delay="0" run="false" />
<point X="18805" Y="256302" Z="-2088" delay="0" run="false" />
</route>
<route name="castletownguard04" repeat="true" repeatStyle="random">
<target id="22360" spawnX="17670" spawnY="252256" spawnZ="-2022" /> <!-- Town Patrolman -->
<target id="22360" spawnX="17670" spawnY="252256" spawnZ="-2022" /> <!-- Town Patrolman -->
<point X="17344" Y="251070" Z="-1952" delay="0" run="false" />
<point X="18708" Y="250659" Z="-1992" delay="0" run="false" />
<point X="19533" Y="250667" Z="-2016" delay="0" run="false" />
</route>
<!-- Anomic Foundry routes for Lesser and Greater Evil -->
<route name="malign_conveyor_1_1" repeat="true" repeatStyle="conveyor">
<target id="22398" spawnX="27883" spawnY="248613" spawnZ="-3209" /> <!-- Lesser Evil -->
<target id="22398" spawnX="27883" spawnY="248613" spawnZ="-3209" /> <!-- Lesser Evil -->
<point X="27886" Y="248609" Z="-3208" delay="0" run="true" />
<point X="28150" Y="247726" Z="-3272" delay="0" run="true" />
<point X="27340" Y="246649" Z="-3680" delay="0" run="true" />
@@ -81,7 +81,7 @@
<!-- <point X="28770" Y="244248" Z="-2496" delay="0" run="true" /> --> <!-- retail -->
</route>
<route name="malign_conveyor_1_2" repeat="true" repeatStyle="conveyor">
<target id="22398" spawnX="26142" spawnY="246442" spawnZ="-3216" /> <!-- Lesser Evil -->
<target id="22398" spawnX="26142" spawnY="246442" spawnZ="-3216" /> <!-- Lesser Evil -->
<point X="26144" Y="246444" Z="-3208" delay="0" run="true" />
<point X="28063" Y="247940" Z="-3248" delay="0" run="true" />
<point X="28276" Y="247756" Z="-3272" delay="0" run="true" />
@@ -91,21 +91,21 @@
<point X="28058" Y="245915" Z="-3701" delay="0" run="true" /> <!-- custom -->
</route>
<route name="malign_conveyor_1_3" repeat="true" repeatStyle="conveyor">
<target id="22398" spawnX="27335" spawnY="246217" spawnZ="-3668" /> <!-- Lesser Evil -->
<target id="22398" spawnX="27335" spawnY="246217" spawnZ="-3668" /> <!-- Lesser Evil -->
<point X="27336" Y="246216" Z="-3656" delay="0" run="true" />
<point X="27645" Y="245921" Z="-3672" delay="0" run="true" />
<!-- <point X="28245" Y="245904" Z="-2552" delay="0" run="true" /> --> <!-- retail -->
<point X="28058" Y="245915" Z="-3701" delay="0" run="true" /> <!-- custom -->
</route>
<route name="malign_conveyor_1_4" repeat="true" repeatStyle="conveyor">
<target id="22398" spawnX="28486" spawnY="245913" spawnZ="-3698" /> <!-- Lesser Evil -->
<target id="22398" spawnX="28486" spawnY="245913" spawnZ="-3698" /> <!-- Lesser Evil -->
<point X="28476" Y="245914" Z="-3696" delay="0" run="true" />
<point X="29058" Y="245894" Z="-3672" delay="0" run="true" />
<point X="29433" Y="245216" Z="-3688" delay="0" run="true" />
<point X="28942" Y="244492" Z="-3696" delay="0" run="true" />
</route>
<route name="malign_conveyor_2_1" repeat="true" repeatStyle="conveyor">
<target id="22399" spawnX="28684" spawnY="244118" spawnZ="-3700" /> <!-- Greater Evil -->
<target id="22399" spawnX="28684" spawnY="244118" spawnZ="-3700" /> <!-- Greater Evil -->
<point X="28771" Y="244251" Z="-2496" delay="0" run="true" />
<point X="28495" Y="243839" Z="-3696" delay="0" run="true" />
<point X="28727" Y="242939" Z="-3592" delay="0" run="true" />
@@ -119,429 +119,6 @@
<point X="24560" Y="254414" Z="-1984" delay="0" run="true" />
<point X="25392" Y="255459" Z="-1992" delay="0" run="true" />
</route>
<!-- Antharas's Lair and Dragon Valley -->
<!-- Cycle runner dragons at center of antharas layer path 1 -->
<route name="antharas_layer_path_1" repeat="true" repeatStyle="cycle">
<target id="22848" spawnX="146738" spawnY="113015" spawnZ="-3725" />
<target id="22848" spawnX="146616" spawnY="112973" spawnZ="-3725" />
<target id="22848" spawnX="146301" spawnY="112849" spawnZ="-3725" />
<target id="22848" spawnX="146726" spawnY="112511" spawnZ="-3727" />
<target id="22848" spawnX="146773" spawnY="112827" spawnZ="-3725" />
<target id="22848" spawnX="145953" spawnY="112750" spawnZ="-3725" />
<target id="22848" spawnX="146538" spawnY="112709" spawnZ="-3725" />
<target id="22849" spawnX="145690" spawnY="112729" spawnZ="-3727" />
<target id="22849" spawnX="145817" spawnY="112579" spawnZ="-3725" />
<target id="22849" spawnX="146231" spawnY="112710" spawnZ="-3725" />
<target id="22849" spawnX="146616" spawnY="112973" spawnZ="-3725" />
<target id="22849" spawnX="147157" spawnY="112590" spawnZ="-3715" />
<target id="22849" spawnX="145788" spawnY="112866" spawnZ="-3727" />
<target id="22849" spawnX="146144" spawnY="112734" spawnZ="-3725" />
<target id="22849" spawnX="146765" spawnY="112305" spawnZ="-3725" />
<target id="22849" spawnX="146797" spawnY="112474" spawnZ="-3725" />
<target id="22849" spawnX="146992" spawnY="113055" spawnZ="-3725" />
<target id="22849" spawnX="145833" spawnY="112769" spawnZ="-3725" />
<target id="22849" spawnX="146402" spawnY="112499" spawnZ="-3725" />
<target id="22849" spawnX="146070" spawnY="112691" spawnZ="-3725" />
<target id="22849" spawnX="147164" spawnY="112855" spawnZ="-3725" />
<target id="22849" spawnX="145786" spawnY="112924" spawnZ="-3725" />
<target id="22849" spawnX="147103" spawnY="112724" spawnZ="-3705" />
<target id="22850" spawnX="146886" spawnY="112468" spawnZ="-3725" />
<target id="22850" spawnX="145999" spawnY="112712" spawnZ="-3725" />
<target id="22850" spawnX="146335" spawnY="112659" spawnZ="-3725" />
<target id="22850" spawnX="146806" spawnY="112947" spawnZ="-3727" />
<target id="22850" spawnX="147082" spawnY="112609" spawnZ="-3701" />
<target id="22850" spawnX="146706" spawnY="112835" spawnZ="-3725" />
<target id="22851" spawnX="146151" spawnY="112645" spawnZ="-3725" />
<target id="22851" spawnX="146883" spawnY="112753" spawnZ="-3725" />
<target id="22851" spawnX="146603" spawnY="112946" spawnZ="-3725" />
<target id="22851" spawnX="145959" spawnY="112794" spawnZ="-3725" />
<target id="22851" spawnX="146859" spawnY="112482" spawnZ="-3725" />
<target id="22857" spawnX="146113" spawnY="112674" spawnZ="-3720" />
<point X="146113" Y="112674" Z="-3725" delay="0" run="true" />
<point X="146634" Y="112759" Z="-3725" delay="0" run="true" />
<point X="147332" Y="112618" Z="-3725" delay="0" run="true" />
<point X="147820" Y="112655" Z="-3725" delay="0" run="true" />
<point X="148288" Y="112699" Z="-3725" delay="0" run="true" />
<point X="148740" Y="112875" Z="-3725" delay="0" run="true" />
<point X="149104" Y="113514" Z="-3725" delay="0" run="true" />
<point X="149236" Y="114026" Z="-3725" delay="0" run="true" />
<point X="149223" Y="114779" Z="-3725" delay="0" run="true" />
<point X="148894" Y="115438" Z="-3725" delay="0" run="true" />
<point X="148331" Y="115916" Z="-3725" delay="0" run="true" />
<point X="147622" Y="116163" Z="-3725" delay="0" run="true" />
<point X="146952" Y="116346" Z="-3725" delay="0" run="true" />
<point X="146345" Y="116140" Z="-3721" delay="0" run="true" />
<point X="145653" Y="115676" Z="-3725" delay="0" run="true" />
<point X="145106" Y="115136" Z="-3725" delay="0" run="true" />
<point X="145104" Y="114397" Z="-3725" delay="0" run="true" />
<point X="145083" Y="113773" Z="-3725" delay="0" run="true" />
<point X="145387" Y="113077" Z="-3725" delay="0" run="true" />
<point X="145711" Y="112843" Z="-3725" delay="0" run="true" />
</route>
<!-- Cycle runner dragons at center of antharas layer path 2 -->
<route name="antharas_layer_path_2" repeat="true" repeatStyle="cycle">
<target id="22848" spawnX="145983" spawnY="112794" spawnZ="-3725" />
<target id="22848" spawnX="146247" spawnY="112541" spawnZ="-3725" />
<target id="22848" spawnX="146438" spawnY="112525" spawnZ="-3725" />
<target id="22848" spawnX="146101" spawnY="112812" spawnZ="-3725" />
<target id="22848" spawnX="148611" spawnY="121436" spawnZ="-3725" />
<target id="22848" spawnX="147008" spawnY="112896" spawnZ="-3725" />
<target id="22848" spawnX="147259" spawnY="112937" spawnZ="-3725" />
<target id="22849" spawnX="145781" spawnY="112722" spawnZ="-3725" />
<target id="22849" spawnX="146131" spawnY="112819" spawnZ="-3725" />
<target id="22849" spawnX="146834" spawnY="112460" spawnZ="-3725" />
<target id="22849" spawnX="146430" spawnY="112775" spawnZ="-3725" />
<target id="22849" spawnX="146160" spawnY="112600" spawnZ="-3725" />
<target id="22849" spawnX="146836" spawnY="112395" spawnZ="-3725" />
<target id="22849" spawnX="146333" spawnY="112682" spawnZ="-3727" />
<target id="22849" spawnX="145852" spawnY="112757" spawnZ="-3725" />
<target id="22849" spawnX="146092" spawnY="112508" spawnZ="-3725" />
<target id="22849" spawnX="146723" spawnY="112599" spawnZ="-3725" />
<target id="22849" spawnX="146834" spawnY="112608" spawnZ="-3725" />
<target id="22849" spawnX="146466" spawnY="112825" spawnZ="-3725" />
<target id="22849" spawnX="146796" spawnY="112342" spawnZ="-3725" />
<target id="22849" spawnX="146887" spawnY="112458" spawnZ="-3725" />
<target id="22849" spawnX="146519" spawnY="112867" spawnZ="-3725" />
<target id="22849" spawnX="146743" spawnY="112884" spawnZ="-3725" />
<target id="22850" spawnX="146322" spawnY="112765" spawnZ="-3725" />
<target id="22850" spawnX="146062" spawnY="112882" spawnZ="-3725" />
<target id="22850" spawnX="146885" spawnY="112672" spawnZ="-3725" />
<target id="22850" spawnX="146741" spawnY="112446" spawnZ="-3725" />
<target id="22850" spawnX="148504" spawnY="121330" spawnZ="-3725" />
<target id="22850" spawnX="148553" spawnY="121424" spawnZ="-3725" />
<target id="22851" spawnX="146838" spawnY="112955" spawnZ="-3725" />
<target id="22851" spawnX="146439" spawnY="112836" spawnZ="-3725" />
<target id="22851" spawnX="149111" spawnY="119685" spawnZ="-3725" />
<target id="22851" spawnX="149155" spawnY="119791" spawnZ="-3725" />
<point X="145663" Y="112880" Z="-3725" delay="0" run="true" />
<point X="146119" Y="112677" Z="-3725" delay="0" run="true" />
<point X="146607" Y="112628" Z="-3725" delay="0" run="true" />
<point X="147323" Y="112403" Z="-3725" delay="0" run="true" />
<point X="147829" Y="112273" Z="-3725" delay="0" run="true" />
<point X="148592" Y="112210" Z="-3725" delay="0" run="true" />
<point X="148864" Y="112788" Z="-3725" delay="0" run="true" />
<point X="149054" Y="113411" Z="-3725" delay="0" run="true" />
<point X="149193" Y="114021" Z="-3725" delay="0" run="true" />
<point X="149199" Y="114819" Z="-3725" delay="0" run="true" />
<point X="148948" Y="115477" Z="-3725" delay="0" run="true" />
<point X="148324" Y="115937" Z="-3725" delay="0" run="true" />
<point X="147706" Y="116099" Z="-3725" delay="0" run="true" />
<point X="146939" Y="116255" Z="-3725" delay="0" run="true" />
<point X="146328" Y="116274" Z="-3725" delay="0" run="true" />
<point X="145676" Y="115748" Z="-3725" delay="0" run="true" />
<point X="145206" Y="115149" Z="-3725" delay="0" run="true" />
<point X="145105" Y="114461" Z="-3725" delay="0" run="true" />
<point X="145073" Y="113796" Z="-3725" delay="0" run="true" />
<point X="145372" Y="113245" Z="-3725" delay="0" run="true" />
</route>
<!-- Cycle runner dragons at center of antharas layer path 3 -->
<route name="antharas_layer_path_3" repeat="true" repeatStyle="cycle">
<target id="22848" spawnX="147107" spawnY="112966" spawnZ="-3725" />
<target id="22848" spawnX="146801" spawnY="112863" spawnZ="-3725" />
<target id="22848" spawnX="149261" spawnY="119685" spawnZ="-3725" />
<target id="22848" spawnX="151768" spawnY="115130" spawnZ="-3725" />
<target id="22848" spawnX="152029" spawnY="120592" spawnZ="-3725" />
<target id="22848" spawnX="152264" spawnY="119512" spawnZ="-3725" />
<target id="22848" spawnX="152698" spawnY="119086" spawnZ="-3725" />
<target id="22849" spawnX="146333" spawnY="112829" spawnZ="-3725" />
<target id="22849" spawnX="147142" spawnY="112831" spawnZ="-3725" />
<target id="22849" spawnX="146824" spawnY="112976" spawnZ="-3727" />
<target id="22849" spawnX="146342" spawnY="112656" spawnZ="-3725" />
<target id="22849" spawnX="147039" spawnY="112903" spawnZ="-3725" />
<target id="22849" spawnX="146205" spawnY="112494" spawnZ="-3725" />
<target id="22849" spawnX="149287" spawnY="119761" spawnZ="-3725" />
<target id="22849" spawnX="149331" spawnY="119655" spawnZ="-3725" />
<target id="22849" spawnX="151692" spawnY="115165" spawnZ="-3725" />
<target id="22849" spawnX="151918" spawnY="115130" spawnZ="-3725" />
<target id="22849" spawnX="151959" spawnY="120555" spawnZ="-3725" />
<target id="22849" spawnX="151980" spawnY="120515" spawnZ="-3725" />
<target id="22849" spawnX="152024" spawnY="120560" spawnZ="-3725" />
<target id="22849" spawnX="152264" spawnY="119512" spawnZ="-3725" />
<target id="22849" spawnX="152698" spawnY="119235" spawnZ="-3725" />
<target id="22849" spawnX="152760" spawnY="119216" spawnZ="-3725" />
<target id="22850" spawnX="148659" spawnY="121381" spawnZ="-3725" />
<target id="22850" spawnX="146660" spawnY="112757" spawnZ="-3725" />
<target id="22850" spawnX="152264" spawnY="119512" spawnZ="-3725" />
<target id="22850" spawnX="152605" spawnY="119152" spawnZ="-3725" />
<target id="22850" spawnX="152648" spawnY="119046" spawnZ="-3725" />
<target id="22851" spawnX="151768" spawnY="115279" spawnZ="-3725" />
<target id="22851" spawnX="151869" spawnY="115209" spawnZ="-3725" />
<target id="22851" spawnX="152016" spawnY="120566" spawnZ="-3725" />
<target id="22851" spawnX="152264" spawnY="119512" spawnZ="-3725" />
<point X="145602" Y="112763" Z="-3725" delay="0" run="true" />
<point X="146136" Y="112555" Z="-3725" delay="0" run="true" />
<point X="146573" Y="112475" Z="-3725" delay="0" run="true" />
<point X="147277" Y="112201" Z="-3725" delay="0" run="true" />
<point X="147888" Y="112035" Z="-3725" delay="0" run="true" />
<point X="148629" Y="112028" Z="-3725" delay="0" run="true" />
<point X="149092" Y="112613" Z="-3725" delay="0" run="true" />
<point X="149294" Y="113356" Z="-3725" delay="0" run="true" />
<point X="149387" Y="114003" Z="-3725" delay="0" run="true" />
<point X="149352" Y="114831" Z="-3725" delay="0" run="true" />
<point X="149073" Y="115565" Z="-3725" delay="0" run="true" />
<point X="148409" Y="116094" Z="-3725" delay="0" run="true" />
<point X="147777" Y="116253" Z="-3725" delay="0" run="true" />
<point X="146884" Y="116410" Z="-3725" delay="0" run="true" />
<point X="146266" Y="116378" Z="-3725" delay="0" run="true" />
<point X="145553" Y="115888" Z="-3725" delay="0" run="true" />
<point X="145085" Y="115225" Z="-3725" delay="0" run="true" />
<point X="144950" Y="114466" Z="-3725" delay="0" run="true" />
<point X="144967" Y="113785" Z="-3725" delay="0" run="true" />
<point X="145235" Y="113171" Z="-3725" delay="0" run="true" />
</route>
<!-- Tracker Howl -->
<route name="howl_01" repeat="true" repeatStyle="back">
<target id="22859" spawnX="81317" spawnY="109228" spawnZ="-3064" />
<point X="80910" Y="109458" Z="-3061" delay="0" run="true" />
<point X="81898" Y="109331" Z="-3130" delay="0" run="true" />
<point X="83242" Y="108807" Z="-3103" delay="0" run="true" />
<point X="86062" Y="107645" Z="-3211" delay="0" run="true" />
</route>
<route name="howl_02" repeat="true" repeatStyle="back">
<target id="22859" spawnX="88535" spawnY="112442" spawnZ="-3272" />
<point X="88265" Y="112039" Z="-3282" delay="0" run="true" />
<point X="87320" Y="112088" Z="-3296" delay="0" run="true" />
<point X="86123" Y="111867" Z="-3127" delay="0" run="true" />
<point X="84399" Y="112206" Z="-3042" delay="0" run="true" />
<point X="82615" Y="113254" Z="-3064" delay="0" run="true" />
</route>
<route name="howl_03" repeat="true" repeatStyle="back">
<target id="22859" spawnX="87439" spawnY="121072" spawnZ="-3061" />
<point X="88302" Y="120503" Z="-3061" delay="0" run="true" />
<point X="87252" Y="120468" Z="-3054" delay="0" run="true" />
<point X="85936" Y="119902" Z="-2997" delay="0" run="true" />
<point X="84997" Y="118465" Z="-3042" delay="0" run="true" />
<point X="83993" Y="117988" Z="-2990" delay="0" run="true" />
<point X="83041" Y="117749" Z="-3034" delay="0" run="true" />
</route>
<!-- Mesmer Drake -->
<route name="mesmer_drake_01" repeat="true" repeatStyle="back">
<target id="22820" spawnX="85452" spawnY="108916" spawnZ="-3202" />
<point X="85005" Y="108734" Z="-3206" delay="0" run="true" />
<point X="80765" Y="109804" Z="-3062" delay="0" run="true" />
<point X="86712" Y="108242" Z="-3137" delay="0" run="true" />
</route>
<route name="mesmer_drake_02" repeat="true" repeatStyle="back">
<target id="22820" spawnX="83429" spawnY="118625" spawnZ="-2996" />
<point X="83430" Y="119245" Z="-2992" delay="0" run="true" />
<point X="84419" Y="120439" Z="-2981" delay="0" run="true" />
<point X="85625" Y="120677" Z="-3032" delay="0" run="true" />
<point X="86971" Y="120939" Z="-3059" delay="0" run="true" />
<point X="88152" Y="120086" Z="-3061" delay="0" run="true" />
<point X="88339" Y="119245" Z="-3061" delay="0" run="true" />
</route>
<route name="mesmer_drake_03" repeat="true" repeatStyle="back">
<target id="22820" spawnX="82028" spawnY="113982" spawnZ="-3176" />
<point X="81684" Y="114351" Z="-3315" delay="0" run="true" />
<point X="82366" Y="113735" Z="-3100" delay="0" run="true" />
<point X="82389" Y="113103" Z="-3060" delay="0" run="true" />
<point X="83331" Y="112997" Z="-3059" delay="0" run="true" />
<point X="84166" Y="112580" Z="-3057" delay="0" run="true" />
<point X="84898" Y="111948" Z="-3089" delay="0" run="true" />
<point X="86076" Y="111677" Z="-3135" delay="0" run="true" />
</route>
<!-- Dust Dragon Tracker -->
<route name="dust_dragon_tracker_01" repeat="true" repeatStyle="back">
<target id="22834" spawnX="88660" spawnY="105889" spawnZ="-3138" />
<point X="88044" Y="106666" Z="-3176" delay="0" run="true" />
<point X="88516" Y="107842" Z="-3063" delay="0" run="true" />
<point X="89648" Y="108235" Z="-3041" delay="0" run="true" />
<point X="90435" Y="107945" Z="-3067" delay="0" run="true" />
<point X="91717" Y="108148" Z="-3045" delay="0" run="true" />
</route>
<route name="dust_dragon_tracker_02" repeat="true" repeatStyle="back">
<target id="22834" spawnX="93937" spawnY="107688" spawnZ="-3026" />
<point X="94106" Y="107563" Z="-3027" delay="0" run="true" />
<point X="91247" Y="107747" Z="-3065" delay="0" run="true" />
<point X="89140" Y="106565" Z="-3206" delay="0" run="true" />
</route>
<route name="dust_dragon_tracker_03" repeat="true" repeatStyle="back">
<target id="22834" spawnX="108770" spawnY="117414" spawnZ="-3042" />
<point X="108489" Y="117143" Z="-3060" delay="0" run="true" />
<point X="109107" Y="116711" Z="-3063" delay="0" run="true" />
<point X="109321" Y="115575" Z="-3119" delay="0" run="true" />
<point X="109578" Y="113910" Z="-3061" delay="0" run="true" />
<point X="109475" Y="113354" Z="-3075" delay="0" run="true" />
</route>
<route name="dust_dragon_tracker_04" repeat="true" repeatStyle="back">
<target id="22834" spawnX="115880" spawnY="110205" spawnZ="-3035" />
<point X="114110" Y="110059" Z="-3018" delay="0" run="true" />
<point X="113975" Y="110873" Z="-3086" delay="0" run="true" />
<point X="114438" Y="112207" Z="-3102" delay="0" run="true" />
<point X="113636" Y="113105" Z="-3021" delay="0" run="true" />
<point X="112959" Y="113113" Z="-2839" delay="0" run="true" />
<point X="111856" Y="112703" Z="-2776" delay="0" run="true" />
<point X="111901" Y="111790" Z="-2775" delay="0" run="true" />
</route>
<route name="dust_dragon_tracker_05" repeat="true" repeatStyle="back">
<target id="22834" spawnX="112508" spawnY="110567" spawnZ="-2982" />
<point X="111759" Y="110241" Z="-3029" delay="0" run="true" />
<point X="114298" Y="109809" Z="-3004" delay="0" run="true" />
<point X="115292" Y="109766" Z="-3032" delay="0" run="true" />
<point X="116705" Y="110041" Z="-3029" delay="0" run="true" />
<point X="118543" Y="109791" Z="-2962" delay="0" run="true" />
<point X="120198" Y="109124" Z="-2943" delay="0" run="true" />
</route>
<!-- Dragon Tracker of the Valley -->
<route name="dragon_tracker_01" repeat="true" repeatStyle="back">
<target id="22831" spawnX="110670" spawnY="110471" spawnZ="-3061" />
<point X="110503" Y="111260" Z="-3151" delay="0" run="true" />
<point X="111713" Y="110603" Z="-3048" delay="0" run="true" />
<point X="113098" Y="110297" Z="-3006" delay="0" run="true" />
<point X="115212" Y="110122" Z="-3039" delay="0" run="true" />
<point X="116319" Y="110233" Z="-3017" delay="0" run="true" />
</route>
<!-- Dragon Scout of the Valley -->
<route name="dragon_scout_01" repeat="true" repeatStyle="back">
<target id="22832" spawnX="117266" spawnY="111137" spawnZ="-3054" />
<point X="116948" Y="110293" Z="-2998" delay="0" run="true" />
<point X="118034" Y="110851" Z="-3047" delay="0" run="true" />
<point X="118885" Y="110597" Z="-3021" delay="0" run="true" />
<point X="119462" Y="110764" Z="-3059" delay="0" run="true" />
<point X="119852" Y="110684" Z="-3062" delay="0" run="true" />
<point X="120170" Y="110233" Z="-3064" delay="0" run="true" />
<point X="120518" Y="109897" Z="-3034" delay="0" run="true" />
<point X="121552" Y="109510" Z="-2922" delay="0" run="true" />
<point X="121999" Y="109227" Z="-2908" delay="0" run="true" />
<point X="122310" Y="108746" Z="-2993" delay="0" run="true" />
</route>
<route name="dragon_scout_02" repeat="true" repeatStyle="back">
<target id="22832" spawnX="114694" spawnY="114701" spawnZ="-3151" />
<point X="115678" Y="114491" Z="-3106" delay="0" run="true" />
<point X="114667" Y="115006" Z="-3207" delay="0" run="true" />
<point X="113331" Y="115174" Z="-3214" delay="0" run="true" />
<point X="112194" Y="115569" Z="-3223" delay="0" run="true" />
<point X="111829" Y="116533" Z="-3036" delay="0" run="true" />
<point X="111716" Y="117376" Z="-3017" delay="0" run="true" />
</route>
<route name="dragon_scout_03" repeat="true" repeatStyle="back">
<target id="22832" spawnX="124950" spawnY="109275" spawnZ="-3053" />
<point X="124757" Y="109229" Z="-3057" delay="0" run="true" />
<point X="124973" Y="109731" Z="-3088" delay="0" run="true" />
<point X="125118" Y="110372" Z="-3096" delay="0" run="true" />
<point X="125032" Y="111041" Z="-3145" delay="0" run="true" />
<point X="125409" Y="111889" Z="-3198" delay="0" run="true" />
<point X="125957" Y="112323" Z="-3320" delay="0" run="true" />
<point X="126487" Y="113366" Z="-3575" delay="0" run="true" />
</route>
<!-- Sand Drake Tracker -->
<route name="sand_drake_tracker_01" repeat="true" repeatStyle="back">
<target id="22833" spawnX="123677" spawnY="108508" spawnZ="-3015" />
<point X="124529" Y="109443" Z="-3104" delay="0" run="true" />
<point X="124034" Y="108950" Z="-3060" delay="0" run="true" />
<point X="123678" Y="108528" Z="-3015" delay="0" run="true" />
<point X="123175" Y="108104" Z="-3017" delay="0" run="true" />
<point X="122222" Y="107960" Z="-2952" delay="0" run="true" />
<point X="121835" Y="108219" Z="-2965" delay="0" run="true" />
<point X="120641" Y="108482" Z="-2954" delay="0" run="true" />
</route>
<route name="sand_drake_tracker_02" repeat="true" repeatStyle="back">
<target id="22833" spawnX="113619" spawnY="117481" spawnZ="-3129" />
<point X="112491" Y="118290" Z="-3080" delay="0" run="true" />
<point X="113143" Y="117565" Z="-3150" delay="0" run="true" />
<point X="113381" Y="117157" Z="-3161" delay="0" run="true" />
<point X="113398" Y="116754" Z="-3161" delay="0" run="true" />
<point X="113668" Y="116271" Z="-3220" delay="0" run="true" />
<point X="114102" Y="115881" Z="-3275" delay="0" run="true" />
<point X="114553" Y="115582" Z="-3279" delay="0" run="true" />
<point X="115677" Y="115086" Z="-3134" delay="0" run="true" />
</route>
<!-- Knoriks -->
<route name="knoriks_01" repeat="true" repeatStyle="back">
<target id="22857" spawnX="140633" spawnY="114472" spawnZ="-3725" />
<point X="140639" Y="114460" Z="-3729" delay="0" run="true" />
<point X="142095" Y="114336" Z="-3729" delay="0" run="true" />
<point X="142664" Y="113707" Z="-3720" delay="0" run="true" />
<point X="143831" Y="114596" Z="-3720" delay="0" run="true" />
<point X="144783" Y="114876" Z="-3720" delay="0" run="true" />
<point X="147197" Y="116761" Z="-3704" delay="0" run="true" />
<point X="148227" Y="117724" Z="-3712" delay="0" run="true" />
</route>
<route name="knoriks_02" repeat="true" repeatStyle="back">
<target id="22857" spawnX="143007" spawnY="108951" spawnZ="-3948" />
<point X="142978" Y="108907" Z="-3949" delay="0" run="true" />
<point X="142583" Y="108953" Z="-3949" delay="0" run="true" />
<point X="141716" Y="109380" Z="-3953" delay="0" run="true" />
<point X="140541" Y="111332" Z="-3899" delay="0" run="true" />
<point X="140973" Y="113160" Z="-3725" delay="0" run="true" />
<point X="141877" Y="112263" Z="-3720" delay="0" run="true" />
<point X="142752" Y="111555" Z="-3953" delay="0" run="true" />
<point X="142151" Y="109094" Z="-3949" delay="0" run="true" />
<point X="140873" Y="109371" Z="-3949" delay="0" run="true" />
</route>
<route name="knoriks_03" repeat="true" repeatStyle="back">
<target id="22857" spawnX="147896" spawnY="110033" spawnZ="-3941" />
<point X="147895" Y="110043" Z="-3946" delay="0" run="true" />
<point X="145685" Y="109132" Z="-3953" delay="0" run="true" />
<point X="144924" Y="108192" Z="-3928" delay="0" run="true" />
<point X="144558" Y="107723" Z="-3953" delay="0" run="true" />
</route>
<route name="knoriks_04" repeat="true" repeatStyle="back">
<target id="22857" spawnX="142480" spawnY="119635" spawnZ="-3916" />
<point X="142480" Y="119635" Z="-3921" delay="0" run="true" />
<point X="142960" Y="117501" Z="-3921" delay="0" run="true" />
<point X="142026" Y="117331" Z="-3912" delay="0" run="true" />
<point X="141238" Y="117792" Z="-3912" delay="0" run="true" />
<point X="140220" Y="119893" Z="-3912" delay="0" run="true" />
<point X="140697" Y="120780" Z="-3896" delay="0" run="true" />
<point X="141939" Y="121539" Z="-3921" delay="0" run="true" />
<point X="143250" Y="121372" Z="-3921" delay="0" run="true" />
<point X="145334" Y="121799" Z="-3921" delay="0" run="true" />
<point X="146081" Y="121987" Z="-3921" delay="0" run="true" />
<point X="146278" Y="121463" Z="-3912" delay="0" run="true" />
<point X="145785" Y="120344" Z="-3912" delay="0" run="true" />
</route>
<route name="knoriks_05" repeat="true" repeatStyle="back">
<target id="22857" spawnX="152585" spawnY="110480" spawnZ="-5524" />
<point X="152585" Y="110480" Z="-5529" delay="0" run="true" />
<point X="153524" Y="110822" Z="-5529" delay="0" run="true" />
<point X="153325" Y="111607" Z="-5529" delay="0" run="true" />
<point X="150988" Y="111181" Z="-5520" delay="0" run="true" />
<point X="149511" Y="111160" Z="-5496" delay="0" run="true" />
<point X="149330" Y="110708" Z="-5448" delay="0" run="true" />
<point X="150386" Y="109580" Z="-5136" delay="0" run="true" />
<point X="152942" Y="109299" Z="-5161" delay="0" run="true" />
<point X="153303" Y="108403" Z="-5152" delay="0" run="true" />
<point X="152669" Y="107732" Z="-5120" delay="0" run="true" />
<point X="150735" Y="107365" Z="-4776" delay="0" run="true" />
<point X="149713" Y="108362" Z="-4536" delay="0" run="true" />
<point X="148849" Y="108131" Z="-4312" delay="0" run="true" />
<point X="147699" Y="107247" Z="-4056" delay="0" run="true" />
<point X="146847" Y="107845" Z="-3872" delay="0" run="true" />
<point X="146442" Y="109417" Z="-3432" delay="0" run="true" />
</route>
<route name="knoriks_06" repeat="true" repeatStyle="cycle">
<target id="22857" spawnX="146901" spawnY="116472" spawnZ="-3698" />
<point X="146901" Y="116472" Z="-3703" delay="0" run="true" />
<point X="148652" Y="115744" Z="-3721" delay="0" run="true" />
<point X="149236" Y="114853" Z="-3725" delay="0" run="true" />
<point X="148744" Y="112355" Z="-3721" delay="0" run="true" />
<point X="148104" Y="112099" Z="-3721" delay="0" run="true" />
<point X="145757" Y="112813" Z="-3721" delay="0" run="true" />
<point X="144569" Y="114637" Z="-3711" delay="0" run="true" />
<point X="143071" Y="114050" Z="-3721" delay="0" run="true" />
<point X="142565" Y="113596" Z="-3725" delay="0" run="true" />
<point X="141899" Y="114565" Z="-3721" delay="0" run="true" />
<point X="140915" Y="114253" Z="-3708" delay="0" run="true" />
<point X="140743" Y="112383" Z="-3721" delay="0" run="true" />
<point X="140476" Y="111103" Z="-3945" delay="0" run="true" />
<point X="141182" Y="109756" Z="-3945" delay="0" run="true" />
<point X="142932" Y="108579" Z="-3945" delay="0" run="true" />
<point X="142620" Y="107144" Z="-3945" delay="0" run="true" />
<point X="144119" Y="107449" Z="-3945" delay="0" run="true" />
<point X="145247" Y="108941" Z="-3945" delay="0" run="true" />
<point X="147232" Y="109791" Z="-3948" delay="0" run="true" />
<point X="145501" Y="109010" Z="-3945" delay="0" run="true" />
<point X="143916" Y="107319" Z="-3949" delay="0" run="true" />
<point X="142311" Y="107213" Z="-3945" delay="0" run="true" />
<point X="140700" Y="107297" Z="-3949" delay="0" run="true" />
<point X="140784" Y="109603" Z="-3945" delay="0" run="true" />
<point X="140552" Y="111792" Z="-3762" delay="0" run="true" />
<point X="140845" Y="114262" Z="-3707" delay="0" run="true" />
<point X="142023" Y="114407" Z="-3721" delay="0" run="true" />
<point X="142449" Y="113612" Z="-3703" delay="0" run="true" />
<point X="145190" Y="115247" Z="-3721" delay="0" run="true" />
</route>
<!-- Sanctum of the Lords of Dawn -->
<route name="iz111_zone01_01" repeat="true" repeatStyle="back">
<target id="18835" spawnX="-75650" spawnY="212107" spawnZ="-7322" />
@@ -837,6 +414,7 @@
<point X="10641" Y="17282" Z="-4584" delay="0" run="false" />
<point npcStringId="1010213" X="7683" Y="18034" Z="-4376" delay="5" run="false" />
<point X="10551" Y="16775" Z="-4584" delay="0" run="false" />
<point X="10873" Y="16221" Z="-4575" delay="0" run="false" /> <!-- extra point -->
<point X="11004" Y="15942" Z="-4584" delay="0" run="false" />
<point X="10827" Y="14757" Z="-4240" delay="0" run="false" />
<point X="10968" Y="14620" Z="-4240" delay="0" run="false" />
@@ -1335,184 +913,4 @@
<point X="52296" Y="-53194" Z="-3152" delay="0" run="false" />
<point X="51891" Y="-51628" Z="-3096" delay="15" run="false" />
</route>
<!-- Prophet (Sinister) - Gludio -->
<route name="prophet_gludio" repeat="true" repeatStyle="cycle">
<target id="4309" spawnX="-14153" spawnY="121252" spawnZ="-2984" />
<point npcStringId="1010222" X="-14153" Y="121252" Z="-2984" delay="5" run="false" />
<point X="-14148" Y="121679" Z="-2984" delay="0" run="false" />
<point npcStringId="1010221" X="-13892" Y="122266" Z="-2984" delay="10" run="false" />
<point X="-13095" Y="122262" Z="-2984" delay="0" run="false" />
<point npcStringId="1010221" X="-13892" Y="122266" Z="-2984" delay="10" run="false" />
<point X="-14148" Y="121679" Z="-2984" delay="0" run="false" />
<point npcStringId="1010222" X="-14153" Y="121252" Z="-2984" delay="5" run="false" />
<point X="-13667" Y="121247" Z="-2984" delay="0" run="false" />
<point X="-14566" Y="121247" Z="-2984" delay="0" run="false" />
<point npcStringId="1010223" X="-14162" Y="121268" Z="-2984" delay="30" run="false" />
<point X="-14566" Y="121247" Z="-2984" delay="0" run="false" />
<point X="-13667" Y="121247" Z="-2984" delay="0" run="false" />
</route>
<!-- Prophet (Sinister) - Giran -->
<route name="prophet_giran" repeat="true" repeatStyle="cycle">
<target id="4310" spawnX="84858" spawnY="147764" spawnZ="-3400" />
<point X="84858" Y="147764" Z="-3400" delay="30" run="false" />
<point npcStringId="1010222" X="83623" Y="147705" Z="-3400" delay="0" run="false" />
<point X="83626" Y="149551" Z="-3400" delay="10" run="false" />
<point X="83839" Y="149549" Z="-3400" delay="0" run="false" />
<point X="83626" Y="149551" Z="-3400" delay="10" run="false" />
<point npcStringId="1010222" X="83623" Y="147705" Z="-3400" delay="0" run="false" />
<point X="84858" Y="147764" Z="-3400" delay="30" run="false" />
<point npcStringId="1010221" X="83679" Y="147701" Z="-3400" delay="6" run="false" />
<point X="83510" Y="148636" Z="-3400" delay="0" run="false" />
<point npcStringId="1010221" X="83679" Y="147701" Z="-3400" delay="6" run="false" />
</route>
<!-- Prophet (Sinister) - Aden -->
<route name="prophet_aden" repeat="true" repeatStyle="cycle">
<target id="4311" spawnX="146363" spawnY="24145" spawnZ="-2008" />
<point X="146363" Y="24145" Z="-2008" delay="0" run="false" />
<point npcStringId="1010222" X="146339" Y="25823" Z="-2008" delay="0" run="false" />
<point X="148546" Y="25817" Z="-2008" delay="35" run="false" />
<point npcStringId="1010222" X="146339" Y="25823" Z="-2008" delay="0" run="false" />
<point X="146363" Y="24145" Z="-2008" delay="10" run="false" />
<point npcStringId="1010221" X="146358" Y="25810" Z="-2008" delay="5" run="false" />
<point X="147436" Y="25809" Z="-2008" delay="0" run="false" />
<point npcStringId="1010221" X="146358" Y="25810" Z="-2008" delay="5" run="false" />
</route>
<!-- Prophet (Sinister) - Rune -->
<route name="prophet_rune" repeat="true" repeatStyle="cycle">
<target id="4312" spawnX="43319" spawnY="-47412" spawnZ="-792" />
<point X="43319" Y="-47412" Z="-792" delay="0" run="false" />
<point npcStringId="1010223" X="43531" Y="-48109" Z="-792" delay="0" run="false" />
<point X="45203" Y="-47980" Z="-792" delay="0" run="false" />
<point X="45902" Y="-48181" Z="-792" delay="0" run="false" />
<point npcStringId="1010222" X="45208" Y="-47955" Z="-792" delay="0" run="false" />
<point X="43511" Y="-48083" Z="-792" delay="0" run="false" />
<point npcStringId="1010221" X="43302" Y="-47413" Z="-792" delay="0" run="false" />
<point X="43381" Y="-46796" Z="-800" delay="0" run="false" />
<point npcStringId="1010221" X="43302" Y="-47413" Z="-792" delay="0" run="false" />
<point X="43511" Y="-48083" Z="-792" delay="0" run="false" />
<point npcStringId="1010222" X="45208" Y="-47955" Z="-792" delay="0" run="false" />
<point X="45902" Y="-48181" Z="-792" delay="0" run="false" />
<point X="45203" Y="-47980" Z="-792" delay="0" run="false" />
<point npcStringId="1010223" X="43531" Y="-48109" Z="-792" delay="0" run="false" />
<point X="43319" Y="-47412" Z="-792" delay="0" run="false" />
<point X="43388" Y="-46821" Z="-800" delay="0" run="false" />
</route>
<!-- Routes for Sel Mahum Chef's -->
<!-- cooker_01 -->
<!-- cooker_09 -->
<!-- Unconfirmed -->
<route name="cooker_01_cooker_09" repeat="true" repeatStyle="back">
<target id="18908" spawnX="85852" spawnY="53212" spawnZ="-3624" /> <!-- Sel Mahum Chef -->
<target id="18908" spawnX="82814" spawnY="69481" spawnZ="-3192" /> <!-- Sel Mahum Chef -->
<point string="" X="85764" Y="54368" Z="-3604" delay="0" run="false" />
<point string="" X="86760" Y="53968" Z="-3696" delay="0" run="false" />
<point string="" X="87310" Y="54592" Z="-3648" delay="0" run="false" />
<point string="" X="88272" Y="54171" Z="-3600" delay="0" run="false" />
<point string="" X="89017" Y="54030" Z="-3712" delay="0" run="false" />
<point string="" X="89936" Y="54224" Z="-3760" delay="0" run="false" />
<point string="" X="90647" Y="54350" Z="-3776" delay="0" run="false" />
</route>
<!-- cooker_02 --> <!-- Unconfirmed -->
<route name="cooker_02" repeat="true" repeatStyle="back">
<target id="18908" spawnX="93964" spawnY="55692" spawnZ="-3352" /> <!-- Sel Mahum Chef -->
<point string="" X="91260" Y="55012" Z="-3760" delay="0" run="false" />
<point string="" X="94418" Y="54744" Z="-3576" delay="0" run="false" />
<point string="" X="93952" Y="54461" Z="-3632" delay="0" run="false" />
<point string="" X="92713" Y="54672" Z="-3680" delay="0" run="false" />
<point string="" X="91712" Y="55664" Z="-3648" delay="0" run="false" />
<point string="" X="91744" Y="56688" Z="-3568" delay="0" run="false" />
</route>
<!-- cooker_03 -->
<!-- cooker_05 -->
<!-- Unconfirmed -->
<route name="cooker_03_cooker_05" repeat="true" repeatStyle="back">
<target id="18908" spawnX="87612" spawnY="59356" spawnZ="-3552" /> <!-- Sel Mahum Chef -->
<target id="18908" spawnX="88532" spawnY="60352" spawnZ="-3642" /> <!-- Sel Mahum Chef -->
<point string="" X="88092" Y="60352" Z="-3584" delay="0" run="false" />
<point string="" X="89265" Y="60176" Z="-3648" delay="0" run="false" />
<point string="" X="90031" Y="60799" Z="-3664" delay="0" run="false" />
<point string="" X="88672" Y="59842" Z="-3568" delay="0" run="false" />
<point string="" X="90863" Y="59871" Z="-3664" delay="0" run="false" />
</route>
<!-- cooker_04 --> <!-- Custom -->
<route name="cooker_04" repeat="true" repeatStyle="cycle">
<target id="18908" spawnX="83724" spawnY="62668" spawnZ="-3472" /> <!-- Sel Mahum Chef -->
<point string="" X="84435" Y="62668" Z="-3472" delay="0" run="false" />
<point string="" X="86646" Y="63097" Z="-3652" delay="0" run="false" />
<point string="" X="86408" Y="62564" Z="-3685" delay="0" run="false" />
<point string="" X="87024" Y="62568" Z="-3713" delay="0" run="false" />
<point string="" X="87282" Y="62160" Z="-3713" delay="0" run="false" />
<point string="" X="87932" Y="62542" Z="-3716" delay="0" run="false" />
<point string="" X="87524" Y="63014" Z="-3708" delay="0" run="false" />
<point string="" X="87515" Y="63883" Z="-3666" delay="0" run="false" />
<point string="" X="88302" Y="64225" Z="-3719" delay="0" run="false" />
<point string="" X="89745" Y="65152" Z="-3709" delay="0" run="false" />
<point string="" X="87371" Y="65343" Z="-3709" delay="0" run="false" />
<point string="" X="86563" Y="64914" Z="-3625" delay="0" run="false" />
</route>
<!-- cooker_06 --> <!-- Custom -->
<route name="cooker_06" repeat="true" repeatStyle="cycle">
<target id="18908" spawnX="92981" spawnY="60834" spawnZ="-3288" /> <!-- Sel Mahum Chef -->
<point string="" X="93445" Y="60087" Z="-3282" delay="0" run="false" />
<point string="" X="92139" Y="60386" Z="-3432" delay="0" run="false" />
<point string="" X="93047" Y="61857" Z="-3263" delay="0" run="false" />
<point string="" X="93376" Y="63040" Z="-3325" delay="0" run="false" />
</route>
<!-- cooker_07 --> <!-- Custom -->
<route name="cooker_07" repeat="true" repeatStyle="cycle">
<target id="18908" spawnX="78332" spawnY="63440" spawnZ="-3640" /> <!-- Sel Mahum Chef -->
<point string="" X="78999" Y="63663" Z="-3624" delay="0" run="false" />
<point string="" X="79097" Y="65036" Z="-3390" delay="0" run="false" />
<point string="" X="80332" Y="64954" Z="-3319" delay="0" run="false" />
<point string="" X="80939" Y="63739" Z="-3597" delay="0" run="false" />
<point string="" X="82628" Y="63701" Z="-3578" delay="0" run="false" />
<point string="" X="80378" Y="63344" Z="-3690" delay="0" run="false" />
</route>
<!-- cooker_08 --> <!-- Custom -->
<route name="cooker_08" repeat="true" repeatStyle="cycle">
<target id="18908" spawnX="77836" spawnY="68796" spawnZ="-3312" /> <!-- Sel Mahum Chef -->
<point string="" X="78040" Y="69515" Z="-3136" delay="0" run="false" />
<point string="" X="79025" Y="69859" Z="-3261" delay="0" run="false" />
<point string="" X="79168" Y="69256" Z="-3328" delay="0" run="false" />
<point string="" X="80775" Y="68705" Z="-3469" delay="0" run="false" />
<point string="" X="81426" Y="68725" Z="-3383" delay="0" run="false" />
<point string="" X="80135" Y="69229" Z="-3398" delay="0" run="false" />
<point string="" X="80691" Y="67780" Z="-3436" delay="0" run="false" />
<point string="" X="80168" Y="68275" Z="-3358" delay="0" run="false" />
<point string="" X="78713" Y="68742" Z="-3254" delay="0" run="false" />
</route>
<!-- cooker_10 --> <!-- Unconfirmed -->
<route name="cooker_10" repeat="true" repeatStyle="cycle">
<target id="18908" spawnX="83404" spawnY="65772" spawnZ="-3032" /> <!-- Sel Mahum Chef -->
<point string="" X="83631" Y="66179" Z="-3040" delay="0" run="false" />
<point string="" X="84128" Y="65740" Z="-3152" delay="0" run="false" />
</route>
<!-- cooker_11 --> <!-- Unconfirmed -->
<route name="cooker_11" repeat="true" repeatStyle="back">
<target id="18908" spawnX="96487" spawnY="69432" spawnZ="-3408" /> <!-- Sel Mahum Chef -->
<point string="" X="93792" Y="69440" Z="-3851" delay="0" run="false" />
<point string="" X="95163" Y="70886" Z="-3851" delay="0" run="false" />
<point string="" X="93795" Y="71347" Z="-3851" delay="0" run="false" />
<point string="" X="92262" Y="70814" Z="-3851" delay="0" run="false" />
<point string="" X="92501" Y="68335" Z="-3851" delay="0" run="false" />
<point string="" X="93665" Y="66871" Z="-3851" delay="0" run="false" />
<point string="" X="94653" Y="66934" Z="-3851" delay="0" run="false" />
<point string="" X="97262" Y="69006" Z="-3851" delay="0" run="false" />
<point string="" X="96506" Y="69958" Z="-3851" delay="0" run="false" />
<point string="" X="94265" Y="68391" Z="-3851" delay="0" run="false" />
</route>
<!-- cooker_12 --> <!-- Unconfirmed -->
<route name="cooker_12" repeat="true" repeatStyle="back">
<target id="18908" spawnX="91238" spawnY="67728" spawnZ="-3631" /> <!-- Sel Mahum Chef -->
<point string="" X="93792" Y="69440" Z="-3851" delay="0" run="false" />
<point string="" X="95163" Y="70886" Z="-3851" delay="0" run="false" />
<point string="" X="93795" Y="71347" Z="-3851" delay="0" run="false" />
<point string="" X="92262" Y="70814" Z="-3851" delay="0" run="false" />
<point string="" X="92501" Y="68335" Z="-3851" delay="0" run="false" />
<point string="" X="93665" Y="66871" Z="-3851" delay="0" run="false" />
<point string="" X="94653" Y="66934" Z="-3851" delay="0" run="false" />
<point string="" X="97262" Y="69006" Z="-3851" delay="0" run="false" />
<point string="" X="96506" Y="69958" Z="-3851" delay="0" run="false" />
<point string="" X="94265" Y="68391" Z="-3851" delay="0" run="false" />
</route>
</routes>

View File

@@ -6,10 +6,6 @@
<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 -->

View File

@@ -6,10 +6,6 @@
<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 -->

View File

@@ -58,134 +58,4 @@
<item id="14157" price="0" /> <!-- Vesper Nagan - Haste -->
<item id="14158" price="0" /> <!-- Vesper Nagan - Health -->
<item id="14159" price="0" /> <!-- Vesper Nagan - Focus -->
<item id="15544" price="0" /> <!-- Eternal Core Sword -->
<item id="15545" price="0" /> <!-- Mamba Edge -->
<item id="15546" price="0" /> <!-- Eversor Mace -->
<item id="15547" price="0" /> <!-- Contristo Hammer -->
<item id="15548" price="0" /> <!-- Lava Saw -->
<item id="15549" price="0" /> <!-- Jade Claw -->
<item id="15550" price="0" /> <!-- Demitelum -->
<item id="15551" price="0" /> <!-- Sacredium -->
<item id="15552" price="0" /> <!-- Cyclic Cane -->
<item id="15553" price="0" /> <!-- Archangel Sword -->
<item id="15554" price="0" /> <!-- Recurve Thorne Bow -->
<item id="15555" price="0" /> <!-- Heavenstare Rapier -->
<item id="15556" price="0" /> <!-- Pyseal Blade -->
<item id="15557" price="0" /> <!-- Thorne Crossbow -->
<item id="15558" price="0" /> <!-- Periel Sword -->
<item id="15559" price="0" /> <!-- Skull Edge -->
<item id="15560" price="0" /> <!-- Vigwik Axe -->
<item id="15561" price="0" /> <!-- Devilish Maul -->
<item id="15562" price="0" /> <!-- Feather Eye Blade -->
<item id="15563" price="0" /> <!-- Octo Claw -->
<item id="15564" price="0" /> <!-- Doubletop Spear -->
<item id="15565" price="0" /> <!-- Rising Star -->
<item id="15566" price="0" /> <!-- Black Visage -->
<item id="15567" price="0" /> <!-- Veniplant Sword -->
<item id="15568" price="0" /> <!-- Skull Carnium Bow -->
<item id="15569" price="0" /> <!-- Gemtail Rapier -->
<item id="15570" price="0" /> <!-- Finale Blade -->
<item id="15571" price="0" /> <!-- Dominion Crossbow -->
<item id="16152" price="0" /> <!-- Skull Edge Dual Daggers -->
<item id="16154" price="0" /> <!-- Periel Dual Sword -->
<item id="16156" price="0" /> <!-- Mamba Edge Dual Daggers -->
<item id="16158" price="0" /> <!-- Eternal Core Dual Sword -->
<item id="15676" price="0" /> <!-- Triumph Blade -->
<item id="15677" price="0" /> <!-- Triumph Dagger -->
<item id="15678" price="0" /> <!-- Triumph Hammer -->
<item id="15679" price="0" /> <!-- Triumph Crusher -->
<item id="15680" price="0" /> <!-- Triumph Two Hand Sword -->
<item id="15681" price="0" /> <!-- Triumph Jamadhr -->
<item id="15682" price="0" /> <!-- Triumph Spear -->
<item id="15683" price="0" /> <!-- Triumph Staff -->
<item id="15684" price="0" /> <!-- Triumph Two Hand Staff -->
<item id="15685" price="0" /> <!-- Triumph Magic Sword -->
<item id="15686" price="0" /> <!-- Triumph Bow -->
<item id="15687" price="0" /> <!-- Triumph Rapier -->
<item id="15688" price="0" /> <!-- Triumph Ancientsword -->
<item id="15689" price="0" /> <!-- Triumph Crossbow -->
<item id="15829" price="0" /> <!-- Periel Sword - Health -->
<item id="15830" price="0" /> <!-- Periel Sword - Focus -->
<item id="15831" price="0" /> <!-- Periel Sword - Haste -->
<item id="15832" price="0" /> <!-- Skull Edge - HP Drain -->
<item id="15833" price="0" /> <!-- Skull Edge - Haste -->
<item id="15834" price="0" /> <!-- Skull Edge - Critical Damage -->
<item id="15835" price="0" /> <!-- Vigwik Axe - Health -->
<item id="15836" price="0" /> <!-- Vigwik Axe - HP Regeneration -->
<item id="15837" price="0" /> <!-- Vigwik Axe - HP Drain -->
<item id="15838" price="0" /> <!-- Devilish Maul - Health -->
<item id="15839" price="0" /> <!-- Devilish Maul - HP Drain -->
<item id="15840" price="0" /> <!-- Devilish Maul - HP Regeneration -->
<item id="15841" price="0" /> <!-- Feather Eye Blade - Health -->
<item id="15842" price="0" /> <!-- Feather Eye Blade - Focus -->
<item id="15843" price="0" /> <!-- Feather Eye Blade - Haste -->
<item id="15844" price="0" /> <!-- Octo Claw - Health -->
<item id="15845" price="0" /> <!-- Octo Claw - Critical Stun -->
<item id="15846" price="0" /> <!-- Octo Claw - Focus -->
<item id="15847" price="0" /> <!-- Doubletop Spear - Guidance -->
<item id="15848" price="0" /> <!-- Doubletop Spear - Haste -->
<item id="15849" price="0" /> <!-- Doubletop Spear - Health -->
<item id="15850" price="0" /> <!-- Rising Star - MP Regeneration -->
<item id="15851" price="0" /> <!-- Rising Star - Mana Up -->
<item id="15852" price="0" /> <!-- Rising Star - Acumen -->
<item id="15853" price="0" /> <!-- Black Visage - MP Regeneration -->
<item id="15854" price="0" /> <!-- Black Visage - Magic Hold -->
<item id="15855" price="0" /> <!-- Black Visage - Empower -->
<item id="15856" price="0" /> <!-- Veniplant Sword - Acumen -->
<item id="15857" price="0" /> <!-- Veniplant Sword - Magic Hold -->
<item id="15858" price="0" /> <!-- Veniplant Sword - Mana Up -->
<item id="15859" price="0" /> <!-- Skull Carnium Bow - Focus -->
<item id="15860" price="0" /> <!-- Skull Carnium Bow - Critical Slow -->
<item id="15861" price="0" /> <!-- Skull Carnium Bow - Cheap Shot -->
<item id="15862" price="0" /> <!-- Gemtail Rapier - Health -->
<item id="15863" price="0" /> <!-- Gemtail Rapier - Focus -->
<item id="15864" price="0" /> <!-- Gemtail Rapier - Haste -->
<item id="15865" price="0" /> <!-- Finale Blade - Health -->
<item id="15866" price="0" /> <!-- Finale Blade - Focus -->
<item id="15867" price="0" /> <!-- Finale Blade - Haste -->
<item id="15868" price="0" /> <!-- Dominion Crossbow - Focus -->
<item id="15869" price="0" /> <!-- Dominion Crossbow - Critical Slow -->
<item id="15870" price="0" /> <!-- Dominion Crossbow - Cheap Shot -->
<item id="15871" price="0" /> <!-- Eternal Core Sword - Focus -->
<item id="15872" price="0" /> <!-- Eternal Core Sword - Haste -->
<item id="15873" price="0" /> <!-- Eternal Core Sword - Health -->
<item id="15874" price="0" /> <!-- Mamba Edge - Haste -->
<item id="15875" price="0" /> <!-- Mamba Edge - Critical Damage -->
<item id="15876" price="0" /> <!-- Mamba Edge - HP Drain -->
<item id="15877" price="0" /> <!-- Eversor Mace - HP Regeneration -->
<item id="15878" price="0" /> <!-- Eversor Mace - HP Drain -->
<item id="15879" price="0" /> <!-- Eversor Mace - Health -->
<item id="15880" price="0" /> <!-- Contristo Hammer - HP Drain -->
<item id="15881" price="0" /> <!-- Contristo Hammer - HP Regeneration -->
<item id="15882" price="0" /> <!-- Contristo Hammer - Health -->
<item id="15883" price="0" /> <!-- Lava Saw - Focus -->
<item id="15884" price="0" /> <!-- Lava Saw - Haste -->
<item id="15885" price="0" /> <!-- Lava Saw - Health -->
<item id="15886" price="0" /> <!-- Jade Claw - Critical Stun -->
<item id="15887" price="0" /> <!-- Jade Claw - Focus -->
<item id="15888" price="0" /> <!-- Jade Claw - Health -->
<item id="15889" price="0" /> <!-- Demitelum - Haste -->
<item id="15890" price="0" /> <!-- Demitelum - Health -->
<item id="15891" price="0" /> <!-- Demitelum - Guidance -->
<item id="15892" price="0" /> <!-- Sacredium - Mana Up -->
<item id="15893" price="0" /> <!-- Sacredium - Acumen -->
<item id="15894" price="0" /> <!-- Sacredium - MP Regeneration -->
<item id="15895" price="0" /> <!-- Cyclic Cane - Magic Hold -->
<item id="15896" price="0" /> <!-- Cyclic Cane - Empower -->
<item id="15897" price="0" /> <!-- Cyclic Cane - MP Regeneration -->
<item id="15898" price="0" /> <!-- Archangel Sword - Magic Hold -->
<item id="15899" price="0" /> <!-- Archangel Sword - Mana Up -->
<item id="15900" price="0" /> <!-- Archangel Sword - Acumen -->
<item id="15901" price="0" /> <!-- Recurve Thorne Bow - Critical Slow -->
<item id="15902" price="0" /> <!-- Recurve Thorne Bow - Cheap Shot -->
<item id="15903" price="0" /> <!-- Recurve Thorne Bow - Focus -->
<item id="15904" price="0" /> <!-- Heavenstare Rapier - Focus -->
<item id="15905" price="0" /> <!-- Heavenstare Rapier - Haste -->
<item id="15906" price="0" /> <!-- Heavenstare Rapier - Health -->
<item id="15907" price="0" /> <!-- Pyseal Blade - Focus -->
<item id="15908" price="0" /> <!-- Pyseal Blade - Haste -->
<item id="15909" price="0" /> <!-- Pyseal Blade - Health -->
<item id="15910" price="0" /> <!-- Thorne Crossbow - Critical Slow -->
<item id="15911" price="0" /> <!-- Thorne Crossbow - Cheap Shot -->
<item id="15912" price="0" /> <!-- Thorne Crossbow - Focus -->
</list>

View File

@@ -6,16 +6,4 @@
<item id="14163" price="0" /> <!-- Vesper Earring -->
<item id="14164" price="0" /> <!-- Vesper Necklace -->
<item id="14165" price="0" /> <!-- Vesper Ring -->
<item id="15717" price="0" /> <!-- Elegia Ring -->
<item id="15718" price="0" /> <!-- Elegia Earring -->
<item id="15719" price="0" /> <!-- Elegia Necklace -->
<item id="15720" price="0" /> <!-- Vorpal Ring -->
<item id="15721" price="0" /> <!-- Vorpal Earring -->
<item id="15722" price="0" /> <!-- Vorpal Necklace -->
<item id="15760" price="0" /> <!-- Sealed Elegia Ring -->
<item id="15761" price="0" /> <!-- Sealed Elegia Earring -->
<item id="15762" price="0" /> <!-- Sealed Elegia Necklace -->
<item id="15763" price="0" /> <!-- Sealed Vorpal Ring -->
<item id="15764" price="0" /> <!-- Sealed Vorpal Earring -->
<item id="15765" price="0" /> <!-- Sealed Vorpal Necklace -->
</list>

View File

@@ -15,18 +15,4 @@
<item id="13686" price="0" /> <!-- Sealed Knight's Cloak -->
<item id="13893" price="0" /> <!-- Sealed Holy Spirit's Cloak -->
<item id="14603" price="0" /> <!-- Sealed Ancient Cloak -->
<item id="21713" price="0" /> <!-- Sealed Cloak of Zaken -->
<item id="21716" price="0" /> <!-- Cloak of Zaken -->
<item id="21719" price="0" /> <!-- Soul Cloak of Zaken -->
<item id="21714" price="0" /> <!-- Sealed Cloak of Freya -->
<item id="21717" price="0" /> <!-- Cloak of Freya -->
<item id="21720" price="0" /> <!-- Soul Cloak of Freya -->
<item id="21715" price="0" /> <!-- Sealed Cloak of Frintezza -->
<item id="21718" price="0" /> <!-- Cloak of Frintezza -->
<item id="21721" price="0" /> <!-- Soul Cloak of Frintezza -->
<item id="21583" price="0" /> <!-- 7th Anniversary Cloak - Pitch Black -->
<item id="21587" price="0" /> <!-- 7th Anniversary Cloak - Blood Red -->
<item id="21588" price="0" /> <!-- 7th Anniversary Cloak - Pearl White -->
<item id="21585" price="0" /> <!-- Festival's Cloak - Pitch Black - Event -->
<item id="21590" price="0" /> <!-- Festival's Cloak - Pearl White - Event -->
</list>

View File

@@ -3,17 +3,11 @@
<item id="6656" price="0" /> <!-- Earring of Antharas -->
<item id="6657" price="0" /> <!-- Necklace of Valakas -->
<item id="6658" price="0" /> <!-- Ring of Baium -->
<item id="22173" price="0" /> <!-- Improved Ring of Baium -->
<item id="6659" price="0" /> <!-- Earring of Zaken -->
<item id="21712" price="0" /> <!-- Blessed Earring of Zaken -->
<item id="22175" price="0" /> <!-- Improved Blessed Earring of Zaken -->
<item id="6660" price="0" /> <!-- Ring of Queen Ant -->
<item id="22174" price="0" /> <!-- Improved Ring of Queen Ant -->
<item id="6661" price="0" /> <!-- Earring of Orfen -->
<item id="6662" price="0" /> <!-- Ring of Core -->
<item id="8191" price="0" /> <!-- Necklace of Frintezza -->
<item id="10170" price="0" /> <!-- Baylor's Earring -->
<item id="10314" price="0" /> <!-- Ring of Beleth -->
<item id="16025" price="0" /> <!-- Necklace of Freya -->
<item id="16026" price="0" /> <!-- Blessed Necklace of Freya -->
</list>

View File

@@ -1,53 +1,39 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<item id="2375" price="0" /> <!-- Wolf Collar -->
<item id="3500" price="0" /> <!-- Dragonflute of Wind -->
<item id="3501" price="0" /> <!-- Dragonflute of Star -->
<item id="3502" price="0" /> <!-- Dragonflute of Twilight -->
<item id="4422" price="0" /> <!-- Dragon Bugle of Wind -->
<item id="4423" price="0" /> <!-- Dragon Bugle of Star -->
<item id="4424" price="0" /> <!-- Dragon Bugle of Twilight -->
<item id="4425" price="0" /> <!-- Penitent's Manacles -->
<item id="6648" price="0" /> <!-- Baby Buffalo Panpipe -->
<item id="6650" price="0" /> <!-- Baby Kookaburra Ocarina -->
<item id="6649" price="0" /> <!-- Baby Cougar Chime -->
<item id="9882" price="0" /> <!-- Great Wolf Necklace -->
<item id="10307" price="0" /> <!-- Great Snow Wolf Necklace -->
<item id="6650" price="0" /> <!-- Baby Kookaburra Ocarina -->
<item id="10311" price="0" /> <!-- Improved Buffalo Panpipe -->
<item id="10312" price="0" /> <!-- Improved Cougar Chime -->
<item id="10312" price="0" /> <!-- Improved Cougar Chime -->
<item id="10313" price="0" /> <!-- Improved Kookaburra Ocarina -->
<item id="10308" price="0" /> <!-- Red Dragon Bugle of Wind -->
<item id="10309" price="0" /> <!-- Red Dragon Bugle of Star -->
<item id="10310" price="0" /> <!-- Red Dragon Bugle of Twilight -->
<item id="10311" price="0" /> <!-- Improved Buffalo Panpipe -->
<item id="10313" price="0" /> <!-- Improved Kookaburra Ocarina -->
<item id="10312" price="0" /> <!-- Improved Cougar Chime -->
<item id="10426" price="0" /> <!-- Fenrir Necklace -->
<item id="10611" price="0" /> <!-- Snow Fenrir Necklace -->
<item id="13020" price="0" /> <!-- Fox Shaman Hunting Helper Necklace -->
<item id="13019" price="0" /> <!-- Wild Beast Fighter Hunting Helper Necklace -->
<item id="13017" price="0" /> <!-- White Weasel Hunting Helper Necklace -->
<item id="13018" price="0" /> <!-- Fairy Princess Hunting Helper Necklace -->
<item id="14061" price="0" /> <!-- Toy Knight Summon Whistle -->
<item id="14062" price="0" /> <!-- Spirit Shaman Summon Whistle -->
<item id="14064" price="0" /> <!-- Turtle Ascetic Summon Whistle -->
<item id="14063" price="0" /> <!-- Owl Monk Summon Whistle -->
<item id="10307" price="0" /> <!-- Great Snow Wolf Necklace -->
<item id="2375" price="0" /> <!-- Wolf Collar -->
<item id="14828" price="0" /> <!-- Deinonychus Mesozoic Stone -->
<item id="14819" price="0" /> <!-- Guardian's Dragon Bugle -->
<item id="15488" price="0" /> <!-- Maguen Pet Collar -->
<item id="15489" price="0" /> <!-- Elite Maguen Pet Collar -->
<item id="13017" price="0" /> <!-- White Weasel Hunting Helper Necklace -->
<item id="13018" price="0" /> <!-- Fairy Princess Hunting Helper Necklace -->
<item id="13019" price="0" /> <!-- Wild Beast Fighter Hunting Helper Necklace -->
<item id="13020" price="0" /> <!-- Fox Shaman Hunting Helper Necklace -->
<item id="14061" price="0" /> <!-- Toy Knight Summon Whistle -->
<item id="14062" price="0" /> <!-- Spirit Shaman Summon Whistle -->
<item id="14063" price="0" /> <!-- Owl Monk Summon Whistle -->
<item id="14064" price="0" /> <!-- Turtle Ascetic Summon Whistle -->
<item id="13548" price="0" /> <!-- Toy Knight Summon Whistle -->
<item id="13549" price="0" /> <!-- Soul Monk Summon Whistle -->
<item id="13550" price="0" /> <!-- Owl Monk Summon Whistle -->
<item id="13551" price="0" /> <!-- Turtle Ascetic Summon Whistle -->
<item id="20760" price="0" /> <!-- Rudolph Necklace (Event) -->
<item id="20761" price="0" /> <!-- Rudolph Necklace -->
<item id="20908" price="0" /> <!-- Deseloph Rose Necklace (Event) - Summon duration - 3 hours -->
<item id="20909" price="0" /> <!-- Hyum Rose Necklace (Event) - Summon duration - 3 hours -->
<item id="20910" price="0" /> <!-- Rekang Rose Necklace (Event) - Summon duration - 3 hours -->
<item id="20911" price="0" /> <!-- Lilias Rose Necklace (Event) - Summon duration - 3 hours -->
<item id="20912" price="0" /> <!-- Lapham Rose Necklace (Event) - Summon duration - 3 hours -->
<item id="20913" price="0" /> <!-- Mafum Rose Necklace (Event) - Summon duration - 3 hours -->
<item id="20915" price="0" /> <!-- Improved Deseloph Rose Necklace (Event) - Summon duration - 5 hours -->
<item id="20916" price="0" /> <!-- Improved Hyum Rose Necklace (Event) - Summon duration - 5 hours -->
<item id="20917" price="0" /> <!-- Improved Rekang Rose Necklace (Event) - Summon duration - 5 hours -->
<item id="20918" price="0" /> <!-- Improved Lilias Rose Necklace (Event) - Summon duration - 5 hours -->
<item id="20919" price="0" /> <!-- Improved Lapham Rose Necklace (Event) - Summon duration - 5 hours -->
<item id="20920" price="0" /> <!-- Improved Mafum Rose Necklace (Event) - Summon duration - 5 hours -->
<item id="21916" price="0" /> <!-- Super Kat the Cat Z Summon Necklace -->
<item id="21917" price="0" /> <!-- Super Feline Queen Z Summon Necklace -->
<item id="21918" price="0" /> <!-- Super Mew the Cat Z Summon Necklace -->
</list>

View File

@@ -13,10 +13,4 @@
<item id="10118" price="0" /> <!-- Chaotic Dynasty Sigil -->
<item id="10119" price="0" /> <!-- Dynasty Sigil -->
<item id="12813" price="0" /> <!-- Vesper Sigil -->
<item id="15588" price="0" /> <!-- Elegia Sigil -->
<item id="15605" price="0" /> <!-- Vorpal Sigil -->
<item id="15622" price="0" /> <!-- Moirai Sigil -->
<item id="15709" price="0" /> <!-- Sealed Moirai Sigil -->
<item id="15742" price="0" /> <!-- Sealed Elegia Sigil -->
<item id="15759" price="0" /> <!-- Sealed Vorpal Sigil -->
</list>

View File

@@ -75,23 +75,4 @@
<item id="10833" price="0" /> <!-- Dynasty Jewel Leather Armor {PvP} - Weapon Master -->
<item id="10834" price="0" /> <!-- Dynasty Jewel Leather Armor {PvP} - Enchanter -->
<item id="10835" price="0" /> <!-- Dynasty Jewel Leather Armor {PvP} - Summoner -->
<item id="15609" price="0" /> <!-- Moirai Breastplate -->
<item id="15612" price="0" /> <!-- Moirai Gaiter -->
<item id="15606" price="0" /> <!-- Moirai Helmet -->
<item id="15615" price="0" /> <!-- Moirai Gauntlet -->
<item id="15618" price="0" /> <!-- Moirai Boots -->
<item id="15621" price="0" /> <!-- Moirai Shield -->
<item id="16174" price="0" /> <!-- Moirai Breastplate {PvP} -->
<item id="15610" price="0" /> <!-- Moirai Leather Breastplate -->
<item id="15613" price="0" /> <!-- Moirai Leather Legging -->
<item id="15607" price="0" /> <!-- Moirai Leather Helmet -->
<item id="15616" price="0" /> <!-- Moirai Leather Gloves -->
<item id="15619" price="0" /> <!-- Moirai Leather Boots -->
<item id="16175" price="0" /> <!-- Moirai Leather Breastplate {PvP} -->
<item id="15611" price="0" /> <!-- Moirai Tunic -->
<item id="15614" price="0" /> <!-- Moirai Stockings -->
<item id="15608" price="0" /> <!-- Moirai Circlet -->
<item id="15617" price="0" /> <!-- Moirai Gloves -->
<item id="15620" price="0" /> <!-- Moirai Shoes -->
<item id="16176" price="0" /> <!-- Moirai Tunic {PvP} -->
</list>

View File

@@ -37,42 +37,4 @@
<item id="13455" price="0" /> <!-- Vesper Noble Gloves -->
<item id="13456" price="0" /> <!-- Vesper Noble Shoes -->
<item id="14525" price="0" /> <!-- Vesper Noble Tunic {PvP} -->
<item id="15575" price="0" /> <!-- Elegia Breastplate -->
<item id="15578" price="0" /> <!-- Elegia Gaiter -->
<item id="15572" price="0" /> <!-- Elegia Helmet -->
<item id="15581" price="0" /> <!-- Elegia Gauntlet -->
<item id="15584" price="0" /> <!-- Elegia Boots -->
<item id="15587" price="0" /> <!-- Elegia Shield -->
<item id="16168" price="0" /> <!-- Elegia Breastplate {PvP} -->
<item id="15576" price="0" /> <!-- Elegia Leather Breastplate -->
<item id="15579" price="0" /> <!-- Elegia Leather Legging -->
<item id="15573" price="0" /> <!-- Elegia Leather Helmet -->
<item id="15582" price="0" /> <!-- Elegia Leather Gloves -->
<item id="15585" price="0" /> <!-- Elegia Leather Boots -->
<item id="16169" price="0" /> <!-- Elegia Leather Breastplate {PvP} -->
<item id="15577" price="0" /> <!-- Elegia Tunic -->
<item id="15580" price="0" /> <!-- Elegia Stockings -->
<item id="15574" price="0" /> <!-- Elegia Circlet -->
<item id="15583" price="0" /> <!-- Elegia Gloves -->
<item id="15586" price="0" /> <!-- Elegia Shoes -->
<item id="16170" price="0" /> <!-- Elegia Tunic {PvP} -->
<item id="15592" price="0" /> <!-- Vorpal Breastplate -->
<item id="15595" price="0" /> <!-- Vorpal Gaiter -->
<item id="15589" price="0" /> <!-- Vorpal Helmet -->
<item id="15598" price="0" /> <!-- Vorpal Gauntlet -->
<item id="15601" price="0" /> <!-- Vorpal Boots -->
<item id="15604" price="0" /> <!-- Vorpal Shield -->
<item id="16171" price="0" /> <!-- Vorpal Breastplate {PvP} -->
<item id="15593" price="0" /> <!-- Vorpal Leather Breastplate -->
<item id="15596" price="0" /> <!-- Vorpal Leather Legging -->
<item id="15590" price="0" /> <!-- Vorpal Leather Helmet -->
<item id="15599" price="0" /> <!-- Vorpal Leather Gloves -->
<item id="15602" price="0" /> <!-- Vorpal Leather Boots -->
<item id="16172" price="0" /> <!-- Vorpal Leather Breastplate {PvP} -->
<item id="15594" price="0" /> <!-- Vorpal Tunic -->
<item id="15597" price="0" /> <!-- Vorpal Stockings -->
<item id="15591" price="0" /> <!-- Vorpal Circlet -->
<item id="15600" price="0" /> <!-- Vorpal Gloves -->
<item id="15603" price="0" /> <!-- Vorpal Shoes -->
<item id="16173" price="0" /> <!-- Vorpal Tunic {PvP} -->
</list>

View File

@@ -33,10 +33,4 @@
<item id="11602" price="0" /> <!-- Sealed Dynasty Necklace -->
<item id="11603" price="0" /> <!-- Sealed Dynasty Ring -->
<item id="11604" price="0" /> <!-- Sealed Dynasty Earring -->
<item id="15723" price="0" /> <!-- Moirai Ring -->
<item id="15724" price="0" /> <!-- Moirai Earring -->
<item id="15725" price="0" /> <!-- Moirai Necklace -->
<item id="15766" price="0" /> <!-- Sealed Moirai Ring -->
<item id="15767" price="0" /> <!-- Sealed Moirai Earring -->
<item id="15768" price="0" /> <!-- Sealed Moirai Necklace -->
</list>

View File

@@ -20,6 +20,4 @@
<item id="15342" price="0" /> <!-- Aqua Elf Transforming Harp - 60-day limited period -->
<item id="15344" price="0" /> <!-- Aqua Elf Transforming Harp (Event) - 60-day limited period -->
<item id="20867" price="0" /> <!-- Kadomas Transformation Stick - 7-day limited period -->
<item id="20971" price="0" /> <!-- Trejuo Transformation Stick - Blessed Child Transformation -->
<item id="20972" price="0" /> <!-- Sujin Transformation Stick - Blessed Child Transformation -->
</list>

View File

@@ -58,120 +58,4 @@
<item id="14517" price="0" /> <!-- Vesper Nagan {PvP} - Haste -->
<item id="14518" price="0" /> <!-- Vesper Nagan {PvP} - Health -->
<item id="14519" price="0" /> <!-- Vesper Nagan {PvP} - Focus -->
<item id="15913" price="0" /> <!-- Eternal Core Sword {PvP} -->
<item id="15914" price="0" /> <!-- Mamba Edge {PvP} -->
<item id="15915" price="0" /> <!-- Eversor Mace {PvP} -->
<item id="15916" price="0" /> <!-- Contristo Hammer {PvP} -->
<item id="15917" price="0" /> <!-- Lava Saw {PvP} -->
<item id="15918" price="0" /> <!-- Jade Claw {PvP} -->
<item id="15919" price="0" /> <!-- Demitelum {PvP} -->
<item id="15920" price="0" /> <!-- Sacredium {PvP} -->
<item id="15921" price="0" /> <!-- Cyclic Cane {PvP} -->
<item id="15922" price="0" /> <!-- Archangel Sword {PvP} -->
<item id="15923" price="0" /> <!-- Recurve Thorne Bow {PvP} -->
<item id="15924" price="0" /> <!-- Heavenstare Rapier {PvP} -->
<item id="15925" price="0" /> <!-- Pyseal Blade {PvP} -->
<item id="15926" price="0" /> <!-- Thorne Crossbow {PvP} -->
<item id="15927" price="0" /> <!-- Periel Sword {PvP} -->
<item id="15928" price="0" /> <!-- Skull Edge {PvP} -->
<item id="15929" price="0" /> <!-- Vigwik Axe {PvP} -->
<item id="15930" price="0" /> <!-- Devilish Maul {PvP} -->
<item id="15931" price="0" /> <!-- Feather Eye Blade {PvP} -->
<item id="15932" price="0" /> <!-- Octo Claw {PvP} -->
<item id="15933" price="0" /> <!-- Doubletop Spear {PvP} -->
<item id="15934" price="0" /> <!-- Rising Star {PvP} -->
<item id="15935" price="0" /> <!-- Black Visage {PvP} -->
<item id="15936" price="0" /> <!-- Veniplant Sword {PvP} -->
<item id="15937" price="0" /> <!-- Skull Carnium Bow {PvP} -->
<item id="15938" price="0" /> <!-- Gemtail Rapier {PvP} -->
<item id="15939" price="0" /> <!-- Finale Blade {PvP} -->
<item id="15940" price="0" /> <!-- Dominion Crossbow {PvP} -->
<item id="16153" price="0" /> <!-- Skull Edge Dual Daggers {PvP} -->
<item id="16155" price="0" /> <!-- Periel Dual Sword {PvP} -->
<item id="16157" price="0" /> <!-- Mamba Edge Dual Daggers {PvP} -->
<item id="16159" price="0" /> <!-- Eternal Core Dual Sword {PvP} -->
<item id="15941" price="0" /> <!-- Periel Sword {PvP} - Health -->
<item id="15942" price="0" /> <!-- Periel Sword {PvP} - Focus -->
<item id="15943" price="0" /> <!-- Periel Sword {PvP} - Haste -->
<item id="15944" price="0" /> <!-- Skull Edge {PvP} - HP Drain -->
<item id="15945" price="0" /> <!-- Skull Edge {PvP} - Haste -->
<item id="15946" price="0" /> <!-- Skull Edge {PvP} - Critical Damage -->
<item id="15947" price="0" /> <!-- Vigwik Axe {PvP} - Health -->
<item id="15948" price="0" /> <!-- Vigwik Axe {PvP} - HP Regeneration -->
<item id="15949" price="0" /> <!-- Vigwik Axe {PvP} - HP Drain -->
<item id="15950" price="0" /> <!-- Devilish Maul {PvP} - Health -->
<item id="15951" price="0" /> <!-- Devilish Maul {PvP} - HP Drain -->
<item id="15952" price="0" /> <!-- Devilish Maul {PvP} - HP Regeneration -->
<item id="15953" price="0" /> <!-- Feather Eye Blade {PvP} - Health -->
<item id="15954" price="0" /> <!-- Feather Eye Blade {PvP} - Focus -->
<item id="15955" price="0" /> <!-- Feather Eye Blade {PvP} - Haste -->
<item id="15956" price="0" /> <!-- Octo Claw {PvP} - Health -->
<item id="15957" price="0" /> <!-- Octo Claw {PvP} - Critical Stun -->
<item id="15958" price="0" /> <!-- Octo Claw {PvP} - Focus -->
<item id="15959" price="0" /> <!-- Doubletop Spear {PvP} - Guidance -->
<item id="15960" price="0" /> <!-- Doubletop Spear {PvP} - Haste -->
<item id="15961" price="0" /> <!-- Doubletop Spear {PvP} - Health -->
<item id="15962" price="0" /> <!-- Rising Star {PvP} - MP Regeneration -->
<item id="15963" price="0" /> <!-- Rising Star {PvP} - Mana Up -->
<item id="15964" price="0" /> <!-- Rising Star {PvP} - Acumen -->
<item id="15965" price="0" /> <!-- Black Visage {PvP} - MP Regeneration -->
<item id="15966" price="0" /> <!-- Black Visage {PvP} - Magic Hold -->
<item id="15967" price="0" /> <!-- Black Visage {PvP} - Empower -->
<item id="15968" price="0" /> <!-- Veniplant Sword {PvP} - Acumen -->
<item id="15969" price="0" /> <!-- Veniplant Sword {PvP} - Magic Hold -->
<item id="15970" price="0" /> <!-- Veniplant Sword {PvP} - Mana Up -->
<item id="15971" price="0" /> <!-- Skull Carnium Bow {PvP} - Focus -->
<item id="15972" price="0" /> <!-- Skull Carnium Bow {PvP} - Critical Slow -->
<item id="15973" price="0" /> <!-- Skull Carnium Bow {PvP} - Cheap Shot -->
<item id="15974" price="0" /> <!-- Gemtail Rapier {PvP} - Health -->
<item id="15975" price="0" /> <!-- Gemtail Rapier {PvP} - Focus -->
<item id="15976" price="0" /> <!-- Gemtail Rapier {PvP} - Haste -->
<item id="15977" price="0" /> <!-- Finale Blade {PvP} - Health -->
<item id="15978" price="0" /> <!-- Finale Blade {PvP} - Focus -->
<item id="15979" price="0" /> <!-- Finale Blade {PvP} - Haste -->
<item id="15980" price="0" /> <!-- Dominion Crossbow {PvP} - Focus -->
<item id="15981" price="0" /> <!-- Dominion Crossbow {PvP} - Critical Slow -->
<item id="15982" price="0" /> <!-- Dominion Crossbow {PvP} - Cheap Shot -->
<item id="15983" price="0" /> <!-- Eternal Core Sword {PvP} - Focus -->
<item id="15984" price="0" /> <!-- Eternal Core Sword {PvP} - Haste -->
<item id="15985" price="0" /> <!-- Eternal Core Sword {PvP} - Health -->
<item id="15986" price="0" /> <!-- Mamba Edge {PvP} - Haste -->
<item id="15987" price="0" /> <!-- Mamba Edge {PvP} - Critical Damage -->
<item id="15988" price="0" /> <!-- Mamba Edge {PvP} - HP Drain -->
<item id="15989" price="0" /> <!-- Eversor Mace {PvP} - HP Regeneration -->
<item id="15990" price="0" /> <!-- Eversor Mace {PvP} - HP Drain -->
<item id="15991" price="0" /> <!-- Eversor Mace {PvP} - Health -->
<item id="15992" price="0" /> <!-- Contristo Hammer {PvP} - HP Drain -->
<item id="15993" price="0" /> <!-- Contristo Hammer {PvP} - HP Regeneration -->
<item id="15994" price="0" /> <!-- Contristo Hammer {PvP} - Health -->
<item id="15995" price="0" /> <!-- Lava Saw {PvP} - Focus -->
<item id="15996" price="0" /> <!-- Lava Saw {PvP} - Haste -->
<item id="15997" price="0" /> <!-- Lava Saw {PvP} - Health -->
<item id="15998" price="0" /> <!-- Jade Claw {PvP} - Critical Stun -->
<item id="15999" price="0" /> <!-- Jade Claw {PvP} - Focus -->
<item id="16000" price="0" /> <!-- Jade Claw {PvP} - Health -->
<item id="16001" price="0" /> <!-- Demitelum {PvP} - Haste -->
<item id="16002" price="0" /> <!-- Demitelum {PvP} - Health -->
<item id="16003" price="0" /> <!-- Demitelum {PvP} - Guidance -->
<item id="16004" price="0" /> <!-- Sacredium {PvP} - Mana Up -->
<item id="16005" price="0" /> <!-- Sacredium {PvP} - Acumen -->
<item id="16006" price="0" /> <!-- Sacredium {PvP} - MP Regeneration -->
<item id="16007" price="0" /> <!-- Cyclic Cane {PvP} - Magic Hold -->
<item id="16008" price="0" /> <!-- Cyclic Cane {PvP} - Empower -->
<item id="16009" price="0" /> <!-- Cyclic Cane {PvP} - MP Regeneration -->
<item id="16010" price="0" /> <!-- Archangel Sword {PvP} - Magic Hold -->
<item id="16011" price="0" /> <!-- Archangel Sword {PvP} - Mana Up -->
<item id="16012" price="0" /> <!-- Archangel Sword {PvP} - Acumen -->
<item id="16013" price="0" /> <!-- Recurve Thorne Bow {PvP} - Critical Slow -->
<item id="16014" price="0" /> <!-- Recurve Thorne Bow {PvP} - Cheap Shot -->
<item id="16015" price="0" /> <!-- Recurve Thorne Bow {PvP} - Focus -->
<item id="16016" price="0" /> <!-- Heavenstare Rapier {PvP} - Focus -->
<item id="16017" price="0" /> <!-- Heavenstare Rapier {PvP} - Haste -->
<item id="16018" price="0" /> <!-- Heavenstare Rapier {PvP} - Health -->
<item id="16019" price="0" /> <!-- Pyseal Blade {PvP} - Focus -->
<item id="16020" price="0" /> <!-- Pyseal Blade {PvP} - Haste -->
<item id="16021" price="0" /> <!-- Pyseal Blade {PvP} - Health -->
<item id="16022" price="0" /> <!-- Thorne Crossbow {PvP} - Critical Slow -->
<item id="16023" price="0" /> <!-- Thorne Crossbow {PvP} - Cheap Shot -->
<item id="16024" price="0" /> <!-- Thorne Crossbow {PvP} - Focus -->
</list>

View File

@@ -1,65 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<item id="21919" price="0" /> <!-- Hellblade -->
<item id="21927" price="0" /> <!-- Hellblade - Lightning -->
<item id="21935" price="0" /> <!-- Butcher Blades -->
<item id="21937" price="0" /> <!-- Butcher Blades - Confusion -->
<item id="21939" price="0" /> <!-- Claw of Destruction -->
<item id="21947" price="0" /> <!-- Claw of Destruction - Landslide -->
<item id="21955" price="0" /> <!-- Blades of Delusion -->
<item id="21957" price="0" /> <!-- Blades of Delusion - Earth -->
<item id="21959" price="0" /> <!-- Blood Brother -->
<item id="21966" price="0" /> <!-- Blood Brother - Great Gale -->
<item id="21973" price="0" /> <!-- Mardil's Fan -->
<item id="21977" price="0" /> <!-- Mardil's Fan - Holy Spirit -->
<item id="21920" price="0" /> <!-- Hellblade - Haste -->
<item id="21921" price="0" /> <!-- Hellblade - Health -->
<item id="21922" price="0" /> <!-- Hellblade - Focus -->
<item id="21928" price="0" /> <!-- Hellblade - Lightning - Haste -->
<item id="21929" price="0" /> <!-- Hellblade - Lightning - Health -->
<item id="21930" price="0" /> <!-- Hellblade - Lightning - Focus -->
<item id="21940" price="0" /> <!-- Claw of Destruction - HP Drain -->
<item id="21941" price="0" /> <!-- Claw of Destruction - Health -->
<item id="21942" price="0" /> <!-- Claw of Destruction - HP Regeneration -->
<item id="21948" price="0" /> <!-- Claw of Destruction - Landslide - HP Drain -->
<item id="21949" price="0" /> <!-- Claw of Destruction - Landslide - Health -->
<item id="21950" price="0" /> <!-- Claw of Destruction - Landslide - HP Regeneration -->
<item id="21960" price="0" /> <!-- Blood Brother - Focus -->
<item id="21961" price="0" /> <!-- Blood Brother - Health -->
<item id="21962" price="0" /> <!-- Blood Brother - Light -->
<item id="21967" price="0" /> <!-- Blood Brother - Great Gale - Focus -->
<item id="21968" price="0" /> <!-- Blood Brother - Great Gale - Health -->
<item id="21969" price="0" /> <!-- Blood Brother - Great Gale - Light -->
<item id="21974" price="0" /> <!-- Mardil's Fan - M. Atk. -->
<item id="21975" price="0" /> <!-- Mardil's Fan - Magic Silence -->
<item id="21976" price="0" /> <!-- Mardil's Fan - Acumen -->
<item id="21978" price="0" /> <!-- Mardil's Fan - Holy Spirit - M. Atk. -->
<item id="21979" price="0" /> <!-- Mardil's Fan - Holy Spirit - Magic Silence -->
<item id="21980" price="0" /> <!-- Mardil's Fan - Holy Spirit - Acumen -->
<item id="21923" price="0" /> <!-- Hellblade {PvP} -->
<item id="21924" price="0" /> <!-- Hellblade {PvP} - Haste -->
<item id="21925" price="0" /> <!-- Hellblade {PvP} - Health -->
<item id="21926" price="0" /> <!-- Hellblade {PvP} - Focus -->
<item id="21931" price="0" /> <!-- Hellblade - Lightning {PvP} -->
<item id="21932" price="0" /> <!-- Hellblade - Lightning {PvP} - Haste -->
<item id="21933" price="0" /> <!-- Hellblade - Lightning {PvP} - Health -->
<item id="21934" price="0" /> <!-- Hellblade - Lightning {PvP} - Focus -->
<item id="21936" price="0" /> <!-- Butcher Blades {PvP} -->
<item id="21938" price="0" /> <!-- Butcher Blades - Confusion {PvP} -->
<item id="21943" price="0" /> <!-- Claw of Destruction {PvP} -->
<item id="21944" price="0" /> <!-- Claw of Destruction {PvP} - HP Drain -->
<item id="21945" price="0" /> <!-- Claw of Destruction {PvP} - Health -->
<item id="21946" price="0" /> <!-- Claw of Destruction {PvP} - HP Regeneration -->
<item id="21951" price="0" /> <!-- Claw of Destruction - Landslide {PvP} -->
<item id="21952" price="0" /> <!-- Claw of Destruction - Landslide {PvP} - HP Drain -->
<item id="21953" price="0" /> <!-- Claw of Destruction - Landslide {PvP} - Health -->
<item id="21954" price="0" /> <!-- Claw of Destruction - Landslide {PvP} - HP Regeneration -->
<item id="21956" price="0" /> <!-- Blades of Delusion {PvP} -->
<item id="21958" price="0" /> <!-- Blades of Delusion - Earth {PvP} -->
<item id="21963" price="0" /> <!-- Blood Brother {PvP} - Focus -->
<item id="21964" price="0" /> <!-- Blood Brother {PvP} - Health -->
<item id="21965" price="0" /> <!-- Blood Brother {PvP} - Light -->
<item id="21970" price="0" /> <!-- Blood Brother - Great Gale {PvP} - Focus -->
<item id="21971" price="0" /> <!-- Blood Brother - Great Gale {PvP} - Health -->
<item id="21972" price="0" /> <!-- Blood Brother - Great Gale {PvP} - Light -->
</list>

View File

@@ -10,10 +10,8 @@
<item id="952" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (C-Grade) -->
<item id="7133" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Goddard -->
<item id="7132" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Aden -->
<item id="8645" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Life (S-Grade) (100%) -->
<item id="8651" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Mental Strength (S-Grade) (100%) -->
<item id="8644" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Life (A-Grade) (100%) -->
<item id="8650" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Mental Strength (A-Grade) (100%) -->
<item id="9952" count="2" restock_delay="120" /> <!-- Orange Talisman - Hot Springs CP Potion -->
<item id="8751" count="1" restock_delay="120" /> <!-- High-Grade Life Stone - Level 70 -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
<item id="17018" count="1" restock_delay="60" /> <!-- Hot Springs Potion -->
<item id="10166" count="1" restock_delay="120" /> <!-- Hot Springs CP Potion -->
</list>

View File

@@ -40,9 +40,5 @@
<item id="947" count="1" restock_delay="360" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
<item id="730" count="1" restock_delay="360" /> <!-- Scroll: Enchant Armor (A-Grade) -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16110" count="1" restock_delay="1440" /> <!-- Recipe - Refined Black Skeleton Circlet (10%) -->
<item id="16111" count="1" restock_delay="1440" /> <!-- Recipe - Refined Orange Skeleton Circlet (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16122" count="10" restock_delay="60" /> <!-- Refined Black Skeleton Circlet Piece -->
<item id="16123" count="10" restock_delay="60" /> <!-- Refined Orange Skeleton Circlet Piece -->
</list>

View File

@@ -49,9 +49,5 @@
<item id="729" count="1" restock_delay="720" /> <!-- Scroll: Enchant Weapon (A-Grade) -->
<item id="960" count="1" restock_delay="1440" /> <!-- Scroll: Enchant Armor (S-Grade) -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16113" count="1" restock_delay="1440" /> <!-- Recipe - Refined Brown Skeleton Circlet (10%) -->
<item id="16112" count="1" restock_delay="1440" /> <!-- Recipe - Refined Green Skeleton Circlet (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16124" count="10" restock_delay="60" /> <!-- Refined Green Skeleton Circlet Piece -->
<item id="16125" count="10" restock_delay="60" /> <!-- Refined Brown Skeleton Circlet Piece -->
</list>

View File

@@ -17,6 +17,7 @@
<item id="6930" count="1" restock_delay="60" /> <!-- Recipe: Greater Antidote (100%) -->
<item id="6932" count="1" restock_delay="60" /> <!-- Recipe: Emergency Dressing (100%) -->
<item id="6937" count="1" restock_delay="60" /> <!-- Recipe: Magic Haste Potion (100%) -->
<item id="6930" count="1" restock_delay="60" /> <!-- Recipe: Greater Antidote (100%) -->
<item id="6920" count="1" restock_delay="60" /> <!-- Recipe: Greater Fish Oil (100%) -->
<item id="8364" count="1" restock_delay="60" /> <!-- Recipe: Party Hat (100%) -->
<item id="6925" count="1" restock_delay="60" /> <!-- Recipe: Monocle (100%) -->
@@ -36,22 +37,12 @@
<item id="6999" count="1" restock_delay="60" /> <!-- Recipe: Greater Dye of MEN (100%) -->
<item id="7000" count="1" restock_delay="60" /> <!-- Recipe: Greater Dye of WIT (100%) -->
<item id="7001" count="1" restock_delay="60" /> <!-- Recipe: Greater Dye of WIT (100%) -->
<item id="8645" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Life (S-Grade) (100%) -->
<item id="8651" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Mental Strength (S-Grade) (100%) -->
<item id="9605" /> <!-- Agathion Seal Bracelet - Rainbow Clan Hall -->
<item id="10141" count="1" restock_delay="120" /> <!-- Grey Talisman - Yeti Transform -->
<item id="8645" count="1" restock_delay="60" /> <!-- Recipe: Elixir of Life (S-Grade) (100%) -->
<item id="8651" count="1" restock_delay="60" /> <!-- Recipe: Elixir of Mental Strength (S-Grade) (100%) -->
<item id="9605" count="1" restock_delay="60" /> <!-- Agathion Seal Bracelet - Rainbow Clan Hall -->
<item id="10141" count="1" restock_delay="60" /> <!-- Grey Talisman - Yeti Transform -->
<item id="9952" count="2" restock_delay="120" /> <!-- Orange Talisman - Hot Springs CP Potion -->
<item id="8751" count="1" restock_delay="120" /> <!-- High-Grade Life Stone - Level 70 -->
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="361" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
<item id="947" count="1" restock_delay="361" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
<item id="730" count="1" restock_delay="361" /> <!-- Scroll: Enchant Armor (A-Grade) -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16117" count="1" restock_delay="1428" /> <!-- Recipe - Refined Penguin Hat (10%) -->
<item id="16120" count="1" restock_delay="1428" /> <!-- Recipe - Refined Turtle Hat (10%) -->
<item id="8762" count="1" restock_delay="722" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16129" count="10" restock_delay="60" /> <!-- Fabric of Refined Penguin Hat -->
<item id="16132" count="10" restock_delay="60" /> <!-- Fabric of Refined Turtle Hat -->
<item id="17018" count="1" restock_delay="60" /> <!-- Hot Springs Potion -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="10166" count="1" restock_delay="120" /> <!-- Hot Springs CP Potion -->
</list>

View File

@@ -41,14 +41,12 @@
<item id="8651" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Mental Strength (S-Grade) (100%) -->
<item id="9606" /> <!-- Agathion Seal Bracelet - Wild Beast Reserve -->
<item id="10142" count="1" restock_delay="120" /> <!-- Grey Talisman - Buffalo Transform -->
<item id="8751" count="1" restock_delay="120" /> <!-- High-Grade Life Stone - Level 70 -->
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="361" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="8751" count="1" restock_delay="120" /> <!-- High-Grade Life Stone - Level 70 -->
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="361" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
<item id="947" count="1" restock_delay="361" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
<item id="730" count="1" restock_delay="361" /> <!-- Scroll: Enchant Armor (A-Grade) -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16121" count="1" restock_delay="1428" /> <!-- Recipe - Refined Cow Hat (10%) -->
<item id="8762" count="1" restock_delay="722" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16133" count="10" restock_delay="60" /> <!-- Fabric of Refined Cow Hat -->
<item id="8762" count="1" restock_delay="722" /> <!-- Top-Grade Life Stone - Level 76 -->
</list>

View File

@@ -43,15 +43,11 @@
<item id="7013" count="1" restock_delay="60" /> <!-- Recipe: Greater Dye of WIT <Wit+4 Men-4> (100%) -->
<item id="8645" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Life (S-Grade) (100%) -->
<item id="8651" count="1" restock_delay="120" /> <!-- Recipe: Elixir of Mental Strength (S-Grade) (100%) -->
<item id="8751" count="1" restock_delay="120" /> <!-- High-Grade Life Stone - Level 70 -->
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="361" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="8751" count="1" restock_delay="120" /> <!-- High-Grade Life Stone - Level 70 -->
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="361" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="729" count="1" restock_delay="722" /> <!-- Scroll: Enchant Weapon (A-Grade) -->
<item id="960" count="1" restock_delay="1428" /> <!-- Scroll: Enchant Armor (S-Grade) -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16118" count="1" restock_delay="1428" /> <!-- Recipe - Refined Brown Turban (10%) -->
<item id="16119" count="1" restock_delay="1428" /> <!-- Recipe - Refined Yellow Turban (10%) -->
<item id="8762" count="1" restock_delay="722" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16130" count="10" restock_delay="60" /> <!-- Fabric of Refined Brown Turban -->
<item id="16131" count="10" restock_delay="60" /> <!-- Fabric of Refined Yellow Turban -->
<item id="8762" count="1" restock_delay="722" /> <!-- Top-Grade Life Stone - Level 76 -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16115" count="1" restock_delay="1440" /> <!-- Recipe - Chick Gold Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16127" count="10" restock_delay="60" /> <!-- Fabric of Chic Gold Horn Cap -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16116" count="1" restock_delay="1440" /> <!-- Recipe - Chick Silver Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16128" count="10" restock_delay="60" /> <!-- Fabric of Chic Silver Horn Cap -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16115" count="1" restock_delay="1440" /> <!-- Recipe - Chick Gold Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16127" count="10" restock_delay="60" /> <!-- Fabric of Chic Gold Horn Cap -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16116" count="1" restock_delay="1440" /> <!-- Recipe - Chick Silver Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16128" count="10" restock_delay="60" /> <!-- Fabric of Chic Silver Horn Cap -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16115" count="1" restock_delay="1440" /> <!-- Recipe - Chick Gold Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16127" count="10" restock_delay="60" /> <!-- Fabric of Chic Gold Horn Cap -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16116" count="1" restock_delay="1440" /> <!-- Recipe - Chick Silver Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16128" count="10" restock_delay="60" /> <!-- Fabric of Chic Silver Horn Cap -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16115" count="1" restock_delay="1440" /> <!-- Recipe - Chick Gold Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16127" count="10" restock_delay="60" /> <!-- Fabric of Chic Gold Horn Cap -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16116" count="1" restock_delay="1440" /> <!-- Recipe - Chick Silver Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16128" count="10" restock_delay="60" /> <!-- Fabric of Chic Silver Horn Cap -->
</list>

View File

@@ -12,7 +12,5 @@
<item id="8752" count="1" restock_delay="240" /> <!-- High-Grade Life Stone - Level 76 -->
<item id="8761" count="1" restock_delay="360" /> <!-- Top-Grade Life Stone - Level 70 -->
<item id="9898" count="1" restock_delay="480" /> <!-- SP Scroll: Highest Grade -->
<item id="16115" count="1" restock_delay="1440" /> <!-- Recipe - Chick Gold Horn Cap (10%) -->
<item id="8762" count="1" restock_delay="720" /> <!-- Top-Grade Life Stone - Level 76 -->
<item id="16127" count="10" restock_delay="60" /> <!-- Fabric of Chic Gold Horn Cap -->
</list>

View File

@@ -41,5 +41,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -41,5 +41,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -41,5 +41,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -47,5 +47,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -6,10 +6,6 @@
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="3947" /> <!-- 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" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -60,5 +56,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -6,10 +6,6 @@
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="3947" /> <!-- 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" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -60,5 +56,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -6,10 +6,6 @@
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="3947" /> <!-- 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" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -60,5 +56,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -45,5 +45,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -41,5 +41,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -39,5 +39,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -0,0 +1,76 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>31044</npc> <!-- Galman -->
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
<item id="5262" /> <!-- Greater Compressed Package of Blessed Spiritshots (No-Grade) -->
<item id="5256" /> <!-- Greater Compressed Package of Spiritshots (No-Grade) -->
<item id="5250" /> <!-- Greater Compressed Package of Soulshots (No-Grade) -->
<item id="17" /> <!-- Wooden Arrow -->
<item id="1341" /> <!-- Bone Arrow -->
<item id="1342" /> <!-- Steel Arrow -->
<item id="1343" /> <!-- Silver Arrow -->
<item id="1344" /> <!-- Mithril Arrow -->
<item id="1060" /> <!-- Lesser Healing Potion -->
<item id="1061" /> <!-- Greater Healing Potion -->
<item id="1831" /> <!-- Antidote -->
<item id="1832" /> <!-- Greater Antidote -->
<item id="1833" /> <!-- Bandage -->
<item id="1834" /> <!-- Emergency Dressing -->
<item id="734" /> <!-- Haste Potion -->
<item id="735" /> <!-- Alacrity Potion -->
<item id="6035" /> <!-- Magic Haste Potion -->
<item id="6037" /> <!-- Waking Scroll -->
<item id="736" /> <!-- Scroll of Escape -->
<item id="737" /> <!-- Scroll of Resurrection -->
<item id="1829" /> <!-- Scroll of Escape: Clan Hall -->
<item id="1830" /> <!-- Scroll of Escape: Castle -->
<item id="3031" /> <!-- Spirit Ore -->
<item id="1785" /> <!-- Soul Ore -->
<item id="5589" /> <!-- Energy Stone -->
<item id="1661" /> <!-- Thief Key -->
<item id="5192" /> <!-- Rope of Magic (D-Grade) -->
<item id="5193" /> <!-- Rope of Magic (C-Grade) -->
<item id="5194" /> <!-- Rope of Magic (B-Grade) -->
<item id="5195" /> <!-- Rope of Magic (A-Grade) -->
<item id="5196" /> <!-- Rope of Magic (S-Grade) -->
<item id="2130" /> <!-- Gemstone D -->
<item id="2131" /> <!-- Gemstone C -->
<item id="2132" /> <!-- Gemstone B -->
<item id="4679" /> <!-- Bless of Eva -->
<item id="9633" /> <!-- Bone Bolt -->
<item id="9634" /> <!-- Steel Bolt -->
<item id="9635" /> <!-- Silver Bolt -->
<item id="9636" /> <!-- Mithril Bolt -->
<item id="8594" /> <!-- Scroll: Recovery (No Grade) -->
<item id="8595" /> <!-- Scroll: Recovery (Grade D) -->
<item id="8596" /> <!-- Scroll: Recovery (Grade C) -->
<item id="8597" /> <!-- Scroll: Recovery (Grade B) -->
<item id="8598" /> <!-- Scroll: Recovery (Grade A) -->
<item id="8599" /> <!-- Scroll: Recovery (Grade S) -->
<item id="8622" /> <!-- Elixir of Life (No Grade) -->
<item id="8623" /> <!-- Elixir of Life (D-Grade) -->
<item id="8624" /> <!-- Elixir of Life (C-Grade) -->
<item id="8634" /> <!-- Elixir of CP (No Grade) -->
<item id="8635" /> <!-- Elixir of CP (D-Grade) -->
<item id="8636" /> <!-- Elixir of CP (C-Grade) -->
<item id="8637" /> <!-- Elixir of CP (B-Grade) -->
<item id="8638" /> <!-- Elixir of CP (A-Grade) -->
<item id="8639" /> <!-- Elixir of CP (S-Grade) -->
<item id="8615" /> <!-- Summoning Crystal -->
<item id="8658" /> <!-- Mysterious Solvent -->
<item id="8871" /> <!-- Strategy Guide -->
<item id="10409" /> <!-- A Bottle of Souls -->
<item id="4625" /> <!-- Dice (Heart) -->
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -3,10 +3,10 @@
<npcs>
<npc>31366</npc> <!-- Feed Seller -->
</npcs>
<item id="15474" /> <!-- Golden Spice -->
<item id="15475" /> <!-- Crystal Spice -->
<item id="15482" /> <!-- Golden Spice Crate -->
<item id="15483" /> <!-- Crystal Spice Compressed Pack -->
<item id="736" /> <!-- Scroll of Escape -->
<item id="8599" /> <!-- Scroll: Recovery (Grade S) -->
<item id="6643" /> <!-- Golden Spice -->
<item id="6644" /> <!-- Crystal Spice -->
<item id="734" /> <!-- Haste Potion -->
<item id="735" /> <!-- Alacrity Potion -->
<item id="1061" /> <!-- Greater Healing Potion -->
<item id="737" /> <!-- Scroll of Resurrection -->
</list>

View File

@@ -6,10 +6,6 @@
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="3947" /> <!-- 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" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -60,5 +56,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -108,55 +108,4 @@
<item id="10379" price="4137600" /> <!-- Recipe - Icarus Hand (60%) -->
<item id="10380" price="4137600" /> <!-- Recipe - Icarus Hall (60%) -->
<item id="10381" price="4137600" /> <!-- Recipe - Icarus Spitter (60%) -->
<item id="15775" price="505080" /> <!-- Recipe - Sealed Moirai Helmet (60%) -->
<item id="15776" price="505080" /> <!-- Recipe - Sealed Moirai Leather Helmet(60%) -->
<item id="15777" price="505080" /> <!-- Recipe - Sealed Moirai Circlet (60%) -->
<item id="15778" price="1346920" /> <!-- Recipe - Sealed Moirai Breastplate (60%) -->
<item id="15779" price="1010200" /> <!-- Recipe - Sealed Moirai Leather Breastplate (60%) -->
<item id="15780" price="1010200" /> <!-- Recipe - Sealed Moirai Tunic (60%) -->
<item id="15781" price="841840" /> <!-- Recipe - Sealed Moirai Gaiter (60%) -->
<item id="15782" price="631360" /> <!-- Recipe - Sealed Moirai Leather Legging (60%) -->
<item id="15783" price="631360" /> <!-- Recipe - Sealed Moirai Stockings (60%) -->
<item id="15784" price="336720" /> <!-- Recipe - Sealed Moirai Gauntlet (60%) -->
<item id="15785" price="336720" /> <!-- Recipe - Sealed Moirai Leather Gloves (60%) -->
<item id="15786" price="336720" /> <!-- Recipe - Sealed Moirai Gloves (60%) -->
<item id="15787" price="336720" /> <!-- Recipe - Sealed Moirai Boots (60%) -->
<item id="15788" price="336720" /> <!-- Recipe - Sealed Moirai Leather Boots (60%) -->
<item id="15789" price="336720" /> <!-- Recipe - Sealed Moirai Shoes (60%) -->
<item id="15790" price="353560" /> <!-- Recipe - Sealed Moirai Sigil (60%) -->
<item id="15791" price="353560" /> <!-- Recipe - Sealed Moirai Shield (60%) -->
<item id="15792" price="700000" /> <!-- Recipe - Sealed Vesper Helmet (60%) -->
<item id="15793" price="700000" /> <!-- Recipe - Sealed Vesper Leather Helmet (60%) -->
<item id="15794" price="700000" /> <!-- Recipe - Sealed Vesper Circlet (60%) -->
<item id="15795" price="1866720" /> <!-- Recipe - Sealed Vesper Breastplate (60%) -->
<item id="15796" price="1400000" /> <!-- Recipe - Sealed Vesper Leather Breastplate (60%) -->
<item id="15797" price="1400000" /> <!-- Recipe - Sealed Vesper Tunic (60%) -->
<item id="15798" price="1166720" /> <!-- Recipe - Sealed Vesper Gaiter (60%) -->
<item id="15799" price="875040" /> <!-- Recipe - Sealed Vesper Leather Legging (60%) -->
<item id="15800" price="875040" /> <!-- Recipe - Sealed Vesper Stockings (60%) -->
<item id="15801" price="466680" /> <!-- Recipe - Sealed Vesper Gauntlet (60%) -->
<item id="15802" price="466680" /> <!-- Recipe - Sealed Vesper Leather Gloves (60%) -->
<item id="15803" price="466680" /> <!-- Recipe - Sealed Vesper Gloves (60%) -->
<item id="15804" price="466680" /> <!-- Recipe - Sealed Vesper Boots (60%) -->
<item id="15805" price="466680" /> <!-- Recipe - Sealed Vesper Leather Boots (60%) -->
<item id="15806" price="466680" /> <!-- Recipe - Sealed Vesper Shoes (60%) -->
<item id="15807" price="490000" /> <!-- Recipe - Sealed Vesper Sigil (60%) -->
<item id="15808" price="490000" /> <!-- Recipe - Sealed Vesper Shield (60%) -->
<item id="15809" price="303840" /> <!-- Recipe - Sealed Vesper Ring (70%) -->
<item id="15810" price="455760" /> <!-- Recipe - Sealed Vesper Earring (70%) -->
<item id="15811" price="607680" /> <!-- Recipe - Sealed Vesper Necklace (70%) -->
<item id="15812" price="219200" /> <!-- Recipe - Sealed Moirai Ring (70%) -->
<item id="15813" price="328840" /> <!-- Recipe - Sealed Moirai Earring (70%) -->
<item id="15814" price="438440" /> <!-- Recipe - Sealed Moirai Necklace (70%) -->
<item id="15815" price="5734240" /> <!-- Recipe - Sealed Vesper Cutter (60%) -->
<item id="15816" price="5734240" /> <!-- Recipe - Sealed Vesper Slasher (60%) -->
<item id="15817" price="5734240" /> <!-- Recipe - Vesper Buster (60%) -->
<item id="15818" price="5734240" /> <!-- Recipe - Vesper Shaper (60%) -->
<item id="15819" price="5734240" /> <!-- Recipe - Vesper Fighter (60%) -->
<item id="15820" price="5734240" /> <!-- Recipe - Vesper Stormer (60%) -->
<item id="15821" price="5734240" /> <!-- Recipe - Vesper Avenger (60%) -->
<item id="15822" price="5734240" /> <!-- Recipe - Vesper Retributer (60%) -->
<item id="15823" price="5734240" /> <!-- Recipe - Vesper Caster (60%) -->
<item id="15824" price="5734240" /> <!-- Recipe - Vesper Singer (60%) -->
<item id="15825" price="5734240" /> <!-- Recipe - Vesper Thrower (60%) -->
</list>

View File

@@ -104,16 +104,4 @@
<item id="7690" price="200000" /> <!-- Recipe - Outlaw's Eyepatch (100%) -->
<item id="7692" price="200000" /> <!-- Recipe - Rabbit Ears (100%) -->
<item id="7689" price="200000" /> <!-- Recipe - Raccoon Ears (100%) -->
<item id="16110" price="600000" /> <!-- Recipe - Refined Black Skeleton Circlet (10%) -->
<item id="16111" price="600000" /> <!-- Recipe - Refined Orange Skeleton Circlet (10%) -->
<item id="16112" price="600000" /> <!-- Recipe - Refined Green Skeleton Circlet (10%) -->
<item id="16113" price="600000" /> <!-- Recipe - Refined Brown Skeleton Circlet (10%) -->
<item id="16114" price="600000" /> <!-- Recipe - Refined Shark Hat (10%) -->
<item id="16115" price="600000" /> <!-- Recipe - Chick Gold Horn Cap (10%) -->
<item id="16116" price="600000" /> <!-- Recipe - Chick Silver Horn Cap (10%) -->
<item id="16117" price="600000" /> <!-- Recipe - Refined Penguin Hat (10%) -->
<item id="16118" price="600000" /> <!-- Recipe - Refined Brown Turban (10%) -->
<item id="16119" price="600000" /> <!-- Recipe - Refined Yellow Turban (10%) -->
<item id="16120" price="600000" /> <!-- Recipe - Refined Turtle Hat (10%) -->
<item id="16121" price="600000" /> <!-- Recipe - Refined Cow Hat (10%) -->
</list>

View File

@@ -94,67 +94,4 @@
<item id="10405" price="624000" /> <!-- Icarus Spitter Piece -->
<item id="10114" price="107554" /> <!-- Sealed Dynasty Sigil Piece -->
<item id="13099" price="28682" /> <!-- Sealed Arcana Sigil Piece -->
<item id="15634" price="673400" /> <!-- Vesper Cutter Piece -->
<item id="15635" price="674600" /> <!-- Vesper Slasher Piece -->
<item id="15636" price="673400" /> <!-- Vesper Buster Piece -->
<item id="15637" price="673400" /> <!-- Vesper Shaper Piece -->
<item id="15638" price="679200" /> <!-- Vesper Fighter Piece -->
<item id="15639" price="671400" /> <!-- Vesper Stormer Piece -->
<item id="15640" price="679200" /> <!-- Vesper Avenger Piece -->
<item id="15641" price="671400" /> <!-- Vesper Retributer Piece -->
<item id="15642" price="679200" /> <!-- Vesper Caster Piece -->
<item id="15643" price="677400" /> <!-- Vesper Singer Piece -->
<item id="15644" price="670600" /> <!-- Vesper Thrower Piece -->
<item id="15645" price="67400" /> <!-- Sealed Moirai Helmet Piece -->
<item id="15646" price="67400" /> <!-- Sealed Moirai Leather Helmet Piece -->
<item id="15647" price="67400" /> <!-- Sealed Moirai Circlet Piece -->
<item id="15648" price="168600" /> <!-- Sealed Moirai Breastplate Piece -->
<item id="15649" price="124600" /> <!-- Sealed Moirai Leather Breastplate Piece -->
<item id="15650" price="124600" /> <!-- Sealed Moirai Tunic Piece -->
<item id="15651" price="100600" /> <!-- Sealed Moirai Gaiter Piece -->
<item id="15652" price="76800" /> <!-- Sealed Moirai Leather Legging Piece -->
<item id="15653" price="76800" /> <!-- Sealed Moirai Stockings Piece -->
<item id="15654" price="44800" /> <!-- Sealed Moirai Gauntlet Piece -->
<item id="15655" price="44800" /> <!-- Sealed Moirai Leather Gloves Piece -->
<item id="15656" price="44800" /> <!-- Sealed Moirai Gloves Piece -->
<item id="15657" price="44800" /> <!-- Sealed Moirai Boots Piece -->
<item id="15658" price="44800" /> <!-- Sealed Moirai Leather Boots Piece -->
<item id="15659" price="44800" /> <!-- Sealed Moirai Shoes Piece -->
<item id="15660" price="87200" /> <!-- Sealed Vesper Helmet Piece -->
<item id="15661" price="87200" /> <!-- Sealed Vesper Leather Helmet Piece -->
<item id="15662" price="87200" /> <!-- Sealed Vesper Circlet Piece -->
<item id="15663" price="221000" /> <!-- Sealed Vesper Breastplate Piece -->
<item id="15664" price="168600" /> <!-- Sealed Vesper Leather Breastplate Piece -->
<item id="15665" price="168600" /> <!-- Sealed Vesper Tunic Piece -->
<item id="15666" price="137200" /> <!-- Sealed Vesper Gaiter Piece -->
<item id="15667" price="52200" /> <!-- Sealed Vesper Gauntlet Piece -->
<item id="15668" price="52200" /> <!-- Sealed Vesper Boots Piece -->
<item id="15669" price="59000" /> <!-- Sealed Vesper Verteidiger Piece -->
<item id="15670" price="109400" /> <!-- Sealed Vesper Leather Legging Piece -->
<item id="15671" price="52200" /> <!-- Sealed Vesper Leather Gloves Piece -->
<item id="15672" price="52200" /> <!-- Sealed Vesper Leather Boots Piece -->
<item id="15673" price="109400" /> <!-- Sealed Vesper Stockings Piece -->
<item id="15674" price="52200" /> <!-- Sealed Vesper Gloves Piece -->
<item id="15675" price="52200" /> <!-- Sealed Vesper Shoes Piece -->
<item id="15691" price="59000" /> <!-- Sealed Vesper Sigil Piece -->
<item id="15692" price="37600" /> <!-- Sealed Moirai Sigil Piece -->
<item id="15693" price="37600" /> <!-- Sealed Moirai Shield Piece -->
<item id="15769" price="38200" /> <!-- Sealed Vesper Ring Gem -->
<item id="15770" price="63600" /> <!-- Sealed Vesper Earring Gem -->
<item id="15771" price="88400" /> <!-- Sealed Vesper Necklace Gem -->
<item id="15772" price="29000" /> <!-- Sealed Moirai Ring Gem -->
<item id="15773" price="51600" /> <!-- Sealed Moirai Earring Gem -->
<item id="15774" price="59800" /> <!-- Sealed Moirai Necklace Gem -->
<item id="16122" price="46000" /> <!-- Refined Black Skeleton Circlet Piece -->
<item id="16123" price="46000" /> <!-- Refined Orange Skeleton Circlet Piece -->
<item id="16124" price="46000" /> <!-- Refined Green Skeleton Circlet Piece -->
<item id="16125" price="46000" /> <!-- Refined Brown Skeleton Circlet Piece -->
<item id="16126" price="46000" /> <!-- Fabric of Refined Shark Hat -->
<item id="16127" price="46000" /> <!-- Fabric of Chic Gold Horn Cap -->
<item id="16128" price="46000" /> <!-- Fabric of Chic Silver Horn Cap -->
<item id="16129" price="46000" /> <!-- Fabric of Refined Penguin Hat -->
<item id="16130" price="46000" /> <!-- Fabric of Refined Brown Turban -->
<item id="16131" price="46000" /> <!-- Fabric of Refined Yellow Turban -->
<item id="16132" price="46000" /> <!-- Fabric of Refined Turtle Hat -->
<item id="16133" price="46000" /> <!-- Fabric of Refined Cow Hat -->
</list>

View File

@@ -5,11 +5,7 @@
</npcs>
<item id="1835" /> <!-- Soulshot: No Grade -->
<item id="2509" /> <!-- Spiritshot: No Grade -->
<item id="1463" /> <!-- Soulshot (D-Grade) -->
<item id="1464" /> <!-- Soulshot (C-Grade) -->
<item id="3947" /> <!-- Blessed Spiritshot: No Grade -->
<item id="3948" /> <!-- Blessed Spiritshot (D-Grade) -->
<item id="3949" /> <!-- Blessed Spiritshot (C-Grade) -->
<item id="5146" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
<item id="5140" /> <!-- Compressed Package of Spiritshots: No Grade -->
<item id="5134" /> <!-- Compressed Package of Soulshots: No Grade -->
@@ -77,5 +73,4 @@
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="8872" /> <!-- Flash Gunpowder -->
<item id="8629" /> <!-- Elixir of Mental Strength (D-Grade) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -41,5 +41,4 @@
<item id="4626" /> <!-- Dice (Spade) -->
<item id="4627" /> <!-- Dice (Clover) -->
<item id="4628" /> <!-- Dice (Diamond) -->
<item id="21746" /> <!-- Maestro's Key -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32874</npc> <!-- Lyann -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32875</npc> <!-- Tahoo -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32876</npc> <!-- Desian -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32877</npc> <!-- Plani -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32878</npc> <!-- Sparky -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32879</npc> <!-- Drawin -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32880</npc> <!-- Dolphren -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32881</npc> <!-- Denver -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32882</npc> <!-- Prouse -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32883</npc> <!-- Hedinger -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -1,71 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
<npcs>
<npc>32887</npc> <!-- Metar -->
</npcs>
<item id="1814" /> <!-- Recipe: Leather -->
<item id="2135" /> <!-- Recipe: Braided Hemp -->
<item id="2136" /> <!-- Recipe: Cokes -->
<item id="2137" /> <!-- Recipe: Steel -->
<item id="2138" /> <!-- Recipe: Coarse Bone Powder (100%) -->
<item id="1817" /> <!-- Recipe: Cord -->
<item id="2139" /> <!-- Recipe: Steel Mold -->
<item id="2140" /> <!-- Recipe: High-Grade Suede -->
<item id="2141" /> <!-- Recipe: Silver Mold -->
<item id="2142" /> <!-- Recipe: Varnish of Purity -->
<item id="2143" /> <!-- Recipe: Synthetic Cokes -->
<item id="2144" /> <!-- Recipe: Compound Braid -->
<item id="1825" /> <!-- Recipe: Oriharukon -->
<item id="2145" /> <!-- Recipe: Mithril Alloy -->
<item id="2146" /> <!-- Recipe: Artisan's frame -->
<item id="2147" /> <!-- Recipe: Blacksmith's frame -->
<item id="2148" /> <!-- Recipe: Crafted Leather -->
<item id="2149" /> <!-- Recipe: Metallic Fiber -->
<item id="5231" /> <!-- Recipe: Metal Hardener (100%) -->
<item id="5472" /> <!-- Recipe: Metallic Thread(100%) -->
<item id="5473" /> <!-- Recipe: Durable Metal Plate(100%) -->
<item id="4122" /> <!-- Recipe: Maestro Holder (100%) -->
<item id="4123" /> <!-- Recipe: Maestro Anvil Lock (100%) -->
<item id="4124" /> <!-- Recipe: Craftsman Mold (100%) -->
<item id="4125" /> <!-- Recipe: Maestro Mold (100%) -->
<item id="5474" /> <!-- Recipe: Reorin's Mold(100%) -->
<item id="5475" /> <!-- Recipe: Warsmith's Mold(100%) -->
<item id="5476" /> <!-- Recipe: Arcsmith's Anvil(100%) -->
<item id="5477" /> <!-- Recipe: Warsmith's Holder(100%) -->
<item id="1804" /> <!-- Recipe: Soulshot (D-Grade) -->
<item id="3032" /> <!-- Recipe: Spiritshot D -->
<item id="1805" /> <!-- Recipe: Soulshot (C-Grade) -->
<item id="3033" /> <!-- Recipe: Spiritshot C -->
<item id="3953" /> <!-- Recipe: Blessed Spiritshot D -->
<item id="3954" /> <!-- Recipe: Blessed Spiritshot C -->
<item id="5153" /> <!-- Recipe: Soulshot (D) Compressed Package (100%) -->
<item id="5158" /> <!-- Recipe: Spiritshot (D) Compressed Package (100%) -->
<item id="5163" /> <!-- Recipe: Blessed Spiritshot (D) Compressed Package (100%) -->
<item id="5268" /> <!-- Recipe: Greater Soulshot (D) Compressed Package (100%) -->
<item id="5273" /> <!-- Recipe: Greater Spiritshot (D) Compressed Package(100%) -->
<item id="5278" /> <!-- Recipe: Greater Blessed Spiritshot (D) Compressed Package(100%) -->
<item id="5154" /> <!-- Recipe: Soulshot (C) Compressed Package (100%) -->
<item id="5159" /> <!-- Recipe: Spiritshot (C) Compressed Package (100%) -->
<item id="5164" /> <!-- Recipe: Blessed Spiritshot (C) Compressed Package (100%) -->
<item id="5269" /> <!-- Recipe: Greater Soulshot (C) Compressed Package(100%) -->
<item id="5274" /> <!-- Recipe: Greater Spiritshot (C) Compressed Package(100%) -->
<item id="5279" /> <!-- Recipe: Greater Blessed Spiritshot (C) Compressed Package(100%) -->
<item id="1806" /> <!-- Recipe: Soulshot (B-Grade) -->
<item id="3034" /> <!-- Recipe: Spiritshot B -->
<item id="1807" /> <!-- Recipe: Soulshot (A-Grade) -->
<item id="3035" /> <!-- Recipe: Spiritshot A -->
<item id="3955" /> <!-- Recipe: Blessed Spiritshot B -->
<item id="3956" /> <!-- Recipe: Blessed Spiritshot A -->
<item id="5155" /> <!-- Recipe: Soulshot (B) Compressed Package (100%) -->
<item id="5160" /> <!-- Recipe: Spiritshot (B) Compressed Package (100%) -->
<item id="5165" /> <!-- Recipe: Blessed Spiritshot (B) Compressed Package (100%) -->
<item id="5270" /> <!-- Recipe: Greater Soulshot (B) Compressed Package(100%) -->
<item id="5275" /> <!-- Recipe: Greater Spiritshot (B) Compressed Package(100%) -->
<item id="5280" /> <!-- Recipe: Greater Blessed Spiritshot (B) Compressed Package(100%) -->
<item id="5156" /> <!-- Recipe: Soulshot (A) Compressed Package (100%) -->
<item id="5161" /> <!-- Recipe: Spiritshot (A) Compressed Package (100%) -->
<item id="5166" /> <!-- Recipe: Blessed Spiritshot (A) Compressed Package (100%) -->
<item id="5271" /> <!-- Recipe: Greater Soulshot (A) Compressed Package(100%) -->
<item id="5276" /> <!-- Recipe: Greater Spiritshot (A) Compressed Package(100%) -->
<item id="5281" /> <!-- Recipe: Greater Blessed Spiritshot (A) Compressed Package(100%) -->
</list>

View File

@@ -15,7 +15,7 @@
<table border=0 cellpadding=0 cellspacing=0 width=555 height=455 background="L2UI_CT1.Windows_DF_TooltipBG">
<tr>
<td align="center">
<img src="L2UI_CT1.OlympiadWnd_DF_GrandTexture" width=300 height=220>
<img src="l2ui.bbs_lineage2" width="128" height="16">
</td>
</tr>
<tr>

View File

@@ -3,24 +3,24 @@
<td height=25></td>
</tr>
<tr>
<td><button value="Home" action="bypass _bbstop;home.html" width=200 height=30 back="L2UI_CT1.OlympiadWnd_DF_Info_Down" fore="L2UI_CT1.OlympiadWnd_DF_Info"></td></tr>
<td><button value="Home" action="bypass _bbstop;home.html" width=200 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td></tr>
</tr>
<tr>
<td><button value="Buffer" action="bypass _bbstop;buffer/main.html" width=200 height=30 back="L2UI_CT1.OlympiadWnd_DF_Fight3None_Down" fore="L2UI_CT1.OlympiadWnd_DF_Fight3None"></td></tr>
<td><button value="Buffer" action="bypass _bbstop;buffer/main.html" width=200 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td></tr>
</tr>
<tr>
<td><button value="Merchant" action="bypass _bbstop;merchant/main.html" width=200 height=30 back="L2UI_CT1.OlympiadWnd_DF_BuyEquip_Down" fore="L2UI_CT1.OlympiadWnd_DF_BuyEquip"></td></tr>
<td><button value="Merchant" action="bypass _bbstop;merchant/main.html" width=200 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td></tr>
</tr>
<tr>
<td><button value="Gatekeeper" action="bypass _bbstop;gatekeeper/main.html" width=200 height=30 back="L2UI_CT1.OlympiadWnd_DF_HeroConfirm_Down" fore="L2UI_CT1.OlympiadWnd_DF_HeroConfirm"></td></tr>
<td><button value="Gatekeeper" action="bypass _bbstop;gatekeeper/main.html" width=200 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td></tr>
</tr>
<tr>
<td><button value="Drop Search" action="bypass _bbstop;dropsearch/main.html" width=200 height=30 back="L2UI_CT1.OlympiadWnd_DF_Watch_Down" fore="L2UI_CT1.OlympiadWnd_DF_Watch"></td></tr>
<td><button value="Drop Search" action="bypass _bbstop;dropsearch/main.html" width=200 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td></tr>
</tr>
<tr>
<td><button value="Delevel" action="bypass _bbstop;delevel/main.html" width=200 height=30 back="L2UI_CT1.OlympiadWnd_DF_Back_Down" fore="L2UI_CT1.OlympiadWnd_DF_Back"></td>
<td><button value="Delevel" action="bypass _bbstop;delevel/main.html" width=200 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td></tr>
</tr>
<tr>
<td><button value="Premium" action="bypass _bbstop;premium/main.html" width=200 height=30 back="L2UI_CT1.OlympiadWnd_DF_Reward_Down" fore="L2UI_CT1.OlympiadWnd_DF_Reward"></td>
<td><button value="Premium" action="bypass _bbstop;premium/main.html" width=200 height=30 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
</tr>
</table>

View File

@@ -3,91 +3,6 @@
<center>
<br>
<br>
<table border="0" cellspacing="0" cellpadding="0" width="755">
<tr>
<td width="755" align="center" valign="top">
<font name="hs12">&$2306;</font>
</td>
</tr>
</table>
<br>
<br>
<table border="0" cellspacing="0" cellpadding="2" bgcolor="A7A19A" width="755">
<tr>
<td width="100" align=right>&amp;$412;</td>
<td width="480" align=center>&amp;$413;</td>
<td width="160" align=center>&amp;$2258;</td>
</tr>
</table>
<br>
<table border="0" cellspacing="0" cellpadding="2" width="755">
<tr>
<td fixwidth="100" align="right" valign="top">
<img src="l2ui.ActionWnd.bbs_Webfolder" width="32" height="32">
</td>
<td fixwidth="480" align="left" valign="top">
<font color="AAAAAA">&amp;$2259;</font><br1>
<font color="AAAAAA">&amp;$2260;</font>
</td>
<td fixwidth="160" align="center" valign="top">
<button value="&$2258;" action="url !2265" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
</td>
</tr>
</table>
<br>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="755">
<img src="l2ui.squaregray" width="750" height="1">
</td>
</tr>
</table>
<br>
<table border="0" cellspacing="0" cellpadding="2" width="755">
<tr>
<td fixwidth="100" align="right" valign="top">
<img src="l2ui.ActionWnd.bbs_Webfolder" width="32" height="32">
</td>
<td fixwidth="480" align="left" valign="top">
<font color="AAAAAA">&amp;$2261;</font><br1>
<font color="AAAAAA">&amp;$2262;</font>
</td>
<td fixwidth="160" align="center" valign="top">
<button value="&$2258;" action="url !2266" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
</td>
</tr>
</table>
<br>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="755">
<img src="l2ui.squaregray" width="750" height="1">
</td>
</tr>
</table>
<br>
<table border="0" cellspacing="0" cellpadding="2" width="755">
<tr>
<td fixwidth="100" align="right" valign="top">
<img src="l2ui.ActionWnd.bbs_Webfolder" width="32" height="32">
</td>
<td fixwidth="480" align="left" valign="top">
<font color="AAAAAA">&amp;$2263;</font><br1>
<font color="AAAAAA">&amp;$2264;</font>
</td>
<td fixwidth="160" align="center" valign="top">
<button value="&$2258;" action="url !2267" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
</td>
</tr>
</table>
<br>
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="755">
<img src="l2ui.squaregray" width="750" height="1">
</td>
</tr>
</table>
</center>
</body>
</html>

View File

@@ -6,7 +6,7 @@
<table border="0" cellspacing="0" cellpadding="0" width="755">
<tr>
<td width="755" align="center" valign="top">
<font name="hs12">&$2306;</font>
<font name="hs12">LineageII Homepage</font>
</td>
</tr>
</table>
@@ -14,23 +14,23 @@
<br>
<table border="0" cellspacing="0" cellpadding="2" bgcolor="A7A19A" width="755">
<tr>
<td width="100" align=right>&amp;$412;</td>
<td width="480" align=center>&amp;$413;</td>
<td width="160" align=center>&amp;$2258;</td>
<td width="100" align=right>Type</td>
<td width="480" align=center>Title</td>
<td width="160" align=center>Navigate</td>
</tr>
</table>
<br>
<table border="0" cellspacing="0" cellpadding="2" width="755">
<tr>
<td fixwidth="100" align="right" valign="top">
<img src="l2ui.ActionWnd.bbs_Webfolder" width="32" height="32">
<img src="l2ui.bbs_board" width="32" height="32">
</td>
<td fixwidth="480" align="left" valign="top">
<font color="AAAAAA">&amp;$2259;</font><br1>
<font color="AAAAAA">&amp;$2260;</font>
<font color="AAAAAA">Clan Recruitment Hall Forum</font><br1>
<font color="AAAAAA">Lineage 2 Forum where players can find clans or look for potential new recruits.</font>
</td>
<td fixwidth="160" align="center" valign="top">
<button value="&$2258;" action="url !2265" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
<button value="Navigate" action="url !2265" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
</td>
</tr>
</table>
@@ -46,14 +46,14 @@
<table border="0" cellspacing="0" cellpadding="2" width="755">
<tr>
<td fixwidth="100" align="right" valign="top">
<img src="l2ui.ActionWnd.bbs_Webfolder" width="32" height="32">
<img src="l2ui.bbs_board" width="32" height="32">
</td>
<td fixwidth="480" align="left" valign="top">
<font color="AAAAAA">&amp;$2261;</font><br1>
<font color="AAAAAA">&amp;$2262;</font>
<font color="AAAAAA">Latest News Website</font><br1>
<font color="AAAAAA">Find out the latest news on what is happening in Lineage 2.</font>
</td>
<td fixwidth="160" align="center" valign="top">
<button value="&$2258;" action="url !2266" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
<button value="Navigate" action="url !2265" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
</td>
</tr>
</table>
@@ -69,14 +69,14 @@
<table border="0" cellspacing="0" cellpadding="2" width="755">
<tr>
<td fixwidth="100" align="right" valign="top">
<img src="l2ui.ActionWnd.bbs_Webfolder" width="32" height="32">
<img src="l2ui.bbs_board" width="32" height="32">
</td>
<td fixwidth="480" align="left" valign="top">
<font color="AAAAAA">&amp;$2263;</font><br1>
<font color="AAAAAA">&amp;$2264;</font>
<font color="AAAAAA">Account Services FAQ Website</font><br1>
<font color="AAAAAA">Information about the account services offered in Lineage 2.</font>
</td>
<td fixwidth="160" align="center" valign="top">
<button value="&$2258;" action="url !2267" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
<button value="Navigate" action="url !2265" back="l2ui_ct1.button.button_df_small_down" fore="l2ui_ct1.button.button_df_small" width="74" height="25"/>
</td>
</tr>
</table>

View File

@@ -14,7 +14,7 @@
<button action="bypass -h admin_move_to 125740 -40864 -3736" value="Varka Silenos Barracks" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 106349 -61870 -2904" value="Devil's Pass" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br>
<font color="LEVEL">Dungeons</font><br1>
<button action="bypass -h admin_move_to 169091 -116162 -2456" value="Forge of the Gods" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 168902 -116703 -2417" value="Forge of the Gods" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 189964 -116820 -1624" value="Hall of Flames" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 215378 -116635 -1608" value="Valakas' Lair" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 186699 -75915 -2826" value="Imperial Tomb" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>

View File

@@ -12,7 +12,7 @@
<button action="bypass -h admin_move_to -21966 40544 -3192" value="Swampland" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 64328 26803 -3768" value="Sea of Spores" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 87252 85514 -3103" value="Plains of the Lizardmen" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 84517 62538 -3480" value="Sel Mahum Training Grounds" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 84517 62538 -3480" value="Skyshadow Meadow" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to 23863 11068 -3720" value="Shilen's Garden" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to -29466 66678 -3496" value="Black Rock Hill" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>
<button action="bypass -h admin_move_to -61095 75104 -3383" value="Spider Nest" width=210 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"><br1>

View File

@@ -37,11 +37,11 @@
</tr>
<tr>
<td align=center><button action="bypass -h admin_move_to 213896 -115436 -1644" value="Valakas (85)" width=120 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
<td align=center><button action="bypass -h admin_move_to -87767 -154318 -9179" value="Frintezza (85)" width=120 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
<td align=center><button action="bypass -h admin_move_to 174102 -76039 -5105" value="Frintezza (85)" width=120 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
</tr>
<tr>
<td align=center><button action="bypass -h admin_move_to 20886 244088 11088" value="Darion (84)" width=120 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
<td align=center><button action="bypass -h admin_move_to 114712 -114811 -11210" value="Freya (85)" width=120 height=21 back="L2UI_CT1.Button_DF_Down" fore="L2UI_CT1.Button_DF"></td>
<td align=center></td>
</tr>
</table>
</center>

View File

@@ -1,6 +1,6 @@
<html><body>Researcher Keplon:<br>
Hm..Unfortunately I don't have enough Dimensional Stones myself... I could help you if you absolutely need them. I could sell some of mine to you?<br>
<a action="bypass -h Quest ToIVortex GREEN">Buy a Green Dimensional Stone. (10,000 Adena)</a></br>
<a action="bypass -h Quest ToIVortex BLUE">Buy a Blue Dimensional Stone. (10,000 Adena)</a></br>
<a action="bypass -h Quest ToIVortex RED">Buy a Red Dimensional Stone. (10,000 Adena)</a>
<a action="bypass -h Quest ToIVortex GREEN">Buy a Green Dimensional Stone. (100,000 Adena)</a></br>
<a action="bypass -h Quest ToIVortex BLUE">Buy a Blue Dimensional Stone. (100,000 Adena)</a></br>
<a action="bypass -h Quest ToIVortex RED">Buy a Red Dimensional Stone. (100,000 Adena)</a>
</body></html>

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