Dropped Classic support.

This commit is contained in:
MobiusDev
2015-10-23 23:44:21 +00:00
parent d49a007f9d
commit 39f05439c3
7958 changed files with 58 additions and 782473 deletions

View File

@ -1,17 +0,0 @@
DROP TABLE IF EXISTS `auction`;
CREATE TABLE IF NOT EXISTS `auction` (
`id` int(11) NOT NULL DEFAULT '0',
`sellerId` int(11) NOT NULL DEFAULT '0',
`sellerName` varchar(50) NOT NULL DEFAULT 'NPC',
`sellerClanName` varchar(50) NOT NULL DEFAULT '',
`itemType` varchar(25) NOT NULL DEFAULT '',
`itemId` int(11) NOT NULL DEFAULT '0',
`itemObjectId` int(11) NOT NULL DEFAULT '0',
`itemName` varchar(40) NOT NULL DEFAULT '',
`itemQuantity` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`startingBid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`currentBid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`endDate` bigint(13) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`itemType`,`itemId`,`itemObjectId`),
KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@ -1,25 +0,0 @@
DROP TABLE IF EXISTS `castle`;
CREATE TABLE IF NOT EXISTS `castle` (
`id` INT NOT NULL DEFAULT 0,
`name` varchar(25) NOT NULL,
`side` enum('NEUTRAL','LIGHT','DARK') DEFAULT 'NEUTRAL' NOT NULL,
`treasury` BIGINT NOT NULL DEFAULT 0,
`siegeDate` bigint(13) unsigned NOT NULL DEFAULT '0',
`regTimeOver` enum('true','false') DEFAULT 'true' NOT NULL,
`regTimeEnd` bigint(13) unsigned NOT NULL DEFAULT '0',
`showNpcCrest` enum('true','false') DEFAULT 'false' NOT NULL,
`ticketBuyCount` smallint(3) NOT NULL DEFAULT 0,
PRIMARY KEY (`name`),
KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `castle` VALUES
(1,'Gludio','NEUTRAL',0,0,'true',0,'false',0),
(2,'Dion','NEUTRAL',0,0,'true',0,'false',0),
(3,'Giran','NEUTRAL',0,0,'true',0,'false',0),
(4,'Oren','NEUTRAL',0,0,'true',0,'false',0);
-- (5,'Aden','NEUTRAL',0,0,'true',0,'false',0),
-- (6,'Innadril','NEUTRAL',0,0,'true',0,'false',0),
-- (7,'Goddard','NEUTRAL',0,0,'true',0,'false',0),
-- (8,'Rune','NEUTRAL',0,0,'true',0,'false',0),
-- (9,'Schuttgart','NEUTRAL',0,0,'true',0,'false',0);

View File

@ -1,54 +0,0 @@
DROP TABLE IF EXISTS `clanhall`;
CREATE TABLE IF NOT EXISTS `clanhall` (
`id` int(11) NOT NULL DEFAULT '0',
`name` varchar(40) NOT NULL DEFAULT '',
`ownerId` int(11) NOT NULL DEFAULT '0',
`lease` int(10) NOT NULL DEFAULT '0',
`desc` text NOT NULL,
`location` varchar(15) NOT NULL DEFAULT '',
`paidUntil` bigint(13) unsigned NOT NULL DEFAULT '0',
`Grade` decimal(1,0) NOT NULL DEFAULT '0',
`paid` int( 1 ) NOT NULL DEFAULT '0',
PRIMARY KEY `id` (`id`),
KEY `ownerId` (`ownerId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `clanhall` VALUES
('22','Moonstone Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
('23','Onyx Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
('24','Topaz Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
('25','Ruby Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
('26','Crystal Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('27','Onyx Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('28','Sapphire Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('29','Moonstone Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('30','Emerald Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
('31','The Atramental Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
('32','The Scarlet Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
('33','The Viridian Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
-- ('36','The Golden Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('37','The Silver Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('38','The Mithril Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('39','Silver Manor','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('40','Gold Manor','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
-- ('41','The Bronze Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
('42','The Golden Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
('43','The Silver Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
('44','The Mithril Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
('45','The Bronze Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
('46','Silver Manor','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0');
-- ('47','Moonstone Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
-- ('48','Onyx Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
-- ('49','Emerald Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
-- ('50','Sapphire Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
-- ('51','Mont Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('52','Astaire Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('53','Aria Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('54','Yiana Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('55','Roien Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('56','Luna Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('57','Traban Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
-- ('58','Eisen Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
-- ('59','Heavy Metal Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
-- ('60','Molten Ore Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
-- ('61','Titan Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0');

View File

@ -1,20 +0,0 @@
DROP TABLE IF EXISTS `grandboss_data`;
CREATE TABLE IF NOT EXISTS `grandboss_data` (
`boss_id` smallint(5) unsigned NOT NULL,
`loc_x` mediumint(6) NOT NULL,
`loc_y` mediumint(6) NOT NULL,
`loc_z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
`respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`currentHP` decimal(30,15) NOT NULL,
`currentMP` decimal(30,15) NOT NULL,
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`boss_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `grandboss_data` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`currentHP`,`currentMP`) VALUES
(29001, -21610, 181594, -5734, 0, 229898.48, 667.776), -- Queen Ant (40)
(29006, 17726, 108915, -6480, 0, 622493.58388, 3793.536), -- Core (50)
(29014, 55024, 17368, -5412, 10126, 622493.58388, 3793.536), -- Orfen (50)
-- (29020, 116033, 17447, 10107, -25348, 4068372, 39960), -- Baium (75)
(29068, 185708, 114298, -8221,32768, 62802301, 1998000); -- Antharas Strong (85)

File diff suppressed because it is too large Load Diff

View File

@ -1,193 +0,0 @@
DROP TABLE IF EXISTS raidboss_spawnlist;
CREATE TABLE raidboss_spawnlist (
`boss_id` smallint(5) unsigned NOT NULL,
`amount` tinyint(1) unsigned NOT NULL DEFAULT '1',
`loc_x` mediumint(6) NOT NULL,
`loc_y` mediumint(6) NOT NULL,
`loc_z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
`respawn_delay` mediumint(6) unsigned NOT NULL DEFAULT '129600', -- 36 Hours
`respawn_random` mediumint(6) unsigned NOT NULL DEFAULT '86400', -- (24 Hours)
`respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`currentHp` decimal(8,0) DEFAULT NULL,
`currentMp` decimal(8,0) DEFAULT NULL,
PRIMARY KEY (`boss_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT INTO `raidboss_spawnlist` VALUES
(25001,1,-54416,146480,-2887,0,43200,129600,0,95986,545), -- Greyclaw Kutus (23)
(25004,1,-94208,100240,-3520,0,43200,129600,0,168366,763), -- Turek Mercenary Captain (30)
(25007,1,124240,75376,-2800,0,43200,129600,0,331522,1062), -- Retreat Spider Cletu (42)
(25010,1,113920,52960,-3735,0,43200,129600,0,624464,2039), -- Furious Thieles (55)
(25013,1,169744,11920,-2732,0,43200,129600,0,507285,1722), -- Ghost Of Peasant Leader (50)
(25016,1,76787,245775,-10376,0,43200,129600,0,188376,2368), -- The 3rd Underwater Guardian (60)
(25019,1,7376,169376,-3600,0,43200,129600,0,206185,606), -- Pan Dryad (25)
(25020,1,90384,125568,-2128,0,43200,129600,0,156584,893), -- Breka Warlock Pastu (34)
(25023,1,27280,101744,-3696,0,43200,129600,0,208019,1415), -- Stakato Queen Zyrnna (34)
(25026,1,92976,7920,-3914,0,43200,129600,0,352421,1660), -- Katu Van Leader Atui (49)
(25029,1,54941,206705,-3728,0,43200,129600,0,156190,1911), -- Atraiban (53)
(25032,1,88532,245798,-10376,0,43200,129600,0,229722,2707), -- Eva's Guardian Millenu (58)
(25035,1,180968,12035,-2720,0,43200,129600,0,888658,3058), -- Shilen's Messenger Cabrio (70)
(25038,1,-57360,186272,-4967,0,43200,129600,0,116581,699), -- Tirak (28)
(25041,1,10416,126880,-3676,0,43200,129600,0,165289,927), -- Remmel (35)
(25044,1,107792,27728,-3488,0,43200,129600,0,319791,1296), -- Barion (47)
(25047,1,116352,27648,-3319,0,43200,129600,0,352421,1660), -- Karte (49)
(25050,1,125520,27216,-3632,0,43200,129600,0,771340,2039), -- Verfa (51)
(25051,1,117760,-9072,-3264,0,43200,129600,0,818959,2707), -- Rahha (65)
(25054,1,113432,16403,3960,0,43200,129600,0,945900,3420), -- Kernon (75)
(25057,1,107056,168176,-3456,0,43200,129600,0,288415,2235), -- Biconne Of Blue Sky (45)
(25060,1,-60428,188264,-4512,0,43200,129600,0,99367,575), -- Unrequited Kael (24)
(25063,1,-91024,116304,-3466,0,43200,129600,0,330579,927), -- Chertuba Of Great Soul (35)
(25064,1,92528,84752,-3703,0,43200,129600,0,218810,1120), -- Wizard Of Storm Teruk (40)
(25067,1,94992,-23168,-2176,0,43200,129600,0,554640,1598), -- Captain Of Red Flag Shaka (52)
(25070,1,125600,50100,-3600,0,43200,129600,0,451391,2039), -- Enchanted Forest Watcher Ruell (55)
(25073,1,143265,110044,-3944,0,43200,129600,0,875948,2987), -- Bloody Priest Rudelto (69)
(25076,1,-60976,127552,-2960,0,43200,129600,0,103092,606), -- Princess Molrang (25)
(25079,1,53712,102656,-1072,0,43200,129600,0,168366,763), -- Cat's Eye Bandit (30)
(25082,1,88512,140576,-3483,0,43200,129600,0,206753,1062), -- Leader Of Cat Gang (39)
(25085,1,66944,67504,-3704,0,43200,129600,0,371721,1355), -- Timak Orc Chief Ranger (44)
(25088,1,90848,16368,-5296,0,43200,129600,0,702418,2039), -- Crazy Mechanic Golem (43)
(25089,1,165424,93776,-2992,0,43200,129600,0,512194,2301), -- Soulless Wild Boar (59)
(25092,1,116151,16227,1944,0,43200,129600,0,888658,3058), -- Korim (70)
(25095,1,-37856,198128,-2672,0,43200,129600,0,121941,731), -- Elf Renoa (29)
(25098,1,123536,133504,-3584,0,43200,129600,0,330579,927), -- Sejarr's Servitor (35)
(25099,1,64048,16048,-3536,0,43200,129600,0,273375,1355), -- Rotten Tree Repiro (44)
(25102,1,113840,84256,-2480,0,43200,129600,0,576831,1722), -- Shacram (45)
(25103,1,135872,94592,-3735,0,43200,129600,0,451391,2039), -- Sorcerer Isirr (55)
(25106,1,173880,-11412,-2880,0,43200,129600,0,526218,2570), -- Ghost Of The Well Lidia (60)
(25109,1,152660,110387,-5520,0,43200,129600,0,935092,3347), -- Antharas Priest Cloe (74)
(25112,1,116128,139392,-3640,0,43200,129600,0,127782,763), -- Agent Of Beres, Meana (30)
(25115,1,94000,197500,-3300,0,43200,129600,0,294846,1120), -- Icarus Sample 1 (40)
(25118,1,50896,146576,-3645,0,43200,129600,0,330579,1415), -- Guilotine, Warden Of The Execution Grounds (35)
(25119,1,121872,64032,-3536,0,43200,129600,0,507285,1722), -- Messenger Of Fairy Queen Berun (50)
(25122,1,86300,-8200,-3000,0,43200,129600,0,467209,2235), -- Refugee Hopeful Leo (56)
(25125,1,170656,85184,-2000,0,43200,129600,0,1637918,2707), -- Fierce Tiger King Angel (65)
(25126,1,116263,15916,6992,0,43200,129600,0,1974940,3718), -- Longhorn Golkonda (79)
(25127,1,-47552,219232,-2413,0,43200,129600,0,198734,763), -- Langk Matriarch Rashkos (24)
(25128,1,17696,179056,-3520,0,43200,129600,0,148507,860), -- Vuku Grand Seer Gharmash (33)
(25131,1,75488,-9360,-2720,0,43200,129600,0,369009,1415), -- Carnage Lord Gato (50)
(25134,1,87536,75872,-3591,0,43200,129600,0,218810,1722), -- Leto Chief Talkin (40)
(25137,1,125280,102576,-3305,0,43200,129600,0,451391,2039), -- Beleth's Seer Sephia (55)
(25140,1,191975,56959,-7616,0,43200,129600,0,818959,2707), -- Hekaton Prime (65)
(25143,1,113102,16002,6992,0,43200,129600,0,977229,3718), -- Fire Of Wrath Shuriel (78)
(25146,1,-13056,215680,-3760,0,43200,129600,0,90169,485), -- Serpent Demon Bifrons (21)
(25149,1,-12656,138176,-3584,0,43200,129600,0,103092,606), -- Zombie Lord Crowl (25)
(25152,1,43872,123968,-2928,0,43200,129600,0,165289,927), -- Flame Lord Shadar (35)
(25155,1,73520,66912,-3728,0,43200,129600,0,294846,1120), -- Shaman King Selu (40)
(25158,1,77104,5408,-3088,0,43200,129600,0,920790,1722), -- King Tarlk (48)
(25159,1,124984,43200,-3625,0,43200,129600,0,435256,1975), -- Paniel The Unicorn (54)
(25162,1,194107,53884,-4368,0,43200,129600,0,1461912,2368), -- Giant Marpanak (60)
(25163,1,130500,59098,3584,0,43200,129600,0,888658,3058), -- Roaring Skylancer (70)
(25166,1,-21800,152000,-2900,0,43200,129600,0,134813,606), -- Ikuntai (25)
(25169,1,-54464,170288,-3136,0,43200,129600,0,336732,763), -- Ragraman (30)
(25170,1,26064,121808,-3738,0,43200,129600,0,195371,1028), -- Lizardmen Leader Hellion (38)
(25173,1,75968,110784,-2512,0,43200,129600,0,288415,1415), -- Tiger King Karuta (45)
(25176,1,92544,115232,-3200,0,43200,129600,0,451391,2039), -- Black Lily (55)
(25179,1,181814,52379,-4344,0,43200,129600,0,526218,2368), -- Guardian Of The Statue Of Giant Karum (60)
(25182,1,41966,215417,-3728,0,43200,129600,0,512194,2707), -- Demon Kurikups (59)
(25185,1,88123,166312,-3412,0,43200,129600,0,165289,927), -- Tasaba Patriarch Hellena (35)
(25188,1,88256,176208,-3488,0,43200,129600,0,255564,763), -- Apepi (30)
(25189,1,68832,203024,-3547,0,43200,129600,0,156584,893), -- Cronos's Servitor Mumu (34)
(25192,1,125920,190208,-3291,0,43200,129600,0,258849,1296), -- Earth Protector Panathen (43)
(25198,1,102656,157424,-3735,0,43200,129600,0,1777317,2639), -- Fafurion's Herald Lokness (70)
(25199,1,108096,157408,-3688,0,43200,129600,0,912634,2707), -- Water Dragon Seer Sheshark (72)
(25202,1,119760,157392,-3744,0,43200,129600,0,935092,2777), -- Krokian Padisha Sobekk (74)
(25205,1,123808,153408,-3671,0,43200,129600,0,956490,3274), -- Ocean Flame Ashakiel (76)
(25208,1,73776,201552,-3760,0,43200,129600,0,218810,1722), -- Water Couatle Ateka (40)
(25211,1,76352,193216,-3648,0,43200,129600,0,174646,1975), -- Sebek (36)
(25214,1,112112,209936,-3616,0,43200,129600,0,218810,2368), -- Fafurion's Page Sika (40)
(25217,1,89904,105712,-3292,0,43200,129600,0,369009,1722), -- Cursed Clara (50)
-- (25220,1,113551,17083,-2120,0,43200,129600,0,924022,3274), -- Death Lord Hallate (73) (ToI)
(25223,1,43152,152352,-2848,0,43200,129600,0,165289,1237), -- Soul Collector Acheron (35)
(25226,1,104240,-3664,-3392,0,43200,129600,0,768537,2502), -- Roaring Lord Kastor (62)
(25229,1,137568,-19488,-3552,0,43200,129600,0,1891801,3420), -- Storm Winged Naga (75)
(25230,1,66672,46704,-3920,0,43200,129600,0,482650,2169), -- Timak Seer Ragoth (57)
(25233,1,185800,-26500,-2000,0,43200,129600,0,1256671,3643), -- Spirit Of Andras, The Betrayer (69)
(25234,1,120080,111248,-3047,0,43200,129600,0,1052436,2707), -- Ancient Weird Drake (60)
(25235,1,116400,-62528,-3264,0,43200,129600,0,912634,3202), -- Vanor Chief Kandra (72)
(25238,1,155000,85400,-3200,0,43200,129600,0,512194,2846), -- Abyss Brukunt (59)
(25241,1,165984,88048,-2384,0,43200,129600,0,624464,2639), -- Harit Hero Tamash (55)
(25244,1,187360,45840,-5856,0,43200,129600,0,1891801,3420), -- Last Lesser Giant Olkuth (75)
(25245,1,172000,55000,-5400,0,43200,129600,0,977229,3643), -- Last Lesser Giant Glaki (78)
(25248,1,127903,-13399,-3720,0,43200,129600,0,1825269,3274), -- Doom Blade Tanatos (72)
(25249,1,147104,-20560,-3377,0,43200,129600,0,945900,3420), -- Palatanos Of Horrific Power (75)
(25252,1,192376,22087,-3608,0,43200,129600,0,888658,3058), -- Palibati Queen Themis (70)
(25255,1,170048,-24896,-3440,0,43200,129600,0,1637918,2707), -- Gargoyle Lord Tiphon (65)
(25256,1,170320,42640,-4832,0,43200,129600,0,526218,2368), -- Taik High Prefect Arak (60)
-- (25259,1,42050,208107,-3752,0,43200,129600,0,1248928,2039), -- Zaken's Butcher Krantz (55) (Devil's Isle)
(25260,1,93120,19440,-3607,0,43200,129600,0,392985,1722), -- Iron Giant Totem (45)
(25263,1,144400,-28192,-1920,0,43200,129600,0,848789,2846), -- Kernon's Faithful Servant Kelone (67)
(25266,1,188983,13647,-2672,0,43200,129600,0,945900,3420), -- Bloody Empress Decarbia (75)
(25269,1,123504,-23696,-3481,0,43200,129600,0,888658,3058), -- Beast Lord Behemoth (70)
(25272,1,49248,127792,-3552,0,43200,129600,0,233163,1415), -- Partisan Leader Talakin (28)
(25276,1,154088,-14116,-3736,0,43200,129600,0,1891801,3420), -- Death Lord Ipos (75)
(25277,1,54651,180269,-4976,0,43200,129600,0,507285,1722), -- Lilith's Witch Marilion (50)
(25280,1,85622,88766,-5120,0,43200,129600,0,1248928,2039), -- Pagan Watcher Cerberon (55)
(25281,1,151053,88124,-5424,0,43200,129600,0,1777317,3058), -- Anakim's Nemesis Zakaron (70)
(25282,1,179311,-7632,-4896,0,43200,129600,0,1891801,3420), -- Death Lord Shax (75)
(25293,1,134672,-115600,-1216,0,43200,129600,0,977229,3718), -- Hestia, Guardian Deity Of The Hot Springs (78)
(25299,1,148160,-73808,-4919,0,43200,129600,0,714778,3718), -- Ketra's Hero Hekaton (80)
(25302,1,145504,-81664,-6016,0,43200,129600,0,743801,3718), -- Ketra's Commander Tayr (84)
(25305,1,145008,-84992,-6240,0,43200,129600,0,1532678,3718), -- Ketra's Chief Brakki (87)
(25309,1,115552,-39200,-2480,0,43200,129600,0,714778,3718), -- Varka's Hero Shadith (80)
(25312,1,109216,-36160,-938,0,43200,129600,0,743801,3718), -- Varka's Commander Mos (84)
(25315,1,105584,-43024,-1728,0,43200,129600,0,1532678,3718), -- Varka's Chief Horus (87)
(25319,1,184542,-106330,-6304,0,43200,129600,0,1048567,3718), -- Ember (85)
(25322,1,93296,-75104,-1824,0,43200,129600,0,834231,3718), -- Demon's Agent Falston (66)
(25325,1,91008,-85904,-2736,0,43200,129600,0,888658,3718), -- Flame Of Splendor Barakiel (70)
(25352,1,-16912,174912,-3264,0,43200,129600,0,127782,3718), -- Giant Wasteland Basilisk (30)
(25354,1,-16096,184288,-3817,0,43200,129600,0,165289,3718), -- Gargoyle Lord Sirocco (35)
(25357,1,-3456,112864,-3456,0,43200,129600,0,90169,3718), -- Sukar Wererat Chief (21)
(25360,1,29216,179280,-3624,0,43200,129600,0,107186,3718), -- Tiger Hornet (26)
(25362,1,-55920,186768,-3336,0,43200,129600,0,95986,3718), -- Tracker Leader Sharuk (23)
(25365,1,-62000,190256,-3687,0,43200,129600,0,214372,3718), -- Patriarch Kuroboros (26)
(25366,1,-62368,179440,-3594,0,43200,129600,0,95986,3718), -- Kuroboros' Priest (23)
(25369,1,-45616,111024,-3808,0,43200,129600,0,103092,3718), -- Soul Scavenger (25)
(25372,1,48000,243376,-6611,0,43200,129600,0,175392,3718), -- Discarded Guardian (20)
(25373,1,9649,77467,-3808,0,43200,129600,0,90169,3718), -- Malex Herald Of Dagoniel (21)
(25375,1,22500,80300,-2772,0,43200,129600,0,87696,3718), -- Zombie Lord Farakelsus (20)
(25378,1,-54096,84288,-3512,0,43200,129600,0,87696,3718), -- Madness Beast (20)
(25380,1,-47367,51548,-5904,0,43200,129600,0,90169,3718), -- Kaysha Herald Of Icarus (21)
(25383,1,51632,153920,-3552,0,43200,129600,0,156584,3718), -- Revenant Of Sir Calibus (34)
(25385,1,53600,143472,-3872,0,43200,129600,0,174646,3718), -- Evil Spirit Tempest (36)
(25388,1,40128,101920,-1241,0,43200,129600,0,165289,3718), -- Red Eye Captain Trakia (35)
(25391,1,45600,120592,-2455,0,43200,129600,0,297015,3718), -- Nurka's Messenger (33)
(25392,1,29928,107160,-3708,0,43200,129600,0,141034,3718), -- Captain Of Queen's Royal Guards (32)
(25394,1,101888,200224,-3680,0,43200,129600,0,390743,3718), -- Premo Prime (38)
(25395,1,15000,119000,-11900,0,43200,129600,0,288415,3718), -- Archon Suscepter (45)
(25398,1,5000,189000,-3728,0,43200,129600,0,165289,3718), -- Eye Of Beleth (35)
(25401,1,117808,102880,-3600,0,43200,129600,0,141034,3718), -- Skyla (32)
(25404,1,35992,191312,-3104,0,43200,129600,0,148507,3718), -- Corsair Captain Kylon (33)
(25407,1,115072,112272,-3018,0,43200,129600,0,526218,3718), -- Lord Ishka (60)
(25410,1,72192,125424,-3657,0,43200,129600,0,218810,3718), -- Road Scavenger Leader (40)
(25412,1,81920,113136,-3056,0,43200,129600,0,319791,3718), -- Necrosentinel Royal Guard (47)
(25415,1,128352,138464,-3467,0,43200,129600,0,218810,3718), -- Nakondas (40)
(25418,1,62416,8096,-3376,0,43200,129600,0,273375,3718), -- Dread Avenger Kraven (44)
(25420,1,42032,24128,-4704,0,43200,129600,0,335987,3718), -- Orfen's Handmaiden (48)
(25423,1,113600,47120,-4640,0,43200,129600,0,539706,3718), -- Fairy Queen Timiniel (61)
(25426,1,-18048,-101264,-2112,0,43200,129600,0,103092,3718), -- Betrayer Of Urutu Freki (25)
(25429,1,172064,-214752,-3565,0,43200,129600,0,103092,3718), -- Mammon Collector Talos (25)
(25431,1,79648,18320,-5232,0,43200,129600,0,273375,3718), -- Flamestone Golem (44)
(25434,1,104096,-16896,-1803,0,43200,129600,0,451391,3718), -- Bandit Leader Barda (55)
(25437,1,67296,64128,-3723,0,43200,129600,0,576831,3718), -- Timak Orc Gosmos (45)
(25438,1,107000,92000,-2272,0,43200,129600,0,273375,3718), -- Thief Kelbar (44)
(25441,1,111440,82912,-2912,0,43200,129600,0,288415,3718), -- Evil Spirit Cyrion (45)
-- (25444,1,113232,17456,-4384,0,43200,129600,0,588136,3718), -- Enmity Ghost Ramdal (65) (ToI)
(25447,1,113200,17552,-1424,0,43200,129600,0,645953,3718), -- Immortal Savior Mardil (71)
(25450,1,113600,15104,9559,0,43200,129600,0,987470,3718), -- Cherub Galaxia (79)
(25453,1,156704,-6096,-4185,0,43200,129600,0,888658,3718), -- Meanas Anor (70)
(25456,1,133632,87072,-3623,0,43200,129600,0,352421,3718), -- Mirror Of Oblivion (49)
(25460,1,150304,67776,-3688,0,43200,129600,0,385670,3718), -- Deadman Ereve (51)
(25463,1,166288,68096,-3264,0,43200,129600,0,467209,3718), -- Harit Guardian Garangky (56)
(25467,1,186192,61472,-4160,0,43200,129600,0,576851,3718), -- Gorgolos (64)
(25470,1,186896,56276,-4576,0,43200,129600,0,598898,3718), -- Last Titan Utenus (66)
(25473,1,175712,29856,-3776,0,43200,129600,0,402319,3718), -- Grave Robber Kim (52)
(25475,1,183568,24560,-3184,0,43200,129600,0,451391,3718), -- Ghost Knight Kabed (55)
(25478,1,168288,28368,-3632,0,43200,129600,0,588136,3718), -- Shilen's Priest Hisilrome (65)
(25481,1,53517,205413,-3728,0,43200,129600,0,66938,3718), -- Magus Kenishee (53)
(25484,1,43160,220463,-3680,0,43200,129600,0,369009,3718), -- Zaken's Chief Mate Tillion (50)
(25487,1,83056,183232,-3616,0,43200,129600,0,218810,3718), -- Water Spirit Lian (40)
(25490,1,86528,216864,-3584,0,43200,129600,0,218810,3718), -- Gwindorr (40)
(25493,1,83174,254428,-10873,0,43200,129600,0,451391,3718), -- Eva's Spirit Niniel (55)
(25496,1,88300,258000,-10200,0,43200,129600,0,402319,3718), -- Fafurion's Envoy Pingolpin (52)
(25498,1,126624,174448,-3056,0,43200,129600,0,288415,3718); -- Fafurion's Henchman Istary (45)

View File

@ -1,12 +0,0 @@
DROP TABLE IF EXISTS `random_spawn`;
CREATE TABLE `random_spawn` (
`groupId` tinyint(3) unsigned NOT NULL,
`npcId` smallint(5) unsigned NOT NULL,
`count` tinyint(1) unsigned NOT NULL DEFAULT '1',
`initialDelay` int(8) NOT NULL DEFAULT '-1',
`respawnDelay` int(8) NOT NULL DEFAULT '-1',
`despawnDelay` int(8) NOT NULL DEFAULT '-1',
`broadcastSpawn` enum('true','false') NOT NULL DEFAULT 'false',
`randomSpawn` enum('true','false') NOT NULL DEFAULT 'true',
PRIMARY KEY (`groupId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

View File

@ -1,9 +0,0 @@
DROP TABLE IF EXISTS `random_spawn_loc`;
CREATE TABLE `random_spawn_loc` (
`groupId` tinyint(3) unsigned NOT NULL,
`x` mediumint(6) NOT NULL,
`y` mediumint(6) NOT NULL,
`z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`groupId`,`x`,`y`,`z`,`heading`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

File diff suppressed because it is too large Load Diff

View File

@ -342,10 +342,6 @@ BaseDualclassLevel = 85
# Default: 80
MaxSubclassLevel = 80
# Maximum Classic player level.
# Default: 75
MaxClassicPlayerLevel = 75
# Maximum number of allowed slots for Private Stores Sell.
# Other means all the other races aside from Dwarf.
# Default: 4, 3

View File

@ -81,20 +81,14 @@ AcceptAlternateID = True
#Default: data\
DatapackRoot = data\
# Datapack root directory for Classic client support.
# WARNING: <u><b><font color="red">If the specified path is invalid, it will lead to multiple errors!</font></b></u>
#Default: data_classic\
ClassicDatapackRoot = data_classic\
# Define how many players are allowed to play simultaneously on your server.
# Default: 100
# Default: 2000
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>
# Ertheia: 603;606;607;610
# Classic: 19
AllowedProtocolRevisions = 603;606;607;610
# Displays server type next to the server name on character selection.

View File

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

View File

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

View File

@ -1,186 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Possible "repeatStyle" are: -->
<!-- "back": NPC moves from first point to last point, then moves back through last point but one, and so on to the first point. -->
<!-- "cycle": NPC moves from first point to last point, then moves directly to the first point. -->
<!-- "conveyor": NPC moves from first point to last point, then teleports directly to the first point. -->
<!-- "random": NPC randomly moves between points. -->
<!-- Documentation for Strings: -->
<!-- npcString = to use String Variables from NpcStringId.java -->
<!-- npcStringId = to use String IDs from client NpcString-e.dat -->
<!-- string = to use any custom text, example: string="Hello World" -->
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/Routes.xsd">
<!-- Just test route - Giran town square -->
<route name="test_route" repeat="true" repeatStyle="cycle">
<point X="80863" Y="148339" Z="-3469" delay="0" run="true" />
<point X="80904" Y="147653" Z="-3469" delay="0" run="true" />
<point X="83205" Y="147646" Z="-3469" delay="0" run="true" />
<point X="82189" Y="148347" Z="-3467" delay="0" run="true" />
<point X="81862" Y="148266" Z="-3467" delay="0" run="true" />
<point X="81918" Y="148352" Z="-3467" delay="0" run="true" />
<point X="81937" Y="149173" Z="-3469" delay="0" run="true" />
</route>
<!--
<route name="scribe_leandro" repeat="true" repeatStyle="back">
<target id="31357" spawnX="-82428" spawnY="245203" spawnZ="-3712" />
<point X="-82428" Y="245204" Z="-3712" delay="0" run="false" />
<point X="-82198" Y="245361" Z="-3712" delay="0" run="false" />
<point X="-82091" Y="245028" Z="-3720" delay="0" run="false" />
<point X="-82381" Y="244911" Z="-3720" delay="0" run="false" />
<point X="-82935" Y="244481" Z="-3728" delay="0" run="false" />
<point npcStringId="1010205" X="-83980" Y="242776" Z="-3728" delay="10" run="false" />
<point X="-85966" Y="241371" Z="-3728" delay="0" run="false" />
<point npcStringId="1010206" X="-86079" Y="240868" Z="-3720" delay="5" run="false" />
<point X="-86076" Y="240392" Z="-3712" delay="0" run="false" />
<point X="-86519" Y="240706" Z="-3704" delay="0" run="false" />
<point npcStringId="1010207" X="-86343" Y="241130" Z="-3728" delay="60" run="false" />
</route>
<route name="porter_remy" repeat="true" repeatStyle="cycle">
<target id="31356" spawnX="-81920" spawnY="243892" spawnZ="-3714" />
<point X="-81926" Y="243894" Z="-3712" delay="3" run="true" />
<point X="-82134" Y="243600" Z="-3728" delay="0" run="true" />
<point X="-83182" Y="243723" Z="-3728" delay="0" run="true" />
<point npcStringId="1010202" X="-84486" Y="243236" Z="-3728" delay="5" run="true" />
<point X="-85205" Y="243187" Z="-3728" delay="0" run="true" />
<point X="-86152" Y="242898" Z="-3728" delay="0" run="true" />
<point X="-86288" Y="242962" Z="-3720" delay="0" run="true" />
<point npcStringId="1010203" X="-86352" Y="243207" Z="-3720" delay="5" run="true" />
<point X="-86501" Y="242762" Z="-3720" delay="0" run="true" />
<point X="-86500" Y="242615" Z="-3728" delay="0" run="true" />
<point X="-86123" Y="241606" Z="-3728" delay="0" run="true" />
<point X="-85207" Y="240698" Z="-3728" delay="0" run="true" />
<point npcStringId="1010204" X="-84066" Y="241285" Z="-3728" delay="5" run="true" />
<point X="-83215" Y="241170" Z="-3728" delay="0" run="true" />
<point X="-82364" Y="242944" Z="-3720" delay="0" run="true" />
<point X="-82392" Y="242982" Z="-3729" delay="0" run="true" />
<point npcStringId="1010201" X="-81674" Y="243391" Z="-3712" delay="60" run="true" />
<point X="-81926" Y="243894" Z="-3712" delay="0" run="true" />
</route>
<route name="flame_keeper_yakand" repeat="true" repeatStyle="cycle">
<target id="31365" spawnX="-48820" spawnY="-113748" spawnZ="-233" />
<point X="-48820" Y="-113748" Z="-232" delay="0" run="false" />
<point X="-47365" Y="-113618" Z="-224" delay="0" run="false" />
<point X="-45678" Y="-113635" Z="-240" delay="0" run="false" />
<point X="-45168" Y="-114038" Z="-224" delay="0" run="false" />
<point X="-44671" Y="-114185" Z="-240" delay="0" run="false" />
<point X="-44199" Y="-113763" Z="-240" delay="0" run="false" />
<point X="-44312" Y="-113201" Z="-240" delay="0" run="false" />
<point X="-44844" Y="-112958" Z="-240" delay="0" run="false" />
<point X="-45717" Y="-113564" Z="-240" delay="0" run="false" />
<point X="-47370" Y="-113588" Z="-224" delay="0" run="false" />
<point X="-48821" Y="-113496" Z="-232" delay="10" run="false" />
<point X="-48820" Y="-113748" Z="-232" delay="0" run="false" />
</route>
<route name="flame_keeper_lokar" repeat="true" repeatStyle="back">
<target id="31364" spawnX="-46512" spawnY="-117696" spawnZ="-252" />
<point X="-46516" Y="-117700" Z="-240" delay="0" run="false" />
<point X="-45550" Y="-115420" Z="-240" delay="0" run="false" />
<point X="-44052" Y="-114575" Z="-240" delay="0" run="false" />
<point X="-44024" Y="-112688" Z="-240" delay="0" run="false" />
<point X="-45748" Y="-111665" Z="-240" delay="0" run="false" />
<point X="-46512" Y="-109390" Z="-208" delay="5" run="false" />
</route>
<route name="tetrarch_exec_creed" repeat="true" repeatStyle="cycle">
<target id="31361" spawnX="23436" spawnY="11152" spawnZ="-3728" />
<point X="23436" Y="11164" Z="-3720" delay="0" run="true" />
<point X="20256" Y="11104" Z="-3720" delay="0" run="true" />
<point X="17330" Y="13579" Z="-3728" delay="0" run="true" />
<point npcStringId="1010214" X="17415" Y="13044" Z="-3736" delay="10" run="true" />
<point X="20153" Y="12880" Z="-3712" delay="0" run="true" />
<point X="21621" Y="13349" Z="-3624" delay="0" run="true" />
<point X="20686" Y="10432" Z="-3712" delay="0" run="true" />
<point X="22426" Y="10260" Z="-3648" delay="0" run="true" />
<point X="23436" Y="11164" Z="-3720" delay="0" run="true" />
</route>
<route name="tetrarch_agent_alhena" repeat="true" repeatStyle="cycle">
<target id="31360" spawnX="10976" spawnY="14616" spawnZ="-4246" />
<point X="10968" Y="14620" Z="-4240" delay="0" run="false" />
<point X="11308" Y="15847" Z="-4584" delay="0" run="false" />
<point X="12119" Y="16441" Z="-4584" delay="0" run="false" />
<point npcStringId="1010212" X="15104" Y="15661" Z="-4376" delay="5" run="false" />
<point X="15265" Y="16288" Z="-4376" delay="0" run="false" />
<point X="12292" Y="16934" Z="-4584" delay="0" run="false" />
<point X="11777" Y="17669" Z="-4584" delay="0" run="false" />
<point X="11229" Y="17650" Z="-4568" delay="0" run="false" />
<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" />
<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" />
</route>
<route name="bard_casiel" repeat="true" repeatStyle="back">
<target id="31358" spawnX="43936" spawnY="51092" spawnZ="-2994" />
<point X="43932" Y="51096" Z="-2992" delay="0" run="false" />
<point X="43304" Y="50364" Z="-2992" delay="0" run="false" />
<point X="43041" Y="49312" Z="-2992" delay="0" run="false" />
<point X="43612" Y="48322" Z="-2992" delay="0" run="false" />
<point X="44009" Y="47645" Z="-2992" delay="0" run="false" />
<point npcStringId="1010210" X="45309" Y="47341" Z="-2992" delay="5" run="false" />
<point X="46726" Y="47762" Z="-2992" delay="0" run="false" />
<point X="47509" Y="49004" Z="-2992" delay="0" run="false" />
<point X="47443" Y="50456" Z="-2992" delay="0" run="false" />
<point npcStringId="1010211" X="47013" Y="51287" Z="-2992" delay="60" run="false" />
</route>
<route name="treekeeper_jaradine" repeat="true" repeatStyle="back">
<target id="31359" spawnX="44947" spawnY="50556" spawnZ="-3056" />
<point X="44964" Y="50568" Z="-3056" delay="0" run="false" />
<point X="44435" Y="50025" Z="-3056" delay="0" run="false" />
<point X="44327" Y="49541" Z="-3056" delay="0" run="false" />
<point X="44455" Y="49078" Z="-3056" delay="0" run="false" />
<point X="44674" Y="49036" Z="-3056" delay="0" run="false" />
<point X="44637" Y="48822" Z="-3056" delay="0" run="false" />
<point X="44998" Y="48523" Z="-3056" delay="0" run="false" />
<point npcStringId="1010208" X="45402" Y="48437" Z="-3056" delay="5" run="false" />
<point npcStringId="1010209" X="46104" Y="48788" Z="-3056" delay="5" run="false" />
<point X="46045" Y="49064" Z="-3056" delay="0" run="false" />
<point X="46294" Y="49080" Z="-3056" delay="0" run="false" />
<point X="46452" Y="49743" Z="-3056" delay="0" run="false" />
<point X="45730" Y="50590" Z="-3056" delay="60" run="false" />
</route>
<route name="running_boy" repeat="true" repeatStyle="back">
<target id="32070" spawnX="84460" spawnY="-144052" spawnZ="-1530" />
<target id="32072" spawnX="84460" spawnY="-144052" spawnZ="-1530" />
<point X="84416" Y="-144052" Z="-1528" delay="5" run="true" />
<point X="84460" Y="-142495" Z="-1536" delay="0" run="true" />
<point X="85242" Y="-140949" Z="-1536" delay="0" run="true" />
<point X="87362" Y="-140059" Z="-1536" delay="5" run="true" />
<point X="89350" Y="-140750" Z="-1536" delay="0" run="true" />
<point X="90607" Y="-143176" Z="-1536" delay="0" run="true" />
<point X="90267" Y="-143883" Z="-1536" delay="5" run="true" />
</route>
<route name="messenger_rogin" repeat="true" repeatStyle="cycle">
<target id="31363" spawnX="115756" spawnY="-183472" spawnZ="-1477" />
<point X="115744" Y="-183424" Z="-1472" delay="60" run="true" />
<point X="115878" Y="-183267" Z="-1472" delay="0" run="true" />
<point X="116116" Y="-183090" Z="-1496" delay="0" run="true" />
<point npcStringId="1010215" X="116587" Y="-184306" Z="-1568" delay="10" run="true" />
<point X="116392" Y="-184090" Z="-1560" delay="0" run="true" />
<point X="117083" Y="-182538" Z="-1520" delay="0" run="true" />
<point npcStringId="1010216" X="117802" Y="-182541" Z="-1528" delay="10" run="true" />
<point npcStringId="1010217" X="116720" Y="-182479" Z="-1512" delay="10" run="true" />
<point X="115857" Y="-183287" Z="-1472" delay="0" run="true" />
<point X="115744" Y="-183424" Z="-1472" delay="0" run="true" />
</route>
<route name="porter_tate" repeat="true" repeatStyle="cycle">
<target id="31362" spawnX="115820" spawnY="-181568" spawnZ="-1338" />
<point X="115824" Y="-181564" Z="-1336" delay="20" run="false" />
<point npcStringId="1010218" X="116048" Y="-181575" Z="-1352" delay="0" run="false" />
<point X="116521" Y="-181476" Z="-1384" delay="0" run="false" />
<point X="116632" Y="-180022" Z="-1160" delay="0" run="false" />
<point X="115355" Y="-178617" Z="-928" delay="0" run="false" />
<point X="115763" Y="-177585" Z="-888" delay="0" run="false" />
<point npcStringId="1010219" X="115795" Y="-177361" Z="-880" delay="0" run="false" />
<point X="115877" Y="-177338" Z="-880" delay="15" run="false" />
<point X="115783" Y="-177493" Z="-880" delay="0" run="false" />
<point X="115112" Y="-179836" Z="-880" delay="0" run="false" />
<point X="115102" Y="-180026" Z="-872" delay="0" run="false" />
<point npcStringId="1010220" X="114876" Y="-180045" Z="-872" delay="30" run="false" />
<point X="114840" Y="-179694" Z="-872" delay="0" run="false" />
<point X="116322" Y="-179602" Z="-1088" delay="0" run="false" />
<point X="116792" Y="-180386" Z="-1200" delay="0" run="false" />
<point X="116319" Y="-181573" Z="-1384" delay="0" run="false" />
<point X="115824" Y="-181564" Z="-1336" delay="0" run="false" />
</route>
-->
</routes>

View File

@ -1,9 +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="736" price="600" /> <!-- Scroll of Escape -->
<item id="737" price="3000" /> <!-- Scroll of Resurrection -->
<item id="734" price="1800" /> <!-- Haste Potion -->
<item id="735" price="3600" /> <!-- Alacrity Potion -->
<item id="1831" price="112" /> <!-- Antidote -->
<item id="1833" price="112" /> <!-- Bandage -->
</list>

View File

@ -1,7 +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>35383</npc> <!-- Tamutak -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35384</npc> <!-- Black -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35386</npc> <!-- Boyer -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35388</npc> <!-- Tim -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35390</npc> <!-- Dillon -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35392</npc> <!-- Bremmer -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35394</npc> <!-- Kalis -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35396</npc> <!-- Winker -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35398</npc> <!-- Ruben -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35400</npc> <!-- Horner -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35403</npc> <!-- Ron -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35405</npc> <!-- Flynn -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35407</npc> <!-- Seth -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35421</npc> <!-- Biggerstaff -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35439</npc> <!-- Carey -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35441</npc> <!-- Dianne -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35443</npc> <!-- Crissy -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35445</npc> <!-- Albert -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35447</npc> <!-- Korgen -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35449</npc> <!-- DiMaggio -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35451</npc> <!-- Emma -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35453</npc> <!-- Adrienne -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35455</npc> <!-- Bianca -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35457</npc> <!-- Gladys -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35459</npc> <!-- Regina -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35461</npc> <!-- Aida -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35463</npc> <!-- Helga -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35465</npc> <!-- Millicent -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35467</npc> <!-- Branhillde -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35566</npc> <!-- Ronald -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35568</npc> <!-- Wayne -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35570</npc> <!-- Patty -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35572</npc> <!-- Jimmy -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35574</npc> <!-- Michael -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35576</npc> <!-- Jack -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35578</npc> <!-- Karuto -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35580</npc> <!-- Carol -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35582</npc> <!-- Stanley -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35584</npc> <!-- Billy -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,7 +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>35586</npc> <!-- Serena -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,10 +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>35383</npc> <!-- Tamutak -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
</list>

View File

@ -1,10 +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>35384</npc> <!-- Black -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,10 +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>35386</npc> <!-- Boyer -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,10 +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>35388</npc> <!-- Tim -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,10 +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>35390</npc> <!-- Dillon -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,10 +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>35392</npc> <!-- Bremmer -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,10 +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>35394</npc> <!-- Kalis -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,10 +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>35396</npc> <!-- Winker -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,10 +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>35398</npc> <!-- Ruben -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,10 +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>35400</npc> <!-- Horner -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
</list>

View File

@ -1,9 +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>35403</npc> <!-- Ron -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="120" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7131" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hunters Village -->
</list>

View File

@ -1,9 +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>35405</npc> <!-- Flynn -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="120" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7131" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hunters Village -->
</list>

View File

@ -1,9 +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>35407</npc> <!-- Seth -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="120" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7131" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hunters Village -->
</list>

View File

@ -1,10 +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>35421</npc> <!-- Biggerstaff -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="952" count="1" restock_delay="120" /> <!-- Scroll: Enchant Armor (C-Grade) -->
<item id="948" count="1" restock_delay="300" /> <!-- Scroll: Enchant Armor (B-Grade) -->
</list>

View File

@ -1,9 +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>35439</npc> <!-- Carey -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,9 +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>35441</npc> <!-- Dianne -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,9 +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>35443</npc> <!-- Crissy -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,9 +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>35445</npc> <!-- Albert -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,9 +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>35447</npc> <!-- Korgen -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,9 +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>35449</npc> <!-- DiMaggio -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,9 +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>35451</npc> <!-- Emma -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7123" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Gludio -->
</list>

View File

@ -1,9 +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>35453</npc> <!-- Adrienne -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7123" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Gludio -->
</list>

View File

@ -1,9 +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>35455</npc> <!-- Bianca -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7123" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Gludio -->
</list>

View File

@ -1,9 +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>35457</npc> <!-- Gladys -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7123" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Gludio -->
</list>

View File

@ -1,9 +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>35459</npc> <!-- Regina -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7123" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Gludio -->
</list>

View File

@ -1,10 +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>35461</npc> <!-- Aida -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7129" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Oren -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,10 +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>35463</npc> <!-- Helga -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7129" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Oren -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,10 +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>35465</npc> <!-- Millicent -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7129" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Oren -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,10 +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>35467</npc> <!-- Branhillde -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7129" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Oren -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
</list>

View File

@ -1,8 +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>35566</npc> <!-- Ronald -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,8 +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>35568</npc> <!-- Wayne -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,8 +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>35570</npc> <!-- Patty -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,8 +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>35572</npc> <!-- Jimmy -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,8 +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>35574</npc> <!-- Michael -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,8 +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>35576</npc> <!-- Jack -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,8 +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>35578</npc> <!-- Karuto -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="3" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
</list>

View File

@ -1,10 +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>35580</npc> <!-- Carol -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7131" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hunters Village -->
</list>

View File

@ -1,10 +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>35582</npc> <!-- Stanley -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7131" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hunters Village -->
</list>

View File

@ -1,10 +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>35584</npc> <!-- Billy -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7131" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hunters Village -->
</list>

View File

@ -1,10 +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>35586</npc> <!-- Serena -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7131" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hunters Village -->
</list>

View File

@ -1,11 +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>35383</npc> <!-- Tamutak -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7126" count="1" restock_delay="60" /> <!-- Scroll of Escape: Town of Giran -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
<item id="947" count="1" restock_delay="360" /> <!-- Scroll: Enchant Weapon (B-Grade) -->
</list>

View File

@ -1,12 +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>35384</npc> <!-- Black -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
<item id="952" count="1" restock_delay="120" /> <!-- Scroll: Enchant Armor (C-Grade) -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
</list>

View File

@ -1,12 +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>35386</npc> <!-- Boyer -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
<item id="952" count="1" restock_delay="120" /> <!-- Scroll: Enchant Armor (C-Grade) -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
</list>

View File

@ -1,12 +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>35388</npc> <!-- Tim -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
<item id="952" count="1" restock_delay="120" /> <!-- Scroll: Enchant Armor (C-Grade) -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
</list>

View File

@ -1,12 +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>35390</npc> <!-- Dillon -->
</npcs>
<item id="1829" count="5" restock_delay="60" /> <!-- Scroll of Escape: Clan Hall -->
<item id="5858" count="1" restock_delay="60" /> <!-- Blessed Scroll of Escape: Clan Hall -->
<item id="7130" count="1" restock_delay="60" /> <!-- Scroll of Escape: Ivory Tower -->
<item id="7127" count="1" restock_delay="60" /> <!-- Scroll of Escape: Hardin's Academy -->
<item id="952" count="1" restock_delay="120" /> <!-- Scroll: Enchant Armor (C-Grade) -->
<item id="948" count="1" restock_delay="240" /> <!-- Scroll: Enchant Armor (B-Grade) -->
</list>

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