Initial changes.
This commit is contained in:
parent
d436cc8687
commit
1e8d6c75d2
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>L2J_Mobius_CT_2.4_Epilogue</name>
|
||||
<name>L2J_Mobius_CT_0_Interlude</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE xml>
|
||||
<project name="L2J_Mobius_CT_2.4_Epilogue" default="cleanup" basedir=".">
|
||||
<project name="L2J_Mobius_CT_0_Interlude" default="cleanup" basedir=".">
|
||||
<description>
|
||||
This file is part of the L2J Mobius project.
|
||||
|
||||
@ -134,15 +134,15 @@
|
||||
</target>
|
||||
|
||||
<target name="adding-core" depends="jar" description="Adding the compiled jars to the Zip file.">
|
||||
<zip destfile="${build}/L2J_Mobius_CT_2.4_Epilogue.zip" basedir="${build.dist}" level="9" />
|
||||
<zip destfile="${build}/L2J_Mobius_CT_0_Interlude.zip" basedir="${build.dist}" level="9" />
|
||||
</target>
|
||||
|
||||
<target name="adding-datapack" depends="adding-core" description="Updating the Zip file with datapack content.">
|
||||
<zip destfile="${build}/L2J_Mobius_CT_2.4_Epilogue.zip" basedir="${datapack}" excludes="**/*-sources.jar" update="true" level="9" />
|
||||
<zip destfile="${build}/L2J_Mobius_CT_0_Interlude.zip" basedir="${datapack}" excludes="**/*-sources.jar" update="true" level="9" />
|
||||
</target>
|
||||
|
||||
<target name="adding-readme" depends="adding-datapack" description="Adding readme.txt to the Zip file.">
|
||||
<zip destfile="${build}/L2J_Mobius_CT_2.4_Epilogue.zip" basedir="." includes="readme.txt" update="true" level="9" />
|
||||
<zip destfile="${build}/L2J_Mobius_CT_0_Interlude.zip" basedir="." includes="readme.txt" update="true" level="9" />
|
||||
</target>
|
||||
|
||||
<target name="cleanup" depends="adding-readme" description="Cleaning the build folder.">
|
||||
|
@ -1,6 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `bot_reported_char_data` (
|
||||
`botId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`reporterId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||
`reportDate` BIGINT(13) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`botId`, `reporterId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
@ -1,10 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `character_premium_items` (
|
||||
`charId` int(11) NOT NULL,
|
||||
`itemNum` int(11) NOT NULL,
|
||||
`itemId` int(11) NOT NULL,
|
||||
`itemCount` bigint(20) unsigned NOT NULL,
|
||||
`itemSender` varchar(50) NOT NULL,
|
||||
KEY `charId` (`charId`),
|
||||
KEY `itemNum` (`itemNum`),
|
||||
KEY `itemId` (`itemId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
@ -1,11 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `character_tpbookmark` (
|
||||
`charId` int(20) NOT NULL,
|
||||
`Id` int(20) NOT NULL,
|
||||
`x` int(20) NOT NULL,
|
||||
`y` int(20) NOT NULL,
|
||||
`z` int(20) NOT NULL,
|
||||
`icon` int(20) NOT NULL,
|
||||
`tag` varchar(50) DEFAULT NULL,
|
||||
`name` varchar(50) NOT NULL,
|
||||
PRIMARY KEY (`charId`,`Id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
@ -1,11 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `character_ui_actions` (
|
||||
`charId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`cat` tinyint(4) NOT NULL,
|
||||
`order` tinyint(4) NOT NULL,
|
||||
`cmd` int(8) NOT NULL DEFAULT '0',
|
||||
`key` int(8) NOT NULL,
|
||||
`tgKey1` int(8) DEFAULT NULL,
|
||||
`tgKey2` int(8) DEFAULT NULL,
|
||||
`show` tinyint(4) NOT NULL,
|
||||
PRIMARY KEY (`charId`,`cat`,`cmd`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
@ -1,7 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `character_ui_categories` (
|
||||
`charId` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`catId` tinyint(4) NOT NULL,
|
||||
`order` tinyint(4) NOT NULL,
|
||||
`cmdId` int(8) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`charId`,`catId`,`order`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
@ -1,36 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `fort` (
|
||||
`id` int(11) NOT NULL DEFAULT 0,
|
||||
`name` varchar(25) NOT NULL,
|
||||
`siegeDate` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||
`lastOwnedTime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||
`owner` int(11) NOT NULL DEFAULT 0,
|
||||
`fortType` int(1) NOT NULL DEFAULT 0,
|
||||
`state` int(1) NOT NULL DEFAULT 0,
|
||||
`castleId` int(1) NOT NULL DEFAULT 0,
|
||||
`supplyLvL` int(2) NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `owner` (`owner`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||
|
||||
INSERT IGNORE INTO `fort` VALUES
|
||||
(101,'Shanty',0,0,0,0,0,0,0),
|
||||
(102,'Southern',0,0,0,1,0,0,0),
|
||||
(103,'Hive',0,0,0,0,0,0,0),
|
||||
(104,'Valley',0,0,0,1,0,0,0),
|
||||
(105,'Ivory',0,0,0,0,0,0,0),
|
||||
(106,'Narsell',0,0,0,0,0,0,0),
|
||||
(107,'Bayou',0,0,0,1,0,0,0),
|
||||
(108,'White Sands',0,0,0,0,0,0,0),
|
||||
(109,'Borderland',0,0,0,1,0,0,0),
|
||||
(110,'Swamp',0,0,0,1,0,0,0),
|
||||
(111,'Archaic',0,0,0,0,0,0,0),
|
||||
(112,'Floran',0,0,0,1,0,0,0),
|
||||
(113,'Cloud Mountain',0,0,0,1,0,0,0),
|
||||
(114,'Tanor',0,0,0,0,0,0,0),
|
||||
(115,'Dragonspine',0,0,0,0,0,0,0),
|
||||
(116,'Antharas',0,0,0,1,0,0,0),
|
||||
(117,'Western',0,0,0,1,0,0,0),
|
||||
(118,'Hunters',0,0,0,1,0,0,0),
|
||||
(119,'Aaru',0,0,0,0,0,0,0),
|
||||
(120,'Demon',0,0,0,0,0,0,0),
|
||||
(121,'Monastic',0,0,0,0,0,0,0);
|
@ -1,8 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `fort_doorupgrade` (
|
||||
`doorId` int(11) NOT NULL DEFAULT '0',
|
||||
`fortId` int(11) NOT NULL,
|
||||
`hp` int(11) NOT NULL DEFAULT '0',
|
||||
`pDef` int(11) NOT NULL DEFAULT '0',
|
||||
`mDef` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`doorId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
@ -1,9 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `fort_functions` (
|
||||
`fort_id` int(2) NOT NULL DEFAULT '0',
|
||||
`type` int(1) NOT NULL DEFAULT '0',
|
||||
`lvl` int(3) NOT NULL DEFAULT '0',
|
||||
`lease` int(10) NOT NULL DEFAULT '0',
|
||||
`rate` decimal(20,0) NOT NULL DEFAULT '0',
|
||||
`endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`fort_id`,`type`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
File diff suppressed because it is too large
Load Diff
@ -1,384 +0,0 @@
|
||||
DROP TABLE IF EXISTS `fort_spawnlist`;
|
||||
CREATE TABLE `fort_spawnlist` (
|
||||
`fortId` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`id` smallint(4) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`npcId` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`x` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`y` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`z` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`heading` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`spawnType` tinyint(1) unsigned NOT NULL DEFAULT '0', -- 0-always spawned, 1-despawned during siege, 2-despawned 10min before siege, 3-spawned after fort taken
|
||||
`castleId` tinyint(1) unsigned NOT NULL DEFAULT '0', -- Castle ID for Special Envoys
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `id` (`fortId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
|
||||
INSERT INTO `fort_spawnlist` VALUES
|
||||
(101,null,35658,-53273,156650,-1896,62000,0,0),
|
||||
(101,null,35659,-58672,154703,-2688,0,2,0),
|
||||
(101,null,35660,-52128,157752,-2024,29864,1,0),
|
||||
(101,null,35661,-52435,155188,-1768,20000,1,0),
|
||||
(101,null,35662,-53944,155433,-2024,7304,1,0),
|
||||
(101,null,35664,-51269,157584,-2048,39999,0,0),
|
||||
(101,null,35666,-53422,158079,-2055,51999,0,0),
|
||||
(101,null,35667,-50640,156000,-2056,63088,0,0),
|
||||
(101,null,35667,-50938,155810,-2056,30136,0,0),
|
||||
(101,null,35668,-54608,157216,-2048,62984,0,0),
|
||||
(101,null,35668,-54896,157008,-2048,29696,0,0),
|
||||
(101,null,35669,-53351,156814,-2048,30248,0,0),
|
||||
(101,null,35669,-52160,156176,-2048,62376,0,0),
|
||||
(101,null,35669,-52272,156208,-2048,29344,0,0),
|
||||
(101,null,35669,-53240,156729,-2048,62712,0,0),
|
||||
(101,null,36457,-53768,158042,-2048,62264,0,0),
|
||||
(101,null,36393,-52680,156525,-2051,30000,3,1),
|
||||
(102,null,35689,-22256,219808,-3072,32904,0,0),
|
||||
(102,null,35690,-28169,216864,-3544,0,2,0),
|
||||
(102,null,35691,-22992,218160,-3208,0,1,0),
|
||||
(102,null,35692,-21328,218864,-2952,0,1,0),
|
||||
(102,null,35694,-21520,221504,-3208,45328,1,0),
|
||||
(102,null,35696,-24640,220960,-3232,60060,0,0),
|
||||
(102,null,35698,-24128,221488,-3232,54428,0,0),
|
||||
(102,null,35699,-20116,219724,-3232,0,0,0),
|
||||
(102,null,35699,-20327,220028,-3232,33316,0,0),
|
||||
(102,null,35700,-25038,219733,-3232,0,0,0),
|
||||
(102,null,35700,-25246,220033,-3240,32608,0,0),
|
||||
(102,null,35701,-23248,219696,-3232,0,0,0),
|
||||
(102,null,35701,-23360,219904,-3232,32612,0,0),
|
||||
(102,null,35701,-22176,219907,-3232,33500,0,0),
|
||||
(102,null,35701,-22048,219696,-3232,0,0,0),
|
||||
(102,null,36458,-23885,221728,-3232,32672,0,0),
|
||||
(102,null,36394,-22368,219776,-3080,0,3,1),
|
||||
(103,null,35727,16885,188473,-2760,42916,0,0),
|
||||
(103,null,35728,19408,189422,-3136,0,2,0),
|
||||
(103,null,35729,17984,187536,-2896,45056,1,0),
|
||||
(103,null,35730,15152,188128,-2640,0,1,0),
|
||||
(103,null,35731,16016,189520,-2888,0,1,0),
|
||||
(103,null,35733,17008,186240,-2920,16384,0,0),
|
||||
(103,null,35735,18304,188604,-2920,36864,0,0),
|
||||
(103,null,35736,18048,189792,-2920,10324,0,0),
|
||||
(103,null,35736,17632,189760,-2920,45348,0,0),
|
||||
(103,null,35737,15282,186259,-2920,43140,0,0),
|
||||
(103,null,35737,15728,186352,-2920,12288,0,0),
|
||||
(103,null,35738,16784,188544,-2920,43884,0,0),
|
||||
(103,null,35738,17060,188551,-2920,11484,0,0),
|
||||
(103,null,35738,16080,187568,-2920,42884,0,0),
|
||||
(103,null,35738,16368,187568,-2920,10432,0,0),
|
||||
(103,null,36459,18397,188339,-2920,42948,0,0),
|
||||
(103,null,36395,16772,188253,-2768,10232,3,2),
|
||||
(104,null,35758,126080,123808,-2424,48972,0,0),
|
||||
(104,null,35759,123383,121093,-2864,0,2,0),
|
||||
(104,null,35760,124299,123614,-2552,49192,1,0),
|
||||
(104,null,35761,124768,121856,-2296,0,1,0),
|
||||
(104,null,35763,124768,124640,-2552,54480,1,0),
|
||||
(104,null,35765,127920,124384,-2584,36616,0,0),
|
||||
(104,null,35767,128106,122635,-2588,33036,0,0),
|
||||
(104,null,35768,126208,120768,-2584,16384,0,0),
|
||||
(104,null,35768,125904,120544,-2584,49024,0,0),
|
||||
(104,null,35769,125920,125483,-2584,49024,0,0),
|
||||
(104,null,35769,126208,125680,-2584,16384,0,0),
|
||||
(104,null,35770,126186,122800,-2584,16384,0,0),
|
||||
(104,null,35770,125974,122689,-2584,49024,0,0),
|
||||
(104,null,35770,125974,123879,-2584,49024,0,0),
|
||||
(104,null,35770,126177,124007,-2584,16384,0,0),
|
||||
(104,null,36460,128133,122310,-2584,48972,0,0),
|
||||
(104,null,36396,126111,123738,-2432,16248,3,3),
|
||||
(105,null,35796,72544,4608,-2888,56456,0,0),
|
||||
(105,null,35797,75280,1387,-3268,0,2,0),
|
||||
(105,null,35798,73788,5479,-3016,55136,1,0),
|
||||
(105,null,35799,72400,2896,-2760,0,1,0),
|
||||
(105,null,35800,71264,4144,-3008,0,1,0),
|
||||
(105,null,35802,74736,4160,-3040,34596,0,0),
|
||||
(105,null,35804,73119,6121,-3047,46480,0,0),
|
||||
(105,null,35805,71536,5808,-3040,56456,0,0),
|
||||
(105,null,35805,71634,6146,-3040,23840,0,0),
|
||||
(105,null,35806,74256,2960,-3040,23657,0,0),
|
||||
(105,null,35806,74164,2606,-3040,56453,0,0),
|
||||
(105,null,35807,73281,3925,-3040,23840,0,0),
|
||||
(105,null,35807,73194,3703,-3040,56456,0,0),
|
||||
(105,null,35807,72430,4624,-3040,56456,0,0),
|
||||
(105,null,35807,72532,4853,-3040,23840,0,0),
|
||||
(105,null,36461,73470,6019,-3040,56456,0,0),
|
||||
(105,null,36397,72619,4569,-2889,23840,3,4),
|
||||
(106,null,35827,154544,55600,-3096,58368,0,0),
|
||||
(106,null,35828,159377,52403,-3312,0,2,0),
|
||||
(106,null,35829,155576,56592,-3224,59224,1,0),
|
||||
(106,null,35830,154704,53856,-2968,0,1,0),
|
||||
(106,null,35831,153328,54848,-3216,5512,1,0),
|
||||
(106,null,35833,156768,55552,-3256,32252,0,0),
|
||||
(106,null,35835,154800,57146,-3257,49096,0,0),
|
||||
(106,null,35836,153312,56544,-3256,58368,0,0),
|
||||
(106,null,35836,153328,56896,-3256,25416,0,0),
|
||||
(106,null,35837,156496,53920,-3256,58368,0,0),
|
||||
(106,null,35837,156528,54272,-3256,25416,0,0),
|
||||
(106,null,35838,155385,55045,-3248,25416,0,0),
|
||||
(106,null,35838,155328,54800,-3256,58368,0,0),
|
||||
(106,null,35838,154407,55563,-3248,58368,0,0),
|
||||
(106,null,35838,154468,55805,-3256,25416,0,0),
|
||||
(106,null,36462,155166,57115,-3256,58368,0,0),
|
||||
(106,null,36398,154592,55527,-3098,25416,3,5),
|
||||
(107,null,35858,189968,40224,-3248,0,0,0),
|
||||
(107,null,35859,190423,43540,-3656,0,2,0),
|
||||
(107,null,35860,188160,39920,-3376,49284,1,0),
|
||||
(107,null,35861,188624,38240,-3128,0,1,0),
|
||||
(107,null,35863,188626,41066,-3376,57140,1,0),
|
||||
(107,null,35865,191760,40752,-3408,39112,0,0),
|
||||
(107,null,35867,190992,41376,-3412,45180,0,0),
|
||||
(107,null,35868,189776,41872,-3408,49148,0,0),
|
||||
(107,null,35868,190048,42064,-3408,16316,0,0),
|
||||
(107,null,35869,189776,36960,-3408,49148,0,0),
|
||||
(107,null,35869,190048,37152,-3408,16316,0,0),
|
||||
(107,null,35870,189812,39071,-3408,49148,0,0),
|
||||
(107,null,35870,190044,39197,-3408,16316,0,0),
|
||||
(107,null,35870,189825,40269,-3408,49148,0,0),
|
||||
(107,null,35870,190048,40400,-3408,16316,0,0),
|
||||
(107,null,36463,190798,41513,-3408,49148,0,0),
|
||||
(107,null,36399,189984,40112,-3254,0,3,5),
|
||||
(108,null,35896,118827,205186,-3176,38352,0,0),
|
||||
(108,null,35897,114436,202528,-3408,0,2,0),
|
||||
(108,null,35898,118880,203568,-3304,5396,1,0),
|
||||
(108,null,35899,117216,205648,-3048,0,1,0),
|
||||
(108,null,35900,118560,206560,-3304,48872,1,0),
|
||||
(108,null,35902,120160,204256,-3336,30272,0,0),
|
||||
(108,null,35904,118138,203228,-3336,17176,0,0),
|
||||
(108,null,35905,120113,205939,-3336,38352,0,0),
|
||||
(108,null,35905,120407,205831,-3336,5396,0,0),
|
||||
(108,null,35906,116741,203878,-3336,5396,0,0),
|
||||
(108,null,35906,116460,203986,-3336,38352,0,0),
|
||||
(108,null,35907,117785,204712,-3336,38352,0,0),
|
||||
(108,null,35907,117980,204551,-3328,5396,0,0),
|
||||
(108,null,35907,118832,205280,-3328,38352,0,0),
|
||||
(108,null,35907,119040,205120,-3336,5396,0,0),
|
||||
(108,null,36464,117889,203183,-3336,38352,0,0),
|
||||
(108,null,36400,118785,205138,-3177,5396,3,6),
|
||||
(109,null,35927,158720,-70032,-2704,59020,0,0),
|
||||
(109,null,35928,161876,-73407,-2984,0,2,0),
|
||||
(109,null,35929,157968,-71659,-2832,59020,1,0),
|
||||
(109,null,35930,159664,-72224,-2584,0,1,0),
|
||||
(109,null,35932,157312,-70640,-2832,0,1,0),
|
||||
(109,null,35934,159312,-68240,-2864,49028,0,0),
|
||||
(109,null,35936,160832,-69056,-2866,42144,0,0),
|
||||
(109,null,35937,157293,-69255,-2864,59020,0,0),
|
||||
(109,null,35937,157280,-68912,-2864,27244,0,0),
|
||||
(109,null,35938,161373,-71636,-2864,27244,0,0),
|
||||
(109,null,35938,161371,-71992,-2864,59020,0,0),
|
||||
(109,null,35939,158672,-69856,-2864,27244,0,0),
|
||||
(109,null,35939,158635,-70096,-2864,59020,0,0),
|
||||
(109,null,35939,159632,-70761,-2864,59020,0,0),
|
||||
(109,null,35939,159670,-70518,-2864,27244,0,0),
|
||||
(109,null,36465,161130,-69197,-2864,59020,0,0),
|
||||
(109,null,36401,158776,-70042,-2708,27244,3,7),
|
||||
(110,null,35965,70062,-60958,-2624,45292,0,0),
|
||||
(110,null,35966,71436,-58182,-2904,0,2,0),
|
||||
(110,null,35967,71248,-62352,-2752,12388,1,0),
|
||||
(110,null,35968,71264,-60512,-2504,0,1,0),
|
||||
(110,null,35970,68688,-59648,-2752,56012,1,0),
|
||||
(110,null,35972,70144,-63584,-2784,18252,0,0),
|
||||
(110,null,35974,70944,-63168,-2784,25448,0,0),
|
||||
(110,null,35975,68995,-63605,-2784,12388,0,0),
|
||||
(110,null,35975,68668,-63690,-2784,45292,0,0),
|
||||
(110,null,35976,70884,-59059,-2784,12388,0,0),
|
||||
(110,null,35976,70535,-59147,-2784,45292,0,0),
|
||||
(110,null,35977,70194,-60871,-2784,12388,0,0),
|
||||
(110,null,35977,69936,-60882,-2784,45292,0,0),
|
||||
(110,null,35977,69736,-61986,-2784,12388,0,0),
|
||||
(110,null,35977,69472,-61984,-2784,45292,0,0),
|
||||
(110,null,36466,71273,-62968,-2784,45292,0,0),
|
||||
(110,null,36433,70058,-61012,-2630,12388,3,8),
|
||||
(111,null,36003,109024,-141072,-2800,62612,0,0),
|
||||
(111,null,36004,105447,-139845,-3120,0,2,0),
|
||||
(111,null,36005,109600,-139735,-2928,62612,1,0),
|
||||
(111,null,36006,109856,-142640,-2672,0,1,0),
|
||||
(111,null,36007,108223,-142209,-2920,8524,1,0),
|
||||
(111,null,36009,108544,-139488,-2952,55116,0,0),
|
||||
(111,null,36011,110859,-139960,-2952,40492,0,0),
|
||||
(111,null,36012,111383,-141559,-2960,29804,0,0),
|
||||
(111,null,36012,111494,-141882,-2952,62612,0,0),
|
||||
(111,null,36013,107424,-140362,-2960,29804,0,0),
|
||||
(111,null,36013,107538,-140682,-2960,62612,0,0),
|
||||
(111,null,36014,110078,-141517,-2952,62612,0,0),
|
||||
(111,null,36014,108896,-140928,-2952,29804,0,0),
|
||||
(111,null,36014,108931,-141177,-2952,62612,0,0),
|
||||
(111,null,36014,110048,-141271,-2952,29804,0,0),
|
||||
(111,null,36467,111163,-140542,-2952,62612,0,0),
|
||||
(111,null,36434,109080,-141070,-2801,29804,3,9),
|
||||
(112,null,36034,5136,149728,-2728,0,0,0),
|
||||
(112,null,36035,14186,149947,-3352,0,2,0),
|
||||
(112,null,36036,7006,148242,-2856,32768,1,0),
|
||||
(112,null,36037,6528,151872,-2608,0,1,0),
|
||||
(112,null,36039,4384,150992,-2856,0,1,0),
|
||||
(112,null,36041,5968,146864,-2888,19216,0,0),
|
||||
(112,null,36043,4320,150032,-2892,0,0,0),
|
||||
(112,null,36044,7345,150866,-2888,32768,0,0),
|
||||
(112,null,36044,7552,150601,-2888,0,0,0),
|
||||
(112,null,36045,3905,148865,-2888,32768,0,0),
|
||||
(112,null,36045,4101,148594,-2888,0,0,0),
|
||||
(112,null,36046,6257,149635,-2888,0,0,0),
|
||||
(112,null,36046,6165,149868,-2888,32768,0,0),
|
||||
(112,null,36046,5065,149635,-2888,0,0,0),
|
||||
(112,null,36046,4962,149869,-2888,32768,0,0),
|
||||
(112,null,36468,4326,149651,-2888,0,0,0),
|
||||
(112,null,36435,5217,149697,-2736,32768,3,1),
|
||||
(112,null,36436,5217,149754,-2736,32768,3,2),
|
||||
(113,null,36072,-53232,91696,-2664,49152,0,0),
|
||||
(113,null,36073,-56032,86017,-3259,0,2,0),
|
||||
(113,null,36074,-55791,91856,-2792,0,1,0),
|
||||
(113,null,36075,-55248,90496,-2536,0,1,0),
|
||||
(113,null,36077,-54168,92604,-2784,49196,1,0),
|
||||
(113,null,36079,-52080,89808,-2824,16384,0,0),
|
||||
(113,null,36081,-50544,91424,-2824,32768,0,0),
|
||||
(113,null,36082,-52404,92892,-2824,49151,0,0),
|
||||
(113,null,36082,-52121,93104,-2816,16384,0,0),
|
||||
(113,null,36083,-54393,89462,-2824,49151,0,0),
|
||||
(113,null,36083,-54092,89676,-2824,16384,0,0),
|
||||
(113,null,36084,-53118,91881,-2824,16384,0,0),
|
||||
(113,null,36084,-53116,90671,-2816,16384,0,0),
|
||||
(113,null,36084,-53352,90572,-2824,49151,0,0),
|
||||
(113,null,36084,-53348,91765,-2816,49151,0,0),
|
||||
(113,null,36469,-50510,91023,-2824,49152,0,0),
|
||||
(113,null,36437,-53210,91642,-2665,16384,3,1),
|
||||
(113,null,36438,-53258,91642,-2665,16384,3,4),
|
||||
(114,null,36110,60379,139950,-1592,46872,0,0),
|
||||
(114,null,36111,58314,136319,-2000,0,2,0),
|
||||
(114,null,36112,61864,139257,-1728,46896,1,0),
|
||||
(114,null,36113,58480,139648,-1464,0,1,0),
|
||||
(114,null,36114,59436,140834,-1720,47296,1,0),
|
||||
(114,null,36116,60576,138064,-1752,16532,0,0),
|
||||
(114,null,36118,60400,140688,-1757,48196,0,0),
|
||||
(114,null,36119,61696,140832,-1752,14120,0,0),
|
||||
(114,null,36119,61395,140689,-1752,46936,0,0),
|
||||
(114,null,36120,58828,138054,-1752,46872,0,0),
|
||||
(114,null,36120,59137,138189,-1752,14120,0,0),
|
||||
(114,null,36121,60265,139991,-1752,46872,0,0),
|
||||
(114,null,36121,60522,140048,-1752,14480,0,0),
|
||||
(114,null,36121,60042,138817,-1752,46872,0,0),
|
||||
(114,null,36121,60285,138872,-1752,14480,0,0),
|
||||
(114,null,36470,60145,140737,-1752,46872,0,0),
|
||||
(114,null,36439,60391,139884,-1600,14480,3,2),
|
||||
(114,null,36440,60343,139892,-1600,14480,3,3),
|
||||
(115,null,36141,11537,95509,-3264,49151,0,0),
|
||||
(115,null,36142,9318,92253,-3536,0,2,0),
|
||||
(115,null,36143,9472,94992,-3392,0,1,0),
|
||||
(115,null,36144,13184,94928,-3144,0,1,0),
|
||||
(115,null,36145,12829,96214,-3392,49152,1,0),
|
||||
(115,null,36147,10112,93760,-3424,16384,0,0),
|
||||
(115,null,36149,9485,96089,-3424,57220,0,0),
|
||||
(115,null,36150,12633,93599,-3424,16384,0,0),
|
||||
(115,null,36150,12365,93398,-3424,49151,0,0),
|
||||
(115,null,36151,10615,96684,-3424,16384,0,0),
|
||||
(115,null,36151,10344,96478,-3424,49151,0,0),
|
||||
(115,null,36152,11654,95634,-3424,16384,0,0),
|
||||
(115,null,36152,11422,95531,-3424,49151,0,0),
|
||||
(115,null,36152,11660,94437,-3424,16384,0,0),
|
||||
(115,null,36152,11420,94333,-3424,49151,0,0),
|
||||
(115,null,36471,9203,95842,-3424,49151,0,0),
|
||||
(115,null,36441,11549,95447,-3270,16384,3,2),
|
||||
(115,null,36442,11517,95447,-3270,16384,3,4),
|
||||
(116,null,36172,79686,91280,-2720,37660,0,0),
|
||||
(116,null,36173,74810,90814,-3344,0,2,0),
|
||||
(116,null,36174,77262,91704,-2856,5112,1,0),
|
||||
(116,null,36175,79440,88752,-2600,0,1,0),
|
||||
(116,null,36177,80929,90510,-2856,40192,1,0),
|
||||
(116,null,36179,77600,93440,-2880,57688,0,0),
|
||||
(116,null,36181,76848,92624,-2880,62456,0,0),
|
||||
(116,null,36182,80031,92773,-2880,37568,0,0),
|
||||
(116,null,36182,80329,92637,-2880,5012,0,0),
|
||||
(116,null,36183,78231,89249,-2880,5012,0,0),
|
||||
(116,null,36183,77927,89390,-2880,37920,0,0),
|
||||
(116,null,36184,78812,90685,-2880,5012,0,0),
|
||||
(116,null,36184,79666,91408,-2880,37660,0,0),
|
||||
(116,null,36184,78611,90849,-2880,37660,0,0),
|
||||
(116,null,36184,79865,91249,-2880,5012,0,0),
|
||||
(116,null,36472,76880,92931,-2880,37660,0,0),
|
||||
(116,null,36443,79618,91276,-2728,5012,3,4),
|
||||
(116,null,36444,79641,91231,-2728,5012,3,3),
|
||||
(117,null,36210,111368,-14624,-832,49151,0,0),
|
||||
(117,null,36211,114221,-18762,-1768,0,2,0),
|
||||
(117,null,36212,109872,-16624,-968,16384,1,0),
|
||||
(117,null,36213,113481,-16058,-712,0,1,0),
|
||||
(117,null,36215,112601,-13933,-960,49152,1,0),
|
||||
(117,null,36217,108496,-15504,-992,0,0,0),
|
||||
(117,null,36219,108880,-16492,-992,8356,0,0),
|
||||
(117,null,36220,110219,-13636,-992,49151,0,0),
|
||||
(117,null,36220,110478,-13435,-992,16384,0,0),
|
||||
(117,null,36221,112216,-17087,-992,49151,0,0),
|
||||
(117,null,36221,112482,-16883,-992,16384,0,0),
|
||||
(117,null,36222,111248,-15800,-992,49151,0,0),
|
||||
(117,null,36222,111487,-15701,-992,16384,0,0),
|
||||
(117,null,36222,111253,-14604,-992,49151,0,0),
|
||||
(117,null,36222,111486,-14503,-992,16384,0,0),
|
||||
(117,null,36473,108614,-16342,-992,49151,0,0),
|
||||
(117,null,36445,111323,-14680,-839,16384,3,5),
|
||||
(117,null,36446,111368,-14680,-839,16384,3,4),
|
||||
(117,null,36447,111412,-14681,-839,16384,3,7),
|
||||
(118,null,36248,125246,95621,-1976,49151,0,0),
|
||||
(118,null,36249,121072,93215,-2736,0,2,0),
|
||||
(118,null,36250,122688,95760,-2112,0,1,0),
|
||||
(118,null,36251,123232,94400,-1856,0,1,0),
|
||||
(118,null,36253,124305,96528,-2104,49151,1,0),
|
||||
(118,null,36255,126384,93728,-2144,16384,0,0),
|
||||
(118,null,36257,127968,95328,-2144,32768,0,0),
|
||||
(118,null,36258,124357,93571,-2144,16384,0,0),
|
||||
(118,null,36258,124080,93379,-2144,49151,0,0),
|
||||
(118,null,36259,126328,97008,-2144,16384,0,0),
|
||||
(118,null,36259,126064,96813,-2144,49151,0,0),
|
||||
(118,null,36260,125128,94482,-2144,49151,0,0),
|
||||
(118,null,36260,125364,95782,-2144,16384,0,0),
|
||||
(118,null,36260,125131,95677,-2136,49151,0,0),
|
||||
(118,null,36260,125365,94582,-2136,16384,0,0),
|
||||
(118,null,36474,128023,94941,-2144,49151,0,0),
|
||||
(118,null,36448,125266,95558,-1984,16384,3,5),
|
||||
(118,null,36449,125226,95559,-1984,16384,3,3),
|
||||
(119,null,36286,72834,186402,-2424,54844,0,0),
|
||||
(119,null,36287,71692,188004,-2616,0,2,0),
|
||||
(119,null,36288,71392,184720,-2552,5528,1,0),
|
||||
(119,null,36289,74288,186912,-2296,0,1,0),
|
||||
(119,null,36290,71542,186410,-2552,55088,1,0),
|
||||
(119,null,36292,74832,185648,-2584,24516,0,0),
|
||||
(119,null,36294,70768,185632,-2584,63668,0,0),
|
||||
(119,null,36295,73081,188000,-2584,22248,0,0),
|
||||
(119,null,36295,72974,187690,-2584,54844,0,0),
|
||||
(119,null,36296,73127,184321,-2584,22248,0,0),
|
||||
(119,null,36296,73008,184000,-2584,54844,0,0),
|
||||
(119,null,36297,73523,185589,-2576,22248,0,0),
|
||||
(119,null,36297,73376,185380,-2584,54844,0,0),
|
||||
(119,null,36297,72713,186369,-2576,54844,0,0),
|
||||
(119,null,36297,72851,186593,-2584,22248,0,0),
|
||||
(119,null,36475,70720,185261,-2584,54844,0,0),
|
||||
(119,null,36450,72880,186364,-2425,22248,3,6),
|
||||
(119,null,36451,72850,186346,-2425,22248,3,3),
|
||||
(120,null,36317,100213,-55318,-488,0,0,0),
|
||||
(120,null,36318,104686,-57581,-944,0,2,0),
|
||||
(120,null,36319,100688,-57440,-616,16384,1,0),
|
||||
(120,null,36320,100752,-53664,-360,0,1,0),
|
||||
(120,null,36322,99484,-54027,-616,0,1,0),
|
||||
(120,null,36324,101952,-56752,-640,32768,0,0),
|
||||
(120,null,36326,99600,-57360,-648,8476,0,0),
|
||||
(120,null,36327,102103,-54225,-640,32768,0,0),
|
||||
(120,null,36327,102308,-54490,-640,0,0,0),
|
||||
(120,null,36328,99016,-56242,-632,32768,0,0),
|
||||
(120,null,36328,99229,-56507,-640,0,0,0),
|
||||
(120,null,36329,101363,-55435,-640,0,0,0),
|
||||
(120,null,36329,101268,-55199,-640,32768,0,0),
|
||||
(120,null,36329,100168,-55434,-640,0,0,0),
|
||||
(120,null,36329,100064,-55200,-640,32768,0,0),
|
||||
(120,null,36476,99834,-57649,-648,0,0,0),
|
||||
(120,null,36452,100280,-55302,-489,32768,3,8),
|
||||
(120,null,36453,100280,-55334,-489,32768,3,7),
|
||||
(121,null,36355,72365,-94294,-1264,44872,0,0),
|
||||
(121,null,36356,69553,-91746,-1488,0,2,0),
|
||||
(121,null,36357,70189,-93935,-1400,61576,1,0),
|
||||
(121,null,36358,73680,-95456,-1144,0,1,0),
|
||||
(121,null,36360,73831,-94119,-1400,45536,1,0),
|
||||
(121,null,36362,70384,-95360,-1424,11308,0,0),
|
||||
(121,null,36364,70704,-92960,-1424,53872,0,0),
|
||||
(121,null,36365,71641,-92931,-1424,44872,0,0),
|
||||
(121,null,36365,71971,-92846,-1424,12456,0,0),
|
||||
(121,null,36366,72323,-96557,-1424,44872,0,0),
|
||||
(121,null,36366,72653,-96469,-1424,12456,0,0),
|
||||
(121,null,36367,72264,-94213,-1424,44872,0,0),
|
||||
(121,null,36367,72066,-95317,-1424,12456,0,0),
|
||||
(121,null,36367,71810,-95321,-1424,44872,0,0),
|
||||
(121,null,36367,72526,-94209,-1424,12456,0,0),
|
||||
(121,null,36477,70350,-93054,-1424,44872,0,0),
|
||||
(121,null,36454,72358,-94360,-1272,12456,3,8),
|
||||
(121,null,36455,72324,-94346,-1272,12456,3,9);
|
@ -1,5 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `fortsiege_clans` (
|
||||
`fort_id` int(1) NOT NULL DEFAULT '0',
|
||||
`clan_id` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`clan_id`,`fort_id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
@ -1,6 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `item_elementals` (
|
||||
`itemId` int(11) NOT NULL DEFAULT 0,
|
||||
`elemType` tinyint(1) NOT NULL DEFAULT -1,
|
||||
`elemValue` int(11) NOT NULL DEFAULT -1,
|
||||
PRIMARY KEY (`itemId`, `elemType`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
@ -347,24 +347,6 @@ INSERT INTO `teleport` VALUES
|
||||
('Schuttgart -> Icemans Hut',1118,113903,-108752,-856,3500,0,57),
|
||||
('Schuttgart -> Crypt of Disgrace',1119,47692,-115745,-3744,9600,0,57),
|
||||
('Schuttgart -> Pavel Ruins',1120,91280,-117152,-3928,5300,0,57),
|
||||
('Kamael Vilage -> The Town of Gludio',1139,-12672,122776,-3116,12000,0,57),
|
||||
('Kamael Vilage -> Town of Aden',1122,146331,25762,-2018,26000,0,57),
|
||||
('Kamael Vilage -> Talking Island Village',1123,-84318,244579,-3730,20000,0,57),
|
||||
('Kamael Vilage -> Dark Elf Village',1124,9745,15606,-4574,13000,0,57),
|
||||
('Kamael Vilage -> Elven Village',1125,46934,51467,-2977,16000,0,57),
|
||||
('Kamael Vilage -> Dwarven Village',1126,115113,-178212,-901,32000,0,57),
|
||||
('Kamael Vilage -> Orc Village',1127,-44836,-112524,-235,17000,0,57),
|
||||
('Kamael Vilage -> Stronghold I',1128,-122410,73205,-2872,2600,0,57),
|
||||
('Kamael Vilage -> Stronghold II',1129,-95540,52150,-2024,2200,0,57),
|
||||
('Kamael Vilage -> Stronghold III',1130,-85928,37095,-2048,3200,0,57),
|
||||
('Kamael Vilage -> Isle of Souls Harbor',1131,-74016,51932,-3680,4300,0,57),
|
||||
('Kamael Vilage -> Stronghold I free',1132,-122410,73205,-2872,0,0,57),
|
||||
('Kamael Vilage -> Stronghold II free',1133,-95540,52150,-2024,0,0,57),
|
||||
('Kamael Vilage -> Stronghold III free',1134,-85928,37095,-2048,0,0,57),
|
||||
('Strongolds -> Kamael Village free',1135,-117251,46771,360,0,0,57),
|
||||
('Soul Isle Harbor -> The Town of Gludio',1136,-12672,122776,-3116,9300,0,57),
|
||||
('Soul Isle Harbor -> Town of Aden',1137,146331,25762,-2018,22000,0,57),
|
||||
('Soul Isle Harbor -> The Town of Gludio',1138,-117251,46771,360,4300,0,57),
|
||||
|
||||
('Pagan Temple - > exit',11999,-16307,-36591,-10725,0,0,57),
|
||||
('Pagan Chapel - > exit',11998,-16359,-43803,-10725,0,0,57);
|
||||
@ -607,25 +589,6 @@ INSERT INTO `teleport` VALUES
|
||||
('Varka teleport - Town of Schuttgart',10041,87126,-143520,-1288,9300,0,57);
|
||||
|
||||
INSERT INTO `teleport` VALUES
|
||||
('Gludio -> Kamael Village',12050,-117251,46771,360,12000,0,57),
|
||||
('Dark Elf Village -> Kamael Village',12051,-117251,46771,360,13000,0,57),
|
||||
('Orc Village -> Kamael Village',12052,-117251,46771,360,17000,0,57),
|
||||
('Elven Village -> Kamael Village',12053,-117251,46771,360,16000,0,57),
|
||||
('Town of Aden -> Kamael Village',12054,-117251,46771,360,26000,0,57),
|
||||
('Talking Village -> Kamael Village',12055,-117251,46771,360,10000,0,57),
|
||||
('Dwarven Village -> Kamael Village',12056,-117251,46771,360,32000,0,57),
|
||||
('Soul Harbor -> Nornil\'s Garden',12057,-119534,87176,-12593,0,0,57),
|
||||
('Nornil\'s Garden -> Soul Harbor',12058,-73494,53507,-3680,0,0,57),
|
||||
('Fantasy Isle -> Krateis Cube',12108,-70293,-71029,-1416,0,0,57),
|
||||
('Krateis Cube -> Fantasy Isle',12109,-59224,-56837,-2032,0,0,57),
|
||||
('Gludio -> Airship dock',12118,-149406,255247,-80,0,0,57),
|
||||
('Airship dock -> Talking Island',12119,-84752,243122,-3728,0,0,57),
|
||||
('Talking Island -> Airship dock',12120,-149406,255247,-80,0,0,57),
|
||||
('Fantasy Isle -> Handys Block',12121,-57328,-60566,-2360,0,0,57),
|
||||
('Keucereus -> Heart of Infinity',12122,-204288,242026,1744,0,0,57),
|
||||
('Handys Block -> Fantasy Isle',12139,-59157,-56906,-2032,0,0,57),
|
||||
('Guide of Immortality -> Seed of Infinity',14000,-183292,206063,-12888,0,0,57),
|
||||
('Gatekeeper of the Abyss -> Seed of Infinity',14001,-212836,209824,4288,0,0,57),
|
||||
('Gludio Castle -> Front of the Gludio Castle',13000,-15043,116596,-3208,0,0,57),
|
||||
('Gludio Castle -> Gludio Town Square',13001,-14393,123671,-3144,0,0,57),
|
||||
('Gludio Castle -> Front of the Shanty Fortress',13002,-58761,154663,-2701,0,0,57),
|
||||
@ -759,243 +722,3 @@ INSERT INTO `teleport` VALUES
|
||||
('Schuttgart Terrace -> In',2054,76267,-153275,1044,0,0,57),
|
||||
('Schuttgart Terrace -> Out',2055,78843,-153008,1044,0,0,57),
|
||||
('Schuttgart Terrace -> In',2056,78832,-153271,1044,0,0,57);
|
||||
|
||||
-- Gracia Epilogue
|
||||
INSERT INTO `teleport` VALUES
|
||||
('News Informer -> Forge of the Gods',200901,169018,-116303,-2432,10000,0,57),
|
||||
('News Informer -> Primeval Isle Wharf',200902,11235,-24026,-3640,10000,0,57),
|
||||
('News Informer -> The Giant\'s Cave',200903,174491,50942,-4360,10000,0,57),
|
||||
('News Informer -> Den of Evil',200904,68693,-110438,-1904,10000,0,57),
|
||||
('News Informer -> Mithril Mines Western Entrance',200905,171946,-173352,3440,10000,0,57),
|
||||
('News Informer -> Mithril Mines Eastern Entrance',200906,178591,-184615,360,10000,0,57),
|
||||
('News Informer -> Field of Silence',200907,87691,162835,-3520,10000,0,57),
|
||||
('News Informer -> Field of Whispers',200908,82192,226128,-3656,10000,0,57),
|
||||
('News Informer -> Crypts of Disgrace',200909,47692,-115745,-3744,10000,0,57),
|
||||
('News Informer -> Stakato Nest',200910,89513,-44800,-2136,10000,0,57),
|
||||
('News Informer -> Town of Giran',200911,83551,147945,-3400,100000,0,57),
|
||||
('News Informer -> Town of Aden',200912,146783,25808,-2008,100000,0,57),
|
||||
('News Informer -> Town of Oren',200913,82971,53207,-1488,100000,0,57),
|
||||
('News Informer -> Rune Township',200914,43835,-47749,-792,100000,0,57),
|
||||
('News Informer -> Town of Goddard',200915,148024,-55281,-2728,100000,0,57),
|
||||
('Primeval Isle -> Rune Township',200916,43835,-47749,-792,50000,0,57),
|
||||
('Rune Township -> Primeval Isle',200917,11235,-24026,-3640,6400,0,57),
|
||||
('Heine -> Isle of Prayer',200918,149518,195280,-3736,7200,0,57),
|
||||
('Giant\'s Cave -> Lower',200919,191754,56760,-7624,0,0,57),
|
||||
('Giant\'s Cave -> Upper',200920,183985,61424,-3992,0,0,57),
|
||||
('Giran Harbor -> Pirate\'s Palace',200921,52241,218775,-3224,0,0,57),
|
||||
('Aden GK -> The Giant\'s Cave',200922,174491,50942,-4360,7400,0,57), -- retail
|
||||
('FoG Entrance -> FoG Upper Level',200923,173492,-112272,-5192,0,0,57),
|
||||
('Krun -> Enter Mines ',200924,173462,-174011,3480,0,0,57),
|
||||
('Tarum -> Enter Mines ',200925,179299,-182831,-224,0,0,57),
|
||||
('Goddard -> Forge of the Gods',200926,169018,-116303,-2432,10000,0,57),
|
||||
('Rune -> Stakato Nest',126,89513,-44800,-2136,9100,0,57);
|
||||
|
||||
-- Freya? NPC exists in client.
|
||||
INSERT INTO `teleport` VALUES
|
||||
('Seed of Infinity Dock',15006,-212843,209695,4280,150000,0,57), -- retail
|
||||
('Seed of Destruction Dock',15007,-248535,250273,4336,150000,0,57); -- retail
|
||||
|
||||
-- Fortress Teleports
|
||||
INSERT INTO `teleport` VALUES
|
||||
-- Shanty Fortress
|
||||
('Shanty Fortress -> Fortress West Gate',20000,-55240,157193,-2048,0,0,57), -- retail
|
||||
('Shanty Fortress -> Fortress East Gate',20001,-50296,155793,-2056,0,0,57), -- retail
|
||||
('Shanty Fortress -> Gludio Town Square',20002,-14393,123671,-3144,0,0,57), -- retail
|
||||
('Shanty Fortress -> Front of the Gludio Castle Gate',20003,-15043,116596,-3208,0,0,57), -- retail
|
||||
('Shanty Fortress -> Ruins of Agony',20004,-41248,122848,-2912,500,0,57), -- retail
|
||||
('Shanty Fortress -> Ruins of Despair',20005,-19120,136816,-3762,500,0,57), -- retail
|
||||
('Shanty Fortress -> The Ant Nest',20006,-9959,176184,-4160,500,0,57), -- retail
|
||||
('Shanty Fortress -> Windawood Manor',20007,-28327,155125,-3496,500,0,57), -- retail
|
||||
-- Southern Fortress
|
||||
('Southern Fortress -> Fortress West Gate',20008,-25480,219848,-3248,0,0,57), -- retail
|
||||
('Southern Fortress -> Fortress East Gate',20009,-19886,219821,-3256,0,0,57), -- retail
|
||||
('Southern Fortress -> Gludio Town Square',20010,-14393,123671,-3144,0,0,57), -- retail
|
||||
('Southern Fortress -> Front of the Gludio Castle Gate',20011,-15043,116596,-3208,0,0,57), -- retail
|
||||
('Southern Fortress -> Ruins of Agony',20012,-41248,122848,-2912,500,0,57), -- retail
|
||||
('Southern Fortress -> Ruins of Despair',20013,-19120,136816,-3762,500,0,57), -- retail
|
||||
('Southern Fortress -> The Ant Nest',20014,-9959,176184,-4160,500,0,57), -- retail
|
||||
('Southern Fortress -> Windawood Manor',20015,-28327,155125,-3496,500,0,57), -- retail
|
||||
-- Hive Fortress
|
||||
('Hive Fortress -> Fortress North Gate',20016,15383,186025,-2920,0,0,57), -- retail
|
||||
('Hive Fortress -> Fortress South Gate',20017,18046,190017,-2920,0,0,57), -- retail
|
||||
('Hive Fortress -> Dion Town Square',20018,19025,145245,-3107,0,0,57), -- retail
|
||||
('Hive Fortress -> Front of the Dion Castle Gate',20019,19888,153395,-3144,0,0,57), -- retail
|
||||
('Hive Fortress -> Cruma Marshlands',20020,5106,126916,-3664,500,0,57), -- retail
|
||||
('Hive Fortress -> Fortress of Resistance',20021,47382,111278,-2104,500,0,57), -- retail
|
||||
('Hive Fortress -> Plains of Dion',20022,630,179184,-3720,500,0,57), -- retail
|
||||
('Hive Fortress -> Tanor Canyon',20023,60374,164301,-2856,500,0,57), -- retail
|
||||
-- Valley Fortress
|
||||
('Valley Fortress -> Fortress North Gate',20024,126066,120350,-2584,0,0,57), -- retail
|
||||
('Valley Fortress -> Fortress South Gate',20025,126023,125853,-2584,0,0,57), -- retail
|
||||
('Valley Fortress -> Giran Town Square',20026,81749,149171,-3464,0,0,57), -- retail
|
||||
('Valley Fortress -> Front of the Giran Castle Gate',20027,107954,145841,-3224,0,0,57), -- retail
|
||||
('Valley Fortress -> Breka\'s Stronghold',20028,85546,131328,-3672,500,0,57), -- retail
|
||||
('Valley Fortress -> Devil\'s Isle',20029,43408,206881,-3752,500,0,57), -- retail
|
||||
('Valley Fortress -> Dragon Valley',20030,73024,118485,-3720,500,0,57), -- retail
|
||||
('Valley Fortress -> Tanor Canyon',20031,60374,164301,-2856,500,0,57), -- retail
|
||||
-- Ivory Fortress
|
||||
('Ivory Fortress -> Fortress North Gate',20032,74367,2533,-3040,0,0,57), -- retail
|
||||
('Ivory Fortress -> Fortress South Gate',20033,71388,6235,-3032,0,0,57), -- retail
|
||||
('Ivory Fortress -> Oren Town Square',20034,82323,55466,-1480,0,0,57), -- retail
|
||||
('Ivory Fortress -> Front of the Oren Castle Gate',20035,75648,39380,-2952,0,0,57), -- retail
|
||||
('Ivory Fortress -> Sea of Spores',20036,64328,26803,-3768,500,0,57), -- retail
|
||||
('Ivory Fortress -> Enchanted Valley, Southern Region',20037,124904,61992,-3973,500,0,57), -- retail
|
||||
('Ivory Fortress -> Enchanted Valley, Northern Region',20038,104426,33746,-3825,500,0,57), -- retail
|
||||
('Ivory Fortress -> Ancient Battleground',20039,118509,-4779,-4000,500,0,57), -- retail
|
||||
-- Narsell Fortress
|
||||
('Narsell Fortress -> Fortress West Gate',20040,153112,56872,-3256,0,0,57), -- retail
|
||||
('Narsell Fortress -> Fortress East Gate',20041,156730,53921,-3256,0,0,57), -- retail
|
||||
('Narsell Fortress -> Aden Town Square',20042,147450,28081,-2294,0,0,57), -- retail
|
||||
('Narsell Fortress -> Front of the Aden Castle Gate',20043,147428,20161,-2008,0,0,57), -- retail
|
||||
('Narsell Fortress -> Ancient Battleground',20044,118509,-4779,-4000,500,0,57), -- retail
|
||||
('Narsell Fortress -> Enchanted Valley, Southern Region',20045,124904,61992,-3973,500,0,57), -- retail
|
||||
('Narsell Fortress -> Enchanted Valley, Northern Region',20046,104426,33746,-3825,500,0,57), -- retail
|
||||
('Narsell Fortress -> Blazing Swamp',20047,155310,-16339,-3320,500,0,57), -- retail
|
||||
('Narsell Fortress -> The Giant\'s Cave Upper Layer',20048,183985,61424,-3992,500,0,57), -- retail
|
||||
('Narsell Fortress -> The Giant\'s Cave Lower Layer',20049,191754,56760,-7624,500,0,57), -- retail
|
||||
-- Bayou Fortress
|
||||
('Bayou Fortress -> Fortress North Gate',20050,189894,36746,-3408,0,0,57), -- retail
|
||||
('Bayou Fortress -> Fortress South Gate',20051,189914,42242,-3408,0,0,57), -- retail
|
||||
('Bayou Fortress -> Aden Town Square',20052,147450,28081,-2294,0,0,57), -- retail
|
||||
('Bayou Fortress -> Front of the Aden Castle Gate',20053,147428,20161,-2008,0,0,57), -- retail
|
||||
('Bayou Fortress -> Ancient Battleground',20054,118509,-4779,-4000,500,0,57), -- retail
|
||||
('Bayou Fortress -> Enchanted Valley, Southern Region',20055,124904,61992,-3973,500,0,57), -- retail
|
||||
('Bayou Fortress -> Enchanted Valley, Northern Region',20056,104426,33746,-3825,500,0,57), -- retail
|
||||
('Bayou Fortress -> Blazing Swamp',20057,155310,-16339,-3320,500,0,57), -- retail
|
||||
('Bayou Fortress -> The Giant\'s Cave Upper Layer',20058,183985,61424,-3992,500,0,57), -- retail
|
||||
('Bayou Fortress -> The Giant\'s Cave Lower Layer',20059,191754,56760,-7624,500,0,57), -- retail
|
||||
-- White Sands Fortress
|
||||
('White Sands Fortress -> Fortress West Gate',20060,116336,203775,-3336,0,0,57), -- retail
|
||||
('White Sands Fortress -> Fortress East Gate',20061,120487,206093,-3336,0,0,57), -- retail
|
||||
('White Sands Fortress -> Heine Town Square',20062,111455,219400,-3546,0,0,57), -- retail
|
||||
('White Sands Fortress -> Front of the Innadril Castle Gate',20063,117608,241660,-1408,0,0,57), -- retail
|
||||
('White Sands Fortress -> Field of Silence Center',20064,80987,182423,-3504,500,0,57), -- retail
|
||||
('White Sands Fortress -> Field of Whispers Center',20065,86147,218268,-3592,500,0,57), -- retail
|
||||
('White Sands Fortress -> The Center of Alligator Island',20066,113708,178387,-3232,500,0,57), -- retail
|
||||
('White Sands Fortress -> Inside the Garden of Eva',20067,82693,242220,-6712,500,0,57), -- retail
|
||||
-- Borderland Fortress
|
||||
('Borderland Fortress -> Fortress West Gate',20068,157017,-68977,-2864,0,0,57), -- retail
|
||||
('Borderland Fortress -> Fortress East Gate',20069,161618,-72057,-2864,0,0,57), -- retail
|
||||
('Borderland Fortress -> Goddard Town Square',20070,147728,-56331,-2776,0,0,57), -- retail
|
||||
('Borderland Fortress -> Front of the Goddard Castle Gate',20071,153996,-50182,-2992,500,0,57), -- retail
|
||||
('Borderland Fortress -> Varka Silenos Stronghold',20072,125740,-40864,-3736,500,0,57), -- retail
|
||||
('Borderland Fortress -> Ketra Orc Outpost',20073,146990,-67128,-3640,500,0,57), -- retail
|
||||
('Borderland Fortress -> Entrance to the Forge of the Gods',20074,169018,-116303,-2432,500,0,57), -- retail
|
||||
('Borderland Fortress -> Wall of Argos',20075,165054,-47861,-3560,500,0,57), -- retail
|
||||
-- Swamp Fortress
|
||||
('Swamp Fortress -> Fortress North Gate',20076,68692,-63928,-2784,0,0,57), -- retail
|
||||
('Swamp Fortress -> Fortress South Gate',20077,70820,-58862,-2784,0,0,57), -- retail
|
||||
('Swamp Fortress -> Rune Town Square',20078,43889,-49101,-792,0,0,57), -- retail
|
||||
('Swamp Fortress -> Front of the Rune Castle Gate',20079,27400,-49180,-1320,0,0,57), -- retail
|
||||
('Swamp Fortress -> Forest of the Dead',20080,52107,-54328,-3158,500,0,57), -- retail
|
||||
('Swamp Fortress -> Wild Beast Pastures',20081,43805,-88010,-2780,500,0,57), -- retail
|
||||
('Swamp Fortress -> Swamp of Screams',20082,69340,-50203,-3314,500,0,57), -- retail
|
||||
('Swamp Fortress -> Valley of Saints',20083,65307,-71445,-3696,500,0,57), -- retail
|
||||
('Swamp Fortress -> Shyeed\'s Cavern',20084,76911,-55295,-5824,500,0,57), -- retail
|
||||
-- Archaic Fortress
|
||||
('Archaic Fortress -> Fortress West Gate',20085,107248,-140450,-2960,0,0,57), -- retail
|
||||
('Archaic Fortress -> Fortress East Gate',20086,111769,-141775,-2920,0,0,57), -- retail
|
||||
('Archaic Fortress -> Schuttgart Town Square',20087,87379,-142322,-1336,0,0,57), -- retail
|
||||
('Archaic Fortress -> Front of the Schuttgart Castle Gate',20088,76358,-145548,-1176,0,0,57), -- retail
|
||||
('Archaic Fortress -> Crypts of Disgrace',20089,47692,-115745,-3744,500,0,57), -- retail
|
||||
('Archaic Fortress -> Plunderous Plains',20090,111965,-154172,-1528,500,0,57), -- retail
|
||||
('Archaic Fortress -> Den of Evil',20091,68693,-110438,-1946,500,0,57), -- retail
|
||||
('Archaic Fortress -> Ice Merchant Cabin',20092,113903,-108752,-860,500,0,57), -- retail
|
||||
-- Floran Fortress
|
||||
('Floran Fortress -> Fortress West Gate',20093,3798,148797,-2888,0,0,57), -- retail
|
||||
('Floran Fortress -> Fortress East Gate',20094,7693,150682,-2888,0,0,57), -- retail
|
||||
('Floran Fortress -> Gludio Town Square',20095,-14393,123671,-3144,0,0,57), -- retail
|
||||
('Floran Fortress -> Dion Town Square',20096,19025,145245,-3107,0,0,57), -- retail
|
||||
('Floran Fortress -> The Ant Nest',20097,-9959,176184,-4160,500,0,57), -- retail
|
||||
('Floran Fortress -> Windawood Manor',20098,-28327,155125,-3496,500,0,57), -- retail
|
||||
('Floran Fortress -> Plains of Dion',20099,630,179184,-3720,500,0,57), -- retail
|
||||
('Floran Fortress -> Tanor Canyon',20100,60374,164301,-2856,500,0,57), -- retail
|
||||
-- Cloud Mountain Fortress
|
||||
('Cloud Mountain Fortress -> Fortress North Gate',20101,-54275,89255,-2824,0,0,57), -- retail
|
||||
('Cloud Mountain Fortress -> Fortress South Gate',20102,-52274,93334,-2816,0,0,57), -- retail
|
||||
('Cloud Mountain Fortress -> Gludio Town Square',20103,-14393,123671,-3144,0,0,57), -- retail
|
||||
('Cloud Mountain Fortress -> Oren Town Square',20104,82323,55466,-1480,0,0,57), -- retail
|
||||
('Cloud Mountain Fortress -> The Ant Nest',20105,-9959,176184,-4160,500,0,57), -- retail
|
||||
('Cloud Mountain Fortress -> Windawood Manor',20106,-28327,155125,-3496,500,0,57), -- retail
|
||||
('Cloud Mountain Fortress -> Sea of Spores',20107,64328,26803,-3768,500,0,57), -- retail
|
||||
('Cloud Mountain Fortress -> Ancient Battleground',20108,118509,-4779,-4000,500,0,57), -- retail
|
||||
-- Tanor Fortress
|
||||
('Tanor Fortress -> Fortress North Gate',20109,58923,137789,-1752,0,0,57), -- retail
|
||||
('Tanor Fortress -> Fortress South Gate',20110,61551,141036,-1752,0,0,57), -- retail
|
||||
('Tanor Fortress -> Dion Town Square',20111,19025,145245,-3107,0,0,57), -- retail
|
||||
('Tanor Fortress -> Giran Town Square',20112,81749,149171,-3464,0,0,57), -- retail
|
||||
('Tanor Fortress -> The Ant Nest',20113,-9959,176184,-4160,500,0,57), -- retail
|
||||
('Tanor Fortress -> Windawood Manor',20114,-28327,155125,-3496,500,0,57), -- retail
|
||||
('Tanor Fortress -> Dragon Valley',20115,73024,118485,-3720,500,0,57), -- retail
|
||||
('Tanor Fortress -> Tanor Canyon',20116,60374,164301,-2856,500,0,57), -- retail
|
||||
-- Dragonspine Fortress
|
||||
('Dragonspine Fortress -> Fortress North Gate',20117,12468,93196,-3424,0,0,57), -- retail
|
||||
('Dragonspine Fortress -> Fortress South Gate',20118,10494,96881,-3424,0,0,57), -- retail
|
||||
('Dragonspine Fortress -> Dion Town Square',20119,19025,145245,-3107,0,0,57), -- retail
|
||||
('Dragonspine Fortress -> Oren Town Square',20120,82323,55466,-1480,0,0,57), -- retail
|
||||
('Dragonspine Fortress -> The Ant Nest',20121,-9959,176184,-4160,500,0,57), -- retail
|
||||
('Dragonspine Fortress -> Windawood Manor',20122,-28327,155125,-3496,500,0,57), -- retail
|
||||
('Dragonspine Fortress -> Sea of Spores',20123,64328,26803,-3768,500,0,57), -- retail
|
||||
('Dragonspine Fortress -> Ancient Battleground',20124,118509,-4779,-4000,500,0,57), -- retail
|
||||
-- Antharas Fortress
|
||||
('Antharas Fortress -> Fortress West Gate',20125,77834,89176,-2880,0,0,57), -- retail
|
||||
('Antharas Fortress -> Fortress East Gate',20126,80441,92831,-2880,0,0,57), -- retail
|
||||
('Antharas Fortress -> Oren Town Square',20127,82323,55466,-1480,0,0,57), -- retail
|
||||
('Antharas Fortress -> Giran Town Square',20128,81749,149171,-3464,0,0,57), -- retail
|
||||
('Antharas Fortress -> Sea of Spores',20129,64328,26803,-3768,500,0,57), -- retail
|
||||
('Antharas Fortress -> Ancient Battleground',20130,118509,-4779,-4000,500,0,57), -- retail
|
||||
('Antharas Fortress -> Dragon Valley',20131,73024,118485,-3720,500,0,57), -- retail
|
||||
('Antharas Fortress -> Tanor Canyon',20132,60374,164301,-2856,500,0,57), -- retail
|
||||
-- Western Fortress
|
||||
('Western Fortress -> Fortress North Gate',20133,112356,-17243,-992,0,0,57), -- retail
|
||||
('Western Fortress -> Fortress South Gate',20134,110349,-13288,-922,0,0,57), -- retail
|
||||
('Western Fortress -> Aden Town Square',20135,147450,28081,-2294,0,0,57), -- retail
|
||||
('Western Fortress -> Oren Town Square',20136,82323,55466,-1480,0,0,57), -- retail
|
||||
('Western Fortress -> Goddard Town Square',20137,147728,-56331,-2776,0,0,57), -- retail
|
||||
('Western Fortress -> Enchanted Valley, Northern Region',20138,104426,33746,-3825,500,0,57), -- retail
|
||||
('Western Fortress -> Blazing Swamp',20139,155310,-16339,-3320,500,0,57), -- retail
|
||||
('Western Fortress -> Ancient Battleground',20140,118509,-4779,-4000,500,0,57), -- retail
|
||||
('Western Fortress -> Entrance to the Forge of the Gods',20141,169018,-116303,-2432,500,0,57), -- retail
|
||||
('Western Fortress -> Wall of Argos',20142,165054,-47861,-3560,500,0,57), -- retail
|
||||
('Western Fortress -> The Giant\'s Cave Upper Layer',20143,183985,61424,-3992,500,0,57), -- retail
|
||||
('Western Fortress -> The Giant\'s Cave Lower Layer',20144,191754,56760,-7624,500,0,57), -- retail
|
||||
-- Hunter's Fortress
|
||||
('Hunters Fortress -> Fortress North Gate',20145,124180,93249,-2144,0,0,57), -- retail
|
||||
('Hunters Fortress -> Fortress South Gate',20146,126155,97124,-2144,0,0,57), -- retail
|
||||
('Hunters Fortress -> Aden Town Square',20147,147450,28081,-2294,0,0,57), -- retail
|
||||
('Hunters Fortress -> Giran Town Square',20148,81749,149171,-3464,0,0,57), -- retail
|
||||
('Hunters Fortress -> Enchanted Valley, Northern Region',20149,104426,33746,-3825,500,0,57), -- retail
|
||||
('Hunters Fortress -> Blazing Swamp',20150,155310,-16339,-3320,500,0,57), -- retail
|
||||
('Hunters Fortress -> Dragon Valley',20151,73024,118485,-3720,500,0,57), -- retail
|
||||
('Hunters Fortress -> Tanor Canyon',20152,60374,164301,-2856,500,0,57), -- retail
|
||||
('Hunters Fortress -> The Giant\'s Cave Upper Layer',20153,183985,61424,-3992,500,0,57), -- retail
|
||||
('Hunters Fortress -> The Giant\'s Cave Lower Layer',20154,191754,56760,-7624,500,0,57), -- retail
|
||||
-- Aaru Fortress
|
||||
('Aaru Fortress -> Fortress North Gate',20155,73205,183893,-2584,0,0,57), -- retail
|
||||
('Aaru Fortress -> Fortress South Gate',20156,72822,188128,-2584,0,0,57), -- retail
|
||||
('Aaru Fortress -> Heine Town Square',20157,111455,219400,-3546,0,0,57), -- retail
|
||||
('Aaru Fortress -> Giran Town Square',20158,81749,149171,-3464,0,0,57), -- retail
|
||||
('Aaru Fortress -> Inside the Garden of Eva',20159,82693,242220,-6712,500,0,57), -- retail
|
||||
('Aaru Fortress -> The Center of Alligator Island',20160,113708,178387,-3232,500,0,57), -- retail
|
||||
('Aaru Fortress -> Dragon Valley',20161,73024,118485,-3720,500,0,57), -- retail
|
||||
('Aaru Fortress -> Tanor Canyon',20162,60374,164301,-2856,500,0,57), -- retail
|
||||
-- Demon Fortress
|
||||
('Demon Fortress -> Fortress West Gate',20163,98920,-56423,-624,0,0,57), -- retail
|
||||
('Demon Fortress -> Fortress East Gate',20164,102390,-54320,-632,0,0,57), -- retail
|
||||
('Demon Fortress -> Rune Town Square',20165,43889,-49101,-792,0,0,57), -- retail
|
||||
('Demon Fortress -> Goddard Town Square',20166,147728,-56331,-2776,0,0,57), -- retail
|
||||
('Demon Fortress -> Swamp of Screams',20167,69340,-50203,-3314,500,0,57), -- retail
|
||||
('Demon Fortress -> Valley of Saints',20168,65307,-71445,-3696,500,0,57), -- retail
|
||||
('Demon Fortress -> Entrance to the Forge of the Gods',20169,169018,-116303,-2432,500,0,57), -- retail
|
||||
('Demon Fortress -> Wall of Argos',20170,165054,-47861,-3560,500,0,57), -- retail
|
||||
('Demon Fortress -> Shyeed\'s Cavern',20171,76911,-55295,-5824,500,0,57), -- retail
|
||||
-- Monastic Fortress
|
||||
('Monastic Fortress -> Fortress North Gate',20172,72388,-96770,-1424,0,0,57), -- retail
|
||||
('Monastic Fortress -> Fortress South Gate',20173,71937,-92600,-1416,0,0,57), -- retail
|
||||
('Monastic Fortress -> Rune Town Square',20174,43889,-49101,-792,0,0,57), -- retail
|
||||
('Monastic Fortress -> Schuttgart Town Square',20175,87379,-142322,-1336,0,0,57), -- retail
|
||||
('Monastic Fortress -> Swamp of Screams',20176,69340,-50203,-3314,500,0,57), -- retail
|
||||
('Monastic Fortress -> Valley of Saints',20177,65307,-71445,-3696,500,0,57), -- retail
|
||||
('Monastic Fortress -> Den of Evil',20178,68693,-110438,-1946,500,0,57), -- retail
|
||||
('Monastic Fortress -> Ice Merchant Cabin',20179,113903,-108752,-860,500,0,57), -- retail
|
||||
('Monastic Fortress -> Shyeed\'s Cavern',20180,76911,-55295,-5824,500,0,57); -- retail
|
||||
|
@ -1,18 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `territories` (
|
||||
`territoryId` INT NOT NULL DEFAULT 0,
|
||||
`castleId` INT NOT NULL DEFAULT 0,
|
||||
`fortId` INT NOT NULL DEFAULT 0,
|
||||
`ownedWardIds` varchar(30) NOT NULL DEFAULT '',
|
||||
PRIMARY KEY (`territoryId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||
|
||||
INSERT IGNORE INTO `territories` VALUES
|
||||
(81,1,101,'81;'),
|
||||
(82,2,103,'82;'),
|
||||
(83,3,104,'83;'),
|
||||
(84,4,105,'84;'),
|
||||
(85,5,106,'85;'),
|
||||
(86,6,108,'86;'),
|
||||
(87,7,109,'87;'),
|
||||
(88,8,110,'88;'),
|
||||
(89,9,111,'89;');
|
@ -1,5 +0,0 @@
|
||||
CREATE TABLE IF NOT EXISTS `territory_registrations` (
|
||||
`castleId` int(1) NOT NULL DEFAULT '0',
|
||||
`registeredId` int(11) NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`castleId`,`registeredId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
@ -1,269 +0,0 @@
|
||||
DROP TABLE IF EXISTS `territory_spawnlist`;
|
||||
CREATE TABLE `territory_spawnlist` (
|
||||
`castleId` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
`id` smallint(3) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`npcId` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`x` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`y` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`z` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`heading` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`spawnType` tinyint(1) unsigned NOT NULL DEFAULT '0', -- 0-spawned when castle have owner, 1-fortress spawns in TW time, 2-Castle spawns in TW time, 3-Ward spawn places
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `id` (`castleId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||
|
||||
INSERT INTO `territory_spawnlist` VALUES
|
||||
(1,null,36481,-15094,124113,-3119,50948,0),
|
||||
(1,null,36490,-83576,243280,-3728,24400,0),
|
||||
(1,null,36490,-82680,150016,-3120,15012,0),
|
||||
(1,null,36490,-81784,155264,-3168,-17076,0),
|
||||
(1,null,36490,-15160,124252,-3104,-32864,0),
|
||||
(1,null,36490,-12212,122648,-3088,15520,0),
|
||||
(1,null,36499,-51598,156183,-2057,0,1),
|
||||
(1,null,36510,-51461,156032,-2057,53667,1),
|
||||
(1,null,36512,-51724,156038,-2057,18636,1),
|
||||
(1,null,36512,-51498,156317,-2057,20943,1),
|
||||
(1,null,36512,-51455,156203,-2057,20777,1),
|
||||
(1,null,36512,-51582,156032,-2057,19828,1),
|
||||
(1,null,36513,-51499,156231,-2057,25955,1),
|
||||
(1,null,36572,-17780,109260,-2499,0,3),
|
||||
(1,null,36573,-17860,109260,-2499,0,3),
|
||||
(1,null,36574,-17940,109260,-2499,0,3),
|
||||
(1,null,36575,-18020,109260,-2499,0,3),
|
||||
(1,null,36576,-18100,109260,-2499,0,3),
|
||||
(1,null,36577,-18180,109260,-2499,0,3),
|
||||
(1,null,36578,-18260,109260,-2499,0,3),
|
||||
(1,null,36579,-18340,109260,-2499,0,3),
|
||||
(1,null,36580,-18420,109260,-2499,0,3),
|
||||
(2,null,36491,17746,144214,-3040,54112,0),
|
||||
(2,null,36491,19342,145065,-3104,30304,0),
|
||||
(2,null,36482,19326,144888,-3096,32768,0),
|
||||
(2,null,36500,15962,187144,-2927,0,1),
|
||||
(2,null,36516,16099,186993,-2927,53667,1),
|
||||
(2,null,36518,15836,186999,-2927,18636,1),
|
||||
(2,null,36518,16062,187278,-2927,20943,1),
|
||||
(2,null,36518,16105,187164,-2927,20777,1),
|
||||
(2,null,36518,15978,186993,-2927,19828,1),
|
||||
(2,null,36519,16061,187192,-2927,25955,1),
|
||||
(2,null,36572,21740,160500,-2693,0,3),
|
||||
(2,null,36573,21820,160500,-2693,0,3),
|
||||
(2,null,36574,21900,160500,-2693,0,3),
|
||||
(2,null,36575,21980,160500,-2693,0,3),
|
||||
(2,null,36576,22060,160500,-2693,0,3),
|
||||
(2,null,36577,22140,160500,-2693,0,3),
|
||||
(2,null,36578,22220,160500,-2693,0,3),
|
||||
(2,null,36579,22300,160500,-2693,0,3),
|
||||
(2,null,36580,22380,160500,-2693,0,3),
|
||||
(3,null,36492,79336,148128,-3536,53248,0),
|
||||
(3,null,36492,81896,149584,-3464,36864,0),
|
||||
(3,null,36492,80544,152328,-3528,24576,0),
|
||||
(3,null,36483,82176,149616,-3464,53247,0),
|
||||
(3,null,36501,126042,124693,-2589,0,1),
|
||||
(3,null,36522,126179,124542,-2589,53667,1),
|
||||
(3,null,36524,125916,124548,-2589,18636,1),
|
||||
(3,null,36524,126142,124827,-2589,20943,1),
|
||||
(3,null,36524,126185,124713,-2589,20777,1),
|
||||
(3,null,36524,126058,124542,-2589,19828,1),
|
||||
(3,null,36525,126141,124741,-2589,25955,1),
|
||||
(3,null,36572,116675,144760,-2566,0,3),
|
||||
(3,null,36573,116675,144840,-2566,0,3),
|
||||
(3,null,36574,116675,144920,-2566,0,3),
|
||||
(3,null,36575,116675,145000,-2566,0,3),
|
||||
(3,null,36576,116675,145080,-2566,0,3),
|
||||
(3,null,36577,116675,145160,-2566,0,3),
|
||||
(3,null,36578,116675,145240,-2566,0,3),
|
||||
(3,null,36579,116675,145320,-2566,0,3),
|
||||
(3,null,36580,116675,145400,-2566,0,3),
|
||||
(4,null,36493,9423,17746,-4572,46256,0),
|
||||
(4,null,36493,43889,50558,-3058,1448,0),
|
||||
(4,null,36493,80131,53464,-1558,57784,0),
|
||||
(4,null,36493,82682,55320,-1523,27280,0),
|
||||
(4,null,36484,83100,55304,-1527,13028,0),
|
||||
(4,null,36502,72006,5374,-3048,0,1),
|
||||
(4,null,36528,72143,5223,-3048,53667,1),
|
||||
(4,null,36530,71880,5229,-3048,18636,1),
|
||||
(4,null,36530,72106,5508,-3048,20943,1),
|
||||
(4,null,36530,72149,5394,-3048,20777,1),
|
||||
(4,null,36530,72022,5223,-3048,19828,1),
|
||||
(4,null,36531,72105,5422,-3048,25955,1),
|
||||
(4,null,36572,82750,36840,-2293,0,3),
|
||||
(4,null,36573,82750,36920,-2293,0,3),
|
||||
(4,null,36574,82750,37000,-2293,0,3),
|
||||
(4,null,36575,82750,37080,-2293,0,3),
|
||||
(4,null,36576,82750,37160,-2293,0,3),
|
||||
(4,null,36577,82750,37240,-2293,0,3),
|
||||
(4,null,36578,82750,37320,-2293,0,3),
|
||||
(4,null,36579,82750,37400,-2293,0,3),
|
||||
(4,null,36580,82750,37480,-2293,0,3),
|
||||
(5,null,36494,146504,28508,-2272,61440,0),
|
||||
(5,null,36494,-115129,44196,512,25360,0),
|
||||
(5,null,36494,116820,75504,-2727,20000,0),
|
||||
(5,null,36494,148408,28516,-2272,36884,0),
|
||||
(5,null,36485,146432,28346,-2271,60062,0),
|
||||
(5,null,36503,153877,56094,-3258,0,1),
|
||||
(5,null,36534,154014,55943,-3258,53667,1),
|
||||
(5,null,36536,153751,55949,-3258,18636,1),
|
||||
(5,null,36536,153977,56228,-3258,20943,1),
|
||||
(5,null,36536,154020,56114,-3258,20777,1),
|
||||
(5,null,36536,153893,55943,-3258,19828,1),
|
||||
(5,null,36537,153976,56142,-3258,25955,1),
|
||||
(5,null,36572,147130,4330,-343,0,3),
|
||||
(5,null,36573,147210,4330,-343,0,3),
|
||||
(5,null,36574,147290,4330,-343,0,3),
|
||||
(5,null,36575,147370,4330,-343,0,3),
|
||||
(5,null,36576,147450,4330,-343,0,3),
|
||||
(5,null,36577,147530,4330,-343,0,3),
|
||||
(5,null,36578,147610,4330,-343,0,3),
|
||||
(5,null,36579,147690,4330,-343,0,3),
|
||||
(5,null,36580,147770,4330,-343,0,3),
|
||||
(6,null,36486,115363,218730,-3664,27931,0),
|
||||
(6,null,36495,115487,218850,-3664,16256,0),
|
||||
(6,null,36495,107412,217848,-3675,13120,0),
|
||||
(6,null,36504,119510,205517,-3337,0,1),
|
||||
(6,null,36540,119647,205366,-3337,53667,1),
|
||||
(6,null,36542,119384,205372,-3337,18636,1),
|
||||
(6,null,36542,119610,205651,-3337,20943,1),
|
||||
(6,null,36542,119653,205537,-3337,20777,1),
|
||||
(6,null,36542,119526,205366,-3337,19828,1),
|
||||
(6,null,36543,119609,205565,-3337,25955,1),
|
||||
(6,null,36572,115730,249280,-789,0,3),
|
||||
(6,null,36573,115810,249280,-789,0,3),
|
||||
(6,null,36574,115890,249280,-789,0,3),
|
||||
(6,null,36575,115970,249280,-789,0,3),
|
||||
(6,null,36576,116050,249280,-789,0,3),
|
||||
(6,null,36577,116130,249280,-789,0,3),
|
||||
(6,null,36578,116210,249280,-789,0,3),
|
||||
(6,null,36579,116290,249280,-789,0,3),
|
||||
(6,null,36580,116370,249280,-789,0,3),
|
||||
(7,null,36496,145704,-57162,-2983,31777,0),
|
||||
(7,null,36487,145773,-57269,-2983,38241,0),
|
||||
(7,null,36505,160489,-71139,-2864,0,1),
|
||||
(7,null,36546,160626,-71290,-2864,53667,1),
|
||||
(7,null,36548,160363,-71284,-2864,18636,1),
|
||||
(7,null,36548,160589,-71005,-2864,20943,1),
|
||||
(7,null,36548,160633,-71119,-2864,20777,1),
|
||||
(7,null,36548,160505,-71290,-2864,19828,1),
|
||||
(7,null,36549,160588,-71091,-2864,25955,1),
|
||||
(7,null,36572,147210,-48500,-2279,0,3),
|
||||
(7,null,36573,147290,-48500,-2279,0,3),
|
||||
(7,null,36574,147370,-48500,-2279,0,3),
|
||||
(7,null,36575,147450,-48500,-2279,0,3),
|
||||
(7,null,36576,147530,-48500,-2279,0,3),
|
||||
(7,null,36577,147610,-48500,-2279,0,3),
|
||||
(7,null,36578,147690,-48500,-2279,0,3),
|
||||
(7,null,36579,147770,-48500,-2279,0,3),
|
||||
(7,null,36580,147850,-48500,-2279,0,3),
|
||||
(8,null,36497,38267,-47995,894,400,0),
|
||||
(8,null,36488,38207,-47929,894,990,0),
|
||||
(8,null,36506,70409,-60006,-2784,0,1),
|
||||
(8,null,36552,70546,-60157,-2784,53667,1),
|
||||
(8,null,36554,70283,-60151,-2784,18636,1),
|
||||
(8,null,36554,70509,-59872,-2784,20943,1),
|
||||
(8,null,36554,70553,-59986,-2784,20777,1),
|
||||
(8,null,36554,70425,-60157,-2784,19828,1),
|
||||
(8,null,36555,70508,-59958,-2784,25955,1),
|
||||
(8,null,36554,18585,-49402,-568,0,2),
|
||||
(8,null,36554,18586,-49365,-568,0,2),
|
||||
(8,null,36554,18531,-49443,-568,0,2),
|
||||
(8,null,36554,18532,-49372,-568,0,2),
|
||||
(8,null,36554,18483,-49444,-568,0,2),
|
||||
(8,null,36554,18586,-49443,-568,0,2),
|
||||
(8,null,36554,18585,-48935,-568,0,2),
|
||||
(8,null,36554,18584,-48894,-568,0,2),
|
||||
(8,null,36554,18529,-48863,-568,0,2),
|
||||
(8,null,36554,18480,-48864,-568,0,2),
|
||||
(8,null,36554,18585,-48857,-568,0,2),
|
||||
(8,null,36550,18535,-48922,-568,0,2),
|
||||
(8,null,36554,18287,-50008,-704,0,2),
|
||||
(8,null,36554,18302,-49963,-704,0,2),
|
||||
(8,null,36554,18315,-49911,-704,0,2),
|
||||
(8,null,36554,18323,-49867,-704,0,2),
|
||||
(8,null,36554,18330,-49819,-704,0,2),
|
||||
(8,null,36554,18337,-49773,-704,0,2),
|
||||
(8,null,36554,18272,-48261,-704,0,2),
|
||||
(8,null,36554,18296,-48307,-704,0,2),
|
||||
(8,null,36554,18323,-48416,-704,0,2),
|
||||
(8,null,36554,18311,-48360,-704,0,2),
|
||||
(8,null,36554,18339,-48519,-704,0,2),
|
||||
(8,null,36554,18330,-48466,-704,0,2),
|
||||
(8,null,36554,17205,-46601,-576,7312,2),
|
||||
(8,null,36554,17375,-46759,-576,7312,2),
|
||||
(8,null,36554,17241,-46635,-576,7312,2),
|
||||
(8,null,36554,17274,-46667,-576,7312,2),
|
||||
(8,null,36554,17308,-46696,-576,7312,2),
|
||||
(8,null,36554,17341,-46728,-576,7312,2),
|
||||
(8,null,36554,17668,-46786,-576,7800,2),
|
||||
(8,null,36554,17412,-46791,-576,7312,2),
|
||||
(8,null,36554,17602,-46807,-576,7800,2),
|
||||
(8,null,36554,17657,-46869,-576,7800,2),
|
||||
(8,null,36554,17568,-46823,-576,7312,2),
|
||||
(8,null,36554,17637,-46794,-576,7312,2),
|
||||
(8,null,36554,17640,-46900,-576,7312,2),
|
||||
(8,null,36554,17674,-46835,-576,7312,2),
|
||||
(8,null,36554,17685,-46806,-560,7312,2),
|
||||
(8,null,36554,15591,-49581,-992,16432,2),
|
||||
(8,null,36553,15542,-49633,-960,16080,2),
|
||||
(8,null,36554,15456,-49569,-976,16432,2),
|
||||
(8,null,36554,15500,-49572,-984,16432,2),
|
||||
(8,null,36553,15589,-49487,-1032,16576,2),
|
||||
(8,null,36554,15467,-49527,-1000,16432,2),
|
||||
(8,null,36554,15547,-49576,-984,16432,2),
|
||||
(8,null,36554,15511,-49530,-1000,16432,2),
|
||||
(8,null,36554,15558,-49535,-1008,16432,2),
|
||||
(8,null,36554,15602,-49539,-1008,16432,2),
|
||||
(8,null,36553,15636,-49489,-1024,16576,2),
|
||||
(8,null,36553,15457,-49477,-1024,16576,2),
|
||||
(8,null,36553,15499,-49479,-1024,16576,2),
|
||||
(8,null,36553,15546,-49482,-1024,16576,2),
|
||||
(8,null,36553,15478,-49430,-1048,16456,2),
|
||||
(8,null,36553,15522,-49432,-1048,16456,2),
|
||||
(8,null,36553,15570,-49437,-1048,16456,2),
|
||||
(8,null,36553,15613,-49441,-1048,16456,2),
|
||||
(8,null,36598,15919,-49314,-1056,0,2),
|
||||
(8,null,36553,15485,-48680,-960,52584,2),
|
||||
(8,null,36553,15624,-48809,-1024,51080,2),
|
||||
(8,null,36554,15547,-48718,-984,50960,2),
|
||||
(8,null,36554,15591,-48714,-984,50960,2),
|
||||
(8,null,36554,15500,-48722,-984,50960,2),
|
||||
(8,null,36554,15456,-48725,-976,50960,2),
|
||||
(8,null,36554,15588,-48757,-1008,50960,2),
|
||||
(8,null,36554,15544,-48761,-1000,50960,2),
|
||||
(8,null,36554,15497,-48765,-992,50960,2),
|
||||
(8,null,36554,15453,-48768,-992,50960,2),
|
||||
(8,null,36553,15443,-48826,-1024,51080,2),
|
||||
(8,null,36553,15583,-48814,-1024,51080,2),
|
||||
(8,null,36553,15536,-48818,-1024,51080,2),
|
||||
(8,null,36553,15611,-48859,-1048,50960,2),
|
||||
(8,null,36553,15492,-48822,-1024,51080,2),
|
||||
(8,null,36553,15567,-48864,-1040,50960,2),
|
||||
(8,null,36553,15519,-48867,-1048,50960,2),
|
||||
(8,null,36553,15476,-48870,-1048,50960,2),
|
||||
(8,null,36572,11300,-49470,-536,0,3),
|
||||
(8,null,36573,11300,-49390,-536,0,3),
|
||||
(8,null,36574,11300,-49310,-536,0,3),
|
||||
(8,null,36575,11300,-49230,-536,0,3),
|
||||
(8,null,36579,11300,-49150,-536,0,3),
|
||||
(8,null,36578,11300,-49070,-536,0,3),
|
||||
(8,null,36577,11300,-48990,-536,0,3),
|
||||
(8,null,36576,11300,-48910,-536,0,3),
|
||||
(8,null,36580,11300,-48830,-536,0,3),
|
||||
(9,null,36498,-44132,-112276,-240,40000,0),
|
||||
(9,null,36498,89373,-141535,-1543,10250,0),
|
||||
(9,null,36498,116176,-181560,-1360,0,0),
|
||||
(9,null,36489,89271,-141421,-1543,7643,0),
|
||||
(9,null,36507,108263,-140769,-2961,0,1),
|
||||
(9,null,36558,108400,-140920,-2961,53667,1),
|
||||
(9,null,36560,108137,-140914,-2961,18636,1),
|
||||
(9,null,36560,108363,-140635,-2961,20943,1),
|
||||
(9,null,36560,108406,-140749,-2961,20777,1),
|
||||
(9,null,36560,108279,-140920,-2961,19828,1),
|
||||
(9,null,36561,108362,-140721,-2961,25955,1),
|
||||
(9,null,36572,77310,-152560,-547,0,3),
|
||||
(9,null,36573,77390,-152560,-547,0,3),
|
||||
(9,null,36574,77470,-152560,-547,0,3),
|
||||
(9,null,36575,77550,-152560,-547,0,3),
|
||||
(9,null,36576,77630,-152560,-547,0,3),
|
||||
(9,null,36577,77710,-152560,-547,0,3),
|
||||
(9,null,36578,77790,-152560,-547,0,3),
|
||||
(9,null,36579,77870,-152560,-547,0,3),
|
||||
(9,null,36580,77950,-152560,-547,0,3);
|
2
L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/game/z14_random_spawn.sql
vendored
Normal file
2
L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/game/z14_random_spawn.sql
vendored
Normal file
File diff suppressed because one or more lines are too long
9
L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/game/z15_raidboss_interlude.sql
vendored
Normal file
9
L2J_Mobius_CT_0_Interlude/dist/db_installer/sql/game/z15_raidboss_interlude.sql
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -178,8 +178,6 @@
|
||||
<admin command="admin_play_sound" accessLevel="100" />
|
||||
<admin command="admin_atmosphere" accessLevel="100" />
|
||||
<admin command="admin_atmosphere_menu" accessLevel="100" />
|
||||
<admin command="admin_set_displayeffect" accessLevel="100" />
|
||||
<admin command="admin_set_displayeffect_menu" accessLevel="100" />
|
||||
<admin command="admin_event_trigger" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SPEED -->
|
||||
@ -189,15 +187,6 @@
|
||||
<admin command="admin_speed" accessLevel="30" />
|
||||
<admin command="admin_speed_menu" accessLevel="30" />
|
||||
|
||||
<!-- ADMIN ELEMENT -->
|
||||
<admin command="admin_setlh" accessLevel="100" />
|
||||
<admin command="admin_setlc" accessLevel="100" />
|
||||
<admin command="admin_setll" accessLevel="100" />
|
||||
<admin command="admin_setlg" accessLevel="100" />
|
||||
<admin command="admin_setlb" accessLevel="100" />
|
||||
<admin command="admin_setlw" accessLevel="100" />
|
||||
<admin command="admin_setls" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN ENCHANT -->
|
||||
<admin command="admin_seteh" accessLevel="100" />
|
||||
<admin command="admin_setec" accessLevel="100" />
|
||||
@ -213,7 +202,6 @@
|
||||
<admin command="admin_seten" accessLevel="100" />
|
||||
<admin command="admin_setun" accessLevel="100" />
|
||||
<admin command="admin_setba" accessLevel="100" />
|
||||
<admin command="admin_setbe" accessLevel="100" />
|
||||
<admin command="admin_enchant" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN EVENTS -->
|
||||
@ -234,25 +222,6 @@
|
||||
<admin command="admin_fight_calculator_show" accessLevel="100" />
|
||||
<admin command="admin_fcs" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN FORT SIEGE -->
|
||||
<admin command="admin_fortsiege" accessLevel="100" />
|
||||
<admin command="admin_add_fortattacker" accessLevel="100" />
|
||||
<admin command="admin_list_fortsiege_clans" accessLevel="100" />
|
||||
<admin command="admin_clear_fortsiege_list" accessLevel="100" />
|
||||
<admin command="admin_spawn_fortdoors" accessLevel="100" />
|
||||
<admin command="admin_endfortsiege" accessLevel="100" />
|
||||
<admin command="admin_startfortsiege" accessLevel="100" />
|
||||
<admin command="admin_setfort" accessLevel="100" />
|
||||
<admin command="admin_removefort" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN ITEM MALL AND GAME POINTS -->
|
||||
<admin command="admin_add_game_points" accessLevel="100" />
|
||||
<admin command="admin_count_game_points" accessLevel="100" />
|
||||
<admin command="admin_gamepoints" accessLevel="100" />
|
||||
<admin command="admin_set_game_points" accessLevel="100" />
|
||||
<admin command="admin_subtract_game_points" accessLevel="100" />
|
||||
<admin command="admin_reload_itemmall" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN GEODATA -->
|
||||
<admin command="admin_geo_pos" accessLevel="30" />
|
||||
<admin command="admin_geo_spawn_pos" accessLevel="30" />
|
||||
@ -275,12 +244,6 @@
|
||||
<admin command="admin_snoop" accessLevel="30" />
|
||||
<admin command="admin_gmchat_menu" accessLevel="30" />
|
||||
|
||||
<!-- ADMIN GRACIA SEEDS -->
|
||||
<admin command="admin_gracia_seeds" accessLevel="100" />
|
||||
<admin command="admin_kill_tiat" accessLevel="100" />
|
||||
<admin command="admin_set_sodstate" accessLevel="100" />
|
||||
<admin command="admin_set_soistage" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN GRAND BOSS -->
|
||||
<admin command="admin_grandboss" accessLevel="100" />
|
||||
<admin command="admin_grandboss_skip" accessLevel="100" />
|
||||
@ -291,10 +254,6 @@
|
||||
<!-- ADMIN HEAL -->
|
||||
<admin command="admin_heal" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN HELLBOUND -->
|
||||
<admin command="admin_hellbound_setlevel" accessLevel="100" />
|
||||
<admin command="admin_hellbound" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN HTML -->
|
||||
<admin command="admin_html" accessLevel="100" />
|
||||
<admin command="admin_loadhtml" accessLevel="100" />
|
||||
@ -399,11 +358,6 @@
|
||||
<!-- ADMIN PLEDGE -->
|
||||
<admin command="admin_pledge" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN TRANSFORM -->
|
||||
<admin command="admin_transform" accessLevel="100" />
|
||||
<admin command="admin_untransform" accessLevel="100" />
|
||||
<admin command="admin_transform_menu" accessLevel="100" />
|
||||
|
||||
<!-- PREMIUM SYSTEM -->
|
||||
<admin command="admin_premium_menu" accessLevel="100" />
|
||||
<admin command="admin_premium_add1" accessLevel="100" confirmDlg="true" />
|
||||
@ -431,15 +385,11 @@
|
||||
<admin command="admin_res_monster" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN RIDE -->
|
||||
<admin command="admin_ride_horse" accessLevel="100" />
|
||||
<admin command="admin_ride_bike" accessLevel="100" />
|
||||
<admin command="admin_ride_wyvern" accessLevel="100" />
|
||||
<admin command="admin_ride_strider" accessLevel="100" />
|
||||
<admin command="admin_unride_wyvern" accessLevel="100" />
|
||||
<admin command="admin_unride_strider" accessLevel="100" />
|
||||
<admin command="admin_unride" accessLevel="100" />
|
||||
<admin command="admin_ride_wolf" accessLevel="100" />
|
||||
<admin command="admin_unride_wolf" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN SHOP -->
|
||||
<admin command="admin_buy" accessLevel="100" />
|
||||
@ -547,13 +497,6 @@
|
||||
<admin command="admin_instant_move" accessLevel="30" />
|
||||
<admin command="admin_sendhome" accessLevel="100" confirmDlg="true" />
|
||||
|
||||
<!-- ADMIN TERRITORY WAR -->
|
||||
<admin command="admin_territory_war" accessLevel="100" />
|
||||
<admin command="admin_territory_war_time" accessLevel="100" />
|
||||
<admin command="admin_territory_war_start" accessLevel="100" />
|
||||
<admin command="admin_territory_war_end" accessLevel="100" />
|
||||
<admin command="admin_territory_wards_list" accessLevel="100" />
|
||||
|
||||
<!-- ADMIN TEST -->
|
||||
<admin command="admin_stats" accessLevel="100" />
|
||||
<admin command="admin_skill_test" accessLevel="100" />
|
||||
|
@ -1,12 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/BotReportPunishments.xsd">
|
||||
<!-- To add a range punishments (E.G., a debuff which apply if you have 150 reports or more, use negative neededReportCount -->
|
||||
<punishment neededReportCount="25" skillId="6038" skillLevel="1" sysMessageId="2473" />
|
||||
<punishment neededReportCount="75" skillId="6039" skillLevel="1" sysMessageId="2474" />
|
||||
<punishment neededReportCount="100" skillId="6055" skillLevel="1" sysMessageId="2477" />
|
||||
<punishment neededReportCount="125" skillId="6056" skillLevel="1" sysMessageId="2478" />
|
||||
<punishment neededReportCount="150" skillId="6057" skillLevel="1" sysMessageId="2480" />
|
||||
<punishment neededReportCount="175" skillId="6057" skillLevel="1" sysMessageId="2480" />
|
||||
<!-- Range punisment -->
|
||||
<punishment neededReportCount="-150" skillId="6040" skillLevel="1" />
|
||||
</list>
|
@ -231,10 +231,6 @@ AltSubClassWithoutQuests = False
|
||||
# Default: False
|
||||
AltSubclassEverywhere = False
|
||||
|
||||
# Allow player to learn transformations without quest.
|
||||
# Default: False
|
||||
AltTransformationWithoutQuest = False
|
||||
|
||||
# Fee to remove Transfer skills.
|
||||
# Default: 10000000
|
||||
FeeDeleteTransferSkills = 10000000
|
||||
@ -265,8 +261,8 @@ RestorePetOnReconnect = True
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enables vitality system
|
||||
# Default: True
|
||||
EnableVitality = True
|
||||
# Default: False
|
||||
EnableVitality = False
|
||||
|
||||
# Do you want players to recover their vitality when they reconnect?
|
||||
# This is calculated with the time they've been offline
|
||||
@ -428,8 +424,6 @@ AugmentationNGSkillChance = 15
|
||||
AugmentationMidSkillChance = 30
|
||||
AugmentationHighSkillChance = 45
|
||||
AugmentationTopSkillChance = 60
|
||||
# Accessory augmentation skills currently disabled
|
||||
AugmentationAccSkillChance = 0
|
||||
|
||||
# This controls the chance to get a base stat modifier in the augmentation process.
|
||||
# Notes:
|
||||
@ -459,14 +453,11 @@ RetailLikeAugmentationMidGradeChance = 55,35,7,3
|
||||
RetailLikeAugmentationHighGradeChance = 55,35,7,3
|
||||
RetailLikeAugmentationTopGradeChance = 55,35,7,3
|
||||
|
||||
# This will enable retail like accessory augmentation, but then you cant change skill chances for accessory augments
|
||||
RetailLikeAugmentationAccessory = True
|
||||
|
||||
# List of non-augmentable items, currently contains only Grand Boss jewels
|
||||
# Shadow, common, time-limited, hero, pvp, wear items are hardcoded, as well as all etcitems.
|
||||
# Rods can't be augmented too.
|
||||
# Default: 6656,6657,6658,6659,6660,6661,6662,8191,10170,10314
|
||||
AugmentationBlackList = 6656,6657,6658,6659,6660,6661,6662,8191,10170,10314,13740,13741,13742,13743,13744,13745,13746,13747,13748,14592,14593,14594,14595,14596,14597,14598,14599,14600,14664,14665,14666,14667,14668,14669,14670,14671,14672,14801,14802,14803,14804,14805,14806,14807,14808,14809,15282,15283,15284,15285,15286,15287,15288,15289,15290,15291,15292,15293,15294,15295,15296,15297,15298,15299,16025,16026,21712,22173,22174,22175
|
||||
# Default: 6656,6657,6658,6659,6660,6661,6662,8191
|
||||
AugmentationBlackList = 6656,6657,6658,6659,6660,6661,6662,8191
|
||||
|
||||
# Allows alternative augmentation of PvP items.
|
||||
# Default: False
|
||||
@ -705,7 +696,7 @@ StartingSP = 0
|
||||
# Big values do not cause critical errors, although only 16 digits are visible in the inventory
|
||||
# (example: 3,372,036,854,775,807 is visible out of 9,223,372,036,854,775,807)
|
||||
# Default: 99900000000 (99 bilion and 900 milion)
|
||||
MaxAdena = 3000000000000000
|
||||
MaxAdena = 2000000000
|
||||
|
||||
# Enable herbs auto pickup.
|
||||
# Default: False
|
||||
@ -846,10 +837,6 @@ DisableTutorial = False
|
||||
# Default: True
|
||||
ExpertisePenalty = True
|
||||
|
||||
# Player can in client define his own key mapping and for save it must be stored server side.
|
||||
# Default: True
|
||||
StoreCharUiSettings = True
|
||||
|
||||
# Character name restriction
|
||||
# Disallow characters to have a name which contains the words.
|
||||
# Split them with ",". Example: announcements,announce...
|
||||
|
@ -9,4 +9,3 @@ AllowElf = True
|
||||
AllowDarkElf = True
|
||||
AllowOrc = True
|
||||
AllowDwarf = True
|
||||
AllowKamael = True
|
||||
|
@ -93,5 +93,4 @@ TalkingIsland,-82687,243157,-3734;\
|
||||
Dwarven,116551,-182493,-1525;\
|
||||
Orc,-44211,-113521,-241;\
|
||||
DarkElven,12428,16551,-4588;\
|
||||
Elven,45873,49288,-3064;\
|
||||
Kamael,-116934,46616,368;
|
||||
Elven,45873,49288,-3064;
|
||||
|
@ -1,8 +0,0 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Hellbound Status Voice Command
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# This option will enable using of the voice commands .hellbound
|
||||
# for retrieving information about current Hellbound level and trust.
|
||||
# Default: False
|
||||
HellboundStatus = False
|
@ -372,7 +372,6 @@ ClanLevel7Cost = 10000
|
||||
ClanLevel8Cost = 20000
|
||||
ClanLevel9Cost = 40000
|
||||
ClanLevel10Cost = 40000
|
||||
ClanLevel11Cost = 75000
|
||||
|
||||
# Number of clan members needed to increase clan level.
|
||||
ClanLevel6Requirement = 30
|
||||
@ -380,7 +379,6 @@ ClanLevel7Requirement = 50
|
||||
ClanLevel8Requirement = 80
|
||||
ClanLevel9Requirement = 120
|
||||
ClanLevel10Requirement = 140
|
||||
ClanLevel11Requirement = 170
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Other
|
||||
|
@ -1,277 +0,0 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Fort Siege Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Standard Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Length of siege before the count down (in minutes).
|
||||
SiegeLength = 60
|
||||
|
||||
# This defines how long you need to wait until the suspicious merchant will spawn after siege ends (in minutes).
|
||||
# Keep in mind when merchant spawns, the fort can be immediately sieged.
|
||||
# Default: 180
|
||||
SuspiciousMerchantRespawnDelay = 180
|
||||
|
||||
# This defines how long you have to kill all commanders once you kill the first one (in minutes).
|
||||
# After that time (if all commanders not killed) all commanders and doors get respawned.
|
||||
CountDownLength = 10
|
||||
|
||||
# Max number of flags per clan.
|
||||
MaxFlags = 1
|
||||
|
||||
# Minimum clan level needed to sign up.
|
||||
SiegeClanMinLevel = 4
|
||||
|
||||
#Max number of clans that can register on each side.
|
||||
AttackerMaxClans = 500
|
||||
|
||||
# This option, if enabled, will enable register Fortress Siege to Castle owners just in territory.
|
||||
# Default: True
|
||||
JustToTerritory = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Fortress Commander Spawns
|
||||
# ---------------------------------------------------------------------------
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
# Name - fortress name
|
||||
# N - number - 1: Archer Comander
|
||||
# - 2: Guard Commander
|
||||
# - 3: Support Unit Commander
|
||||
# - 4: Main Machine - not supported yet, used General
|
||||
# - 5: General - not used yet, will be used once control room is supported
|
||||
# Please keep the correct order of commanders, otherwise client will show wrong occupied barracks.
|
||||
# Control room (main machine) currently emulated in client.
|
||||
# x,y,z - coords
|
||||
# heading
|
||||
# npc_id - id of template
|
||||
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
# Name - fortress name
|
||||
# N - number
|
||||
# x,y,z - coords
|
||||
# flag_id - id of combat flag
|
||||
|
||||
# Shanty Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
ShantyCommander1 = -52435,155188,-1768,20000,35683
|
||||
ShantyCommander2 = -52128,157752,-2024,29864,35677
|
||||
ShantyCommander3 = -53944,155433,-2024,7304,35680
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
ShantyFlag1 = -53086,156493,-1896,9819
|
||||
ShantyFlag2 = -53054,156605,-1896,9819
|
||||
ShantyFlag3 = -53032,156689,-1896,9819
|
||||
|
||||
# Southern Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
SouthernCommander1 = -21328,218864,-2952,0,35719
|
||||
SouthernCommander2 = -22992,218160,-3208,0,35713
|
||||
SouthernCommander3 = -21520,221504,-3208,45328,35716
|
||||
SouthernCommander4 = -22728,221746,-3200,33168,35721
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
SouthernFlag1 = -22386,219917,-3079,9819
|
||||
SouthernFlag2 = -22386,219798,-3079,9819
|
||||
SouthernFlag3 = -22386,219679,-3079,9819
|
||||
|
||||
# Hive Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
HiveCommander1 = 15152,188128,-2640,0,35752
|
||||
HiveCommander2 = 17984,187536,-2896,45056,35746
|
||||
HiveCommander3 = 16016,189520,-2888,0,35749
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
HiveFlag1 = 16685,188358,-2770,9819
|
||||
HiveFlag2 = 16761,188306,-2770,9819
|
||||
HiveFlag3 = 16847,188257,-2770,9819
|
||||
|
||||
# Valley Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
ValleyCommander1 = 124768,121856,-2296,0,35788
|
||||
ValleyCommander2 = 124299,123614,-2552,49192,35782
|
||||
ValleyCommander3 = 124768,124640,-2552,54480,35785
|
||||
ValleyCommander4 = 128048,123344,-2536,35028,35790
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
ValleyFlag1 = 125970,123653,-2429,9819
|
||||
ValleyFlag2 = 126092,123650,-2429,9819
|
||||
ValleyFlag3 = 126205,123648,-2429,9819
|
||||
|
||||
# Ivory Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
IvoryCommander1 = 72400,2896,-2760,0,35821
|
||||
IvoryCommander2 = 73788,5479,-3016,55136,35815
|
||||
IvoryCommander3 = 71264,4144,-3008,0,35818
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
IvoryFlag1 = 72565,4436,-2888,9819
|
||||
IvoryFlag2 = 72660,4512,-2888,9819
|
||||
IvoryFlag3 = 72759,4594,-2888,9819
|
||||
|
||||
# Narsell Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
NarsellCommander1 = 154704,53856,-2968,0,35852
|
||||
NarsellCommander2 = 155576,56592,-3224,59224,35846
|
||||
NarsellCommander3 = 153328,54848,-3216,5512,35849
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
NarsellFlag1 = 154567,55397,-3097,9819
|
||||
NarsellFlag2 = 154650,55493,-3097,9819
|
||||
NarsellFlag3 = 154715,55587,-3097,9819
|
||||
|
||||
# Bayou Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
BayouCommander1 = 188624,38240,-3128,0,35888
|
||||
BayouCommander2 = 188160,39920,-3376,49284,35882
|
||||
BayouCommander3 = 188626,41066,-3376,57140,35885
|
||||
BayouCommander4 = 191846,39764,-3368,33020,35890
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
BayouFlag1 = 189838,40063,-3253,9819
|
||||
BayouFlag2 = 189931,40060,-3253,9819
|
||||
BayouFlag3 = 190052,40062,-3253,9819
|
||||
|
||||
# White Sands Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
WhiteSandsCommander1 = 117216,205648,-3048,0,35921
|
||||
WhiteSandsCommander2 = 118880,203568,-3304,5396,35915
|
||||
WhiteSandsCommander3 = 118560,206560,-3304,48872,35918
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
WhiteSandsFlag1 = 118640,205151,-3176,9819
|
||||
WhiteSandsFlag2 = 118690,205062,-3176,9819
|
||||
WhiteSandsFlag3 = 118742,204968,-3176,9819
|
||||
|
||||
# Borderland Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
BorderlandCommander1 = 159664,-72224,-2584,0,35957
|
||||
BorderlandCommander2 = 157968,-71659,-2832,59020,35951
|
||||
BorderlandCommander3 = 157312,-70640,-2832,0,35954
|
||||
BorderlandCommander4 = 160194,-68688,-2824,43272,35959
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
BorderlandFlag1 = 158817,-70229,-2708,9819
|
||||
BorderlandFlag2 = 158883,-70145,-2708,9819
|
||||
BorderlandFlag3 = 158946,-70045,-2708,9819
|
||||
|
||||
# Swamp Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
SwampCommander1 = 71264,-60512,-2504,0,35995
|
||||
SwampCommander2 = 71248,-62352,-2752,12388,35989
|
||||
SwampCommander3 = 68688,-59648,-2752,56012,35992
|
||||
SwampCommander4 = 68005,-60866,-2744,5424,35997
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
SwampFlag1 = 69829,-61087,-2629,9819
|
||||
SwampFlag2 = 69979,-61144,-2632,9819
|
||||
SwampFlag3 = 70069,-61182,-2629,9819
|
||||
|
||||
# Archaic Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
ArchaicCommander1 = 109856,-142640,-2672,0,36028
|
||||
ArchaicCommander2 = 109600,-139735,-2928,62612,36022
|
||||
ArchaicCommander3 = 108223,-142209,-2920,8524,36025
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
ArchaicFlag1 = 109142,-141243,-2801,9819
|
||||
ArchaicFlag2 = 109184,-141129,-2801,9819
|
||||
ArchaicFlag3 = 109214,-141016,-2801,9819
|
||||
|
||||
# Floran Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
FloranCommander1 = 6528,151872,-2608,0,36064
|
||||
FloranCommander2 = 7006,148242,-2856,32768,36058
|
||||
FloranCommander3 = 4384,150992,-2856,0,36061
|
||||
FloranCommander4 = 5246,152319,-2848,49151,36066
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
FloranFlag1 = 5293,149624,-2732,9819
|
||||
FloranFlag2 = 5306,149743,-2732,9819
|
||||
FloranFlag3 = 5299,149870,-2732,9819
|
||||
|
||||
# Cloud Mountain Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
CloudMountainCommander1 = -55248,90496,-2536,0,36102
|
||||
CloudMountainCommander2 = -55791,91856,-2792,0,36096
|
||||
CloudMountainCommander3 = -54168,92604,-2784,49196,36099
|
||||
CloudMountainCommander4 = -50913,92259,-2776,41188,36104
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
CloudMountainFlag1 = -53354,91537,-2664,9819
|
||||
CloudMountainFlag2 = -53237,91537,-2664,9819
|
||||
CloudMountainFlag3 = -53112,91537,-2664,9819
|
||||
|
||||
# Tanor Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
TanorCommander1 = 58480,139648,-1464,0,36135
|
||||
TanorCommander2 = 61864,139257,-1728,46896,36129
|
||||
TanorCommander3 = 59436,140834,-1720,47296,36132
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
TanorFlag1 = 60225,139771,-1597,9819
|
||||
TanorFlag2 = 60362,139742,-1597,9819
|
||||
TanorFlag3 = 60467,139727,-1597,9819
|
||||
|
||||
# DragonSpine Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
DragonspineCommander1 = 13184,94928,-3144,0,36166
|
||||
DragonspineCommander2 = 9472,94992,-3392,0,36160
|
||||
DragonspineCommander3 = 12829,96214,-3392,49152,36163
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
DragonspineFlag1 = 11459,95308,-3264,9819
|
||||
DragonspineFlag2 = 11527,95301,-3264,9819
|
||||
DragonspineFlag3 = 11623,95311,-3264,9819
|
||||
|
||||
# Antharas Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
AntharasCommander1 = 79440,88752,-2600,0,36202
|
||||
AntharasCommander2 = 77262,91704,-2856,5112,36196
|
||||
AntharasCommander3 = 80929,90510,-2856,40192,36199
|
||||
AntharasCommander4 = 80755,89002,-2848,21984,36204
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
AntharasFlag1 = 79470,91299,-2728,9819
|
||||
AntharasFlag2 = 79528,91187,-2728,9819
|
||||
AntharasFlag3 = 79580,91095,-2728,9819
|
||||
|
||||
# Western Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
WesternCommander1 = 113481,-16058,-712,0,36240
|
||||
WesternCommander2 = 109872,-16624,-968,16384,36234
|
||||
WesternCommander3 = 112601,-13933,-960,49152,36237
|
||||
WesternCommander4 = 113929,-14801,-960,32768,36242
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
WesternFlag1 = 111280,-14820,-839,9819
|
||||
WesternFlag2 = 111380,-14820,-839,9819
|
||||
WesternFlag3 = 111480,-14820,-839,9819
|
||||
|
||||
# Hunters Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
HuntersCommander1 = 123232,94400,-1856,0,36278
|
||||
HuntersCommander2 = 122688,95760,-2112,0,36272
|
||||
HuntersCommander3 = 124305,96528,-2104,49151,36275
|
||||
HuntersCommander4 = 127632,96240,-2096,40892,36280
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
HuntersFlag1 = 125155,95455,-1984,9819
|
||||
HuntersFlag2 = 125255,95455,-1984,9819
|
||||
HuntersFlag3 = 125355,95455,-1984,9819
|
||||
|
||||
# Aaru Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
AaruCommander1 = 74288,186912,-2296,0,36311
|
||||
AaruCommander2 = 71392,184720,-2552,5528,36305
|
||||
AaruCommander3 = 71542,186410,-2552,55088,36308
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
AaruFlag1 = 73029,186303,-2424,9819
|
||||
AaruFlag2 = 72923,186247,-2424,9819
|
||||
AaruFlag3 = 72833,186178,-2424,9819
|
||||
|
||||
# Demon Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
DemonCommander1 = 100752,-53664,-360,0,36347
|
||||
DemonCommander2 = 100688,-57440,-616,16384,36341
|
||||
DemonCommander3 = 99484,-54027,-616,0,36344
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
DemonFlag1 = 100400,-55401,-488,9819
|
||||
DemonFlag2 = 100400,-55301,-488,9819
|
||||
DemonFlag3 = 100400,-55201,-488,9819
|
||||
|
||||
# Monastic Fortress
|
||||
# Commander syntax: NameCommanderN = x,y,z,heading,npc_id
|
||||
MonasticCommander1 = 73680,-95456,-1144,0,36385
|
||||
MonasticCommander2 = 70189,-93935,-1400,61576,36379
|
||||
MonasticCommander3 = 73831,-94119,-1400,45536,36382
|
||||
# Flag syntax: NameFlagN = x,y,z,flag_id
|
||||
MonasticFlag1 = 72174,-94437,-1271,9819
|
||||
MonasticFlag2 = 72294,-94481,-1271,9819
|
||||
MonasticFlag3 = 72401,-94526,-1271,9819
|
@ -327,12 +327,6 @@ WarehouseCacheTime = 15
|
||||
# Default: True
|
||||
AllowRefund = True
|
||||
|
||||
# Default: True
|
||||
AllowMail = True
|
||||
|
||||
# Default: True
|
||||
AllowAttachments = True
|
||||
|
||||
# If True player can try on weapon and armor in shop.
|
||||
# Default: True
|
||||
AllowWear = True
|
||||
@ -679,91 +673,6 @@ CustomMultisellLoad = True
|
||||
CustomBuyListLoad = True
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Teleport Bookmark Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Consume item for teleporting.
|
||||
# No item consume: -1
|
||||
# Default: 20033 (Teleport Flag)
|
||||
BookmarkConsumeItemId = 20033
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Birthday Event Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Gift sent with Mail System
|
||||
# Default: 22187
|
||||
AltBirthdayGift = 22187
|
||||
|
||||
# Mail Subject
|
||||
AltBirthdayMailSubject = Happy Birthday!
|
||||
|
||||
# Mail Content
|
||||
# $c1: Player name
|
||||
# $s1: Age
|
||||
AltBirthdayMailText = Hello Adventurer!! Seeing as you're one year older now, I thought I would send you some birthday cheer :) Please find your birthday pack attached. May these gifts bring you joy and happiness on this very special day.\n\nSincerely, Alegria
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Handy's Block Checker Event Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable the Handy's Block Checker event
|
||||
# Default: True
|
||||
EnableBlockCheckerEvent = True
|
||||
|
||||
# Minimum number of members on each team before
|
||||
# be able to start the event
|
||||
# Min: 1
|
||||
# Max: 6
|
||||
# Retail: 2
|
||||
BlockCheckerMinTeamMembers = 2
|
||||
|
||||
# Fair play
|
||||
# Players can choose what team to play. However, by
|
||||
# enabling this property to true, the teams will be
|
||||
# balanced in the teleport to the arena
|
||||
HBCEFairPlay = True
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Hellbound Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# If true, players can enter the Hellbound island without any quests
|
||||
# Default: False
|
||||
HellboundWithoutQuest = False
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Bot Report Button settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Enable the bot report button on the desired game servers.
|
||||
# Default: True
|
||||
EnableBotReportButton = True
|
||||
|
||||
# Report points restart hour. Format: HH:MM ( PM mode, 24 hours clock)
|
||||
# Default: 00:00
|
||||
BotReportPointsResetHour = 00:00
|
||||
|
||||
# Delay between reports from the same player (in minutes)
|
||||
# Default: 30 minutes
|
||||
BotReportDelay = 30
|
||||
|
||||
# Allow players from the same clan to report the same bot
|
||||
# Default: False
|
||||
AllowReportsFromSameClanMembers = False
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Prime-Shop Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Enable Prime-Shop.
|
||||
# Must enable in L2.ini client file.
|
||||
# Default: False
|
||||
EnablePrimeShop = False
|
||||
|
||||
# Item Id used by prime shop.
|
||||
# Default: -1
|
||||
PrimeShopItemId = -1
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Developer Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
@ -1,67 +0,0 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# Gracia Seeds Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Seed of Destruction Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Count of Kills which needed for Stage 2
|
||||
# Default: 10
|
||||
TiatKillCountForNextState = 10
|
||||
|
||||
# Length of Stage 2 before the Defense state starts (in minutes).
|
||||
# Default: 720min (12h)
|
||||
Stage2Length = 720
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Tiat Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Min. level for player
|
||||
# Default: 75
|
||||
MinLevel = 75
|
||||
|
||||
# Min. members in command channel
|
||||
# Default: 36
|
||||
MinPlayers = 36
|
||||
|
||||
# Min. members in command channel
|
||||
# Default: 45
|
||||
MaxPlayers = 45
|
||||
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Seed of Infinity Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# Count of Kills Ekimus which needed for open Stage 3.
|
||||
# Default: 5
|
||||
EkimusKillCount = 5
|
||||
|
||||
# Attack to Erosion Hall - min and max players
|
||||
# Default: 18
|
||||
MinEroAttPlayers = 18
|
||||
# Default: 27
|
||||
MaxEroAttPlayers = 27
|
||||
|
||||
# Defence to Erosion Hall - min and max players
|
||||
# Default: 18
|
||||
MinEroDefPlayers = 18
|
||||
# Seed of Infinity Settings
|
||||
# Default: 27
|
||||
MaxEroDefPlayers = 27
|
||||
|
||||
# Attack to Heart Hall - min and max players
|
||||
# Default: 18
|
||||
MinHeaAttPlayers = 18
|
||||
# Default: 27
|
||||
MaxHeaAttPlayers = 27
|
||||
|
||||
# Defence to Heart Hall - min and max players
|
||||
# Default: 18
|
||||
MinHeaDefPlayers = 18
|
||||
# Default: 27
|
||||
MaxHeaDefPlayers = 27
|
@ -73,16 +73,3 @@ IntervalOfFrintezzaSpawn = 48
|
||||
|
||||
# Random interval. Range 1-192
|
||||
RandomOfFrintezzaSpawn = 8
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Beleth
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Interval time of Beleth. Value is hour. Range 1-480. Retail: 192
|
||||
IntervalOfBelethSpawn = 120
|
||||
|
||||
# Random interval. Range 1-192. Retail: 148
|
||||
RandomOfBelethSpawn = 24
|
||||
|
||||
#Minimal count of players for enter to Beleth. Retail: 36
|
||||
BelethMinPlayers = 36
|
@ -60,8 +60,8 @@ AltOlyNonClassedParticipants = 9
|
||||
AltOlyRegistrationDisplayNumber = 100
|
||||
|
||||
# Olympiad battle winner reward for class and non-class games.
|
||||
# Default: 13722
|
||||
AltOlyBattleRewItem = 13722
|
||||
# Default: 6651
|
||||
AltOlyBattleRewItem = 6651
|
||||
|
||||
# Default: 50
|
||||
AltOlyClassedRewItemCount = 50
|
||||
@ -70,8 +70,8 @@ AltOlyClassedRewItemCount = 50
|
||||
AltOlyNonClassedRewItemCount = 40
|
||||
|
||||
# ItemId for this reward.
|
||||
# Default: 13722
|
||||
AltOlyCompRewItem = 13722
|
||||
# Default: 6651
|
||||
AltOlyCompRewItem = 6651
|
||||
|
||||
# Rate to exchange points to reward item.
|
||||
# Default: 1
|
||||
|
@ -19,8 +19,8 @@ ListOfPetItems = 2375,3500,3501,3502,4422,4423,4424,4425,6648,6649,6650
|
||||
|
||||
# Lists of items which should NEVER be dropped (note, Adena will
|
||||
# never be dropped) whether on this list or not
|
||||
# Default: 57,1147,425,1146,461,10,2368,7,6,2370,2369,6842,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,7694,8181,5575,7694,9388,9389,9390
|
||||
ListOfNonDroppableItems = 57,1147,425,1146,461,10,2368,7,6,2370,2369,6842,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,7694,8181,5575,7694,9388,9389,9390
|
||||
# Default: 57,1147,425,1146,461,10,2368,7,6,2370,2369,6842,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,7694,8181,5575,7694
|
||||
ListOfNonDroppableItems = 57,1147,425,1146,461,10,2368,7,6,2370,2369,6842,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,7694,8181,5575,7694
|
||||
|
||||
# Default: 6
|
||||
MinimumPKRequiredToDrop = 6
|
||||
|
@ -1,338 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/SecondaryAuth.xsd">
|
||||
<enabled>false</enabled> <!-- Enable Secondary Authentication on Character Select -->
|
||||
<maxAttempts>5</maxAttempts> <!-- Max Attempts for Second Auth Password (0 to disable) -->
|
||||
<banTime>480</banTime> <!-- Ban time if user reach maxAttempts (in minutes) -->
|
||||
<recoveryLink>http://www.google.com</recoveryLink> <!-- Password Recovery Link -->
|
||||
<forbiddenPasswords> <!-- List of forbidden passwords -->
|
||||
<!-- Client checks for the entries below so you should not remove or edit any of these just add more -->
|
||||
<password>000000</password>
|
||||
<password>111111</password>
|
||||
<password>222222</password>
|
||||
<password>333333</password>
|
||||
<password>444444</password>
|
||||
<password>555555</password>
|
||||
<password>666666</password>
|
||||
<password>777777</password>
|
||||
<password>888888</password>
|
||||
<password>999999</password>
|
||||
<password>123456</password>
|
||||
<password>234567</password>
|
||||
<password>345678</password>
|
||||
<password>456789</password>
|
||||
<password>567890</password>
|
||||
<password>012345</password>
|
||||
<password>098765</password>
|
||||
<password>987654</password>
|
||||
<password>876543</password>
|
||||
<password>765432</password>
|
||||
<password>543210</password>
|
||||
<password>010101</password>
|
||||
<password>020202</password>
|
||||
<password>030303</password>
|
||||
<password>040404</password>
|
||||
<password>050505</password>
|
||||
<password>060606</password>
|
||||
<password>070707</password>
|
||||
<password>080808</password>
|
||||
<password>090909</password>
|
||||
<password>121212</password>
|
||||
<password>131313</password>
|
||||
<password>141414</password>
|
||||
<password>151515</password>
|
||||
<password>161616</password>
|
||||
<password>171717</password>
|
||||
<password>181818</password>
|
||||
<password>191919</password>
|
||||
<password>101010</password>
|
||||
<password>212121</password>
|
||||
<password>232323</password>
|
||||
<password>242424</password>
|
||||
<password>252525</password>
|
||||
<password>262626</password>
|
||||
<password>272727</password>
|
||||
<password>282828</password>
|
||||
<password>292929</password>
|
||||
<password>202020</password>
|
||||
<password>313131</password>
|
||||
<password>323232</password>
|
||||
<password>343434</password>
|
||||
<password>353535</password>
|
||||
<password>363636</password>
|
||||
<password>373737</password>
|
||||
<password>383838</password>
|
||||
<password>393939</password>
|
||||
<password>303030</password>
|
||||
<password>404040</password>
|
||||
<password>414141</password>
|
||||
<password>424242</password>
|
||||
<password>434343</password>
|
||||
<password>454545</password>
|
||||
<password>464646</password>
|
||||
<password>474747</password>
|
||||
<password>484848</password>
|
||||
<password>494949</password>
|
||||
<password>505050</password>
|
||||
<password>515151</password>
|
||||
<password>525252</password>
|
||||
<password>535353</password>
|
||||
<password>545454</password>
|
||||
<password>565656</password>
|
||||
<password>575757</password>
|
||||
<password>585858</password>
|
||||
<password>595959</password>
|
||||
<password>606060</password>
|
||||
<password>616161</password>
|
||||
<password>626262</password>
|
||||
<password>636363</password>
|
||||
<password>646464</password>
|
||||
<password>656565</password>
|
||||
<password>676767</password>
|
||||
<password>686868</password>
|
||||
<password>696969</password>
|
||||
<password>707070</password>
|
||||
<password>717171</password>
|
||||
<password>727272</password>
|
||||
<password>737373</password>
|
||||
<password>747474</password>
|
||||
<password>757575</password>
|
||||
<password>767676</password>
|
||||
<password>787878</password>
|
||||
<password>797979</password>
|
||||
<password>808080</password>
|
||||
<password>818181</password>
|
||||
<password>828282</password>
|
||||
<password>838383</password>
|
||||
<password>848484</password>
|
||||
<password>858585</password>
|
||||
<password>868686</password>
|
||||
<password>878787</password>
|
||||
<password>898989</password>
|
||||
<password>909090</password>
|
||||
<password>919191</password>
|
||||
<password>929292</password>
|
||||
<password>939393</password>
|
||||
<password>949494</password>
|
||||
<password>959595</password>
|
||||
<password>969696</password>
|
||||
<password>979797</password>
|
||||
<password>989898</password>
|
||||
<password>0000000</password>
|
||||
<password>1111111</password>
|
||||
<password>2222222</password>
|
||||
<password>3333333</password>
|
||||
<password>4444444</password>
|
||||
<password>5555555</password>
|
||||
<password>6666666</password>
|
||||
<password>7777777</password>
|
||||
<password>8888888</password>
|
||||
<password>9999999</password>
|
||||
<password>0123456</password>
|
||||
<password>1234567</password>
|
||||
<password>2345678</password>
|
||||
<password>3456789</password>
|
||||
<password>4567890</password>
|
||||
<password>0987654</password>
|
||||
<password>9876543</password>
|
||||
<password>8765432</password>
|
||||
<password>7654321</password>
|
||||
<password>6543210</password>
|
||||
<password>0101010</password>
|
||||
<password>0202020</password>
|
||||
<password>0303030</password>
|
||||
<password>0404040</password>
|
||||
<password>0505050</password>
|
||||
<password>0606060</password>
|
||||
<password>0707070</password>
|
||||
<password>0808080</password>
|
||||
<password>0909090</password>
|
||||
<password>1212121</password>
|
||||
<password>1313131</password>
|
||||
<password>1414141</password>
|
||||
<password>1515151</password>
|
||||
<password>1616161</password>
|
||||
<password>1717171</password>
|
||||
<password>1818181</password>
|
||||
<password>1919191</password>
|
||||
<password>1010101</password>
|
||||
<password>2020202</password>
|
||||
<password>2121212</password>
|
||||
<password>2323232</password>
|
||||
<password>2424242</password>
|
||||
<password>2525252</password>
|
||||
<password>2626262</password>
|
||||
<password>2727272</password>
|
||||
<password>2828282</password>
|
||||
<password>2929292</password>
|
||||
<password>3030303</password>
|
||||
<password>3131313</password>
|
||||
<password>3232323</password>
|
||||
<password>3434343</password>
|
||||
<password>3535353</password>
|
||||
<password>3636363</password>
|
||||
<password>3737373</password>
|
||||
<password>3838383</password>
|
||||
<password>3939393</password>
|
||||
<password>4040404</password>
|
||||
<password>4141414</password>
|
||||
<password>4242424</password>
|
||||
<password>4343434</password>
|
||||
<password>4545454</password>
|
||||
<password>4646464</password>
|
||||
<password>4747474</password>
|
||||
<password>4848484</password>
|
||||
<password>4949494</password>
|
||||
<password>5050505</password>
|
||||
<password>5151515</password>
|
||||
<password>5252525</password>
|
||||
<password>5353535</password>
|
||||
<password>5454545</password>
|
||||
<password>5656565</password>
|
||||
<password>5757575</password>
|
||||
<password>5858585</password>
|
||||
<password>5959595</password>
|
||||
<password>6060606</password>
|
||||
<password>6161616</password>
|
||||
<password>6262626</password>
|
||||
<password>6363636</password>
|
||||
<password>6464646</password>
|
||||
<password>6565656</password>
|
||||
<password>6767676</password>
|
||||
<password>6868686</password>
|
||||
<password>6969696</password>
|
||||
<password>7070707</password>
|
||||
<password>7171717</password>
|
||||
<password>7272727</password>
|
||||
<password>7373737</password>
|
||||
<password>7474747</password>
|
||||
<password>7575757</password>
|
||||
<password>7676767</password>
|
||||
<password>7878787</password>
|
||||
<password>7979797</password>
|
||||
<password>8080808</password>
|
||||
<password>8181818</password>
|
||||
<password>8282828</password>
|
||||
<password>8383838</password>
|
||||
<password>8484848</password>
|
||||
<password>8585858</password>
|
||||
<password>8686868</password>
|
||||
<password>8787878</password>
|
||||
<password>8989898</password>
|
||||
<password>9090909</password>
|
||||
<password>9191919</password>
|
||||
<password>9292929</password>
|
||||
<password>9393939</password>
|
||||
<password>9494949</password>
|
||||
<password>9595959</password>
|
||||
<password>9696969</password>
|
||||
<password>9797979</password>
|
||||
<password>9898989</password>
|
||||
<password>00000000</password>
|
||||
<password>11111111</password>
|
||||
<password>22222222</password>
|
||||
<password>33333333</password>
|
||||
<password>44444444</password>
|
||||
<password>55555555</password>
|
||||
<password>66666666</password>
|
||||
<password>77777777</password>
|
||||
<password>88888888</password>
|
||||
<password>99999999</password>
|
||||
<password>12345678</password>
|
||||
<password>23456789</password>
|
||||
<password>34567890</password>
|
||||
<password>01234567</password>
|
||||
<password>98765432</password>
|
||||
<password>87654321</password>
|
||||
<password>76543210</password>
|
||||
<password>01010101</password>
|
||||
<password>02020202</password>
|
||||
<password>03030303</password>
|
||||
<password>04040404</password>
|
||||
<password>05050505</password>
|
||||
<password>06060606</password>
|
||||
<password>07070707</password>
|
||||
<password>08080808</password>
|
||||
<password>09090909</password>
|
||||
<password>10101010</password>
|
||||
<password>12121212</password>
|
||||
<password>13131313</password>
|
||||
<password>14141414</password>
|
||||
<password>15151515</password>
|
||||
<password>16161616</password>
|
||||
<password>17171717</password>
|
||||
<password>18181818</password>
|
||||
<password>19191919</password>
|
||||
<password>20202020</password>
|
||||
<password>21212121</password>
|
||||
<password>23232323</password>
|
||||
<password>24242424</password>
|
||||
<password>25252525</password>
|
||||
<password>26262626</password>
|
||||
<password>27272727</password>
|
||||
<password>28282828</password>
|
||||
<password>29292929</password>
|
||||
<password>30303030</password>
|
||||
<password>31313131</password>
|
||||
<password>32323232</password>
|
||||
<password>34343434</password>
|
||||
<password>35353535</password>
|
||||
<password>36363636</password>
|
||||
<password>37373737</password>
|
||||
<password>38383838</password>
|
||||
<password>39393939</password>
|
||||
<password>40404040</password>
|
||||
<password>41414141</password>
|
||||
<password>42424242</password>
|
||||
<password>43434343</password>
|
||||
<password>45454545</password>
|
||||
<password>46464646</password>
|
||||
<password>47474747</password>
|
||||
<password>48484848</password>
|
||||
<password>49494949</password>
|
||||
<password>50505050</password>
|
||||
<password>51515151</password>
|
||||
<password>52525252</password>
|
||||
<password>53535353</password>
|
||||
<password>54545454</password>
|
||||
<password>56565656</password>
|
||||
<password>57575757</password>
|
||||
<password>58585858</password>
|
||||
<password>59595959</password>
|
||||
<password>60606060</password>
|
||||
<password>61616161</password>
|
||||
<password>62626262</password>
|
||||
<password>63636363</password>
|
||||
<password>64646464</password>
|
||||
<password>65656565</password>
|
||||
<password>67676767</password>
|
||||
<password>68686868</password>
|
||||
<password>69696969</password>
|
||||
<password>70707070</password>
|
||||
<password>71717171</password>
|
||||
<password>72727272</password>
|
||||
<password>73737373</password>
|
||||
<password>74747474</password>
|
||||
<password>75757575</password>
|
||||
<password>76767676</password>
|
||||
<password>78787878</password>
|
||||
<password>79797979</password>
|
||||
<password>80808080</password>
|
||||
<password>81818181</password>
|
||||
<password>82828282</password>
|
||||
<password>83838383</password>
|
||||
<password>84848484</password>
|
||||
<password>85858585</password>
|
||||
<password>86868686</password>
|
||||
<password>87878787</password>
|
||||
<password>89898989</password>
|
||||
<password>90909090</password>
|
||||
<password>91919191</password>
|
||||
<password>92929292</password>
|
||||
<password>93939393</password>
|
||||
<password>94949494</password>
|
||||
<password>95959595</password>
|
||||
<password>96969696</password>
|
||||
<password>97979797</password>
|
||||
<password>98989898</password>
|
||||
</forbiddenPasswords>
|
||||
</list>
|
@ -41,8 +41,8 @@ GameserverPort = 7777
|
||||
Driver = org.mariadb.jdbc.Driver
|
||||
|
||||
# Database URL
|
||||
# Default: jdbc:mariadb://localhost/l2jmobiusepilogue?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
||||
URL = jdbc:mariadb://localhost/l2jmobiusepilogue?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
||||
# Default: jdbc:mariadb://localhost/l2jmobiusinterlude?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
||||
URL = jdbc:mariadb://localhost/l2jmobiusinterlude?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
||||
|
||||
# Database user info (default is "root" but it's not recommended)
|
||||
Login = root
|
||||
@ -101,8 +101,8 @@ MaximumOnlineUsers = 2000
|
||||
# Numbers of protocol revisions that server allows to connect.
|
||||
# Delimiter is ;
|
||||
# WARNING: <u><b><font color="red">Changing the protocol revision may result in incompatible communication and many errors in game!</font></b></u>
|
||||
# Default: 152
|
||||
AllowedProtocolRevisions = 152
|
||||
# Default: 746
|
||||
AllowedProtocolRevisions = 746
|
||||
|
||||
# Displays server type next to the server name on character selection.
|
||||
# Notes:
|
||||
|
@ -1,54 +0,0 @@
|
||||
# ---------------------------------------------------------------------------
|
||||
# TerritoryWar Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
# The defaults are set to be retail-like. If you modify any of these settings your server will deviate from being retail-like.
|
||||
# Warning:
|
||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||
|
||||
# ---------------------------------------------------------------------------
|
||||
# Standard Settings
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
# Length of siege before the count down (in minutes).
|
||||
# Default: 120
|
||||
WarLength = 120
|
||||
|
||||
# Clan Minimum level to register.
|
||||
# Default: 0
|
||||
ClanMinLevel = 0
|
||||
|
||||
# Player Minimum level to register.
|
||||
# Default: 40
|
||||
PlayerMinLevel = 40
|
||||
|
||||
# Max number of clans and players that can register for a side.
|
||||
# Default: 500
|
||||
DefenderMaxClans = 500
|
||||
|
||||
# Default: 500
|
||||
DefenderMaxPlayers = 500
|
||||
|
||||
# Is Ward holding players can be attacked and killed in peace zone
|
||||
# Default: False
|
||||
PlayerWithWardCanBeKilledInPeaceZone = False
|
||||
|
||||
# Spawn wards in Castles when Territory War is not in progress
|
||||
# Default: False
|
||||
SpawnWardsWhenTWIsNotInProgress = False
|
||||
|
||||
# Return all wards to their own castle when Territory War starts
|
||||
# Default: False
|
||||
# True: Fixes territory wards not spawn when Territory War starts.
|
||||
ReturnWardsWhenTWStarts = True
|
||||
|
||||
# Territory Badge needed to change nobless
|
||||
# default: 100
|
||||
MinTerritoryBadgeForNobless = 100
|
||||
|
||||
# Territory Badge needed to buy Strider
|
||||
# default: 50
|
||||
MinTerritoryBadgeForStriders = 50
|
||||
|
||||
# Territory Badge needed to buy Guardian's Strider
|
||||
# default: 80
|
||||
MinTerritoryBadgeForBigStrider = 80
|
@ -53,20 +53,6 @@
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>117</id> <!-- fortune_seeker -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="MAGE_GROUP">
|
||||
<id>10</id> <!-- mage -->
|
||||
@ -182,20 +168,6 @@
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>113</id> <!-- titan -->
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="TANKER_GROUP">
|
||||
<id>4</id> <!-- knight -->
|
||||
@ -226,8 +198,6 @@
|
||||
<id>44</id> <!-- orc_fighter -->
|
||||
<id>49</id> <!-- orc_mage -->
|
||||
<id>53</id> <!-- dwarven_fighter -->
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
</category>
|
||||
<category name="SECOND_CLASS_GROUP">
|
||||
<id>1</id> <!-- warrior -->
|
||||
@ -248,8 +218,6 @@
|
||||
<id>50</id> <!-- orc_shaman -->
|
||||
<id>54</id> <!-- scavenger -->
|
||||
<id>56</id> <!-- artisan -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
</category>
|
||||
<category name="THIRD_CLASS_GROUP">
|
||||
<id>2</id> <!-- gladiator -->
|
||||
@ -283,11 +251,6 @@
|
||||
<id>52</id> <!-- warcryer -->
|
||||
<id>55</id> <!-- bounty_hunter -->
|
||||
<id>57</id> <!-- warsmith -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
</category>
|
||||
<category name="FOURTH_CLASS_GROUP">
|
||||
<id>88</id> <!-- duelist -->
|
||||
@ -321,11 +284,6 @@
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
<id>117</id> <!-- fortune_seeker -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="BOUNTY_HUNTER_GROUP">
|
||||
<id>53</id> <!-- dwarven_fighter -->
|
||||
@ -1209,96 +1167,6 @@
|
||||
<id>12780</id> <!-- pet_baby_buffalo -->
|
||||
<id>12781</id> <!-- pet_baby_kukaburo -->
|
||||
<id>12782</id> <!-- pet_baby_cougar -->
|
||||
<id>16025</id> <!-- grown_up_wolf -->
|
||||
<id>13071</id> <!-- decoy1 -->
|
||||
<id>13072</id> <!-- decoy2 -->
|
||||
<id>13073</id> <!-- decoy3 -->
|
||||
<id>13074</id> <!-- decoy4 -->
|
||||
<id>13075</id> <!-- decoy5 -->
|
||||
<id>13076</id> <!-- decoy6 -->
|
||||
<id>14870</id> <!-- divine_beast -->
|
||||
<id>14871</id> <!-- king_of_cat_ep_01 -->
|
||||
<id>14872</id> <!-- king_of_cat_ep_02 -->
|
||||
<id>14873</id> <!-- king_of_cat_ep_03 -->
|
||||
<id>14874</id> <!-- king_of_cat_ep_04 -->
|
||||
<id>14875</id> <!-- king_of_cat_ep_05 -->
|
||||
<id>14876</id> <!-- king_of_cat_ep_06 -->
|
||||
<id>14877</id> <!-- king_of_cat_ep_07 -->
|
||||
<id>14878</id> <!-- king_of_cat_ep_08 -->
|
||||
<id>14879</id> <!-- king_of_cat_ep_09 -->
|
||||
<id>14880</id> <!-- king_of_cat_ep_10 -->
|
||||
<id>14881</id> <!-- king_of_cat_ep_11 -->
|
||||
<id>14882</id> <!-- king_of_cat_ep_12 -->
|
||||
<id>14883</id> <!-- king_of_cat_ep_13 -->
|
||||
<id>14884</id> <!-- king_of_cat_ep_14 -->
|
||||
<id>14885</id> <!-- king_of_cat_ep_15 -->
|
||||
<id>14886</id> <!-- unicorn_magnus_ep_01 -->
|
||||
<id>14887</id> <!-- unicorn_magnus_ep_02 -->
|
||||
<id>14888</id> <!-- unicorn_magnus_ep_03 -->
|
||||
<id>14889</id> <!-- unicorn_magnus_ep_04 -->
|
||||
<id>14890</id> <!-- unicorn_magnus_ep_05 -->
|
||||
<id>14891</id> <!-- unicorn_magnus_ep_06 -->
|
||||
<id>14892</id> <!-- unicorn_magnus_ep_07 -->
|
||||
<id>14893</id> <!-- unicorn_magnus_ep_08 -->
|
||||
<id>14894</id> <!-- unicorn_magnus_ep_09 -->
|
||||
<id>14895</id> <!-- unicorn_magnus_ep_10 -->
|
||||
<id>14896</id> <!-- unicorn_magnus_ep_11 -->
|
||||
<id>14897</id> <!-- unicorn_magnus_ep_12 -->
|
||||
<id>14898</id> <!-- unicorn_magnus_ep_13 -->
|
||||
<id>14899</id> <!-- unicorn_magnus_ep_14 -->
|
||||
<id>14900</id> <!-- unicorn_magnus_ep_15 -->
|
||||
<id>14901</id> <!-- spectral_lord_ep_01 -->
|
||||
<id>14902</id> <!-- spectral_lord_ep_02 -->
|
||||
<id>14903</id> <!-- spectral_lord_ep_03 -->
|
||||
<id>14904</id> <!-- spectral_lord_ep_04 -->
|
||||
<id>14905</id> <!-- spectral_lord_ep_05 -->
|
||||
<id>14906</id> <!-- spectral_lord_ep_06 -->
|
||||
<id>14907</id> <!-- spectral_lord_ep_07 -->
|
||||
<id>14908</id> <!-- spectral_lord_ep_08 -->
|
||||
<id>14909</id> <!-- spectral_lord_ep_09 -->
|
||||
<id>14910</id> <!-- spectral_lord_ep_10 -->
|
||||
<id>14911</id> <!-- spectral_lord_ep_11 -->
|
||||
<id>14912</id> <!-- spectral_lord_ep_12 -->
|
||||
<id>14913</id> <!-- spectral_lord_ep_13 -->
|
||||
<id>14914</id> <!-- spectral_lord_ep_14 -->
|
||||
<id>14915</id> <!-- spectral_lord_ep_15 -->
|
||||
<id>16030</id> <!-- grown_up_wolf_event -->
|
||||
<id>16034</id> <!-- upgrade_baby_buffalo -->
|
||||
<id>16035</id> <!-- upgrade_baby_kukaburo -->
|
||||
<id>16036</id> <!-- upgrade_baby_cougar -->
|
||||
<id>16037</id> <!-- grown_up_wolf_white -->
|
||||
<id>16038</id> <!-- red_wind_strider -->
|
||||
<id>16039</id> <!-- red_star_strider -->
|
||||
<id>16040</id> <!-- red_twilight_strider -->
|
||||
<id>16041</id> <!-- grown_up_wolf_ride -->
|
||||
<id>16042</id> <!-- grown_up_wolf_ride_white -->
|
||||
<id>16043</id> <!-- foxian_wizard_pet -->
|
||||
<id>16044</id> <!-- beast_fighter_pet -->
|
||||
<id>16045</id> <!-- ferret_pet -->
|
||||
<id>16046</id> <!-- fairy_princess_pet -->
|
||||
<id>14916</id> <!-- pailaka_summon_01 -->
|
||||
<id>14917</id> <!-- pailaka_summon_02 -->
|
||||
<id>14918</id> <!-- phoenix -->
|
||||
<id>16050</id> <!-- owl_wizard_pet -->
|
||||
<id>16051</id> <!-- spirit_magician_pet -->
|
||||
<id>16052</id> <!-- toy_knight_pet -->
|
||||
<id>16053</id> <!-- turtle_pet -->
|
||||
<id>16067</id> <!-- deinonychus_pet -->
|
||||
<id>16068</id> <!-- protector_strider -->
|
||||
<id>16071</id> <!-- marguene_pet -->
|
||||
<id>16072</id> <!-- marguene_pet_elite -->
|
||||
<id>1562</id> <!-- br_rose_dzelloff_a -->
|
||||
<id>1563</id> <!-- br_rose_hume_a -->
|
||||
<id>1564</id> <!-- br_rose_lekann_a -->
|
||||
<id>1565</id> <!-- br_rose_liliath_a -->
|
||||
<id>1566</id> <!-- br_rose_laffame_a -->
|
||||
<id>1567</id> <!-- br_rose_maffume_a -->
|
||||
<id>1568</id> <!-- br_rose_dzelloff_b -->
|
||||
<id>1569</id> <!-- br_rose_hume_b -->
|
||||
<id>1570</id> <!-- br_rose_lekann_b -->
|
||||
<id>1571</id> <!-- br_rose_liliath_b -->
|
||||
<id>1572</id> <!-- br_rose_laffame_b -->
|
||||
<id>1573</id> <!-- br_rose_maffume_b -->
|
||||
</category>
|
||||
<category name="KNIGHT_GROUP">
|
||||
<id>4</id> <!-- knight -->
|
||||
@ -1361,35 +1229,12 @@
|
||||
<id>12526</id> <!-- wind_strider -->
|
||||
<id>12527</id> <!-- star_strider -->
|
||||
<id>12528</id> <!-- twilight_strider -->
|
||||
<id>16038</id> <!-- red_wind_strider -->
|
||||
<id>16039</id> <!-- red_star_strider -->
|
||||
<id>16040</id> <!-- red_twilight_strider -->
|
||||
<id>16068</id> <!-- protector_strider -->
|
||||
</category>
|
||||
<category name="STRIDER_GROUP">
|
||||
<id>12526</id> <!-- wind_strider -->
|
||||
<id>12527</id> <!-- star_strider -->
|
||||
<id>12528</id> <!-- twilight_strider -->
|
||||
</category>
|
||||
<category name="RED_STRIDER_GROUP">
|
||||
<id>16038</id> <!-- red_wind_strider -->
|
||||
<id>16039</id> <!-- red_star_strider -->
|
||||
<id>16040</id> <!-- red_twilight_strider -->
|
||||
<id>16068</id> <!-- protector_strider -->
|
||||
</category>
|
||||
<category name="WOLF_GROUP">
|
||||
<id>16030</id> <!-- grown_up_wolf_event -->
|
||||
<id>16037</id> <!-- grown_up_wolf_white -->
|
||||
<id>16041</id> <!-- grown_up_wolf_ride -->
|
||||
<id>16042</id> <!-- grown_up_wolf_ride_white -->
|
||||
</category>
|
||||
<category name="GROWN_UP_WOLF_GROUP">
|
||||
<id>16025</id> <!-- grown_up_wolf -->
|
||||
<id>16030</id> <!-- grown_up_wolf_event -->
|
||||
<id>16037</id> <!-- grown_up_wolf_white -->
|
||||
<id>16041</id> <!-- grown_up_wolf_ride -->
|
||||
<id>16042</id> <!-- grown_up_wolf_ride_white -->
|
||||
</category>
|
||||
<category name="HATCHLING_GROUP">
|
||||
<id>12311</id> <!-- hatchling_of_wind -->
|
||||
<id>12312</id> <!-- hatchling_of_star -->
|
||||
@ -1400,22 +1245,9 @@
|
||||
<id>12781</id> <!-- pet_baby_kukaburo -->
|
||||
<id>12782</id> <!-- pet_baby_cougar -->
|
||||
</category>
|
||||
<category name="UPGRADE_BABY_PET_GROUP">
|
||||
<id>16034</id> <!-- upgrade_baby_buffalo -->
|
||||
<id>16035</id> <!-- upgrade_baby_kukaburo -->
|
||||
<id>16036</id> <!-- upgrade_baby_cougar -->
|
||||
</category>
|
||||
<category name="WYVERN_GROUP">
|
||||
<id>12621</id> <!-- wyvern -->
|
||||
</category>
|
||||
<category name="ALL_WOLF_GROUP">
|
||||
<id>12077</id> <!-- pet_wolf_a -->
|
||||
<id>16025</id> <!-- grown_up_wolf -->
|
||||
<id>16030</id> <!-- grown_up_wolf_event -->
|
||||
<id>16037</id> <!-- grown_up_wolf_white -->
|
||||
<id>16041</id> <!-- grown_up_wolf_ride -->
|
||||
<id>16042</id> <!-- grown_up_wolf_ride_white -->
|
||||
</category>
|
||||
<category name="WOLF">
|
||||
<id>12077</id> <!-- pet_wolf_a -->
|
||||
</category>
|
||||
@ -1433,43 +1265,6 @@
|
||||
<id>12780</id> <!-- pet_baby_buffalo -->
|
||||
<id>12781</id> <!-- pet_baby_kukaburo -->
|
||||
<id>12782</id> <!-- pet_baby_cougar -->
|
||||
<id>16025</id> <!-- grown_up_wolf -->
|
||||
<id>16030</id> <!-- grown_up_wolf_event -->
|
||||
<id>16034</id> <!-- upgrade_baby_buffalo -->
|
||||
<id>16035</id> <!-- upgrade_baby_kukaburo -->
|
||||
<id>16036</id> <!-- upgrade_baby_cougar -->
|
||||
<id>16037</id> <!-- grown_up_wolf_white -->
|
||||
<id>16038</id> <!-- red_wind_strider -->
|
||||
<id>16039</id> <!-- red_star_strider -->
|
||||
<id>16040</id> <!-- red_twilight_strider -->
|
||||
<id>16041</id> <!-- grown_up_wolf_ride -->
|
||||
<id>16042</id> <!-- grown_up_wolf_ride_white -->
|
||||
<id>16043</id> <!-- foxian_wizard_pet -->
|
||||
<id>16044</id> <!-- beast_fighter_pet -->
|
||||
<id>16045</id> <!-- ferret_pet -->
|
||||
<id>16046</id> <!-- fairy_princess_pet -->
|
||||
<id>16050</id> <!-- owl_wizard_pet -->
|
||||
<id>16051</id> <!-- spirit_magician_pet -->
|
||||
<id>16052</id> <!-- toy_knight_pet -->
|
||||
<id>16053</id> <!-- turtle_pet -->
|
||||
<id>16067</id> <!-- deinonychus_pet -->
|
||||
<id>16068</id> <!-- protector_strider -->
|
||||
<id>16071</id> <!-- marguene_pet -->
|
||||
<id>16072</id> <!-- marguene_pet_elite -->
|
||||
<id>1561</id> <!-- br_rudolf_baby_pet_p -->
|
||||
<id>1538</id> <!-- br_rudolf_baby_pet -->
|
||||
<id>1562</id> <!-- br_rose_dzelloff_a -->
|
||||
<id>1563</id> <!-- br_rose_hume_a -->
|
||||
<id>1564</id> <!-- br_rose_lekann_a -->
|
||||
<id>1565</id> <!-- br_rose_liliath_a -->
|
||||
<id>1566</id> <!-- br_rose_laffame_a -->
|
||||
<id>1567</id> <!-- br_rose_maffume_a -->
|
||||
<id>1568</id> <!-- br_rose_dzelloff_b -->
|
||||
<id>1569</id> <!-- br_rose_hume_b -->
|
||||
<id>1570</id> <!-- br_rose_lekann_b -->
|
||||
<id>1571</id> <!-- br_rose_liliath_b -->
|
||||
<id>1572</id> <!-- br_rose_laffame_b -->
|
||||
<id>1573</id> <!-- br_rose_maffume_b -->
|
||||
</category>
|
||||
<category name="ITEM_EQUIP_PET_GROUP">
|
||||
<id>12077</id> <!-- pet_wolf_a -->
|
||||
@ -1482,22 +1277,6 @@
|
||||
<id>12780</id> <!-- pet_baby_buffalo -->
|
||||
<id>12781</id> <!-- pet_baby_kukaburo -->
|
||||
<id>12782</id> <!-- pet_baby_cougar -->
|
||||
<id>16025</id> <!-- grown_up_wolf -->
|
||||
<id>16030</id> <!-- grown_up_wolf_event -->
|
||||
<id>16034</id> <!-- upgrade_baby_buffalo -->
|
||||
<id>16035</id> <!-- upgrade_baby_kukaburo -->
|
||||
<id>16036</id> <!-- upgrade_baby_cougar -->
|
||||
<id>16037</id> <!-- grown_up_wolf_white -->
|
||||
<id>16038</id> <!-- red_wind_strider -->
|
||||
<id>16039</id> <!-- red_star_strider -->
|
||||
<id>16040</id> <!-- red_twilight_strider -->
|
||||
<id>16041</id> <!-- grown_up_wolf_ride -->
|
||||
<id>16042</id> <!-- grown_up_wolf_ride_white -->
|
||||
<id>16068</id> <!-- protector_strider -->
|
||||
<id>16067</id> <!-- deinonychus_pet -->
|
||||
<id>16071</id> <!-- marguene_pet -->
|
||||
<id>16072</id> <!-- marguene_pet_elite -->
|
||||
<id>1561</id> <!-- br_rudolf_baby_pet_p -->
|
||||
</category>
|
||||
<category name="SUBJOB_GROUP_DAGGER">
|
||||
<id>8</id> <!-- treasure_hunter -->
|
||||
@ -1720,44 +1499,6 @@
|
||||
<id>57</id> <!-- warsmith -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
</category>
|
||||
<category name="KAMAEL_ALL_CLASS">
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="KAMAEL_FIRST_CLASS_GROUP">
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
</category>
|
||||
<category name="KAMAEL_SECOND_CLASS_GROUP">
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
</category>
|
||||
<category name="KAMAEL_THIRD_CLASS_GROUP">
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
</category>
|
||||
<category name="KAMAEL_FOURTH_CLASS_GROUP">
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="BEGINNER_FIGHTER">
|
||||
<id>0</id> <!-- fighter -->
|
||||
<id>1</id> <!-- warrior -->
|
||||
@ -1797,15 +1538,6 @@
|
||||
<id>55</id> <!-- bounty_hunter -->
|
||||
<id>56</id> <!-- artisan -->
|
||||
<id>57</id> <!-- warsmith -->
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
</category>
|
||||
<category name="BEGINNER_MAGE">
|
||||
<id>10</id> <!-- mage -->
|
||||
@ -1829,30 +1561,6 @@
|
||||
<id>42</id> <!-- shillien_oracle -->
|
||||
<id>43</id> <!-- shillien_elder -->
|
||||
</category>
|
||||
<category name="KAMAEL_MALE_MAIN_OCCUPATION">
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="KAMAEL_FEMALE_MAIN_OCCUPATION">
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="ARCHER_GROUP">
|
||||
<id>9</id> <!-- hawkeye -->
|
||||
<id>24</id> <!-- silver_ranger -->
|
||||
@ -1880,15 +1588,11 @@
|
||||
<id>113</id> <!-- titan -->
|
||||
<id>117</id> <!-- fortune_seeker -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
</category>
|
||||
<category name="BOW_MASTER">
|
||||
<id>92</id> <!-- sagittarius -->
|
||||
<id>102</id> <!-- moonlight_sentinel -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
</category>
|
||||
<category name="DAGGER_MASTER">
|
||||
<id>93</id> <!-- adventurer -->
|
||||
@ -1911,7 +1615,6 @@
|
||||
<id>98</id> <!-- hierophant -->
|
||||
<id>115</id> <!-- dominator -->
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="SUMMON_MASTER">
|
||||
<id>96</id> <!-- arcana_lord -->
|
||||
@ -1936,7 +1639,6 @@
|
||||
<id>92</id> <!-- sagittarius -->
|
||||
<id>102</id> <!-- moonlight_sentinel -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>93</id> <!-- adventurer -->
|
||||
<id>101</id> <!-- wind_rider -->
|
||||
<id>108</id> <!-- ghost_hunter -->
|
||||
@ -1952,7 +1654,6 @@
|
||||
<id>98</id> <!-- hierophant -->
|
||||
<id>115</id> <!-- dominator -->
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
<id>96</id> <!-- arcana_lord -->
|
||||
<id>104</id> <!-- elemental_master -->
|
||||
<id>111</id> <!-- spectral_master -->
|
||||
@ -1981,9 +1682,6 @@
|
||||
</category>
|
||||
<category name="WEAPON_MASTER2_3">
|
||||
<id>3</id> <!-- warlord -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>46</id> <!-- destroyer -->
|
||||
<id>55</id> <!-- bounty_hunter -->
|
||||
<id>57</id> <!-- warsmith -->
|
||||
@ -1991,19 +1689,14 @@
|
||||
<id>113</id> <!-- titan -->
|
||||
<id>117</id> <!-- fortune_seeker -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
</category>
|
||||
<category name="BOW_MASTER2_3">
|
||||
<id>24</id> <!-- silver_ranger -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>37</id> <!-- phantom_ranger -->
|
||||
<id>9</id> <!-- hawkeye -->
|
||||
<id>92</id> <!-- sagittarius -->
|
||||
<id>102</id> <!-- moonlight_sentinel -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
</category>
|
||||
<category name="DAGGER_MASTER2_3">
|
||||
<id>36</id> <!-- abyss_walker -->
|
||||
@ -2032,14 +1725,12 @@
|
||||
<id>95</id> <!-- soultaker -->
|
||||
</category>
|
||||
<category name="BUFF_MASTER2_3">
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>17</id> <!-- prophet -->
|
||||
<id>51</id> <!-- overlord -->
|
||||
<id>52</id> <!-- warcryer -->
|
||||
<id>98</id> <!-- hierophant -->
|
||||
<id>115</id> <!-- dominator -->
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="SUMMON_MASTER2_3">
|
||||
<id>14</id> <!-- warlock -->
|
||||
@ -2061,21 +1752,15 @@
|
||||
</category>
|
||||
<category name="SUB_GROUP_WARRIOR">
|
||||
<id>3</id> <!-- warlord -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>46</id> <!-- destroyer -->
|
||||
<id>55</id> <!-- bounty_hunter -->
|
||||
<id>57</id> <!-- warsmith -->
|
||||
<id>48</id> <!-- tyrant -->
|
||||
<id>2</id> <!-- gladiator -->
|
||||
<id>89</id> <!-- dreadnought -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>113</id> <!-- titan -->
|
||||
<id>117</id> <!-- fortune_seeker -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>88</id> <!-- duelist -->
|
||||
</category>
|
||||
@ -2092,8 +1777,6 @@
|
||||
<id>92</id> <!-- sagittarius -->
|
||||
<id>102</id> <!-- moonlight_sentinel -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
</category>
|
||||
<category name="SUB_GROUP_KNIGHT">
|
||||
<id>5</id> <!-- paladin -->
|
||||
@ -2137,13 +1820,11 @@
|
||||
<id>52</id> <!-- warcryer -->
|
||||
<id>21</id> <!-- swordsinger -->
|
||||
<id>34</id> <!-- bladedancer -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>98</id> <!-- hierophant -->
|
||||
<id>115</id> <!-- dominator -->
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
<id>100</id> <!-- sword_muse -->
|
||||
<id>107</id> <!-- spectral_dancer -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="SUB_GROUP_HEC">
|
||||
<id>16</id> <!-- bishop -->
|
||||
@ -2221,18 +1902,6 @@
|
||||
<id>34</id> <!-- bladedancer -->
|
||||
<id>107</id> <!-- spectral_dancer -->
|
||||
</category>
|
||||
<category name="SUB_GROUP_KAMAEL">
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
</category>
|
||||
<category name="LIGHT_TANKER_GROUP">
|
||||
<id>5</id> <!-- paladin -->
|
||||
<id>20</id> <!-- temple_knight -->
|
||||
@ -2292,18 +1961,6 @@
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>117</id> <!-- fortune_seeker -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="RECOM_KNIGHT_GROUP">
|
||||
<id>4</id> <!-- knight -->
|
||||
@ -2382,20 +2039,6 @@
|
||||
<id>108</id> <!-- ghost_hunter -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
</category>
|
||||
<category name="RECOM_KAMAEL_GROUP">
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="RECOM_ORCF_GROUP">
|
||||
<id>45</id> <!-- orc_raider -->
|
||||
<id>47</id> <!-- orc_monk -->
|
||||
@ -2411,59 +2054,6 @@
|
||||
<id>115</id> <!-- dominator -->
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
</category>
|
||||
<category name="DEINONYCHUS_PET_GROUP">
|
||||
<id>16067</id> <!-- deinonychus_pet -->
|
||||
<id>16071</id> <!-- marguene_pet -->
|
||||
<id>16072</id> <!-- marguene_pet_elite -->
|
||||
</category>
|
||||
<category name="BEASTFARM_BEAST">
|
||||
<id>18869</id> <!-- alpine_kukaburo_pet -->
|
||||
<id>18870</id> <!-- alpine_cougar_pet -->
|
||||
<id>18871</id> <!-- alpine_buffalo_pet -->
|
||||
<id>18872</id> <!-- alpine_grendel_pet -->
|
||||
<id>18873</id> <!-- alpine_kukaburo_1n -->
|
||||
<id>18874</id> <!-- alpine_kukaburo_2i -->
|
||||
<id>18875</id> <!-- alpine_kukaburo_2a -->
|
||||
<id>18876</id> <!-- alpine_kukaburo_3i -->
|
||||
<id>18877</id> <!-- alpine_kukaburo_3a -->
|
||||
<id>18878</id> <!-- alpine_kukaburo_4i -->
|
||||
<id>18879</id> <!-- alpine_kukaburo_4a -->
|
||||
<id>18880</id> <!-- alpine_cougar_1n -->
|
||||
<id>18881</id> <!-- alpine_cougar_2i -->
|
||||
<id>18882</id> <!-- alpine_cougar_2a -->
|
||||
<id>18883</id> <!-- alpine_cougar_3i -->
|
||||
<id>18884</id> <!-- alpine_cougar_3a -->
|
||||
<id>18885</id> <!-- alpine_cougar_4i -->
|
||||
<id>18886</id> <!-- alpine_cougar_4a -->
|
||||
<id>18887</id> <!-- alpine_buffalo_1n -->
|
||||
<id>18888</id> <!-- alpine_buffalo_2i -->
|
||||
<id>18889</id> <!-- alpine_buffalo_2a -->
|
||||
<id>18890</id> <!-- alpine_buffalo_3i -->
|
||||
<id>18891</id> <!-- alpine_buffalo_3a -->
|
||||
<id>18892</id> <!-- alpine_buffalo_4i -->
|
||||
<id>18893</id> <!-- alpine_buffalo_4a -->
|
||||
<id>18894</id> <!-- alpine_grendel_1n -->
|
||||
<id>18895</id> <!-- alpine_grendel_2i -->
|
||||
<id>18896</id> <!-- alpine_grendel_2a -->
|
||||
<id>18897</id> <!-- alpine_grendel_3i -->
|
||||
<id>18898</id> <!-- alpine_grendel_3a -->
|
||||
<id>18899</id> <!-- alpine_grendel_4i -->
|
||||
<id>18900</id> <!-- alpine_grendel_4a -->
|
||||
<id>18901</id> <!-- alpine_kukaburo_gold -->
|
||||
<id>18902</id> <!-- alpine_cougar_gold -->
|
||||
<id>18903</id> <!-- alpine_buffalo_gold -->
|
||||
<id>18904</id> <!-- alpine_grendel_gold -->
|
||||
</category>
|
||||
<category name="BEASTFARM_INVADER">
|
||||
<id>18905</id> <!-- farm_plunderer_crazy -->
|
||||
<id>18906</id> <!-- farm_plunderer -->
|
||||
<id>18907</id> <!-- farm_invader -->
|
||||
</category>
|
||||
<category name="ICEQUEEN_NPC">
|
||||
<id>18850</id> <!-- jinia -->
|
||||
<id>18851</id> <!-- kegor -->
|
||||
<id>18852</id> <!-- sirr -->
|
||||
</category>
|
||||
<category name="TANKER_CATEGORY">
|
||||
<id>90</id> <!-- phoenix_knight -->
|
||||
<id>91</id> <!-- hell_knight -->
|
||||
@ -2476,7 +2066,6 @@
|
||||
<id>113</id> <!-- titan -->
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
</category>
|
||||
<category name="ROGUE_CATEGORY">
|
||||
<id>93</id> <!-- adventurer -->
|
||||
@ -2488,15 +2077,12 @@
|
||||
<id>92</id> <!-- sagittarius -->
|
||||
<id>102</id> <!-- moonlight_sentinel -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
</category>
|
||||
<category name="WIZARD_CATEGORY">
|
||||
<id>95</id> <!-- soultaker -->
|
||||
<id>94</id> <!-- archmage -->
|
||||
<id>103</id> <!-- mystic_muse -->
|
||||
<id>110</id> <!-- storm_screamer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
</category>
|
||||
<category name="SUMMONER_CATEGORY">
|
||||
<id>96</id> <!-- arcana_lord -->
|
||||
@ -2514,8 +2100,6 @@
|
||||
<id>31</id> <!-- dark_fighter -->
|
||||
<id>44</id> <!-- orc_fighter -->
|
||||
<id>53</id> <!-- dwarven_fighter -->
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
</category>
|
||||
<category name="APM_ZERO_MAGE_GROUP">
|
||||
<id>10</id> <!-- mage -->
|
||||
@ -2535,8 +2119,6 @@
|
||||
<id>35</id> <!-- assassin -->
|
||||
<id>45</id> <!-- orc_raider -->
|
||||
<id>47</id> <!-- orc_monk -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>50</id> <!-- orc_shaman -->
|
||||
<id>54</id> <!-- scavenger -->
|
||||
<id>56</id> <!-- artisan -->
|
||||
@ -2562,11 +2144,7 @@
|
||||
<id>3</id> <!-- warlord -->
|
||||
<id>46</id> <!-- destroyer -->
|
||||
<id>48</id> <!-- tyrant -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>57</id> <!-- warsmith -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
</category>
|
||||
<category name="APM_2ND_ROGUE_GROUP">
|
||||
<id>8</id> <!-- treasure_hunter -->
|
||||
@ -2582,7 +2160,6 @@
|
||||
</category>
|
||||
<category name="APM_2ND_ARCHER_GROUP">
|
||||
<id>9</id> <!-- hawkeye -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>37</id> <!-- phantom_ranger -->
|
||||
<id>24</id> <!-- silver_ranger -->
|
||||
</category>
|
||||
@ -2615,10 +2192,6 @@
|
||||
<id>113</id> <!-- titan -->
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="APM_3RD_ROGUE_GROUP">
|
||||
<id>93</id> <!-- adventurer -->
|
||||
@ -2637,7 +2210,6 @@
|
||||
<id>92</id> <!-- sagittarius -->
|
||||
<id>102</id> <!-- moonlight_sentinel -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
</category>
|
||||
<category name="APM_3RD_BUFFER_GROUP">
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
@ -2736,109 +2308,6 @@
|
||||
<id>51</id> <!-- overlord -->
|
||||
<id>57</id> <!-- warsmith -->
|
||||
</category>
|
||||
<category name="SUBCLASS_KAMAEL">
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="EXCEPT_KAMAEL_GROUP">
|
||||
<id>0</id> <!-- fighter -->
|
||||
<id>1</id> <!-- warrior -->
|
||||
<id>2</id> <!-- gladiator -->
|
||||
<id>3</id> <!-- warlord -->
|
||||
<id>4</id> <!-- knight -->
|
||||
<id>5</id> <!-- paladin -->
|
||||
<id>6</id> <!-- dark_avenger -->
|
||||
<id>7</id> <!-- rogue -->
|
||||
<id>8</id> <!-- treasure_hunter -->
|
||||
<id>9</id> <!-- hawkeye -->
|
||||
<id>18</id> <!-- elven_fighter -->
|
||||
<id>19</id> <!-- elven_knight -->
|
||||
<id>20</id> <!-- temple_knight -->
|
||||
<id>21</id> <!-- swordsinger -->
|
||||
<id>22</id> <!-- elven_scout -->
|
||||
<id>23</id> <!-- plains_walker -->
|
||||
<id>24</id> <!-- silver_ranger -->
|
||||
<id>31</id> <!-- dark_fighter -->
|
||||
<id>32</id> <!-- palus_knight -->
|
||||
<id>33</id> <!-- shillien_knight -->
|
||||
<id>34</id> <!-- bladedancer -->
|
||||
<id>35</id> <!-- assassin -->
|
||||
<id>36</id> <!-- abyss_walker -->
|
||||
<id>37</id> <!-- phantom_ranger -->
|
||||
<id>44</id> <!-- orc_fighter -->
|
||||
<id>45</id> <!-- orc_raider -->
|
||||
<id>46</id> <!-- destroyer -->
|
||||
<id>47</id> <!-- orc_monk -->
|
||||
<id>48</id> <!-- tyrant -->
|
||||
<id>53</id> <!-- dwarven_fighter -->
|
||||
<id>54</id> <!-- scavenger -->
|
||||
<id>55</id> <!-- bounty_hunter -->
|
||||
<id>56</id> <!-- artisan -->
|
||||
<id>57</id> <!-- warsmith -->
|
||||
<id>88</id> <!-- duelist -->
|
||||
<id>89</id> <!-- dreadnought -->
|
||||
<id>90</id> <!-- phoenix_knight -->
|
||||
<id>91</id> <!-- hell_knight -->
|
||||
<id>92</id> <!-- sagittarius -->
|
||||
<id>93</id> <!-- adventurer -->
|
||||
<id>99</id> <!-- evas_templar -->
|
||||
<id>100</id> <!-- sword_muse -->
|
||||
<id>101</id> <!-- wind_rider -->
|
||||
<id>102</id> <!-- moonlight_sentinel -->
|
||||
<id>106</id> <!-- shillien_templar -->
|
||||
<id>107</id> <!-- spectral_dancer -->
|
||||
<id>108</id> <!-- ghost_hunter -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>113</id> <!-- titan -->
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>117</id> <!-- fortune_seeker -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>10</id> <!-- mage -->
|
||||
<id>11</id> <!-- wizard -->
|
||||
<id>12</id> <!-- sorcerer -->
|
||||
<id>13</id> <!-- necromancer -->
|
||||
<id>14</id> <!-- warlock -->
|
||||
<id>15</id> <!-- cleric -->
|
||||
<id>16</id> <!-- bishop -->
|
||||
<id>17</id> <!-- prophet -->
|
||||
<id>25</id> <!-- elven_mage -->
|
||||
<id>26</id> <!-- elven_wizard -->
|
||||
<id>27</id> <!-- spellsinger -->
|
||||
<id>28</id> <!-- elemental_summoner -->
|
||||
<id>29</id> <!-- oracle -->
|
||||
<id>30</id> <!-- elder -->
|
||||
<id>38</id> <!-- dark_mage -->
|
||||
<id>39</id> <!-- dark_wizard -->
|
||||
<id>40</id> <!-- spellhowler -->
|
||||
<id>41</id> <!-- phantom_summoner -->
|
||||
<id>42</id> <!-- shillien_oracle -->
|
||||
<id>43</id> <!-- shillien_elder -->
|
||||
<id>49</id> <!-- orc_mage -->
|
||||
<id>50</id> <!-- orc_shaman -->
|
||||
<id>51</id> <!-- overlord -->
|
||||
<id>52</id> <!-- warcryer -->
|
||||
<id>94</id> <!-- archmage -->
|
||||
<id>95</id> <!-- soultaker -->
|
||||
<id>96</id> <!-- arcana_lord -->
|
||||
<id>97</id> <!-- cardinal -->
|
||||
<id>98</id> <!-- hierophant -->
|
||||
<id>103</id> <!-- mystic_muse -->
|
||||
<id>104</id> <!-- elemental_master -->
|
||||
<id>105</id> <!-- evas_saint -->
|
||||
<id>110</id> <!-- storm_screamer -->
|
||||
<id>111</id> <!-- spectral_master -->
|
||||
<id>112</id> <!-- shillien_saint -->
|
||||
<id>115</id> <!-- dominator -->
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
</category>
|
||||
<category name="DIVISION_TANKER">
|
||||
<id>5</id> <!-- paladin -->
|
||||
<id>6</id> <!-- dark_avenger -->
|
||||
@ -2854,14 +2323,12 @@
|
||||
<id>2</id> <!-- gladiator -->
|
||||
<id>46</id> <!-- destroyer -->
|
||||
<id>48</id> <!-- tyrant -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>57</id> <!-- warsmith -->
|
||||
<id>89</id> <!-- dreadnought -->
|
||||
<id>88</id> <!-- duelist -->
|
||||
<id>113</id> <!-- titan -->
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>118</id> <!-- maestro -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
</category>
|
||||
<category name="DIVISION_ROUGE">
|
||||
<id>8</id> <!-- treasure_hunter -->
|
||||
@ -2877,25 +2344,19 @@
|
||||
<id>9</id> <!-- hawkeye -->
|
||||
<id>24</id> <!-- silver_ranger -->
|
||||
<id>37</id> <!-- phantom_ranger -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>92</id> <!-- sagittarius -->
|
||||
<id>102</id> <!-- moonlight_sentinel -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
</category>
|
||||
<category name="DIVISION_WIZARD">
|
||||
<id>12</id> <!-- sorcerer -->
|
||||
<id>13</id> <!-- necromancer -->
|
||||
<id>27</id> <!-- spellsinger -->
|
||||
<id>40</id> <!-- spellhowler -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>94</id> <!-- archmage -->
|
||||
<id>95</id> <!-- soultaker -->
|
||||
<id>103</id> <!-- mystic_muse -->
|
||||
<id>110</id> <!-- storm_screamer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
</category>
|
||||
<category name="DIVISION_SUMMON">
|
||||
<id>14</id> <!-- warlock -->
|
||||
@ -2910,14 +2371,12 @@
|
||||
<id>21</id> <!-- swordsinger -->
|
||||
<id>34</id> <!-- bladedancer -->
|
||||
<id>52</id> <!-- warcryer -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>51</id> <!-- overlord -->
|
||||
<id>98</id> <!-- hierophant -->
|
||||
<id>116</id> <!-- doomcryer -->
|
||||
<id>100</id> <!-- sword_muse -->
|
||||
<id>107</id> <!-- spectral_dancer -->
|
||||
<id>115</id> <!-- dominator -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="DIVISION_HEAL">
|
||||
<id>16</id> <!-- bishop -->
|
||||
@ -3028,20 +2487,6 @@
|
||||
<id>108</id> <!-- ghost_hunter -->
|
||||
<id>109</id> <!-- ghost_sentinel -->
|
||||
<id>114</id> <!-- grand_khavatari -->
|
||||
<id>123</id> <!-- kamael_m_soldier -->
|
||||
<id>124</id> <!-- kamael_f_soldier -->
|
||||
<id>125</id> <!-- trooper -->
|
||||
<id>126</id> <!-- warder -->
|
||||
<id>127</id> <!-- berserker -->
|
||||
<id>128</id> <!-- m_soul_breaker -->
|
||||
<id>129</id> <!-- f_soul_breaker -->
|
||||
<id>130</id> <!-- arbalester -->
|
||||
<id>131</id> <!-- doombringer -->
|
||||
<id>132</id> <!-- m_soul_hound -->
|
||||
<id>133</id> <!-- f_soul_hound -->
|
||||
<id>134</id> <!-- trickster -->
|
||||
<id>135</id> <!-- inspector -->
|
||||
<id>136</id> <!-- judicator -->
|
||||
</category>
|
||||
<category name="ROBE_CLASS">
|
||||
<id>10</id> <!-- mage -->
|
||||
|
592
L2J_Mobius_CT_0_Interlude/dist/game/data/Doors.xml
vendored
592
L2J_Mobius_CT_0_Interlude/dist/game/data/Doors.xml
vendored
@ -1,60 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/Doors.xsd">
|
||||
<door id="12240001" name="gate_of_destruction001_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-239263;219986;-10161" node1="-239240,219844" node2="-239240,220034" node3="-239284,220034" node4="-239283,219844" nodeZ="-10164" default_status="close" targetable="false" />
|
||||
<door id="12240002" name="gate_of_destruction002_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-239263;219985;-10161" node1="-239241,219937" node2="-239241,220126" node3="-239283,220127" node4="-239284,219936" nodeZ="-10164" default_status="close" targetable="false" />
|
||||
<door id="12240003" name="secret_door_001_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-243959;217081;-12196" node1="-243938,216940" node2="-243937,217127" node3="-243980,217127" node4="-243980,216940" nodeZ="-12198" default_status="open" targetable="false" />
|
||||
<door id="12240004" name="secret_door_002_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-243959;217081;-12196" node1="-243935,217033" node2="-243937,217223" node3="-243981,217223" node4="-243981,217033" nodeZ="-12199" default_status="open" targetable="false" />
|
||||
<door id="12240005" name="door_of_shield_011_01" open_method="0" height="150" baseHpMax="10000" hp_showable="true" basePDef="1000" baseMDef="100000" pos="-241117;218106;-12402" node1="-241094,217964" node2="-241094,218154" node3="-241138,218154" node4="-241137,217964" nodeZ="-12405" default_status="close" targetable="true" />
|
||||
<door id="12240006" name="door_of_shield_012_01" open_method="0" height="150" baseHpMax="10000" hp_showable="true" basePDef="1000" baseMDef="100000" pos="-241117;218105;-12402" node1="-241095,218057" node2="-241095,218246" node3="-241137,218247" node4="-241138,218056" nodeZ="-12405" default_status="close" targetable="true" />
|
||||
<door id="12240007" name="door_of_shield_021_01" open_method="0" height="150" baseHpMax="30000" hp_showable="true" basePDef="3000" baseMDef="100000" pos="-238727;215838;-12659" node1="-238875,215812" node2="-238679,215813" node3="-238679,215861" node4="-238876,215860" nodeZ="-12661" default_status="close" targetable="true" />
|
||||
<door id="12240008" name="door_of_shield_022_01" open_method="0" height="150" baseHpMax="30000" hp_showable="true" basePDef="3000" baseMDef="100000" pos="-238727;215838;-12659" node1="-238774,215813" node2="-238583,215812" node3="-238582,215861" node4="-238774,215861" nodeZ="-12661" default_status="close" targetable="true" />
|
||||
<door id="12240009" name="door_of_shield_031_01" open_method="0" height="150" baseHpMax="50000" hp_showable="true" basePDef="5000" baseMDef="100000" pos="-238741;212231;-12788" node1="-238889,212205" node2="-238693,212206" node3="-238693,212254" node4="-238890,212253" nodeZ="-12790" default_status="close" targetable="true" />
|
||||
<door id="12240010" name="door_of_shield_032_01" open_method="0" height="150" baseHpMax="50000" hp_showable="true" basePDef="5000" baseMDef="100000" pos="-238741;212231;-12788" node1="-238788,212206" node2="-238597,212205" node3="-238596,212254" node4="-238788,212254" nodeZ="-12790" default_status="close" targetable="true" />
|
||||
<door id="12240011" name="secret_door_003_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-244508;215769;-12196" node1="-244601,215647" node2="-244457,215782" node3="-244497,215822" node4="-244631,215677" nodeZ="-12202" default_status="open" targetable="false" />
|
||||
<door id="12240012" name="secret_door_004_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-244508;215769;-12196" node1="-244522,215718" node2="-244386,215859" node3="-244419,215892" node4="-244563,215755" nodeZ="-12202" default_status="open" targetable="false" />
|
||||
<door id="12240013" name="door_of_shield_041_01" open_method="0" height="150" baseHpMax="10000" hp_showable="true" basePDef="100000" baseMDef="5000" pos="-242793;213118;-12530" node1="-242941,213092" node2="-242745,213093" node3="-242745,213141" node4="-242942,213140" nodeZ="-12532" default_status="close" targetable="true" />
|
||||
<door id="12240014" name="door_of_shield_042_01" open_method="0" height="150" baseHpMax="10000" hp_showable="true" basePDef="100000" baseMDef="5000" pos="-242793;213118;-12530" node1="-242840,213093" node2="-242649,213092" node3="-242648,213141" node4="-242840,213141" nodeZ="-12532" default_status="close" targetable="true" />
|
||||
<door id="12240015" name="door_of_shield_051_01" open_method="0" height="150" baseHpMax="30000" hp_showable="true" basePDef="100000" baseMDef="3000" pos="-242794;209512;-12662" node1="-242942,209486" node2="-242746,209487" node3="-242746,209535" node4="-242943,209534" nodeZ="-12664" default_status="close" targetable="true" />
|
||||
<door id="12240016" name="door_of_shield_052_01" open_method="0" height="150" baseHpMax="30000" hp_showable="true" basePDef="100000" baseMDef="3000" pos="-242794;209512;-12662" node1="-242841,209487" node2="-242650,209486" node3="-242649,209535" node4="-242841,209535" nodeZ="-12664" default_status="close" targetable="true" />
|
||||
<door id="12240017" name="door_of_shield_061_01" open_method="0" height="150" baseHpMax="40000" hp_showable="true" basePDef="100000" baseMDef="1000" pos="-239837;207825;-12914" node1="-239814,207683" node2="-239814,207873" node3="-239858,207873" node4="-239857,207683" nodeZ="-12917" default_status="close" targetable="true" />
|
||||
<door id="12240018" name="door_of_shield_062_01" open_method="0" height="150" baseHpMax="40000" hp_showable="true" basePDef="100000" baseMDef="1000" pos="-239837;207824;-12914" node1="-239815,207776" node2="-239815,207965" node3="-239857,207966" node4="-239858,207775" nodeZ="-12917" default_status="close" targetable="true" />
|
||||
<door id="12240019" name="secret_door_005_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-245826;215202;-12196" node1="-245974,215176" node2="-245778,215177" node3="-245778,215225" node4="-245975,215224" nodeZ="-12198" default_status="open" targetable="false" />
|
||||
<door id="12240020" name="secret_door_006_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-245826;215202;-12196" node1="-245873,215177" node2="-245682,215176" node3="-245681,215225" node4="-245873,215225" nodeZ="-12198" default_status="open" targetable="false" />
|
||||
<door id="12240021" name="door_of_shield_071_01" open_method="0" height="150" baseHpMax="10000" hp_showable="true" basePDef="10000" baseMDef="10000" pos="-245877;211738;-12405" node1="-246025,211712" node2="-245829,211713" node3="-245829,211761" node4="-246026,211760" nodeZ="-12407" default_status="close" targetable="true" />
|
||||
<door id="12240022" name="door_of_shield_072_01" open_method="0" height="150" baseHpMax="10000" hp_showable="true" basePDef="10000" baseMDef="10000" pos="-245877;211738;-12405" node1="-245924,211713" node2="-245733,211712" node3="-245732,211761" node4="-245924,211761" nodeZ="-12407" default_status="close" targetable="true" />
|
||||
<door id="12240023" name="door_of_shield_081_01" open_method="0" height="150" baseHpMax="20000" hp_showable="true" basePDef="10000" baseMDef="10000" pos="-245877;208132;-12531" node1="-246025,208106" node2="-245829,208107" node3="-245829,208155" node4="-246026,208154" nodeZ="-12533" default_status="close" targetable="true" />
|
||||
<door id="12240024" name="door_of_shield_082_01" open_method="0" height="150" baseHpMax="20000" hp_showable="true" basePDef="10000" baseMDef="10000" pos="-245877;208132;-12531" node1="-245924,208107" node2="-245733,208106" node3="-245732,208155" node4="-245924,208155" nodeZ="-12533" default_status="close" targetable="true" />
|
||||
<door id="12240025" name="door_of_shield_091_01" open_method="0" height="150" baseHpMax="25000" hp_showable="true" basePDef="10000" baseMDef="10000" pos="-242922;206445;-12783" node1="-242899,206303" node2="-242899,206493" node3="-242943,206493" node4="-242942,206303" nodeZ="-12786" default_status="close" targetable="true" />
|
||||
<door id="12240026" name="door_of_shield_092_01" open_method="0" height="150" baseHpMax="25000" hp_showable="true" basePDef="10000" baseMDef="10000" pos="-242922;206444;-12783" node1="-242900,206396" node2="-242900,206585" node3="-242942,206586" node4="-242943,206395" nodeZ="-12786" default_status="close" targetable="true" />
|
||||
<door id="12240027" name="secret_door_007_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-247151;218400;-12193" node1="-247216,218298" node2="-247051,218465" node3="-247090,218502" node4="-247257,218333" nodeZ="-12193" default_status="open" targetable="false" />
|
||||
<door id="12240028" name="gate_of_destruction021_01" open_method="0" height="150" baseHpMax="30000" hp_showable="true" basePDef="10000" baseMDef="10000" pos="-249760;220073;-12464" node1="-249737,219931" node2="-249737,220121" node3="-249781,220121" node4="-249780,219931" nodeZ="-12467" default_status="close" targetable="true" />
|
||||
<door id="12240029" name="gate_of_destruction022_01" open_method="0" height="150" baseHpMax="30000" hp_showable="true" basePDef="10000" baseMDef="10000" pos="-249760;220072;-12464" node1="-249738,220024" node2="-249738,220213" node3="-249780,220214" node4="-249781,220023" nodeZ="-12467" default_status="close" targetable="true" />
|
||||
<door id="12240030" name="gate_of_fortress_01" open_method="0" height="150" baseHpMax="200000" hp_showable="true" basePDef="20000" baseMDef="20000" pos="-251436;214385;-12122" node1="-251627,214372" node2="-251262,214370" node3="-251261,214452" node4="-251628,214455" nodeZ="-12087" default_status="close" targetable="true" />
|
||||
<door id="12240031" name="door_of_throne_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-251450;212260;-12021" node1="-251558,212249" node2="-251342,212248" node3="-251343,212272" node4="-251558,212273" nodeZ="-12021" default_status="open" targetable="false" />
|
||||
<door id="14240102" name="zone3_entrance_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-179553;207192;-15508" node1="-179821,207178" node2="-179290,207177" node3="-179290,207211" node4="-179821,207211" nodeZ="-15546" default_status="open" targetable="false" />
|
||||
<door id="16200001" name="nornildg_a" open_method="0" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-109704;76424;-12656" node1="-109818,76417" node2="-109589,76416" node3="-109589,76434" node4="-109818,76435" nodeZ="-12650" emitter_id="16200101" default_status="close" />
|
||||
<door id="16200002" name="nornildg_b" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-110856;77960;-12848" node1="-110839,78060" node2="-110838,77861" node3="-110873,77862" node4="-110874,78060" nodeZ="-12842" emitter_id="16200102" default_status="close" />
|
||||
<door id="16200003" name="nornildg_e" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-111624;77960;-12848" node1="-111607,78060" node2="-111606,77861" node3="-111641,77862" node4="-111642,78060" nodeZ="-12842" emitter_id="16200103" default_status="close" />
|
||||
<door id="16200004" name="nornildg_mid" open_method="0" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-107586;80603;-12946" node1="-107604,80701" node2="-107606,80506" node3="-107573,80506" node4="-107575,80701" nodeZ="-12946" emitter_id="16200104" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="16200005" name="nornildg_c" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-109120;80648;-12944" node1="-109140,80843" node2="-109140,80452" node3="-109101,80452" node4="-109100,80843" nodeZ="-12944" emitter_id="16200105" default_status="close" />
|
||||
<door id="16200006" name="nornildg_j" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-108676;82444;-12912" node1="-108522,82317" node2="-108801,82599" node3="-108830,82573" node4="-108550,82290" nodeZ="-12912" emitter_id="16200106" default_status="close" />
|
||||
<door id="16200007" name="nornildg_f" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-110475;83143;-12912" node1="-110288,83149" node2="-110657,83150" node3="-110658,83138" node4="-110288,83140" nodeZ="-12912" emitter_id="16200107" default_status="close" />
|
||||
<door id="16200008" name="nornildg_g" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-112264;82440;-12912" node1="-112135,82594" node2="-112416,82314" node3="-112391,82286" node4="-112110,82570" nodeZ="-12912" emitter_id="16200108" default_status="close" />
|
||||
<door id="16200009" name="nornildg_d" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-111824;80648;-12944" node1="-111844,80843" node2="-111844,80452" node3="-111805,80452" node4="-111804,80843" nodeZ="-12944" emitter_id="16200109" default_status="close" />
|
||||
<door id="16200010" name="nornildg_i" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-107588;83677;-12913" node1="-107606,83775" node2="-107608,83580" node3="-107575,83580" node4="-107577,83775" nodeZ="-12913" emitter_id="16200022" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="16200011" name="nornildg_k" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-110472;84488;-13008" node1="-110586,84481" node2="-110357,84480" node3="-110357,84498" node4="-110586,84499" nodeZ="-13002" emitter_id="16200111" default_status="close" />
|
||||
<door id="16200012" name="nornildg_l" open_method="4" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-111424;87176;-13008" node1="-111444,87371" node2="-111444,86980" node3="-111405,86980" node4="-111404,87371" nodeZ="-13008" emitter_id="16200112" default_status="close" />
|
||||
<door id="16200013" name="nornildg_h" open_method="0" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-110663;84052;-13011" node1="-110681,84150" node2="-110683,83955" node3="-110650,83955" node4="-110652,84150" nodeZ="-13011" emitter_id="16200021" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="16200014" name="past_door" open_method="0" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-113183;87179;-12904" node1="-113194,87322" node2="-113193,87037" node3="-113175,87037" node4="-113173,87322" nodeZ="-12904" emitter_id="16200114" default_status="close" />
|
||||
<door id="16200015" name="present_door" open_method="0" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-115074;87178;-12816" node1="-115085,87321" node2="-115084,87036" node3="-115066,87036" node4="-115064,87321" nodeZ="-12816" emitter_id="16200115" default_status="close" />
|
||||
<door id="16200016" name="future_door" open_method="0" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-116971;87176;-12711" node1="-116982,87319" node2="-116981,87034" node3="-116963,87034" node4="-116961,87319" nodeZ="-12711" emitter_id="16200116" default_status="close" />
|
||||
<door id="16200017" name="nornildg_bridge01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-109199;81921;-12932" node1="-109145,81792" node2="-108802,82135" node3="-108985,82319" node4="-109327,81975" nodeZ="-12907" emitter_id="16200117" default_status="close" targetable="false" check_collision="false" stealth="true" />
|
||||
<door id="16200018" name="nornildg_bridge02" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-110472;82415;-12933" node1="-110602,82367" node2="-110342,82367" node3="-110343,82854" node4="-110601,82854" nodeZ="-12906" emitter_id="16200118" default_status="close" targetable="false" check_collision="false" stealth="true" />
|
||||
<door id="16200019" name="nornildg_bridge03" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-111741;81917;-12932" node1="-111795,81786" node2="-111612,81969" node3="-111956,82315" node4="-112141,82130" nodeZ="-12908" emitter_id="16200119" default_status="close" targetable="false" check_collision="false" stealth="true" />
|
||||
<door id="16200022" name="hidedoor_detect" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-107399;83671;-12913" node1="0,0" node2="0,0" node3="0,0" node4="0,0" nodeZ="0" default_status="close" targetable="false" check_collision="false" stealth="true" />
|
||||
<door id="16200023" name="nornildg_bdg01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-109201;81920;-12907" node1="-109145,81792" node2="-108802,82135" node3="-108985,82319" node4="-109327,81975" nodeZ="-12907" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="16200024" name="nornildg_bdg02" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-110473;82417;-12906" node1="-110602,82367" node2="-110342,82367" node3="-110343,82854" node4="-110601,82854" nodeZ="-12906" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="16200025" name="nornildg_bdg03" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-111741;81914;-12908" node1="-111795,81786" node2="-111612,81969" node3="-111956,82315" node4="-112141,82130" nodeZ="-12908" default_status="close" targetable="false" stealth="true" />
|
||||
<!-- Olympiad Doors -->
|
||||
<door id="17100001" name="Olympiad_Gate_01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-89120;-252843;-3341" node1="-89130,-252918" node2="-89110,-252918" node3="-89110,-252768" node4="-89130,-252768" nodeZ="-3341" default_status="close" targetable="false" />
|
||||
<door id="17100002" name="Olympiad_Gate_02" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87043;-252843;-3341" node1="-87053,-252918" node2="-87033,-252918" node3="-87033,-252768" node4="-87053,-252768" nodeZ="-3341" default_status="close" targetable="false" />
|
||||
@ -101,253 +46,6 @@
|
||||
<door id="17100043" name="Olympiad_Gate_43" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84599;-238836;-3342" node1="-84611,-238965" node2="-84585,-238709" node3="-84585,-238709" node4="-84611,-238965" nodeZ="-3342" default_status="close" targetable="false" />
|
||||
<door id="17100044" name="Olympiad_Gate_44" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82959;-238836;-3342" node1="-82975,-238965" node2="-82940,-238709" node3="-82940,-238709" node4="-82975,-238965" nodeZ="-3342" default_status="close" targetable="false" />
|
||||
<!-- Olympiad Doors End -->
|
||||
<door id="17150001" name="cratae_1715_001" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-86401;-8384" node1="-85966,-86411" node2="-85842,-86411" node3="-85841,-86389" node4="-85966,-86389" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150002" name="cratae_1715_002" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-86401;-8384" node1="-83966,-86411" node2="-83842,-86411" node3="-83841,-86389" node4="-83966,-86389" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150003" name="cratae_1715_003" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-86401;-8384" node1="-81966,-86411" node2="-81842,-86411" node3="-81841,-86389" node4="-81966,-86389" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150004" name="cratae_1715_004" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-86401;-8384" node1="-79966,-86411" node2="-79842,-86411" node3="-79841,-86389" node4="-79966,-86389" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150005" name="cratae_1715_005" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-86401;-8384" node1="-77966,-86411" node2="-77842,-86411" node3="-77841,-86389" node4="-77966,-86389" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150006" name="cratae_1715_006" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86498;-85808;-8384" node1="-86508,-85870" node2="-86487,-85869" node3="-86488,-85747" node4="-86508,-85746" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150007" name="cratae_1715_007" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85310;-85808;-8384" node1="-85320,-85867" node2="-85301,-85867" node3="-85300,-85747" node4="-85319,-85747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150008" />
|
||||
<door id="17150008" name="cratae_1715_008" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84498;-85808;-8384" node1="-84508,-85870" node2="-84487,-85869" node3="-84488,-85747" node4="-84508,-85746" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150009" name="cratae_1715_009" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83310;-85808;-8384" node1="-83320,-85867" node2="-83301,-85867" node3="-83300,-85747" node4="-83319,-85747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150010" />
|
||||
<door id="17150010" name="cratae_1715_010" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82498;-85808;-8384" node1="-82508,-85870" node2="-82487,-85869" node3="-82488,-85747" node4="-82508,-85746" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150011" name="cratae_1715_011" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81310;-85808;-8384" node1="-81320,-85867" node2="-81301,-85867" node3="-81300,-85747" node4="-81319,-85747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150012" />
|
||||
<door id="17150012" name="cratae_1715_012" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80498;-85808;-8384" node1="-80508,-85870" node2="-80487,-85869" node3="-80488,-85747" node4="-80508,-85746" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150013" name="cratae_1715_013" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79310;-85808;-8384" node1="-79320,-85867" node2="-79301,-85867" node3="-79300,-85747" node4="-79319,-85747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150014" />
|
||||
<door id="17150014" name="cratae_1715_014" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78498;-85808;-8384" node1="-78508,-85870" node2="-78487,-85869" node3="-78488,-85747" node4="-78508,-85746" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150015" name="cratae_1715_015" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77310;-85808;-8384" node1="-77320,-85867" node2="-77301,-85867" node3="-77300,-85747" node4="-77319,-85747" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150016" name="cratae_1715_016" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-85213;-8384" node1="-85965,-85223" node2="-85842,-85223" node3="-85841,-85204" node4="-85964,-85204" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150021" />
|
||||
<door id="17150017" name="cratae_1715_017" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-85213;-8384" node1="-83965,-85223" node2="-83842,-85223" node3="-83841,-85204" node4="-83964,-85204" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150022" />
|
||||
<door id="17150018" name="cratae_1715_018" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-85213;-8384" node1="-81965,-85223" node2="-81842,-85223" node3="-81841,-85204" node4="-81964,-85204" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150023" />
|
||||
<door id="17150019" name="cratae_1715_019" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-85213;-8384" node1="-79965,-85223" node2="-79842,-85223" node3="-79841,-85204" node4="-79964,-85204" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150024" />
|
||||
<door id="17150020" name="cratae_1715_020" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-85213;-8384" node1="-77965,-85223" node2="-77842,-85223" node3="-77841,-85204" node4="-77964,-85204" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150025" />
|
||||
<door id="17150021" name="cratae_1715_021" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-84401;-8384" node1="-85969,-84413" node2="-85840,-84414" node3="-85840,-84391" node4="-85968,-84388" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150022" name="cratae_1715_022" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-84401;-8384" node1="-83969,-84413" node2="-83840,-84414" node3="-83840,-84391" node4="-83968,-84388" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150023" name="cratae_1715_023" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-84401;-8384" node1="-81969,-84413" node2="-81840,-84414" node3="-81840,-84391" node4="-81968,-84388" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150024" name="cratae_1715_024" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-84401;-8384" node1="-79969,-84413" node2="-79840,-84414" node3="-79840,-84391" node4="-79968,-84388" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150025" name="cratae_1715_025" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-84401;-8384" node1="-77969,-84413" node2="-77840,-84414" node3="-77840,-84391" node4="-77968,-84388" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150026" name="cratae_1715_026" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86498;-83808;-8384" node1="-86516,-83881" node2="-86487,-83881" node3="-86488,-83729" node4="-86514,-83729" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150027" name="cratae_1715_027" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85310;-83808;-8384" node1="-85321,-83875" node2="-85300,-83875" node3="-85298,-83736" node4="-85321,-83737" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150028" />
|
||||
<door id="17150028" name="cratae_1715_028" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84498;-83808;-8384" node1="-84516,-83881" node2="-84487,-83881" node3="-84488,-83729" node4="-84514,-83729" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150029" name="cratae_1715_029" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83310;-83808;-8384" node1="-83321,-83875" node2="-83300,-83875" node3="-83298,-83736" node4="-83321,-83737" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150030" />
|
||||
<door id="17150030" name="cratae_1715_030" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82498;-83808;-8384" node1="-82516,-83881" node2="-82487,-83881" node3="-82488,-83729" node4="-82514,-83729" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150031" name="cratae_1715_031" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81310;-83808;-8384" node1="-81321,-83875" node2="-81300,-83875" node3="-81298,-83736" node4="-81321,-83737" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150032" />
|
||||
<door id="17150032" name="cratae_1715_032" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80498;-83808;-8384" node1="-80516,-83881" node2="-80487,-83881" node3="-80488,-83729" node4="-80514,-83729" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150033" name="cratae_1715_033" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79310;-83808;-8384" node1="-79321,-83875" node2="-79300,-83875" node3="-79298,-83736" node4="-79321,-83737" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150034" />
|
||||
<door id="17150034" name="cratae_1715_034" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78498;-83808;-8384" node1="-78516,-83881" node2="-78487,-83881" node3="-78488,-83729" node4="-78514,-83729" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150035" name="cratae_1715_035" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77310;-83808;-8384" node1="-77321,-83875" node2="-77300,-83875" node3="-77298,-83736" node4="-77321,-83737" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150036" name="cratae_1715_036" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-83213;-8384" node1="-85967,-83227" node2="-85841,-83227" node3="-85840,-83199" node4="-85967,-83200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150041" />
|
||||
<door id="17150037" name="cratae_1715_037" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-83213;-8384" node1="-83967,-83227" node2="-83841,-83227" node3="-83840,-83199" node4="-83967,-83200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150042" />
|
||||
<door id="17150038" name="cratae_1715_038" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-83213;-8384" node1="-81967,-83227" node2="-81841,-83227" node3="-81840,-83199" node4="-81967,-83200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150043" />
|
||||
<door id="17150039" name="cratae_1715_039" open_method="2" close_time="15" open_time="10" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-83213;-8384" node1="-79967,-83227" node2="-79841,-83227" node3="-79840,-83199" node4="-79967,-83200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150044" />
|
||||
<door id="17150040" name="cratae_1715_040" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-83213;-8384" node1="-77967,-83227" node2="-77841,-83227" node3="-77840,-83199" node4="-77967,-83200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150045" />
|
||||
<door id="17150041" name="cratae_1715_041" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-82401;-8384" node1="-85983,-82414" node2="-85824,-82415" node3="-85824,-82392" node4="-85983,-82392" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150042" name="cratae_1715_042" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-82401;-8384" node1="-83983,-82414" node2="-83824,-82415" node3="-83824,-82392" node4="-83983,-82392" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150043" name="cratae_1715_043" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-82401;-8384" node1="-81983,-82414" node2="-81824,-82415" node3="-81824,-82392" node4="-81983,-82392" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150044" name="cratae_1715_044" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-82401;-8384" node1="-79983,-82414" node2="-79824,-82415" node3="-79824,-82392" node4="-79983,-82392" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150045" name="cratae_1715_045" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-82401;-8384" node1="-77983,-82414" node2="-77824,-82415" node3="-77824,-82392" node4="-77983,-82392" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150046" name="cratae_1715_046" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86498;-81808;-8384" node1="-86508,-81879" node2="-86487,-81879" node3="-86488,-81746" node4="-86506,-81744" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150047" name="cratae_1715_047" open_method="2" close_time="15" open_time="14" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85310;-81808;-8384" node1="-85324,-81888" node2="-85298,-81888" node3="-85298,-81728" node4="-85323,-81728" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150048" />
|
||||
<door id="17150048" name="cratae_1715_048" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84498;-81808;-8384" node1="-84508,-81879" node2="-84487,-81879" node3="-84488,-81746" node4="-84506,-81744" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150049" name="cratae_1715_049" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83310;-81808;-8384" node1="-83324,-81888" node2="-83298,-81888" node3="-83298,-81728" node4="-83323,-81728" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150050" />
|
||||
<door id="17150050" name="cratae_1715_050" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82498;-81808;-8384" node1="-82508,-81879" node2="-82487,-81879" node3="-82488,-81746" node4="-82506,-81744" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150051" name="cratae_1715_051" open_method="2" close_time="15" open_time="23" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81310;-81808;-8384" node1="-81324,-81888" node2="-81298,-81888" node3="-81298,-81728" node4="-81323,-81728" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150052" />
|
||||
<door id="17150052" name="cratae_1715_052" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80498;-81808;-8384" node1="-80508,-81879" node2="-80487,-81879" node3="-80488,-81746" node4="-80506,-81744" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150053" name="cratae_1715_053" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79310;-81808;-8384" node1="-79324,-81888" node2="-79298,-81888" node3="-79298,-81728" node4="-79323,-81728" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150054" />
|
||||
<door id="17150054" name="cratae_1715_054" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78498;-81808;-8384" node1="-78508,-81879" node2="-78487,-81879" node3="-78488,-81746" node4="-78506,-81744" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150055" name="cratae_1715_055" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77310;-81808;-8384" node1="-77324,-81888" node2="-77298,-81888" node3="-77298,-81728" node4="-77323,-81728" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150056" name="cratae_1715_056" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-81213;-8384" node1="-85964,-81228" node2="-85841,-81229" node3="-85840,-81200" node4="-85968,-81200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150061" />
|
||||
<door id="17150057" name="cratae_1715_057" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-81213;-8384" node1="-83964,-81228" node2="-83841,-81229" node3="-83840,-81200" node4="-83968,-81200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150062" />
|
||||
<door id="17150058" name="cratae_1715_058" open_method="2" close_time="15" open_time="18" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-81213;-8384" node1="-81964,-81228" node2="-81841,-81229" node3="-81840,-81200" node4="-81968,-81200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150063" />
|
||||
<door id="17150059" name="cratae_1715_059" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-81213;-8384" node1="-79964,-81228" node2="-79841,-81229" node3="-79840,-81200" node4="-79968,-81200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150064" />
|
||||
<door id="17150060" name="cratae_1715_060" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-81213;-8384" node1="-77964,-81228" node2="-77841,-81229" node3="-77840,-81200" node4="-77968,-81200" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150065" />
|
||||
<door id="17150061" name="cratae_1715_061" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-80401;-8384" node1="-85968,-80413" node2="-85840,-80414" node3="-85841,-80389" node4="-85967,-80389" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150062" name="cratae_1715_062" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-80401;-8384" node1="-83968,-80413" node2="-83840,-80414" node3="-83841,-80389" node4="-83967,-80389" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150063" name="cratae_1715_063" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-80401;-8384" node1="-81968,-80413" node2="-81840,-80414" node3="-81841,-80389" node4="-81967,-80389" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150064" name="cratae_1715_064" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-80401;-8384" node1="-79968,-80413" node2="-79840,-80414" node3="-79841,-80389" node4="-79967,-80389" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150065" name="cratae_1715_065" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-80401;-8384" node1="-77968,-80413" node2="-77840,-80414" node3="-77841,-80389" node4="-77967,-80389" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150066" name="cratae_1715_066" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86498;-79808;-8384" node1="-86508,-79869" node2="-86489,-79869" node3="-86487,-79745" node4="-86509,-79744" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150067" name="cratae_1715_067" open_method="2" close_time="15" open_time="26" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85310;-79808;-8384" node1="-85319,-79867" node2="-85301,-79868" node3="-85301,-79748" node4="-85320,-79747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150068" />
|
||||
<door id="17150068" name="cratae_1715_068" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84498;-79808;-8384" node1="-84508,-79869" node2="-84489,-79869" node3="-84487,-79745" node4="-84509,-79744" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150069" name="cratae_1715_069" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83310;-79808;-8384" node1="-83319,-79867" node2="-83301,-79868" node3="-83301,-79748" node4="-83320,-79747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150070" />
|
||||
<door id="17150070" name="cratae_1715_070" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82498;-79808;-8384" node1="-82508,-79869" node2="-82489,-79869" node3="-82487,-79745" node4="-82509,-79744" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150071" name="cratae_1715_071" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81310;-79808;-8384" node1="-81319,-79867" node2="-81301,-79868" node3="-81301,-79748" node4="-81320,-79747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150072" />
|
||||
<door id="17150072" name="cratae_1715_072" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80498;-79808;-8384" node1="-80508,-79869" node2="-80489,-79869" node3="-80487,-79745" node4="-80509,-79744" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150073" name="cratae_1715_073" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79310;-79808;-8384" node1="-79319,-79867" node2="-79301,-79868" node3="-79301,-79748" node4="-79320,-79747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150074" />
|
||||
<door id="17150074" name="cratae_1715_074" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78498;-79808;-8384" node1="-78508,-79869" node2="-78489,-79869" node3="-78487,-79745" node4="-78509,-79744" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150075" name="cratae_1715_075" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77310;-79808;-8384" node1="-77319,-79867" node2="-77301,-79868" node3="-77301,-79748" node4="-77320,-79747" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150076" name="cratae_1715_076" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-79213;-8384" node1="-85969,-79223" node2="-85841,-79223" node3="-85841,-79202" node4="-85969,-79203" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150081" />
|
||||
<door id="17150077" name="cratae_1715_077" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-79213;-8384" node1="-83969,-79223" node2="-83841,-79223" node3="-83841,-79202" node4="-83969,-79203" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150082" />
|
||||
<door id="17150078" name="cratae_1715_078" open_method="2" close_time="15" open_time="18" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-79213;-8384" node1="-81969,-79223" node2="-81841,-79223" node3="-81841,-79202" node4="-81969,-79203" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150083" />
|
||||
<door id="17150079" name="cratae_1715_079" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-79213;-8384" node1="-79969,-79223" node2="-79841,-79223" node3="-79841,-79202" node4="-79969,-79203" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150084" />
|
||||
<door id="17150080" name="cratae_1715_080" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-79213;-8384" node1="-77969,-79223" node2="-77841,-79223" node3="-77841,-79202" node4="-77969,-79203" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150085" />
|
||||
<door id="17150081" name="cratae_1715_081" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-78401;-8384" node1="-85967,-78413" node2="-85841,-78412" node3="-85841,-78391" node4="-85967,-78390" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150082" name="cratae_1715_082" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-78401;-8384" node1="-83967,-78413" node2="-83841,-78412" node3="-83841,-78391" node4="-83967,-78390" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150083" name="cratae_1715_083" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-78401;-8384" node1="-81967,-78413" node2="-81841,-78412" node3="-81841,-78391" node4="-81967,-78390" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150084" name="cratae_1715_084" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-78401;-8384" node1="-79967,-78413" node2="-79841,-78412" node3="-79841,-78391" node4="-79967,-78390" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150085" name="cratae_1715_085" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-78401;-8384" node1="-77967,-78413" node2="-77841,-78412" node3="-77841,-78391" node4="-77967,-78390" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150086" name="cratae_1715_086" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86498;-77808;-8384" node1="-86507,-77868" node2="-86489,-77867" node3="-86489,-77749" node4="-86506,-77748" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150087" name="cratae_1715_087" open_method="2" close_time="15" open_time="26" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85310;-77808;-8384" node1="-85320,-77868" node2="-85301,-77868" node3="-85301,-77747" node4="-85319,-77747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150088" />
|
||||
<door id="17150088" name="cratae_1715_088" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84498;-77808;-8384" node1="-84507,-77868" node2="-84489,-77867" node3="-84489,-77749" node4="-84506,-77748" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150089" name="cratae_1715_089" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83310;-77808;-8384" node1="-83320,-77868" node2="-83301,-77868" node3="-83301,-77747" node4="-83319,-77747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150090" />
|
||||
<door id="17150090" name="cratae_1715_090" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82498;-77808;-8384" node1="-82507,-77868" node2="-82489,-77867" node3="-82489,-77749" node4="-82506,-77748" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150091" name="cratae_1715_091" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81310;-77808;-8384" node1="-81320,-77868" node2="-81301,-77868" node3="-81301,-77747" node4="-81319,-77747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150092" />
|
||||
<door id="17150092" name="cratae_1715_092" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80498;-77808;-8384" node1="-80507,-77868" node2="-80489,-77867" node3="-80489,-77749" node4="-80506,-77748" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150093" name="cratae_1715_093" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79310;-77808;-8384" node1="-79320,-77868" node2="-79301,-77868" node3="-79301,-77747" node4="-79319,-77747" nodeZ="-8384" default_status="close" targetable="false" child_id_event="17150094" />
|
||||
<door id="17150094" name="cratae_1715_094" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78498;-77808;-8384" node1="-78507,-77868" node2="-78489,-77867" node3="-78489,-77749" node4="-78506,-77748" nodeZ="-8384" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17150095" name="cratae_1715_095" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77310;-77808;-8384" node1="-77320,-77868" node2="-77301,-77868" node3="-77301,-77747" node4="-77319,-77747" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150096" name="cratae_1715_096" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85904;-77213;-8384" node1="-85968,-77227" node2="-85841,-77229" node3="-85841,-77200" node4="-85967,-77200" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150097" name="cratae_1715_097" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83904;-77213;-8384" node1="-83968,-77227" node2="-83841,-77229" node3="-83841,-77200" node4="-83967,-77200" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150098" name="cratae_1715_098" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81904;-77213;-8384" node1="-81968,-77227" node2="-81841,-77229" node3="-81841,-77200" node4="-81967,-77200" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150099" name="cratae_1715_099" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79904;-77213;-8384" node1="-79968,-77227" node2="-79841,-77229" node3="-79841,-77200" node4="-79967,-77200" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150100" name="cratae_1715_100" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77904;-77213;-8384" node1="-77968,-77227" node2="-77841,-77229" node3="-77841,-77200" node4="-77967,-77200" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150101" name="cratae_1715_101" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87036;-82397;-8384" node1="-87093,-82405" node2="-86979,-82405" node3="-86979,-82391" node4="-87093,-82389" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150102" name="cratae_1715_102" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86545;-81808;-8384" node1="-86559,-81877" node2="-86532,-81877" node3="-86533,-81736" node4="-86557,-81736" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17150103" name="cratae_1715_103" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87036;-81217;-8384" node1="-87095,-81226" node2="-86976,-81226" node3="-86976,-81208" node4="-87095,-81209" nodeZ="-8384" default_status="close" targetable="false" />
|
||||
<door id="17160001" name="kerthang_door_001" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81005;-51668;-11439" node1="-80957,-51652" node2="-80961,-51644" node3="-81052,-51683" node4="-81049,-51691" nodeZ="-11494" default_status="close" targetable="false" />
|
||||
<door id="17160002" name="kerthang_door_002" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80600;-51790;-11453" node1="-80566,-51752" node2="-80575,-51747" node3="-80633,-51828" node4="-80624,-51833" nodeZ="-11508" default_status="close" targetable="false" />
|
||||
<door id="17160003" name="kerthang_door_003" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80267;-50993;-11441" node1="-80311,-50973" node2="-80315,-50982" node3="-80221,-51012" node4="-80219,-51004" nodeZ="-11496" default_status="close" targetable="false" />
|
||||
<door id="17160004" name="kerthang_door_004" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80094;-51342;-11435" node1="-80144,-51336" node2="-80145,-51345" node3="-80045,-51347" node4="-80044,-51339" nodeZ="-11490" default_status="close" targetable="false" />
|
||||
<door id="17160005" name="kerthang_door_005" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78548;-52279;-11460" node1="-78518,-52238" node2="-78527,-52233" node3="-78578,-52320" node4="-78569,-52324" nodeZ="-11515" default_status="close" targetable="false" />
|
||||
<door id="17160006" name="kerthang_door_006" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78961;-52313;-11433" node1="-78951,-52264" node2="-78960,-52263" node3="-78971,-52362" node4="-78961,-52363" nodeZ="-11488" default_status="close" targetable="false" />
|
||||
<door id="17160007" name="kerthang_door_007" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79898;-53425;-11453" node1="-79943,-53406" node2="-79947,-53415" node3="-79852,-53444" node4="-79849,-53435" nodeZ="-11508" default_status="close" targetable="false" />
|
||||
<door id="17160008" name="kerthang_door_008" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80026;-52991;-11453" node1="-80076,-52981" node2="-80077,-52991" node3="-79977,-53000" node4="-79977,-52991" nodeZ="-11508" default_status="close" targetable="false" />
|
||||
<door id="17160009" name="kerthang_door_009" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79232;-49127;-11442" node1="-79232,-49077" node2="-79241,-49079" node3="-79233,-49177" node4="-79224,-49175" nodeZ="-11496" default_status="close" targetable="false" />
|
||||
<door id="17160010" name="kerthang_door_010" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79026;-48794;-11436" node1="-79050,-48750" node2="-79059,-48756" node3="-79003,-48836" node4="-78994,-48829" nodeZ="-11491" default_status="close" targetable="false" />
|
||||
<door id="17160011" name="kerthang_door_011" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79643;-48216;-11437" node1="-79611,-48179" node2="-79617,-48173" node3="-79676,-48254" node4="-79669,-48259" nodeZ="-11491" default_status="close" targetable="false" />
|
||||
<door id="17160012" name="kerthang_door_012" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79292;-48148;-11434" node1="-79272,-48103" node2="-79281,-48100" node3="-79311,-48194" node4="-79304,-48196" nodeZ="-11488" default_status="close" targetable="false" />
|
||||
<door id="17160013" name="kerthang_door_013" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77927;-47015;-11434" node1="-77958,-46973" node2="-77966,-46980" node3="-77899,-47055" node4="-77891,-47048" nodeZ="-11488" default_status="close" targetable="false" />
|
||||
<door id="17160014" name="kerthang_door_014" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77988;-47382;-11432" node1="-78032,-47356" node2="-78036,-47366" node3="-77945,-47406" node4="-77940,-47397" nodeZ="-11487" default_status="close" targetable="false" />
|
||||
<door id="17160015" name="kerthang_door_015" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77268;-48589;-11436" node1="-77235,-48551" node2="-77243,-48545" node3="-77301,-48628" node4="-77292,-48633" nodeZ="-11490" default_status="close" targetable="false" />
|
||||
<door id="17160016" name="kerthang_door_016" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77662;-48607;-11441" node1="-77637,-48564" node2="-77646,-48560" node3="-77687,-48651" node4="-77678,-48654" nodeZ="-11495" default_status="close" targetable="false" />
|
||||
<door id="17160017" name="kerthang_door_017" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81142;-46668;-11440" node1="-81094,-46684" node2="-81091,-46675" node3="-81190,-46651" node4="-81191,-46661" nodeZ="-11495" default_status="close" targetable="false" />
|
||||
<door id="17160018" name="kerthang_door_018" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81385;-46367;-11434" node1="-81335,-46357" node2="-81337,-46349" node3="-81434,-46376" node4="-81433,-46386" nodeZ="-11489" default_status="close" targetable="false" />
|
||||
<door id="17160019" name="kerthang_door_019" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81001;-44640;-11436" node1="-80976,-44683" node2="-80969,-44677" node3="-81026,-44596" node4="-81034,-44602" nodeZ="-11491" default_status="close" targetable="false" />
|
||||
<door id="17160020" name="kerthang_door_020" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81111;-45014;-11439" node1="-81078,-45052" node2="-81072,-45044" node3="-81145,-44976" node4="-81150,-44983" nodeZ="-11494" default_status="close" targetable="false" />
|
||||
<door id="17160021" name="kerthang_door_021" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82701;-44744;-11434" node1="-82653,-44730" node2="-82656,-44721" node3="-82749,-44759" node4="-82746,-44767" nodeZ="-11489" default_status="close" targetable="false" />
|
||||
<door id="17160022" name="kerthang_door_022" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82376;-44916;-11433" node1="-82338,-44884" node2="-82346,-44877" node3="-82414,-44948" node4="-82407,-44957" nodeZ="-11488" default_status="close" targetable="false" />
|
||||
<door id="17160023" name="kerthang_door_023" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82132;-46753;-11432" node1="-82109,-46796" node2="-82100,-46790" node3="-82155,-46709" node4="-82163,-46715" nodeZ="-11487" default_status="close" targetable="false" />
|
||||
<door id="17160024" name="kerthang_door_024" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82077;-46391;-11435" node1="-82041,-46427" node2="-82035,-46418" node3="-82113,-46354" node4="-82120,-46365" nodeZ="-11490" default_status="close" targetable="false" />
|
||||
<door id="17160025" name="kerthang_door_025" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84084;-47670;-11430" node1="-84055,-47630" node2="-84063,-47624" node3="-84112,-47711" node4="-84104,-47715" nodeZ="-11484" default_status="close" targetable="false" />
|
||||
<door id="17160026" name="kerthang_door_026" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84442;-47823;-11434" node1="-84439,-47774" node2="-84447,-47774" node3="-84446,-47873" node4="-84438,-47872" nodeZ="-11488" default_status="close" targetable="false" />
|
||||
<door id="17160027" name="kerthang_door_027" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84269;-48644;-11435" node1="-84220,-48632" node2="-84222,-48623" node3="-84318,-48655" node4="-84315,-48664" nodeZ="-11489" default_status="close" targetable="false" />
|
||||
<door id="17160028" name="kerthang_door_028" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84625;-48465;-11454" node1="-84582,-48441" node2="-84587,-48433" node3="-84669,-48490" node4="-84663,-48498" nodeZ="-11508" default_status="close" targetable="false" />
|
||||
<door id="17160029" name="kerthang_door_029" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86353;-48663;-11435" node1="-86354,-48613" node2="-86364,-48614" node3="-86352,-48713" node4="-86343,-48712" nodeZ="-11489" default_status="close" targetable="false" />
|
||||
<door id="17160030" name="kerthang_door_030" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86093;-48395;-11435" node1="-86114,-48349" node2="-86123,-48354" node3="-86074,-48441" node4="-86064,-48435" nodeZ="-11489" default_status="close" targetable="false" />
|
||||
<door id="17160031" name="kerthang_door_031" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86009;-47000;-11433" node1="-85960,-46988" node2="-85963,-46978" node3="-86057,-47013" node4="-86054,-47021" nodeZ="-11487" default_status="close" targetable="false" />
|
||||
<door id="17160032" name="kerthang_door_032" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85679;-47206;-11435" node1="-85635,-47185" node2="-85640,-47177" node3="-85722,-47227" node4="-85719,-47235" nodeZ="-11490" default_status="close" targetable="false" />
|
||||
<door id="17160033" name="kerthang_door_033" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83979;-50825;-11439" node1="-83951,-50866" node2="-83945,-50860" node3="-84005,-50785" node4="-84013,-50791" nodeZ="-11494" default_status="close" targetable="false" />
|
||||
<door id="17160034" name="kerthang_door_034" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83968;-51208;-11436" node1="-83925,-51231" node2="-83920,-51219" node3="-84013,-51186" node4="-84016,-51196" nodeZ="-11491" default_status="close" targetable="false" />
|
||||
<door id="17160035" name="kerthang_door_035" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83136;-51339;-11440" node1="-83149,-51390" node2="-83127,-51390" node3="-83124,-51287" node4="-83145,-51286" nodeZ="-11495" default_status="close" targetable="false" />
|
||||
<door id="17160036" name="kerthang_door_036" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83381;-51591;-11434" node1="-83375,-51640" node2="-83362,-51638" node3="-83388,-51542" node4="-83399,-51544" nodeZ="-11489" default_status="close" targetable="false" />
|
||||
<door id="17160037" name="kerthang_door_037" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83881;-53366;-11461" node1="-83927,-53349" node2="-83929,-53358" node3="-83835,-53383" node4="-83832,-53373" nodeZ="-11516" default_status="close" targetable="false" />
|
||||
<door id="17160038" name="kerthang_door_038" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84029;-52965;-11433" node1="-84080,-52969" node2="-84078,-52978" node3="-83980,-52962" node4="-83981,-52952" nodeZ="-11488" default_status="close" targetable="false" />
|
||||
<door id="17160039" name="kerthang_door_039" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85296;-52364;-11434" node1="-85301,-52413" node2="-85293,-52413" node3="-85290,-52315" node4="-85300,-52314" nodeZ="-11489" default_status="close" targetable="false" />
|
||||
<door id="17160040" name="kerthang_door_040" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84991;-52127;-11443" node1="-84988,-52179" node2="-84976,-52175" node3="-84995,-52076" node4="-85006,-52078" nodeZ="-11498" default_status="close" targetable="false" />
|
||||
<door id="17170001" name="cratae_1717_001" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-20993;-8352" node1="-86046,-21003" node2="-85922,-21003" node3="-85921,-20981" node4="-86046,-20981" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170002" name="cratae_1717_002" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-20993;-8352" node1="-84046,-21003" node2="-83922,-21003" node3="-83921,-20981" node4="-84046,-20981" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170003" name="cratae_1717_003" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-20993;-8352" node1="-82046,-21003" node2="-81922,-21003" node3="-81921,-20981" node4="-82046,-20981" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170004" name="cratae_1717_004" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-20993;-8352" node1="-80046,-21003" node2="-79922,-21003" node3="-79921,-20981" node4="-80046,-20981" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170005" name="cratae_1717_005" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-20993;-8352" node1="-78046,-21003" node2="-77922,-21003" node3="-77921,-20981" node4="-78046,-20981" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170006" name="cratae_1717_006" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86578;-20400;-8352" node1="-86588,-20462" node2="-86567,-20461" node3="-86568,-20339" node4="-86588,-20338" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170007" name="cratae_1717_007" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85390;-20400;-8352" node1="-85400,-20459" node2="-85381,-20459" node3="-85380,-20339" node4="-85399,-20339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170008" />
|
||||
<door id="17170008" name="cratae_1717_008" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84578;-20400;-8352" node1="-84588,-20462" node2="-84567,-20461" node3="-84568,-20339" node4="-84588,-20338" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170009" name="cratae_1717_009" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83390;-20400;-8352" node1="-83400,-20459" node2="-83381,-20459" node3="-83380,-20339" node4="-83399,-20339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170010" />
|
||||
<door id="17170010" name="cratae_1717_010" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82578;-20400;-8352" node1="-82588,-20462" node2="-82567,-20461" node3="-82568,-20339" node4="-82588,-20338" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170011" name="cratae_1717_011" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81390;-20400;-8352" node1="-81400,-20459" node2="-81381,-20459" node3="-81380,-20339" node4="-81399,-20339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170012" />
|
||||
<door id="17170012" name="cratae_1717_012" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80578;-20400;-8352" node1="-80588,-20462" node2="-80567,-20461" node3="-80568,-20339" node4="-80588,-20338" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170013" name="cratae_1717_013" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79390;-20400;-8352" node1="-79400,-20459" node2="-79381,-20459" node3="-79380,-20339" node4="-79399,-20339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170014" />
|
||||
<door id="17170014" name="cratae_1717_014" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78578;-20400;-8352" node1="-78588,-20462" node2="-78567,-20461" node3="-78568,-20339" node4="-78588,-20338" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170015" name="cratae_1717_015" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77390;-20400;-8352" node1="-77400,-20459" node2="-77381,-20459" node3="-77380,-20339" node4="-77399,-20339" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170016" name="cratae_1717_016" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-19805;-8352" node1="-86045,-19815" node2="-85922,-19815" node3="-85921,-19796" node4="-86044,-19796" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170021" />
|
||||
<door id="17170017" name="cratae_1717_017" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-19805;-8352" node1="-84045,-19815" node2="-83922,-19815" node3="-83921,-19796" node4="-84044,-19796" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170022" />
|
||||
<door id="17170018" name="cratae_1717_018" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-19805;-8352" node1="-82045,-19815" node2="-81922,-19815" node3="-81921,-19796" node4="-82044,-19796" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170023" />
|
||||
<door id="17170019" name="cratae_1717_019" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-19805;-8352" node1="-80045,-19815" node2="-79922,-19815" node3="-79921,-19796" node4="-80044,-19796" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170024" />
|
||||
<door id="17170020" name="cratae_1717_020" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-19805;-8352" node1="-78045,-19815" node2="-77922,-19815" node3="-77921,-19796" node4="-78044,-19796" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170025" />
|
||||
<door id="17170021" name="cratae_1717_021" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-18993;-8352" node1="-86049,-19005" node2="-85920,-19006" node3="-85920,-18983" node4="-86048,-18980" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170022" name="cratae_1717_022" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-18993;-8352" node1="-84049,-19005" node2="-83920,-19006" node3="-83920,-18983" node4="-84048,-18980" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170023" name="cratae_1717_023" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-18993;-8352" node1="-82049,-19005" node2="-81920,-19006" node3="-81920,-18983" node4="-82048,-18980" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170024" name="cratae_1717_024" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-18993;-8352" node1="-80049,-19005" node2="-79920,-19006" node3="-79920,-18983" node4="-80048,-18980" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170025" name="cratae_1717_025" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-18993;-8352" node1="-78049,-19005" node2="-77920,-19006" node3="-77920,-18983" node4="-78048,-18980" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170026" name="cratae_1717_026" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86578;-18400;-8352" node1="-86596,-18473" node2="-86567,-18473" node3="-86568,-18321" node4="-86594,-18321" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170027" name="cratae_1717_027" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85390;-18400;-8352" node1="-85401,-18467" node2="-85380,-18467" node3="-85378,-18328" node4="-85401,-18329" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170028" />
|
||||
<door id="17170028" name="cratae_1717_028" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84578;-18400;-8352" node1="-84596,-18473" node2="-84567,-18473" node3="-84568,-18321" node4="-84594,-18321" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170029" name="cratae_1717_029" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83390;-18400;-8352" node1="-83401,-18467" node2="-83380,-18467" node3="-83378,-18328" node4="-83401,-18329" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170030" />
|
||||
<door id="17170030" name="cratae_1717_030" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82578;-18400;-8352" node1="-82596,-18473" node2="-82567,-18473" node3="-82568,-18321" node4="-82594,-18321" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170031" name="cratae_1717_031" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81390;-18400;-8352" node1="-81401,-18467" node2="-81380,-18467" node3="-81378,-18328" node4="-81401,-18329" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170032" />
|
||||
<door id="17170032" name="cratae_1717_032" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80578;-18400;-8352" node1="-80596,-18473" node2="-80567,-18473" node3="-80568,-18321" node4="-80594,-18321" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170033" name="cratae_1717_033" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79390;-18400;-8352" node1="-79401,-18467" node2="-79380,-18467" node3="-79378,-18328" node4="-79401,-18329" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170034" />
|
||||
<door id="17170034" name="cratae_1717_034" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78578;-18400;-8352" node1="-78596,-18473" node2="-78567,-18473" node3="-78568,-18321" node4="-78594,-18321" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170035" name="cratae_1717_035" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77390;-18400;-8352" node1="-77401,-18467" node2="-77380,-18467" node3="-77378,-18328" node4="-77401,-18329" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170036" name="cratae_1717_036" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-17805;-8352" node1="-86047,-17819" node2="-85921,-17819" node3="-85920,-17791" node4="-86047,-17792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170041" />
|
||||
<door id="17170037" name="cratae_1717_037" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-17805;-8352" node1="-84047,-17819" node2="-83921,-17819" node3="-83920,-17791" node4="-84047,-17792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170042" />
|
||||
<door id="17170038" name="cratae_1717_038" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-17805;-8352" node1="-82047,-17819" node2="-81921,-17819" node3="-81920,-17791" node4="-82047,-17792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170043" />
|
||||
<door id="17170039" name="cratae_1717_039" open_method="2" close_time="15" open_time="10" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-17805;-8352" node1="-80047,-17819" node2="-79921,-17819" node3="-79920,-17791" node4="-80047,-17792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170044" />
|
||||
<door id="17170040" name="cratae_1717_040" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-17805;-8352" node1="-78047,-17819" node2="-77921,-17819" node3="-77920,-17791" node4="-78047,-17792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170045" />
|
||||
<door id="17170041" name="cratae_1717_041" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-16993;-8352" node1="-86063,-17006" node2="-85904,-17007" node3="-85904,-16984" node4="-86063,-16984" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170042" name="cratae_1717_042" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-16993;-8352" node1="-84063,-17006" node2="-83904,-17007" node3="-83904,-16984" node4="-84063,-16984" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170043" name="cratae_1717_043" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-16993;-8352" node1="-82063,-17006" node2="-81904,-17007" node3="-81904,-16984" node4="-82063,-16984" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170044" name="cratae_1717_044" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-16993;-8352" node1="-80063,-17006" node2="-79904,-17007" node3="-79904,-16984" node4="-80063,-16984" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170045" name="cratae_1717_045" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-16993;-8352" node1="-78063,-17006" node2="-77904,-17007" node3="-77904,-16984" node4="-78063,-16984" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170046" name="cratae_1717_046" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86578;-16400;-8352" node1="-86588,-16471" node2="-86567,-16471" node3="-86568,-16338" node4="-86586,-16336" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170047" name="cratae_1717_047" open_method="2" close_time="15" open_time="14" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85390;-16400;-8352" node1="-85404,-16480" node2="-85378,-16480" node3="-85378,-16320" node4="-85403,-16320" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170048" />
|
||||
<door id="17170048" name="cratae_1717_048" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84578;-16400;-8352" node1="-84588,-16471" node2="-84567,-16471" node3="-84568,-16338" node4="-84586,-16336" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170049" name="cratae_1717_049" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83390;-16400;-8352" node1="-83404,-16480" node2="-83378,-16480" node3="-83378,-16320" node4="-83403,-16320" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170050" />
|
||||
<door id="17170050" name="cratae_1717_050" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82578;-16400;-8352" node1="-82588,-16471" node2="-82567,-16471" node3="-82568,-16338" node4="-82586,-16336" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170051" name="cratae_1717_051" open_method="2" close_time="15" open_time="23" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81390;-16400;-8352" node1="-81404,-16480" node2="-81378,-16480" node3="-81378,-16320" node4="-81403,-16320" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170052" />
|
||||
<door id="17170052" name="cratae_1717_052" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80578;-16400;-8352" node1="-80588,-16471" node2="-80567,-16471" node3="-80568,-16338" node4="-80586,-16336" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170053" name="cratae_1717_053" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79390;-16400;-8352" node1="-79404,-16480" node2="-79378,-16480" node3="-79378,-16320" node4="-79403,-16320" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170054" />
|
||||
<door id="17170054" name="cratae_1717_054" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78578;-16400;-8352" node1="-78588,-16471" node2="-78567,-16471" node3="-78568,-16338" node4="-78586,-16336" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170055" name="cratae_1717_055" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77390;-16400;-8352" node1="-77404,-16480" node2="-77378,-16480" node3="-77378,-16320" node4="-77403,-16320" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170056" name="cratae_1717_056" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-15805;-8352" node1="-86044,-15820" node2="-85921,-15821" node3="-85920,-15792" node4="-86048,-15792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170061" />
|
||||
<door id="17170057" name="cratae_1717_057" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-15805;-8352" node1="-84044,-15820" node2="-83921,-15821" node3="-83920,-15792" node4="-84048,-15792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170062" />
|
||||
<door id="17170058" name="cratae_1717_058" open_method="2" close_time="15" open_time="18" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-15805;-8352" node1="-82044,-15820" node2="-81921,-15821" node3="-81920,-15792" node4="-82048,-15792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170063" />
|
||||
<door id="17170059" name="cratae_1717_059" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-15805;-8352" node1="-80044,-15820" node2="-79921,-15821" node3="-79920,-15792" node4="-80048,-15792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170064" />
|
||||
<door id="17170060" name="cratae_1717_060" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-15805;-8352" node1="-78044,-15820" node2="-77921,-15821" node3="-77920,-15792" node4="-78048,-15792" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170065" />
|
||||
<door id="17170061" name="cratae_1717_061" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-14993;-8352" node1="-86048,-15005" node2="-85920,-15006" node3="-85921,-14981" node4="-86047,-14981" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170062" name="cratae_1717_062" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-14993;-8352" node1="-84048,-15005" node2="-83920,-15006" node3="-83921,-14981" node4="-84047,-14981" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170063" name="cratae_1717_063" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-14993;-8352" node1="-82048,-15005" node2="-81920,-15006" node3="-81921,-14981" node4="-82047,-14981" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170064" name="cratae_1717_064" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-14993;-8352" node1="-80048,-15005" node2="-79920,-15006" node3="-79921,-14981" node4="-80047,-14981" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170065" name="cratae_1717_065" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-14993;-8352" node1="-78048,-15005" node2="-77920,-15006" node3="-77921,-14981" node4="-78047,-14981" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170066" name="cratae_1717_066" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86578;-14400;-8352" node1="-86588,-14461" node2="-86569,-14461" node3="-86567,-14337" node4="-86589,-14336" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170067" name="cratae_1717_067" open_method="2" close_time="15" open_time="26" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85390;-14400;-8352" node1="-85399,-14459" node2="-85381,-14460" node3="-85381,-14340" node4="-85400,-14339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170068" />
|
||||
<door id="17170068" name="cratae_1717_068" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84578;-14400;-8352" node1="-84588,-14461" node2="-84569,-14461" node3="-84567,-14337" node4="-84589,-14336" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170069" name="cratae_1717_069" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83390;-14400;-8352" node1="-83399,-14459" node2="-83381,-14460" node3="-83381,-14340" node4="-83400,-14339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170070" />
|
||||
<door id="17170070" name="cratae_1717_070" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82578;-14400;-8352" node1="-82588,-14461" node2="-82569,-14461" node3="-82567,-14337" node4="-82589,-14336" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170071" name="cratae_1717_071" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81390;-14400;-8352" node1="-81399,-14459" node2="-81381,-14460" node3="-81381,-14340" node4="-81400,-14339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170072" />
|
||||
<door id="17170072" name="cratae_1717_072" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80578;-14400;-8352" node1="-80588,-14461" node2="-80569,-14461" node3="-80567,-14337" node4="-80589,-14336" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170073" name="cratae_1717_073" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79390;-14400;-8352" node1="-79399,-14459" node2="-79381,-14460" node3="-79381,-14340" node4="-79400,-14339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170074" />
|
||||
<door id="17170074" name="cratae_1717_074" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78578;-14400;-8352" node1="-78588,-14461" node2="-78569,-14461" node3="-78567,-14337" node4="-78589,-14336" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170075" name="cratae_1717_075" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77390;-14400;-8352" node1="-77399,-14459" node2="-77381,-14460" node3="-77381,-14340" node4="-77400,-14339" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170076" name="cratae_1717_076" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-13805;-8352" node1="-86049,-13815" node2="-85921,-13815" node3="-85921,-13794" node4="-86049,-13795" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170081" />
|
||||
<door id="17170077" name="cratae_1717_077" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-13805;-8352" node1="-84049,-13815" node2="-83921,-13815" node3="-83921,-13794" node4="-84049,-13795" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170082" />
|
||||
<door id="17170078" name="cratae_1717_078" open_method="2" close_time="15" open_time="18" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-13805;-8352" node1="-82049,-13815" node2="-81921,-13815" node3="-81921,-13794" node4="-82049,-13795" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170083" />
|
||||
<door id="17170079" name="cratae_1717_079" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-13805;-8352" node1="-80049,-13815" node2="-79921,-13815" node3="-79921,-13794" node4="-80049,-13795" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170084" />
|
||||
<door id="17170080" name="cratae_1717_080" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-13805;-8352" node1="-78049,-13815" node2="-77921,-13815" node3="-77921,-13794" node4="-78049,-13795" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170085" />
|
||||
<door id="17170081" name="cratae_1717_081" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-12993;-8352" node1="-86047,-13005" node2="-85921,-13004" node3="-85921,-12983" node4="-86047,-12982" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170082" name="cratae_1717_082" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-12993;-8352" node1="-84047,-13005" node2="-83921,-13004" node3="-83921,-12983" node4="-84047,-12982" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170083" name="cratae_1717_083" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-12993;-8352" node1="-82047,-13005" node2="-81921,-13004" node3="-81921,-12983" node4="-82047,-12982" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170084" name="cratae_1717_084" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-12993;-8352" node1="-80047,-13005" node2="-79921,-13004" node3="-79921,-12983" node4="-80047,-12982" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170085" name="cratae_1717_085" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-12993;-8352" node1="-78047,-13005" node2="-77921,-13004" node3="-77921,-12983" node4="-78047,-12982" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170086" name="cratae_1717_086" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86578;-12400;-8352" node1="-86587,-12460" node2="-86569,-12459" node3="-86569,-12341" node4="-86586,-12340" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170087" name="cratae_1717_087" open_method="2" close_time="15" open_time="26" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85390;-12400;-8352" node1="-85400,-12460" node2="-85381,-12460" node3="-85381,-12339" node4="-85399,-12339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170088" />
|
||||
<door id="17170088" name="cratae_1717_088" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84578;-12400;-8352" node1="-84587,-12460" node2="-84569,-12459" node3="-84569,-12341" node4="-84586,-12340" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170089" name="cratae_1717_089" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83390;-12400;-8352" node1="-83400,-12460" node2="-83381,-12460" node3="-83381,-12339" node4="-83399,-12339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170090" />
|
||||
<door id="17170090" name="cratae_1717_090" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-82578;-12400;-8352" node1="-82587,-12460" node2="-82569,-12459" node3="-82569,-12341" node4="-82586,-12340" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170091" name="cratae_1717_091" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81390;-12400;-8352" node1="-81400,-12460" node2="-81381,-12460" node3="-81381,-12339" node4="-81399,-12339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170092" />
|
||||
<door id="17170092" name="cratae_1717_092" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80578;-12400;-8352" node1="-80587,-12460" node2="-80569,-12459" node3="-80569,-12341" node4="-80586,-12340" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170093" name="cratae_1717_093" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79390;-12400;-8352" node1="-79400,-12460" node2="-79381,-12460" node3="-79381,-12339" node4="-79399,-12339" nodeZ="-8352" default_status="close" targetable="false" child_id_event="17170094" />
|
||||
<door id="17170094" name="cratae_1717_094" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78578;-12400;-8352" node1="-78587,-12460" node2="-78569,-12459" node3="-78569,-12341" node4="-78586,-12340" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="17170095" name="cratae_1717_095" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77390;-12400;-8352" node1="-77400,-12460" node2="-77381,-12460" node3="-77381,-12339" node4="-77399,-12339" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170096" name="cratae_1717_096" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85984;-11805;-8352" node1="-86048,-11819" node2="-85921,-11821" node3="-85921,-11792" node4="-86047,-11792" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170097" name="cratae_1717_097" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-83984;-11805;-8352" node1="-84048,-11819" node2="-83921,-11821" node3="-83921,-11792" node4="-84047,-11792" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170098" name="cratae_1717_098" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-81984;-11805;-8352" node1="-82048,-11819" node2="-81921,-11821" node3="-81921,-11792" node4="-82047,-11792" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170099" name="cratae_1717_099" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-79984;-11805;-8352" node1="-80048,-11819" node2="-79921,-11821" node3="-79921,-11792" node4="-80047,-11792" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170100" name="cratae_1717_100" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-77984;-11805;-8352" node1="-78048,-11819" node2="-77921,-11821" node3="-77921,-11792" node4="-78047,-11792" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170101" name="cratae_1717_101" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87116;-16989;-8352" node1="-87173,-16997" node2="-87059,-16997" node3="-87059,-16983" node4="-87173,-16981" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170102" name="cratae_1717_102" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86625;-16400;-8352" node1="-86639,-16469" node2="-86612,-16469" node3="-86613,-16328" node4="-86637,-16328" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17170103" name="cratae_1717_103" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87116;-15809;-8352" node1="-87175,-15818" node2="-87056,-15818" node3="-87056,-15800" node4="-87175,-15801" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="17190001" name="camaeldg_door" open_method="0" level="1" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="-85056;47903;-3864" node1="-85170,47896" node2="-84941,47895" node3="-84941,47913" node4="-85170,47914" nodeZ="-3858" emitter_id="17190012" default_status="close" />
|
||||
<door id="17220001" name="gludin_agit_003_003" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="-84495;155208;-3150" node1="-84494,155208" node2="-84494,155246" node3="-84497,155246" node4="-84496,155208" nodeZ="-3192" clanhall_id="28" />
|
||||
<door id="17220002" name="gludin_agit_003_004" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="-84495;155286;-3150" node1="-84496,155286" node2="-84496,155248" node3="-84494,155248" node4="-84494,155286" nodeZ="-3192" clanhall_id="28" />
|
||||
<door id="17220003" name="gludin_agit_003_001" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="-83961;155257;-3149" node1="-83962,155257" node2="-83962,155218" node3="-83960,155218" node4="-83960,155257" nodeZ="-3191" clanhall_id="28" />
|
||||
@ -362,126 +60,6 @@
|
||||
<door id="17220012" name="gludin_agit_004_002" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="-79736;150138;-3026" node1="-79737,150138" node2="-79737,150099" node3="-79735,150099" node4="-79735,150138" nodeZ="-3067" clanhall_id="29" />
|
||||
<door id="17220013" name="gludin_agit_005_001" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="-79739;151522;-3027" node1="-79738,151522" node2="-79738,151561" node3="-79740,151561" node4="-79740,151522" nodeZ="-3068" clanhall_id="30" />
|
||||
<door id="17220014" name="gludin_agit_005_002" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="-79739;151597;-3027" node1="-79740,151597" node2="-79740,151558" node3="-79738,151558" node4="-79738,151597" nodeZ="-3068" clanhall_id="30" />
|
||||
<door id="17240001" name="door_of_ssq_id1" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-75606;213413;-7153" node1="-75615,213331" node2="-75598,213330" node3="-75598,213496" node4="-75615,213496" nodeZ="-7154" default_status="close" targetable="true" child_id_event="17240002" />
|
||||
<door id="17240002" name="door_of_ssq_id1_a" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-75606;213413;-7153" node1="-75614,213335" node2="-75598,213335" node3="-75598,213493" node4="-75615,213495" nodeZ="-7025" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="true" />
|
||||
<door id="17240003" name="door_of_ssq_id2" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78455;205854;-7919" node1="-78465,205770" node2="-78446,205770" node3="-78446,205939" node4="-78465,205939" nodeZ="-7921" default_status="close" targetable="true" child_id_event="17240004" />
|
||||
<door id="17240004" name="door_of_ssq_id2_a" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-78455;205854;-7919" node1="-78465,205771" node2="-78445,205772" node3="-78447,205939" node4="-78465,205939" nodeZ="-7791" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="true" />
|
||||
<door id="17240005" name="door_of_ssq_password" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80256;205856;-7919" node1="-80264,205774" node2="-80248,205774" node3="-80248,205939" node4="-80264,205939" nodeZ="-7923" default_status="close" targetable="true" child_id_event="17240006" />
|
||||
<door id="17240006" name="door_of_ssq_password_a" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-80256;205856;-7919" node1="-80265,205775" node2="-80248,205775" node3="-80246,205939" node4="-80265,205939" nodeZ="-7791" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="true" />
|
||||
<door id="17240101" name="door_of_ssq_necro_fire1" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-89560;217515;-7520" node1="-89702,217498" node2="-89418,217498" node3="-89421,217533" node4="-89701,217534" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240102" name="door_of_ssq_necro1" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-89048;218315;-7520" node1="-89192,218298" node2="-88906,218295" node3="-88909,218333" node4="-89189,218334" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240103" name="door_of_ssq_necro_seal1" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-88998;220637;-7520" node1="-89014,220782" node2="-89021,220495" node3="-88978,220494" node4="-88981,220781" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240104" name="door_of_ssq_necro2" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-88599;219493;-7520" node1="-88743,219475" node2="-88460,219475" node3="-88460,219511" node4="-88740,219512" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240105" name="door_of_ssq_necro_fire2" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87288;220237;-7520" node1="-87429,220219" node2="-87146,220222" node3="-87145,220254" node4="-87429,220256" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240106" name="door_of_ssq_necro3" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86400;220639;-7520" node1="-86416,220784" node2="-86423,220497" node3="-86380,220496" node4="-86383,220783" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240107" name="door_of_ssq_necro_seal2" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84952;219629;-7520" node1="-85092,219612" node2="-84811,219611" node3="-84813,219647" node4="-85093,219648" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240108" name="door_of_ssq_necro4" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-85464;218832;-7520" node1="-85606,218816" node2="-85323,218812" node3="-85325,218850" node4="-85605,218851" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240109" name="door_of_ssq_necro_fire3" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-86839;217406;-7520" node1="-86823,217260" node2="-86822,217552" node3="-86859,217551" node4="-86855,217261" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240110" name="door_of_ssq_necro5" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-87448;216507;-7520" node1="-87591,216489" node2="-87303,216489" node3="-87300,216527" node4="-87589,216526" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="17240111" name="door_of_ssq_necro6" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-84189;216028;-7520" node1="-84173,215882" node2="-84172,216174" node3="-84209,216173" node4="-84205,215883" nodeZ="-7523" default_status="close" targetable="true" />
|
||||
<door id="18150201" name="cratae_1815_001" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-87553;-8352" node1="-52782,-87563" node2="-52658,-87563" node3="-52657,-87541" node4="-52782,-87541" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150202" name="cratae_1815_002" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-87553;-8352" node1="-50782,-87563" node2="-50658,-87563" node3="-50657,-87541" node4="-50782,-87541" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150203" name="cratae_1815_003" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-87553;-8352" node1="-48782,-87563" node2="-48658,-87563" node3="-48657,-87541" node4="-48782,-87541" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150204" name="cratae_1815_004" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-87553;-8352" node1="-46782,-87563" node2="-46658,-87563" node3="-46657,-87541" node4="-46782,-87541" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150205" name="cratae_1815_005" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-87553;-8352" node1="-44782,-87563" node2="-44658,-87563" node3="-44657,-87541" node4="-44782,-87541" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150206" name="cratae_1815_006" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-53314;-86960;-8352" node1="-53324,-87022" node2="-53303,-87021" node3="-53304,-86899" node4="-53324,-86898" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150207" name="cratae_1815_007" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52126;-86960;-8352" node1="-52136,-87019" node2="-52117,-87019" node3="-52116,-86899" node4="-52135,-86899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150208" />
|
||||
<door id="18150208" name="cratae_1815_008" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51314;-86960;-8352" node1="-51324,-87022" node2="-51303,-87021" node3="-51304,-86899" node4="-51324,-86898" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150209" name="cratae_1815_009" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50126;-86960;-8352" node1="-50136,-87019" node2="-50117,-87019" node3="-50116,-86899" node4="-50135,-86899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150210" />
|
||||
<door id="18150210" name="cratae_1815_010" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49314;-86960;-8352" node1="-49324,-87022" node2="-49303,-87021" node3="-49304,-86899" node4="-49324,-86898" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150211" name="cratae_1815_011" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48126;-86960;-8352" node1="-48136,-87019" node2="-48117,-87019" node3="-48116,-86899" node4="-48135,-86899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150212" />
|
||||
<door id="18150212" name="cratae_1815_012" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-47314;-86960;-8352" node1="-47324,-87022" node2="-47303,-87021" node3="-47304,-86899" node4="-47324,-86898" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150213" name="cratae_1815_013" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46126;-86960;-8352" node1="-46136,-87019" node2="-46117,-87019" node3="-46116,-86899" node4="-46135,-86899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150214" />
|
||||
<door id="18150214" name="cratae_1815_014" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45314;-86960;-8352" node1="-45324,-87022" node2="-45303,-87021" node3="-45304,-86899" node4="-45324,-86898" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150215" name="cratae_1815_015" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44126;-86960;-8352" node1="-44136,-87019" node2="-44117,-87019" node3="-44116,-86899" node4="-44135,-86899" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150216" name="cratae_1815_016" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-86365;-8352" node1="-52781,-86375" node2="-52658,-86375" node3="-52657,-86356" node4="-52780,-86356" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150221" />
|
||||
<door id="18150217" name="cratae_1815_017" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-86365;-8352" node1="-50781,-86375" node2="-50658,-86375" node3="-50657,-86356" node4="-50780,-86356" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150222" />
|
||||
<door id="18150218" name="cratae_1815_018" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-86365;-8352" node1="-48781,-86375" node2="-48658,-86375" node3="-48657,-86356" node4="-48780,-86356" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150223" />
|
||||
<door id="18150219" name="cratae_1815_019" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-86365;-8352" node1="-46781,-86375" node2="-46658,-86375" node3="-46657,-86356" node4="-46780,-86356" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150224" />
|
||||
<door id="18150220" name="cratae_1815_020" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-86365;-8352" node1="-44781,-86375" node2="-44658,-86375" node3="-44657,-86356" node4="-44780,-86356" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150225" />
|
||||
<door id="18150221" name="cratae_1815_021" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-85553;-8352" node1="-52785,-85565" node2="-52656,-85566" node3="-52656,-85543" node4="-52784,-85540" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150222" name="cratae_1815_022" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-85553;-8352" node1="-50785,-85565" node2="-50656,-85566" node3="-50656,-85543" node4="-50784,-85540" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150223" name="cratae_1815_023" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-85553;-8352" node1="-48785,-85565" node2="-48656,-85566" node3="-48656,-85543" node4="-48784,-85540" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150224" name="cratae_1815_024" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-85553;-8352" node1="-46785,-85565" node2="-46656,-85566" node3="-46656,-85543" node4="-46784,-85540" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150225" name="cratae_1815_025" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-85553;-8352" node1="-44785,-85565" node2="-44656,-85566" node3="-44656,-85543" node4="-44784,-85540" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150226" name="cratae_1815_026" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-53314;-84960;-8352" node1="-53332,-85033" node2="-53303,-85033" node3="-53304,-84881" node4="-53330,-84881" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150227" name="cratae_1815_027" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52126;-84960;-8352" node1="-52137,-85027" node2="-52116,-85027" node3="-52114,-84888" node4="-52137,-84889" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150228" />
|
||||
<door id="18150228" name="cratae_1815_028" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51314;-84960;-8352" node1="-51332,-85033" node2="-51303,-85033" node3="-51304,-84881" node4="-51330,-84881" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150229" name="cratae_1815_029" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50126;-84960;-8352" node1="-50137,-85027" node2="-50116,-85027" node3="-50114,-84888" node4="-50137,-84889" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150230" />
|
||||
<door id="18150230" name="cratae_1815_030" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49314;-84960;-8352" node1="-49332,-85033" node2="-49303,-85033" node3="-49304,-84881" node4="-49330,-84881" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150231" name="cratae_1815_031" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48126;-84960;-8352" node1="-48137,-85027" node2="-48116,-85027" node3="-48114,-84888" node4="-48137,-84889" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150232" />
|
||||
<door id="18150232" name="cratae_1815_032" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-47314;-84960;-8352" node1="-47332,-85033" node2="-47303,-85033" node3="-47304,-84881" node4="-47330,-84881" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150233" name="cratae_1815_033" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46126;-84960;-8352" node1="-46137,-85027" node2="-46116,-85027" node3="-46114,-84888" node4="-46137,-84889" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150234" />
|
||||
<door id="18150234" name="cratae_1815_034" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45314;-84960;-8352" node1="-45332,-85033" node2="-45303,-85033" node3="-45304,-84881" node4="-45330,-84881" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150235" name="cratae_1815_035" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44126;-84960;-8352" node1="-44137,-85027" node2="-44116,-85027" node3="-44114,-84888" node4="-44137,-84889" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150236" name="cratae_1815_036" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-84365;-8352" node1="-52783,-84379" node2="-52657,-84379" node3="-52656,-84351" node4="-52783,-84352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150241" />
|
||||
<door id="18150237" name="cratae_1815_037" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-84365;-8352" node1="-50783,-84379" node2="-50657,-84379" node3="-50656,-84351" node4="-50783,-84352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150242" />
|
||||
<door id="18150238" name="cratae_1815_038" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-84365;-8352" node1="-48783,-84379" node2="-48657,-84379" node3="-48656,-84351" node4="-48783,-84352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150243" />
|
||||
<door id="18150239" name="cratae_1815_039" open_method="2" close_time="15" open_time="10" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-84365;-8352" node1="-46783,-84379" node2="-46657,-84379" node3="-46656,-84351" node4="-46783,-84352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150244" />
|
||||
<door id="18150240" name="cratae_1815_040" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-84365;-8352" node1="-44783,-84379" node2="-44657,-84379" node3="-44656,-84351" node4="-44783,-84352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150245" />
|
||||
<door id="18150241" name="cratae_1815_041" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-83553;-8352" node1="-52799,-83566" node2="-52640,-83567" node3="-52640,-83544" node4="-52799,-83544" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150242" name="cratae_1815_042" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-83553;-8352" node1="-50799,-83566" node2="-50640,-83567" node3="-50640,-83544" node4="-50799,-83544" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150243" name="cratae_1815_043" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-83553;-8352" node1="-48799,-83566" node2="-48640,-83567" node3="-48640,-83544" node4="-48799,-83544" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150244" name="cratae_1815_044" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-83553;-8352" node1="-46799,-83566" node2="-46640,-83567" node3="-46640,-83544" node4="-46799,-83544" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150245" name="cratae_1815_045" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-83553;-8352" node1="-44799,-83566" node2="-44640,-83567" node3="-44640,-83544" node4="-44799,-83544" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150246" name="cratae_1815_046" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-53314;-82960;-8352" node1="-53324,-83031" node2="-53303,-83031" node3="-53304,-82898" node4="-53322,-82896" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150247" name="cratae_1815_047" open_method="2" close_time="15" open_time="14" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52126;-82960;-8352" node1="-52140,-83040" node2="-52114,-83040" node3="-52114,-82880" node4="-52139,-82880" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150248" />
|
||||
<door id="18150248" name="cratae_1815_048" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51314;-82960;-8352" node1="-51324,-83031" node2="-51303,-83031" node3="-51304,-82898" node4="-51322,-82896" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150249" name="cratae_1815_049" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50126;-82960;-8352" node1="-50140,-83040" node2="-50114,-83040" node3="-50114,-82880" node4="-50139,-82880" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150250" />
|
||||
<door id="18150250" name="cratae_1815_050" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49314;-82960;-8352" node1="-49324,-83031" node2="-49303,-83031" node3="-49304,-82898" node4="-49322,-82896" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150251" name="cratae_1815_051" open_method="2" close_time="15" open_time="23" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48126;-82960;-8352" node1="-48140,-83040" node2="-48114,-83040" node3="-48114,-82880" node4="-48139,-82880" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150252" />
|
||||
<door id="18150252" name="cratae_1815_052" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-47314;-82960;-8352" node1="-47324,-83031" node2="-47303,-83031" node3="-47304,-82898" node4="-47322,-82896" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150253" name="cratae_1815_053" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46126;-82960;-8352" node1="-46140,-83040" node2="-46114,-83040" node3="-46114,-82880" node4="-46139,-82880" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150254" />
|
||||
<door id="18150254" name="cratae_1815_054" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45314;-82960;-8352" node1="-45324,-83031" node2="-45303,-83031" node3="-45304,-82898" node4="-45322,-82896" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150255" name="cratae_1815_055" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44126;-82960;-8352" node1="-44140,-83040" node2="-44114,-83040" node3="-44114,-82880" node4="-44139,-82880" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150256" name="cratae_1815_056" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-82365;-8352" node1="-52780,-82380" node2="-52657,-82381" node3="-52656,-82352" node4="-52784,-82352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150261" />
|
||||
<door id="18150257" name="cratae_1815_057" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-82365;-8352" node1="-50780,-82380" node2="-50657,-82381" node3="-50656,-82352" node4="-50784,-82352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150262" />
|
||||
<door id="18150258" name="cratae_1815_058" open_method="2" close_time="15" open_time="18" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-82365;-8352" node1="-48780,-82380" node2="-48657,-82381" node3="-48656,-82352" node4="-48784,-82352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150263" />
|
||||
<door id="18150259" name="cratae_1815_059" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-82365;-8352" node1="-46780,-82380" node2="-46657,-82381" node3="-46656,-82352" node4="-46784,-82352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150264" />
|
||||
<door id="18150260" name="cratae_1815_060" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-82365;-8352" node1="-44780,-82380" node2="-44657,-82381" node3="-44656,-82352" node4="-44784,-82352" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150265" />
|
||||
<door id="18150261" name="cratae_1815_061" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-81553;-8352" node1="-52784,-81565" node2="-52656,-81566" node3="-52657,-81541" node4="-52783,-81541" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150262" name="cratae_1815_062" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-81553;-8352" node1="-50784,-81565" node2="-50656,-81566" node3="-50657,-81541" node4="-50783,-81541" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150263" name="cratae_1815_063" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-81553;-8352" node1="-48784,-81565" node2="-48656,-81566" node3="-48657,-81541" node4="-48783,-81541" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150264" name="cratae_1815_064" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-81553;-8352" node1="-46784,-81565" node2="-46656,-81566" node3="-46657,-81541" node4="-46783,-81541" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150265" name="cratae_1815_065" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-81553;-8352" node1="-44784,-81565" node2="-44656,-81566" node3="-44657,-81541" node4="-44783,-81541" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150266" name="cratae_1815_066" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-53314;-80960;-8352" node1="-53324,-81021" node2="-53305,-81021" node3="-53303,-80897" node4="-53325,-80896" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150267" name="cratae_1815_067" open_method="2" close_time="15" open_time="26" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52126;-80960;-8352" node1="-52135,-81019" node2="-52117,-81020" node3="-52117,-80900" node4="-52136,-80899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150268" />
|
||||
<door id="18150268" name="cratae_1815_068" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51314;-80960;-8352" node1="-51324,-81021" node2="-51305,-81021" node3="-51303,-80897" node4="-51325,-80896" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150269" name="cratae_1815_069" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50126;-80960;-8352" node1="-50135,-81019" node2="-50117,-81020" node3="-50117,-80900" node4="-50136,-80899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150270" />
|
||||
<door id="18150270" name="cratae_1815_070" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49314;-80960;-8352" node1="-49324,-81021" node2="-49305,-81021" node3="-49303,-80897" node4="-49325,-80896" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150271" name="cratae_1815_071" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48126;-80960;-8352" node1="-48135,-81019" node2="-48117,-81020" node3="-48117,-80900" node4="-48136,-80899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150272" />
|
||||
<door id="18150272" name="cratae_1815_072" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-47314;-80960;-8352" node1="-47324,-81021" node2="-47305,-81021" node3="-47303,-80897" node4="-47325,-80896" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150273" name="cratae_1815_073" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46126;-80960;-8352" node1="-46135,-81019" node2="-46117,-81020" node3="-46117,-80900" node4="-46136,-80899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150274" />
|
||||
<door id="18150274" name="cratae_1815_074" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45314;-80960;-8352" node1="-45324,-81021" node2="-45305,-81021" node3="-45303,-80897" node4="-45325,-80896" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150275" name="cratae_1815_075" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44126;-80960;-8352" node1="-44135,-81019" node2="-44117,-81020" node3="-44117,-80900" node4="-44136,-80899" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150276" name="cratae_1815_076" open_method="2" close_time="15" open_time="25" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-80365;-8352" node1="-52785,-80375" node2="-52657,-80375" node3="-52657,-80354" node4="-52785,-80355" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150281" />
|
||||
<door id="18150277" name="cratae_1815_077" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-80365;-8352" node1="-50785,-80375" node2="-50657,-80375" node3="-50657,-80354" node4="-50785,-80355" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150282" />
|
||||
<door id="18150278" name="cratae_1815_078" open_method="2" close_time="15" open_time="18" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-80365;-8352" node1="-48785,-80375" node2="-48657,-80375" node3="-48657,-80354" node4="-48785,-80355" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150283" />
|
||||
<door id="18150279" name="cratae_1815_079" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-80365;-8352" node1="-46785,-80375" node2="-46657,-80375" node3="-46657,-80354" node4="-46785,-80355" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150284" />
|
||||
<door id="18150280" name="cratae_1815_080" open_method="2" close_time="15" open_time="20" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-80365;-8352" node1="-44785,-80375" node2="-44657,-80375" node3="-44657,-80354" node4="-44785,-80355" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150285" />
|
||||
<door id="18150281" name="cratae_1815_081" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-79553;-8352" node1="-52783,-79565" node2="-52657,-79564" node3="-52657,-79543" node4="-52783,-79542" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150282" name="cratae_1815_082" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-79553;-8352" node1="-50783,-79565" node2="-50657,-79564" node3="-50657,-79543" node4="-50783,-79542" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150283" name="cratae_1815_083" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-79553;-8352" node1="-48783,-79565" node2="-48657,-79564" node3="-48657,-79543" node4="-48783,-79542" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150284" name="cratae_1815_084" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-79553;-8352" node1="-46783,-79565" node2="-46657,-79564" node3="-46657,-79543" node4="-46783,-79542" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150285" name="cratae_1815_085" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-79553;-8352" node1="-44783,-79565" node2="-44657,-79564" node3="-44657,-79543" node4="-44783,-79542" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150286" name="cratae_1815_086" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-53314;-78960;-8352" node1="-53323,-79020" node2="-53305,-79019" node3="-53305,-78901" node4="-53322,-78900" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150287" name="cratae_1815_087" open_method="2" close_time="15" open_time="26" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52126;-78960;-8352" node1="-52136,-79020" node2="-52117,-79020" node3="-52117,-78899" node4="-52135,-78899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150288" />
|
||||
<door id="18150288" name="cratae_1815_088" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51314;-78960;-8352" node1="-51323,-79020" node2="-51305,-79019" node3="-51305,-78901" node4="-51322,-78900" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150289" name="cratae_1815_089" open_method="2" close_time="15" open_time="10" random_time="5" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50126;-78960;-8352" node1="-50136,-79020" node2="-50117,-79020" node3="-50117,-78899" node4="-50135,-78899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150290" />
|
||||
<door id="18150290" name="cratae_1815_090" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49314;-78960;-8352" node1="-49323,-79020" node2="-49305,-79019" node3="-49305,-78901" node4="-49322,-78900" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150291" name="cratae_1815_091" open_method="2" close_time="15" open_time="15" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48126;-78960;-8352" node1="-48136,-79020" node2="-48117,-79020" node3="-48117,-78899" node4="-48135,-78899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150292" />
|
||||
<door id="18150292" name="cratae_1815_092" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-47314;-78960;-8352" node1="-47323,-79020" node2="-47305,-79019" node3="-47305,-78901" node4="-47322,-78900" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150293" name="cratae_1815_093" open_method="2" close_time="15" open_time="30" random_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46126;-78960;-8352" node1="-46136,-79020" node2="-46117,-79020" node3="-46117,-78899" node4="-46135,-78899" nodeZ="-8352" default_status="close" targetable="false" child_id_event="18150294" />
|
||||
<door id="18150294" name="cratae_1815_094" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45314;-78960;-8352" node1="-45323,-79020" node2="-45305,-79019" node3="-45305,-78901" node4="-45322,-78900" nodeZ="-8352" default_status="close" master_open_event="act_open" master_close_event="act_close" targetable="false" />
|
||||
<door id="18150295" name="cratae_1815_095" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44126;-78960;-8352" node1="-44136,-79020" node2="-44117,-79020" node3="-44117,-78899" node4="-44135,-78899" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150296" name="cratae_1815_096" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52720;-78365;-8352" node1="-52784,-78379" node2="-52657,-78381" node3="-52657,-78352" node4="-52783,-78352" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150297" name="cratae_1815_097" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-50720;-78365;-8352" node1="-50784,-78379" node2="-50657,-78381" node3="-50657,-78352" node4="-50783,-78352" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150298" name="cratae_1815_098" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48720;-78365;-8352" node1="-48784,-78379" node2="-48657,-78381" node3="-48657,-78352" node4="-48783,-78352" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150299" name="cratae_1815_099" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46720;-78365;-8352" node1="-46784,-78379" node2="-46657,-78381" node3="-46657,-78352" node4="-46783,-78352" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150300" name="cratae_1815_100" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-44720;-78365;-8352" node1="-44784,-78379" node2="-44657,-78381" node3="-44657,-78352" node4="-44783,-78352" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150301" name="cratae_1815_101" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-53852;-83549;-8352" node1="-53909,-83557" node2="-53795,-83557" node3="-53795,-83543" node4="-53909,-83541" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150302" name="cratae_1815_102" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-53361;-82960;-8352" node1="-53375,-83029" node2="-53348,-83029" node3="-53349,-82888" node4="-53373,-82888" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18150303" name="cratae_1815_103" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-53852;-82369;-8352" node1="-53911,-82378" node2="-53792,-82378" node3="-53792,-82360" node4="-53911,-82361" nodeZ="-8352" default_status="close" targetable="false" />
|
||||
<door id="18200001" name="fortress_1820_001" open_method="0" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="-54247;89585;-2870" node1="-54366,89535" node2="-54140,89542" node3="-54140,89638" node4="-54367,89640" nodeZ="-2870" default_status="close" />
|
||||
<door id="18200002" name="fortress_1820_002" open_method="0" height="150" baseHpMax="169710" hp_showable="false" basePDef="644" baseMDef="518" pos="-53311;91822;-2849" node1="-53226,91813" node2="-53311,91816" node3="-53311,91829" node4="-53226,91828" nodeZ="-2849" default_status="close" />
|
||||
<door id="18200003" name="fortress_1820_003" open_method="0" height="150" baseHpMax="169710" hp_showable="false" basePDef="644" baseMDef="518" pos="-53155;91822;-2849" node1="-53240,91813" node2="-53145,91813" node3="-53144,91831" node4="-53241,91827" nodeZ="-2849" default_status="close" />
|
||||
@ -502,32 +80,6 @@
|
||||
<door id="18220006" name="fortress_1822_006" open_method="1" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="-52816;157873;-2053" node1="-52782,157952" node2="-52810,157868" node3="-52826,157873" node4="-52803,157957" nodeZ="-2053" default_status="close" />
|
||||
<door id="18220007" name="fortress_1822_007" open_method="1" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="-52771;158023;-2053" node1="-52785,157941" node2="-52762,158022" node3="-52778,158027" node4="-52806,157946" nodeZ="-2053" default_status="close" />
|
||||
<door id="18220008" name="fortress_1822_008" open_method="0" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="-54737;157111;-2102" node1="-54729,157015" node2="-54798,157036" node3="-54743,157206" node4="-54675,157185" nodeZ="-2102" default_status="close" />
|
||||
<door id="18230101" name="pailaka_door" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-52871;188479;-4928" node1="-52733,188462" node2="-52732,188495" node3="-53006,188496" node4="-53005,188459" nodeZ="-4933" default_status="open" targetable="true" />
|
||||
<door id="18250001" name="c_tower_4a_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46957;246121;-9063" node1="-46985,246046" node2="-46937,246048" node3="-46931,246198" node4="-46984,246197" nodeZ="-9160" default_status="close" />
|
||||
<door id="18250002" name="c_tower_4a_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45874;246878;-9062" node1="-45809,246861" node2="-45808,246897" node3="-45941,246902" node4="-45940,246857" nodeZ="-9159" default_status="close" />
|
||||
<door id="18250003" name="c_tower_4b_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-47869;249166;-9063" node1="-47897,249091" node2="-47849,249093" node3="-47843,249243" node4="-47896,249242" nodeZ="-9160" default_status="close" />
|
||||
<door id="18250004" name="c_tower_4b_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49943;249168;-9063" node1="-49971,249093" node2="-49923,249095" node3="-49917,249245" node4="-49970,249244" nodeZ="-9160" default_status="close" />
|
||||
<door id="18250005" name="c_tower_4c_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51953;246882;-9926" node1="-51888,246865" node2="-51887,246901" node3="-52020,246906" node4="-52019,246861" nodeZ="-10023" default_status="close" />
|
||||
<door id="18250006" name="c_tower_4c_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51304;245352;-9926" node1="-51239,245335" node2="-51238,245371" node3="-51371,245376" node4="-51370,245331" nodeZ="-10023" default_status="close" />
|
||||
<door id="18250007" name="c_tower_4d_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49997;243410;-9929" node1="-50025,243335" node2="-49977,243337" node3="-49971,243487" node4="-50024,243486" nodeZ="-10026" default_status="close" />
|
||||
<door id="18250008" name="c_tower_4d_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-47920;243407;-9929" node1="-47948,243332" node2="-47900,243334" node3="-47894,243484" node4="-47947,243483" nodeZ="-10026" default_status="close" />
|
||||
<door id="18250009" name="c_tower_3a_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46524;245356;-9926" node1="-46459,245339" node2="-46458,245375" node3="-46591,245380" node4="-46590,245335" nodeZ="-10023" default_status="close" />
|
||||
<door id="18250010" name="c_tower_3a_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45874;246878;-9926" node1="-45809,246861" node2="-45808,246897" node3="-45941,246902" node4="-45940,246857" nodeZ="-10023" default_status="close" />
|
||||
<door id="18250011" name="c_tower_3b_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48406;248490;-9927" node1="-48434,248415" node2="-48386,248417" node3="-48380,248567" node4="-48433,248566" nodeZ="-10024" default_status="close" />
|
||||
<door id="18250013" name="c_tower_3c_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51960;246886;-10787" node1="-51895,246869" node2="-51894,246905" node3="-52027,246910" node4="-52026,246865" nodeZ="-10884" default_status="close" />
|
||||
<door id="18250014" name="c_tower_3c_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51308;245351;-10787" node1="-51243,245334" node2="-51242,245370" node3="-51375,245375" node4="-51374,245330" nodeZ="-10884" default_status="close" />
|
||||
<door id="18250015" name="c_tower_3d_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49453;243765;-10788" node1="-49481,243690" node2="-49433,243692" node3="-49427,243842" node4="-49480,243841" nodeZ="-10885" default_status="close" />
|
||||
<door id="18250017" name="c_tower_2a_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45902;245343;-11650" node1="-45837,245326" node2="-45836,245362" node3="-45969,245367" node4="-45968,245322" nodeZ="-11747" default_status="close" />
|
||||
<door id="18250018" name="c_tower_2a_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-46552;246875;-11650" node1="-46487,246858" node2="-46486,246894" node3="-46619,246899" node4="-46618,246854" nodeZ="-11747" default_status="close" />
|
||||
<door id="18250019" name="c_tower_2b_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48405;248490;-11649" node1="-48433,248415" node2="-48385,248417" node3="-48379,248567" node4="-48432,248566" nodeZ="-11746" default_status="close" />
|
||||
<door id="18250021" name="c_tower_2c_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51957;246910;-12511" node1="-51892,246893" node2="-51891,246929" node3="-52024,246934" node4="-52023,246889" nodeZ="-12608" default_status="close" />
|
||||
<door id="18250022" name="c_tower_2c_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-51305;245388;-12511" node1="-51240,245371" node2="-51239,245407" node3="-51372,245412" node4="-51371,245367" nodeZ="-12608" default_status="close" />
|
||||
<door id="18250023" name="c_tower_2d_en" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-49028;243324;-13316" node1="-49056,243249" node2="-49008,243251" node3="-49002,243401" node4="-49055,243400" nodeZ="-13413" default_status="close" />
|
||||
<door id="18250024" name="c_tower_2d_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-47490;243973;-13316" node1="-47518,243898" node2="-47470,243900" node3="-47464,244050" node4="-47517,244049" nodeZ="-13413" default_status="close" />
|
||||
<door id="18250025" name="c_tower_xxx" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-45480;245970;-14122" node1="-45415,245953" node2="-45414,245989" node3="-45547,245994" node4="-45546,245949" nodeZ="-14219" default_status="close" />
|
||||
<door id="18250101" name="c_tower_3b_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48931;247718;-10019" node1="-49042,247687" node2="-48810,247689" node3="-48810,247750" node4="-49045,247751" nodeZ="-10031" default_status="close" />
|
||||
<door id="18250102" name="c_tower_3d_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48926;244536;-10880" node1="-48802,244589" node2="-49042,244595" node3="-49052,244488" node4="-48801,244499" nodeZ="-10892" default_status="close" />
|
||||
<door id="18250103" name="c_tower_2b_ex" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-48931;247718;-11741" node1="-49042,247687" node2="-48810,247689" node3="-48810,247750" node4="-49045,247751" nodeZ="-11753" default_status="close" />
|
||||
<door id="19160001" name="temple_gate" open_method="8" level="3" close_time="10" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="-16363;-36798;-10535" node1="-16647,-36862" node2="-16088,-36860" node3="-16081,-36733" node4="-16649,-36733" nodeZ="-10790" default_status="close" />
|
||||
<door id="19160002" name="corridors_door_right01" open_method="12" level="3" close_time="10" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="-14870;-38964;-10576" node1="-14981,-38990" node2="-14769,-38989" node3="-14765,-38937" node4="-14981,-38937" nodeZ="-10770" default_status="close" />
|
||||
<door id="19160003" name="corridors_door_right02" open_method="12" level="3" close_time="10" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="-14592;-39817;-10576" node1="-14566,-39924" node2="-14563,-39710" node3="-14618,-39715" node4="-14615,-39924" nodeZ="-10770" default_status="close" />
|
||||
@ -576,37 +128,6 @@
|
||||
<door id="19240010" name="fortress_1924_010" open_method="0" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="-20240;219888;-3288" node1="-20249,219967" node2="-20250,219809" node3="-20231,219809" node4="-20229,219967" nodeZ="-3289" default_status="close" />
|
||||
<door id="19240011" name="fortress_1924_011" open_method="1" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="-23211;221583;-3227" node1="-23220,221661" node2="-23220,221583" node3="-23201,221583" node4="-23202,221661" nodeZ="-3227" default_status="close" />
|
||||
<door id="19240012" name="fortress_1924_012" open_method="1" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="-23210;221738;-3227" node1="-23219,221660" node2="-23219,221738" node3="-23202,221738" node4="-23201,221659" nodeZ="-3227" default_status="close" />
|
||||
<door id="19250001" name="hell_town_secret_child_door2" open_method="16" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-28564;249888;-3505" node1="-28502,249878" node2="-28567,249880" node3="-28568,249903" node4="-28500,249903" nodeZ="-3505" group="hell_town_secret_door" default_status="close" targetable="false" />
|
||||
<door id="19250002" name="hell_town_secret_child_door1" open_method="16" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-28438;249887;-3505" node1="-28513,249875" node2="-28417,249873" node3="-28417,249903" node4="-28514,249902" nodeZ="-3505" group="hell_town_secret_door" default_status="close" targetable="false" />
|
||||
<door id="19250003" name="hell_town_child_door1" open_method="0" level="3" close_time="300" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-27410;252390;-3550" node1="-27426,252457" node2="-27428,252383" node3="-27391,252382" node4="-27390,252459" nodeZ="-3550" group="hell_town_door" default_status="close" targetable="true" />
|
||||
<door id="19250004" name="hell_town_child_door1" open_method="0" level="3" close_time="300" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-27410;252516;-3550" node1="-27428,252450" node2="-27422,252522" node3="-27393,252526" node4="-27390,252450" nodeZ="-3550" group="hell_town_door" default_status="close" targetable="true" />
|
||||
<door id="19260001" name="tolles_door_01" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13381;276039;-9065" node1="-13344,275981" node2="-13397,276108" node3="-13418,276097" node4="-13366,275971" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260002" name="tolles_door_02" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13463;275658;-9065" node1="-13429,275722" node2="-13527,275624" node3="-13495,275594" node4="-13399,275692" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260003" name="tolles_door_03" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-11975;275812;-9065" node1="-12050,275792" node2="-11902,275790" node3="-11901,275832" node4="-12049,275834" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260004" name="tolles_door_04" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-11808;275635;-9065" node1="-11822,275566" node2="-11770,275695" node3="-11793,275704" node4="-11846,275574" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260005" name="tolles_door_05" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-12188;275473;-9065" node1="-12263,275453" node2="-12115,275451" node3="-12114,275493" node4="-12262,275495" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260006" name="tolles_door_06" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-10421;274796;-9065" node1="-10479,274758" node2="-10352,274812" node3="-10362,274835" node4="-10490,274781" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260007" name="tolles_door_07" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-10655;274496;-9065" node1="-10630,274424" node2="-10630,274567" node3="-10681,274568" node4="-10681,274424" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260008" name="tolles_door_08" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-10996;274280;-9065" node1="-10971,274208" node2="-10971,274351" node3="-11022,274352" node4="-11022,274208" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260009" name="tolles_door_09" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-10826;273222;-9065" node1="-10896,273235" node2="-10765,273184" node3="-10755,273209" node4="-10886,273261" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260010" name="tolles_door_10" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-11167;273363;-9065" node1="-11237,273376" node2="-11106,273325" node3="-11096,273350" node4="-11227,273402" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260011" name="tolles_door_11" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-10802;273010;-9065" node1="-10768,273074" node2="-10866,272976" node3="-10834,272946" node4="-10738,273044" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260012" name="tolles_door_12" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-11041;272456;-9065" node1="-11100,272496" node2="-10999,272397" node3="-10982,272415" node4="-11079,272517" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260013" name="tolles_door_13" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13084;272064;-9065" node1="-13159,272044" node2="-13011,272042" node3="-13010,272084" node4="-13158,272086" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260014" name="tolles_door_14" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-12869;272404;-9065" node1="-12944,272384" node2="-12796,272382" node3="-12795,272424" node4="-12943,272426" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260015" name="tolles_door_15" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13455;272218;-9065" node1="-13521,272252" node2="-13419,272153" node3="-13390,272184" node4="-13488,272285" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260016" name="tolles_door_16" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-14625;273080;-9065" node1="-14565,273118" node2="-14694,273065" node3="-14684,273043" node4="-14557,273096" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260017" name="tolles_door_17" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-14229;273244;-9065" node1="-14169,273282" node2="-14298,273229" node3="-14288,273207" node4="-14161,273260" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260018" name="tolles_door_18" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-14061;273597;-9065" node1="-14036,273525" node2="-14036,273668" node3="-14087,273669" node4="-14087,273525" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260019" name="tolles_door_19" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-14619;273938;-9065" node1="-14549,273950" node2="-14688,273951" node3="-14688,273926" node4="-14549,273926" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260020" name="tolles_door_20" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-14061;274283;-9065" node1="-14036,274211" node2="-14036,274354" node3="-14087,274355" node4="-14087,274211" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260021" name="tolles_door_21" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-14220;274653;-9065" node1="-14152,274637" node2="-14278,274690" node3="-14287,274667" node4="-14160,274617" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260022" name="tolles_door_22" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13879;274514;-9065" node1="-13811,274498" node2="-13937,274551" node3="-13946,274528" node4="-13819,274478" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260023" name="tolles_door_23" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13239;272241;-9065" node1="-13224,272310" node2="-13276,272181" node3="-13253,272172" node4="-13201,272299" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260051" name="tolles_door_51" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13613;273336;-9065" node1="-13676,273370" node2="-13578,273273" node3="-13550,273302" node4="-13646,273401" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260052" name="tolles_door_52" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-11924;272856;-9065" node1="-11890,272920" node2="-11988,272822" node3="-11956,272792" node4="-11860,272890" nodeZ="-9066" default_status="close" targetable="false" />
|
||||
<door id="19260053" name="tolles_door_53" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13955;273258;-15215" node1="-14035,273250" node2="-13875,273250" node3="-13875,273265" node4="-14035,273265" nodeZ="-15334" default_status="close" targetable="false" />
|
||||
<door id="19260054" name="tolles_door_54" open_method="0" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="-13307;274610;-15215" node1="-13387,274602" node2="-13227,274602" node3="-13227,274617" node4="-13387,274617" nodeZ="-15334" default_status="close" targetable="false" />
|
||||
<door id="20160001" name="rune_castle_outter_002" open_method="0" height="150" baseHpMax="678840" basePDef="644" baseMDef="518" pos="18483;-49321;-1022" node1="18458,-49336" node2="18505,-49335" node3="18505,-49136" node4="18457,-49136" nodeZ="-1251" />
|
||||
<door id="20160002" name="rune_castle_outter_001" open_method="0" height="150" baseHpMax="678840" basePDef="644" baseMDef="518" pos="18483;-48982;-1022" node1="18458,-49166" node2="18505,-49167" node3="18505,-48968" node4="18459,-48967" nodeZ="-1251" />
|
||||
<door id="20160003" name="rune_castle_inner_002" open_method="0" height="150" baseHpMax="316500" basePDef="644" baseMDef="518" pos="15768;-49251;-901" node1="15752,-49263" node2="15784,-49263" node3="15784,-49137" node4="15752,-49137" nodeZ="-1088" />
|
||||
@ -662,47 +183,6 @@
|
||||
<door id="20230008" name="fortress_2023_006" open_method="0" height="150" baseHpMax="169710" hp_showable="false" basePDef="644" baseMDef="518" pos="16847;188605;-2952" node1="16838,188597" node2="16910,188548" node3="16924,188569" node4="16850,188616" nodeZ="-2952" default_status="close" />
|
||||
<door id="20230009" name="fortress_2023_007" open_method="0" height="150" baseHpMax="169710" hp_showable="false" basePDef="644" baseMDef="518" pos="16979;188518;-2952" node1="16904,188554" node2="16977,188507" node3="16989,188523" node4="16918,188573" nodeZ="-2953" default_status="close" />
|
||||
<door id="20230010" name="fortress_2023_008" open_method="0" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="17826;189764;-2972" node1="17699,189811" node2="17925,189662" node3="17960,189715" node4="17728,189868" nodeZ="-2977" default_status="close" />
|
||||
<door id="20240001" name="beres_door_003" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="16326;210714;-9399" node1="16224,210719" node2="16224,210708" node3="16427,210708" node4="16427,210720" nodeZ="-9399" default_status="close" targetable="false" />
|
||||
<door id="20240002" name="beres_door_001" open_method="0" close_time="600" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="14032;213143;-9399" node1="14026,213045" node2="14039,213045" node3="14039,213241" node4="14025,213240" nodeZ="-9399" default_status="close" targetable="false" />
|
||||
<door id="20240003" name="beres_door_002" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="12472;214696;-9384" node1="12372,214689" node2="12569,214688" node3="12570,214702" node4="12372,214703" nodeZ="-9384" default_status="open" targetable="false" />
|
||||
<door id="20250001" name="iron_tower_out_door" open_method="16" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="6019;244627;-1958" node1="6045,244477" node2="6127,244531" node3="5997,244775" node4="5912,244721" nodeZ="-1958" default_status="close" targetable="true" />
|
||||
<door id="20250002" name="injury_earth_door" open_method="16" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="153;235135;-3296" node1="195,234487" node2="247,234487" node3="114,235793" node4="61,235789" nodeZ="-3296" emitter_id="20250102" default_status="open" targetable="false" />
|
||||
<door id="20250004" name="darion_raid_b_002" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="20630;244037;11050" node1="20623,244037" node2="20636,244037" node3="20643,244110" node4="20630,244111" nodeZ="11050" default_status="close" targetable="false" check_collision="false" />
|
||||
<door id="20250005" name="darion_raid_b_001" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="20630;244037;11050" node1="20617,243964" node2="20630,243963" node3="20637,244037" node4="20623,244038" nodeZ="11050" default_status="close" targetable="false" check_collision="false" />
|
||||
<door id="20250006" name="darion_raid_c_001" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="18122;244274;11587" node1="18114,244274" node2="18130,244274" node3="18138,244371" node4="18123,244373" nodeZ="11587" default_status="close" targetable="false" check_collision="false" />
|
||||
<door id="20250007" name="darion_raid_c_002" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="18122;244274;11587" node1="18106,244178" node2="18121,244177" node3="18130,244274" node4="18114,244274" nodeZ="11587" default_status="close" targetable="false" check_collision="false" />
|
||||
<door id="20250008" name="darion_raid_c_004" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="18114;244274;11449" node1="18089,244053" node2="18097,244052" node3="18139,244494" node4="18131,244495" nodeZ="11449" default_status="close" targetable="false" check_collision="false" />
|
||||
<door id="20250009" name="darion_raid_b_004" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="20641;244037;11181" node1="20615,243815" node2="20625,243814" node3="20668,244260" node4="20658,244259" nodeZ="11181" default_status="close" targetable="false" check_collision="false" />
|
||||
<door id="20250777" name="darion_raid_b_003" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="20448;244053;11056" node1="20368,243973" node2="20528,243973" node3="20528,244133" node4="20368,244133" nodeZ="11056" default_status="close" targetable="false" check_collision="false" />
|
||||
<door id="20250778" name="darion_raid_c_003" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="18375;244247;11586" node1="18295,244167" node2="18455,244167" node3="18455,244327" node4="18295,244327" nodeZ="11586" default_status="close" targetable="false" check_collision="false" />
|
||||
<door id="20260001" name="base_tower_darkness" open_method="4" level="3" close_time="30" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="15600;282676;-9564" node1="15595,282579" node2="15609,282579" node3="15609,282775" node4="15595,282775" nodeZ="-9734" default_status="close" targetable="true" />
|
||||
<door id="20260002" name="base_tower_blood" open_method="4" level="3" close_time="120" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="12762;280153;-9564" node1="12659,280144" node2="12865,280144" node3="12866,280158" node4="12659,280157" nodeZ="-9732" default_status="close" targetable="true" />
|
||||
<door id="20260003" name="base_tower_room01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="14552;277667;-9557" node1="14547,277570" node2="14561,277570" node3="14561,277766" node4="14547,277766" nodeZ="-9727" group="base_tower_room" default_status="open" targetable="false" />
|
||||
<door id="20260004" name="base_tower_room02" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="18054;277478;-9557" node1="18049,277381" node2="18063,277381" node3="18063,277577" node4="18049,277577" nodeZ="-9727" group="base_tower_room" default_status="open" targetable="false" />
|
||||
<door id="20260005" name="base_tower_blood01" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="19847;280141;-9564" node1="19744,280132" node2="19950,280132" node3="19951,280146" node4="19744,280145" nodeZ="-9732" default_status="open" targetable="false" />
|
||||
<door id="20260006" name="base_tower_destruction" open_method="4" level="3" close_time="30" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="16977;280541;-9564" node1="16972,280444" node2="16986,280444" node3="16986,280640" node4="16972,280640" nodeZ="-9734" default_status="close" targetable="true" />
|
||||
<!-- NOTE: 21100001-21100104 are new H5 Doors and stats are unconfirmed -->
|
||||
<door id="21100001" name="Seal_of_the_Saintess_Gate_1" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="45396;-250859;-6792" node1="45531,-250881" node2="45531,-250833" node3="45262,-250834" node4="45262,-250882" nodeZ="-6792" default_status="close" targetable="true" />
|
||||
<door id="21100002" name="Seal_of_the_Saintess_Gate_2" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="44709;-250592;-6793" node1="44690,-250457" node2="44687,-250723" node3="44728,-250724" node4="44725,-250459" nodeZ="-6793" default_status="close" targetable="true" />
|
||||
<door id="21100003" name="Seal_of_the_Saintess_Gate_3" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="45396;-250147;-6791" node1="45511,-250162" node2="45510,-250133" node3="45281,-250133" node4="45281,-250158" nodeZ="-6791" default_status="close" targetable="true" />
|
||||
<door id="21100004" name="Seal_of_the_Saintess_Gate_4" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="46072;-250593;-6793" node1="46053,-250458" node2="46050,-250724" node3="46091,-250725" node4="46088,-250460" nodeZ="-6793" default_status="close" targetable="true" />
|
||||
<door id="21100005" name="Seal_of_the_Saintess_Gate_5" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="46353;-250317;-6793" node1="46216,-250335" node2="46489,-250335" node3="46487,-250297" node4="46213,-250299" nodeZ="-6793" default_status="close" targetable="true" />
|
||||
<door id="21100006" name="Seal_of_the_Saintess_Gate_6" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="46621;-249636;-6792" node1="46649,-249504" node2="46595,-249503" node3="46596,-249765" node4="46646,-249766" nodeZ="-6792" default_status="close" targetable="true" />
|
||||
<door id="21100007" name="Seal_of_the_Saintess_Gate_7" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="46354;-248962;-6793" node1="46217,-248980" node2="46490,-248980" node3="46488,-248942" node4="46214,-248944" nodeZ="-6793" default_status="close" targetable="true" />
|
||||
<door id="21100008" name="Seal_of_the_Saintess_Gate_8" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="45917;-249636;-6791" node1="45932,-249522" node2="45900,-249523" node3="45902,-249750" node4="45930,-249748" nodeZ="-6791" default_status="close" targetable="true" />
|
||||
<door id="21100009" name="Seal_of_the_Saintess_Gate_9" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="46076;-248686;-6793" node1="46057,-248551" node2="46054,-248817" node3="46095,-248818" node4="46092,-248553" nodeZ="-6793" default_status="close" targetable="true" />
|
||||
<door id="21100010" name="Seal_of_the_Saintess_Gate_10" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="45396;-248419;-6792" node1="45258,-248395" node2="45262,-248442" node3="45533,-248444" node4="45532,-248393" nodeZ="-6792" default_status="close" targetable="true" />
|
||||
<door id="21100011" name="Seal_of_the_Saintess_Gate_11" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="44713;-248685;-6793" node1="44694,-248550" node2="44691,-248816" node3="44732,-248817" node4="44729,-248552" nodeZ="-6793" default_status="close" targetable="true" />
|
||||
<door id="21100012" name="Seal_of_the_Saintess_Gate_12" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="45396;-249135;-6791" node1="45511,-249150" node2="45510,-249121" node3="45281,-249121" node4="45281,-249146" nodeZ="-6791" default_status="close" targetable="true" />
|
||||
<door id="21100013" name="Seal_of_the_Saintess_Gate_13" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="44435;-248961;-6793" node1="44298,-248979" node2="44571,-248979" node3="44569,-248941" node4="44295,-248943" nodeZ="-6793" default_status="close" targetable="true" />
|
||||
<door id="21100014" name="Seal_of_the_Saintess_Gate_14" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="44167;-249636;-6792" node1="44140,-249766" node2="44194,-249766" node3="44196,-249502" node4="44140,-249504" nodeZ="-6792" default_status="close" targetable="true" />
|
||||
<door id="21100015" name="Seal_of_the_Saintess_Gate_15" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="44434;-250314;-6793" node1="44297,-250332" node2="44570,-250332" node3="44568,-250294" node4="44294,-250296" nodeZ="-6793" default_status="close" targetable="true" />
|
||||
<door id="21100016" name="Seal_of_the_Saintess_Gate_16" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="44886;-249636;-6791" node1="44901,-249522" node2="44869,-249523" node3="44871,-249750" node4="44899,-249748" nodeZ="-6791" default_status="close" targetable="true" />
|
||||
<door id="21100018" name="Seal_of_the_Saintess_Gate_18" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="56082;-251867;-6794" node1="55926,-251890" node2="56233,-251891" node3="56231,-251841" node4="55928,-251838" nodeZ="-6794" default_status="close" targetable="true" />
|
||||
<door id="21100101" name="Seal_of_the_Saintess_Gate_101" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="55598;-252782;-6795" node1="55582,-252661" node2="55579,-252904" node3="55617,-252904" node4="55612,-252662" nodeZ="-6795" default_status="close" targetable="true" />
|
||||
<door id="21100102" name="Seal_of_the_Saintess_Gate_102" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="55598;-252163;-6795" node1="55582,-252042" node2="55579,-252285" node3="55617,-252285" node4="55612,-252043" nodeZ="-6795" default_status="close" targetable="true" />
|
||||
<door id="21100103" name="Seal_of_the_Saintess_Gate_103" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="56566;-252164;-6795" node1="56550,-252043" node2="56547,-252286" node3="56585,-252286" node4="56580,-252044" nodeZ="-6795" default_status="close" targetable="true" />
|
||||
<door id="21100104" name="Seal_of_the_Saintess_Gate_104" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="56566;-252782;-6795" node1="56550,-252661" node2="56547,-252904" node3="56585,-252904" node4="56580,-252662" nodeZ="-6795" default_status="close" targetable="true" />
|
||||
<door id="21150001" name="Farm_004" open_method="0" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="59980;-94117;-1305" node1="59945,-94173" node2="59954,-94177" node3="59985,-94118" node4="59976,-94114" nodeZ="-1382" />
|
||||
<door id="21150002" name="Farm_003" open_method="0" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="59922;-94226;-1304" node1="59917,-94226" node2="59924,-94230" node3="59956,-94170" node4="59949,-94165" nodeZ="-1382" />
|
||||
<door id="21150003" name="Farm_001" open_method="0" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="55334;-93268;-1267" node1="55334,-93274" node2="55338,-93272" node3="55300,-93144" node4="55295,-93146" nodeZ="-1395" />
|
||||
@ -726,8 +206,6 @@
|
||||
<door id="21160012" name="rune_castle_agit_006_002" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="38544;-46333;872" node1="38587,-46350" node2="38545,-46330" node3="38542,-46336" node4="38583,-46358" nodeZ="872" clanhall_id="56" />
|
||||
<door id="21160013" name="rune_castle_agit_007_001" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="37787;-46047;873" node1="37787,-46044" node2="37741,-46044" node3="37741,-46051" node4="37787,-46050" nodeZ="873" clanhall_id="57" />
|
||||
<door id="21160014" name="rune_castle_agit_007_002" open_method="1" height="450" baseHpMax="316500" hp_showable="false" basePDef="644" baseMDef="518" pos="37697;-46048;873" node1="37743,-46043" node2="37697,-46045" node3="37697,-46051" node4="37742,-46051" nodeZ="873" clanhall_id="57" />
|
||||
<!-- NOTE: 21160502 is a new H5 Door and stats are unconfirmed -->
|
||||
<door id="21160502" name="Library_of_Sages_Gate_502" open_method="8" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="37359;-48798;-1159" node1="37305,-48786" node2="37306,-48810" node3="37413,-48808" node4="37413,-48787" nodeZ="-1166" default_status="open" targetable="true" />
|
||||
<door id="21170001" name="fortress_outter_002" open_method="1" height="450" baseHpMax="316500" basePDef="644" baseMDef="518" pos="57857;-29479;706" node1="57849,-29464" node2="57849,-29496" node3="57969,-29496" node4="57968,-29464" nodeZ="543" clanhall_id="64" />
|
||||
<door id="21170002" name="fortress_outter_001" open_method="1" height="450" baseHpMax="316500" basePDef="644" baseMDef="518" pos="58061;-29478;707" node1="58070,-29464" node2="57954,-29464" node3="57955,-29496" node4="58069,-29496" nodeZ="544" clanhall_id="64" />
|
||||
<door id="21170003" name="fortress_002" open_method="1" height="450" baseHpMax="316500" basePDef="644" baseMDef="518" pos="56976;-27193;639" node1="56972,-27188" node2="56972,-27258" node3="56980,-27258" node4="56981,-27188" nodeZ="550" clanhall_id="64" />
|
||||
@ -750,12 +228,6 @@
|
||||
<door id="21240004" name="Devil_004" open_method="8" level="3" close_time="120" height="245" baseHpMax="150000" hp_showable="false" basePDef="476" baseMDef="383" pos="51110;206106;-3912" node1="51270,206103" node2="51270,206110" node3="51105,206110" node4="51105,206102" nodeZ="-4031" default_status="close" />
|
||||
<door id="21240005" name="Devil_005" open_method="8" level="3" close_time="120" height="245" baseHpMax="150000" hp_showable="false" basePDef="476" baseMDef="383" pos="52910;206720;-3692" node1="52910,206638" node2="52910,206638" node3="52910,206801" node4="52910,206801" nodeZ="-3808" default_status="close" />
|
||||
<door id="21240006" name="Devil_006" open_method="8" level="7" close_time="3600" height="245" baseHpMax="150000" hp_showable="false" basePDef="1000000" baseMDef="383" pos="52423;219103;-3209" node1="52423,219032" node2="52423,219032" node3="52423,219174" node4="52423,219174" nodeZ="-3312" default_status="close" />
|
||||
<door id="22110100" name="pailaka_Devil_001" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="84031;-219873;-3911" node1="83847,-219848" node2="83852,-219905" node3="84058,-219900" node4="84060,-219843" nodeZ="-4038" default_status="close" targetable="true" />
|
||||
<door id="22110101" name="pailaka_Devil_002" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="74764;-217601;-3667" node1="74619,-217681" node2="74638,-217702" node3="74780,-217603" node4="74766,-217583" nodeZ="-3794" default_status="close" targetable="true" />
|
||||
<door id="22110102" name="pailaka_Devil_003" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="76503;-213542;-3624" node1="76520,-213372" node2="76484,-213374" node3="76487,-213564" node4="76524,-213562" nodeZ="-3751" default_status="close" targetable="true" />
|
||||
<door id="22110103" name="pailaka_Devil_004" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="85650;-219265;-3695" node1="85636,-219352" node2="85663,-219351" node3="85659,-219181" node4="85636,-219181" nodeZ="-3816" default_status="close" targetable="true" />
|
||||
<door id="22110104" name="pailaka_Devil_005" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="74935;-212702;-3639" node1="75023,-212712" node2="75024,-212688" node3="74845,-212691" node4="74846,-212712" nodeZ="-3760" default_status="close" targetable="true" />
|
||||
<door id="22110105" name="pailaka_Devil_006" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" pos="85195;-206881;-3215" node1="85205,-206956" node2="85185,-206956" node3="85185,-206806" node4="85205,-206806" nodeZ="-3215" default_status="close" targetable="true" />
|
||||
<door id="22130001" name="schutt_castle_outter_002" open_method="0" height="320" baseHpMax="633000" basePDef="644" baseMDef="518" pos="77732;-149635;-213" node1="77538,-149648" node2="77753,-149647" node3="77753,-149617" node4="77539,-149616" nodeZ="-384" />
|
||||
<door id="22130002" name="schutt_castle_outter_001" open_method="0" height="320" baseHpMax="633000" basePDef="644" baseMDef="518" pos="77380;-149635;-213" node1="77363,-149648" node2="77570,-149647" node3="77570,-149616" node4="77362,-149617" nodeZ="-384" />
|
||||
<door id="22130003" name="schutt_castle_inner_001" open_method="0" default_status="open" height="256" baseHpMax="1357680" hp_showable="false" basePDef="644" baseMDef="518" pos="77554;-150264;-255" node1="77456,-150281" node2="77652,-150281" node3="77652,-150235" node4="77457,-150235" nodeZ="-380" />
|
||||
@ -878,7 +350,6 @@
|
||||
<door id="22250026" name="Eva_026" open_method="8" level="2" close_time="120" height="512" baseHpMax="150000" hp_showable="false" basePDef="476" baseMDef="383" pos="83496;255494;-10734" node1="83194,255511" node2="83795,255509" node3="83795,255479" node4="83194,255481" nodeZ="-10891" />
|
||||
<door id="22250027" name="Eva_027" open_method="8" level="2" close_time="120" height="512" baseHpMax="150000" hp_showable="false" basePDef="476" baseMDef="383" pos="83549;248505;-10734" node1="83247,248523" node2="83848,248520" node3="83848,248490" node4="83247,248494" nodeZ="-10886" />
|
||||
<door id="22250028" name="Eva_028" open_method="8" level="2" close_time="120" height="512" baseHpMax="150000" hp_showable="false" basePDef="476" baseMDef="383" pos="82012;248506;-10734" node1="81713,248521" node2="82312,248520" node3="82312,248490" node4="81713,248491" nodeZ="-10888" />
|
||||
<door id="22250029" name="Eva_029" open_method="8" level="2" close_time="120" height="512" baseHpMax="187500" hp_showable="false" basePDef="476" baseMDef="383" pos="82560;254715;-10880" node1="82260,254730" node2="82860,254730" node3="82860,254700" node4="82260,254700" nodeZ="-10880" default_status="close" targetable="false" />
|
||||
<door id="23130001" name="fortress_2313_001" open_method="0" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="107495;-140524;-3009" node1="107513,-140616" node2="107565,-140465" node3="107477,-140436" node4="107428,-140591" nodeZ="-3009" default_status="close" />
|
||||
<door id="23130002" name="fortress_2313_002" open_method="0" height="150" baseHpMax="169710" hp_showable="false" basePDef="644" baseMDef="518" pos="110037;-141473;-2984" node1="110069,-141399" node2="110045,-141477" node3="110028,-141471" node4="110052,-141394" nodeZ="-2984" default_status="close" />
|
||||
<door id="23130003" name="fortress_2313_003" open_method="0" height="150" baseHpMax="169710" hp_showable="false" basePDef="644" baseMDef="518" pos="110082;-141323;-2984" node1="110069,-141402" node2="110093,-141326" node3="110073,-141319" node4="110051,-141398" nodeZ="-2984" default_status="close" />
|
||||
@ -889,7 +360,6 @@
|
||||
<door id="23130008" name="fortress_2313_008" open_method="1" height="150" baseHpMax="169710" basePDef="644" baseMDef="518" pos="110255;-139850;-2959" node1="110242,-139929" node2="110266,-139853" node3="110246,-139846" node4="110224,-139925" nodeZ="-2959" default_status="close" />
|
||||
<door id="23140001" name="ice_barrier_001" open_method="0" height="1024" baseHpMax="150000" hp_showable="false" basePDef="100000" baseMDef="10000" pos="113931;-126021;-3472" node1="113916,-126161" node2="114017,-126134" node3="113965,-125899" node4="113857,-125928" nodeZ="-3663" default_status="open" />
|
||||
<door id="23140002" name="ice_barrier_002" open_method="0" height="1024" baseHpMax="150000" hp_showable="false" basePDef="100000" baseMDef="10000" pos="115291;-125744;-3472" node1="115272,-125869" node2="115376,-125838" node3="115318,-125611" node4="115218,-125637" nodeZ="-3664" default_status="open" />
|
||||
<door id="23140101" name="icequeen_door_001" open_method="0" height="150" hp_showable="false" basePDef="100000" pos="114719;-113291;-11233" node1="114651,-113301" node2="114784,-113301" node3="114785,-113281" node4="114653,-113277" nodeZ="-11242" default_status="close" targetable="false" />
|
||||
<door id="23150001" name="solina_secret_door_01" open_method="4" level="3" close_time="60" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="110717;-81568;-1536" node1="110610,-81590" node2="110824,-81591" node3="110825,-81546" node4="110611,-81546" nodeZ="-1618" />
|
||||
<door id="23150002" name="solina_secret_door_02" open_method="4" level="3" close_time="60" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="114880;-71454;-496" node1="114782,-71472" node2="114979,-71473" node3="114979,-71426" node4="114782,-71425" nodeZ="-578" />
|
||||
<door id="23150003" name="brilliance_door_02" open_method="4" level="3" close_time="30" height="610" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="112800;-78084;330" node1="112641,-78096" node2="112816,-78096" node3="112816,-78065" node4="112641,-78064" nodeZ="23" group="brilliance_parent" />
|
||||
@ -1061,68 +531,6 @@
|
||||
<door id="24210004" name="valakas_door_01" open_method="0" close_time="3600" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="190917;-115528;-1519" node1="190891,-115626" node2="190943,-115626" node3="190944,-115430" node4="190892,-115430" nodeZ="-1619" />
|
||||
<door id="24210005" name="valakas_door_02" open_method="0" close_time="3600" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="189479;-108511;-952" node1="189570,-108551" node2="189579,-108510" node3="189388,-108473" node4="189380,-108508" nodeZ="-1056" />
|
||||
<door id="24210006" name="valakas_door_03" open_method="0" close_time="3600" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="191458;-108107;-955" node1="191357,-108119" node2="191369,-108153" node3="191557,-108095" node4="191548,-108058" nodeZ="-1058" />
|
||||
<door id="24220001" name="cyratal_cave_a_e" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="143676;142344;-11918" node1="143564,142327" node2="143787,142331" node3="143789,142372" node4="143566,142368" nodeZ="-11918" default_status="close" />
|
||||
<door id="24220002" name="cyratal_cave_a_b" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144472;142483;-11918" node1="144455,142375" node2="144487,142376" node3="144489,142593" node4="144455,142592" nodeZ="-11918" default_status="close" />
|
||||
<door id="24220003" name="cyratal_cave_a_c" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="147289;143711;-12303" node1="147268,143600" node2="147304,143598" node3="147307,143826" node4="147269,143826" nodeZ="-12303" default_status="close" />
|
||||
<door id="24220004" name="cyratal_cave_a_d" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="149589;143453;-12132" node1="149490,143369" node2="149528,143341" node3="149694,143535" node4="149658,143566" nodeZ="-12132" default_status="close" />
|
||||
<door id="24220005" name="cyratal_cave_a_f" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="149714;147259;-12405" node1="149737,147139" node2="149790,147166" node3="149701,147373" node4="149653,147356" nodeZ="-12405" default_status="close" />
|
||||
<door id="24220006" name="cyratal_cave_a_g" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="152762;146864;-12617" node1="152655,146847" node2="152869,146849" node3="152870,146892" node4="152657,146889" nodeZ="-12617" default_status="close" />
|
||||
<door id="24220007" name="cyratal_cave_a_h" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="153702;145944;-12609" node1="153677,145838" node2="153718,145841" node3="153719,146054" node4="153679,146053" nodeZ="-12609" default_status="close" />
|
||||
<door id="24220008" name="barler_12" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="153572;143618;-12736" node1="153463,143603" node2="153681,143605" node3="153681,143638" node4="153463,143637" nodeZ="-12736" default_status="close" />
|
||||
<door id="24220009" name="barler_01" open_method="4" level="3" close_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="152818;143379;-12735" node1="152740,143304" node2="152925,143409" node3="152904,143442" node4="152725,143336" nodeZ="-12735" default_status="close" />
|
||||
<door id="24220010" name="barler_09" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="152268;142831;-12737" node1="152196,142743" node2="152226,142725" node3="152338,142921" node4="152312,142937" nodeZ="-12742" default_status="close" />
|
||||
<door id="24220011" name="barler_02" open_method="4" level="3" close_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="152069;142074;-12736" node1="152049,141975" node2="152096,141973" node3="152097,142182" node4="152048,142179" nodeZ="-12736" default_status="close" />
|
||||
<door id="24220012" name="barler_03" open_method="4" level="3" close_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="152268;141321;-12736" node1="152232,141423" node2="152197,141400" node3="152299,141223" node4="152335,141245" nodeZ="-12736" default_status="close" />
|
||||
<door id="24220013" name="barler_10" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="152820;140772;-12737" node1="152712,140823" node2="152909,140708" node3="152922,140727" node4="152725,140844" nodeZ="-12745" default_status="close" />
|
||||
<door id="24220014" name="barler_04" open_method="4" level="3" close_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="153573;140569;-12736" node1="153470,140530" node2="153671,140531" node3="153672,140586" node4="153468,140587" nodeZ="-12736" default_status="close" />
|
||||
<door id="24220015" name="barler_05" open_method="4" level="3" close_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="154326;140774;-12735" node1="154252,140698" node2="154426,140797" node3="154402,140844" node4="154226,140742" nodeZ="-12735" default_status="close" />
|
||||
<door id="24220016" name="barler_06" open_method="4" level="3" close_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="154875;141324;-12736" node1="154808,141242" node2="154844,141224" node3="154944,141400" node4="154904,141422" nodeZ="-12736" default_status="close" />
|
||||
<door id="24220017" name="barler_07" open_method="4" level="3" close_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="155077;142077;-12736" node1="155055,141974" node2="155105,141976" node3="155106,142176" node4="155054,142178" nodeZ="-12736" default_status="close" />
|
||||
<door id="24220018" name="barler_11" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="154876;142830;-12737" node1="154810,142918" node2="154833,142931" node3="154947,142741" node4="154919,142725" nodeZ="-12740" default_status="close" />
|
||||
<door id="24220019" name="barler_08" open_method="4" level="3" close_time="10" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="154325;143381;-12735" node1="154253,143457" node2="154429,143359" node3="154404,143312" node4="154220,143406" nodeZ="-12735" default_status="close" />
|
||||
<door id="24220020" name="cyratal_cave_a_a" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144288;148919;-12164" node1="144188,148896" node2="144389,148897" node3="144390,148933" node4="144188,148932" nodeZ="-12164" default_status="close" />
|
||||
<door id="24220021" name="cyratal_cave_b" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="143878;150288;-12164" node1="143857,150194" node2="143902,150193" node3="143904,150392" node4="143857,150393" nodeZ="-12164" default_status="close" />
|
||||
<door id="24220022" name="cyratal_cave_b_a" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144288;151658;-12164" node1="144186,151632" node2="144388,151635" node3="144388,151680" node4="144187,151681" nodeZ="-12164" default_status="close" />
|
||||
<door id="24220023" name="cyratal_cave_b_b" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="153278;149537;-12160" node1="153249,149430" node2="153303,149430" node3="153309,149646" node4="153249,149648" nodeZ="-12160" default_status="close" />
|
||||
<door id="24220024" name="cyratal_cave_a" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="141829;148895;-11838" node1="141802,148790" node2="141851,148789" node3="141851,149004" node4="141805,149003" nodeZ="-11838" default_status="close" />
|
||||
<door id="24220025" name="cyratal_cave_c_a" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="141253;149550;-11838" node1="141144,149527" node2="141359,149526" node3="141359,149567" node4="141144,149575" nodeZ="-11838" default_status="close" />
|
||||
<door id="24220026" name="cyratal_cave_c_b" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="143115;154426;-11838" node1="143088,154321" node2="143137,154320" node3="143137,154535" node4="143091,154534" nodeZ="-11838" default_status="close" />
|
||||
<door id="24220030" name="cyratal_cave_c_1" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="141282;140492;-15294" node1="141257,140392" node2="141304,140392" node3="141304,140591" node4="141258,140591" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220031" name="cyratal_cave_c_2" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="141814;140493;-15294" node1="141792,140391" node2="141839,140392" node3="141840,140599" node4="141793,140599" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220032" name="cyratal_cave_c_3" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="143587;140493;-15294" node1="143565,140383" node2="143611,140384" node3="143612,140599" node4="143566,140599" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220033" name="cyratal_cave_c_4" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144106;140493;-15294" node1="144084,140383" node2="144128,140383" node3="144130,140599" node4="144084,140599" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220034" name="cyratal_cave_c_5" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="140405;141370;-15294" node1="140297,141345" node2="140511,141345" node3="140512,141392" node4="140296,141391" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220035" name="cyratal_cave_c_6" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="142697;141373;-15294" node1="142592,141348" node2="142807,141347" node3="142807,141398" node4="142594,141397" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220036" name="cyratal_cave_c_7" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144984;141372;-15294" node1="144873,141347" node2="145098,141346" node3="145097,141393" node4="144875,141395" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220037" name="cyratal_cave_c_8" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="140405;141937;-15294" node1="140296,141913" node2="140512,141913" node3="140512,141959" node4="140298,141960" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220038" name="cyratal_cave_c_9" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144985;141938;-15294" node1="144880,141916" node2="145095,141913" node3="145096,141959" node4="144880,141961" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220039" name="cyratal_cave_c_10" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="141282;142823;-15294" node1="141256,142719" node2="141304,142719" node3="141304,142927" node4="141258,142926" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220040" name="cyratal_cave_c_11" open_method="4" level="3" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="143735;142822;-15652" node1="143714,142716" node2="143759,142714" node3="143758,142930" node4="143713,142930" nodeZ="-15652" default_status="close" />
|
||||
<door id="24220041" name="cyratal_cave_c_12" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144106;142823;-15294" node1="144085,142719" node2="144128,142719" node3="144130,142927" node4="144082,142928" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220042" name="cyratal_cave_c_13" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="146662;142824;-15913" node1="146627,142722" node2="146704,142722" node3="146707,142926" node4="146628,142927" nodeZ="-15913" default_status="close" />
|
||||
<door id="24220043" name="cyratal_cave_c_14" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="140404;143707;-15294" node1="140300,143682" node2="140511,143682" node3="140512,143726" node4="140301,143726" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220044" name="cyratal_cave_c_15" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="140405;144274;-15294" node1="140303,144250" node2="140511,144250" node3="140511,144297" node4="140304,144296" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220045" name="cyratal_cave_c_16" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="142698;144274;-15294" node1="142593,144252" node2="142801,144247" node3="142801,144300" node4="142592,144299" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220046" name="cyratal_cave_c_17" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144984;144275;-15294" node1="144878,144251" node2="145088,144252" node3="145088,144301" node4="144881,144301" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220047" name="cyratal_cave_c_18" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="141285;145153;-15294" node1="141262,145048" node2="141309,145048" node3="141310,145263" node4="141265,145262" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220048" name="cyratal_cave_c_19" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="141800;145155;-15294" node1="141774,145048" node2="141826,145048" node3="141824,145262" node4="141777,145263" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220049" name="cyratal_cave_c_20" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="143575;145154;-15294" node1="143552,145056" node2="143600,145056" node3="143601,145256" node4="143552,145255" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220050" name="cyratal_cave_c_21" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144089;145154;-15294" node1="144065,145050" node2="144112,145049" node3="144114,145256" node4="144065,145256" nodeZ="-15294" default_status="close" />
|
||||
<door id="24220060" name="cyratal_cave_c_22" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="144984;143699;-15292" node1="144878,143675" node2="145088,143676" node3="145088,143725" node4="144881,143725" nodeZ="-15292" default_status="close" />
|
||||
<door id="24220061" name="cyratal_cave_b_c" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="152287;149987;-12160" node1="152262,149881" node2="152303,149884" node3="152304,150097" node4="152264,150096" nodeZ="-12160" default_status="close" />
|
||||
<door id="24230001" name="island_of_oracle_a" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="147153;180447;-6145" node1="147127,180368" node2="147176,180370" node3="147176,180528" node4="147127,180527" nodeZ="-6145" default_status="close" />
|
||||
<door id="24230002" name="island_of_oracle_b" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="147818;180022;-6145" node1="147741,180001" node2="147893,180000" node3="147895,180042" node4="147741,180042" nodeZ="-6145" default_status="close" />
|
||||
<door id="24230003" name="island_of_oracle_d" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148606;180447;-6145" node1="148580,180368" node2="148629,180370" node3="148629,180528" node4="148580,180527" nodeZ="-6145" default_status="close" />
|
||||
<door id="24230004" name="island_of_oracle_e" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148910;179902;-6145" node1="148833,179881" node2="148985,179880" node3="148987,179922" node4="148833,179922" nodeZ="-6145" default_status="close" />
|
||||
<door id="24230005" name="island_of_oracle_c" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="147818;180992;-6145" node1="147741,180971" node2="147893,180970" node3="147895,181012" node4="147741,181012" nodeZ="-6145" default_status="close" />
|
||||
<door id="24230006" name="island_of_oracle_f" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148910;181282;-6145" node1="148833,181261" node2="148985,181260" node3="148987,181302" node4="148833,181302" nodeZ="-6145" default_status="close" />
|
||||
<door id="24230007" name="island_of_oracle_1" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148912;179201;-6163" node1="148566,179194" node2="149256,179192" node3="149256,179210" node4="148567,179207" nodeZ="-6163" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="24230008" name="island_of_oracle_2" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148915;179087;-6165" node1="148569,179080" node2="149259,179078" node3="149259,179096" node4="148570,179093" nodeZ="-6165" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="24230009" name="island_of_oracle_3" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148915;178961;-6164" node1="148569,178954" node2="149259,178952" node3="149259,178970" node4="148570,178967" nodeZ="-6164" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="24230010" name="island_of_oracle_4" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148915;178834;-6165" node1="148569,178827" node2="149259,178825" node3="149259,178843" node4="148570,178840" nodeZ="-6165" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="24230011" name="island_of_oracle_5" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148913;178710;-6163" node1="148567,178703" node2="149257,178701" node3="149257,178719" node4="148568,178716" nodeZ="-6163" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="24230012" name="island_of_oracle_6" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148916;178585;-6164" node1="148570,178578" node2="149260,178576" node3="149260,178594" node4="148571,178591" nodeZ="-6164" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="24230013" name="island_of_oracle_7" open_method="0" height="150" baseHpMax="3258432" hp_showable="false" basePDef="100000" baseMDef="10000" pos="148911;178464;-6163" node1="148565,178457" node2="149255,178455" node3="149255,178473" node4="148566,178470" nodeZ="-6163" default_status="close" targetable="false" stealth="true" />
|
||||
<door id="25150001" name="royal_rush_door_2" open_method="0" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="179516;-88988;-7068" node1="179509,-89162" node2="179570,-89164" node3="179571,-88815" node4="179510,-88814" nodeZ="-7254" />
|
||||
<door id="25150002" name="royal_rush_door_2a" open_method="0" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="181251;-88979;-7069" node1="181247,-89155" node2="181307,-89154" node3="181305,-88804" node4="181243,-88805" nodeZ="-7257" />
|
||||
<door id="25150003" name="royal_rush_door_2b" open_method="0" height="256" baseHpMax="126600" hp_showable="false" basePDef="644" baseMDef="518" pos="183055;-88979;-7065" node1="183040,-89164" node2="183115,-89166" node3="183122,-88798" node4="183041,-88796" nodeZ="-7255" />
|
||||
|
@ -1,42 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ElementalAttributeData.xsd">
|
||||
<!-- Stone -->
|
||||
<item id="9546" elemental="FIRE" type="STONE" />
|
||||
<item id="9547" elemental="WATER" type="STONE" />
|
||||
<item id="9549" elemental="WIND" type="STONE" />
|
||||
<item id="9548" elemental="EARTH" type="STONE" />
|
||||
<item id="9551" elemental="HOLY" type="STONE" />
|
||||
<item id="9550" elemental="DARK" type="STONE" />
|
||||
|
||||
<!-- Rough Ore -->
|
||||
<item id="10521" elemental="FIRE" type="ROUGH_ORE" />
|
||||
<item id="10522" elemental="WATER" type="ROUGH_ORE" />
|
||||
<item id="10524" elemental="WIND" type="ROUGH_ORE" />
|
||||
<item id="10523" elemental="EARTH" type="ROUGH_ORE" />
|
||||
<item id="10526" elemental="HOLY" type="ROUGH_ORE" />
|
||||
<item id="10525" elemental="DARK" type="ROUGH_ORE" />
|
||||
|
||||
<!-- Crystal -->
|
||||
<item id="9552" elemental="FIRE" type="CRYSTAL" />
|
||||
<item id="9553" elemental="WATER" type="CRYSTAL" />
|
||||
<item id="9555" elemental="WIND" type="CRYSTAL" />
|
||||
<item id="9554" elemental="EARTH" type="CRYSTAL" />
|
||||
<item id="9557" elemental="HOLY" type="CRYSTAL" />
|
||||
<item id="9556" elemental="DARK" type="CRYSTAL" />
|
||||
|
||||
<!-- Jewel -->
|
||||
<item id="9558" elemental="FIRE" type="JEWEL" />
|
||||
<item id="9559" elemental="WATER" type="JEWEL" />
|
||||
<item id="9561" elemental="WIND" type="JEWEL" />
|
||||
<item id="9560" elemental="EARTH" type="JEWEL" />
|
||||
<item id="9563" elemental="HOLY" type="JEWEL" />
|
||||
<item id="9562" elemental="DARK" type="JEWEL" />
|
||||
|
||||
<!-- Not yet supported by client (Freya PTS) -->
|
||||
<item id="9564" elemental="FIRE" type="ENERGY" />
|
||||
<item id="9565" elemental="WATER" type="ENERGY" />
|
||||
<item id="9567" elemental="WIND" type="ENERGY" />
|
||||
<item id="9566" elemental="EARTH" type="ENERGY" />
|
||||
<item id="9569" elemental="HOLY" type="ENERGY" />
|
||||
<item id="9568" elemental="DARK" type="ENERGY" />
|
||||
</list>
|
@ -20,6 +20,7 @@
|
||||
<enchant id="6573" targetGrade="C" maxEnchant="16" />
|
||||
<enchant id="6575" targetGrade="D" maxEnchant="16" />
|
||||
<enchant id="6577" targetGrade="S" maxEnchant="16" />
|
||||
|
||||
<!-- Blessed Scrolls: Enchant Armor -->
|
||||
<enchant id="6570" targetGrade="A" maxEnchant="16" />
|
||||
<enchant id="6572" targetGrade="B" maxEnchant="16" />
|
||||
@ -33,190 +34,11 @@
|
||||
<enchant id="953" targetGrade="C" bonusRate="100" />
|
||||
<enchant id="957" targetGrade="D" bonusRate="100" />
|
||||
<enchant id="961" targetGrade="S" bonusRate="100" />
|
||||
|
||||
<!-- Crystal Scrolls: Enchant Armor -->
|
||||
<enchant id="732" targetGrade="A" bonusRate="100" />
|
||||
<enchant id="950" targetGrade="B" bonusRate="100" />
|
||||
<enchant id="954" targetGrade="C" bonusRate="100" />
|
||||
<enchant id="958" targetGrade="D" bonusRate="100" />
|
||||
<enchant id="962" targetGrade="S" bonusRate="100" />
|
||||
|
||||
<!-- Weapon Enchant Scrolls -->
|
||||
<enchant id="22006" targetGrade="D" bonusRate="10" maxEnchant="16" />
|
||||
<enchant id="22007" targetGrade="C" bonusRate="10" maxEnchant="16" />
|
||||
<enchant id="22008" targetGrade="B" bonusRate="10" maxEnchant="16" />
|
||||
<enchant id="22009" targetGrade="A" bonusRate="10" maxEnchant="16" />
|
||||
<enchant id="20517" targetGrade="S" bonusRate="10" maxEnchant="16" />
|
||||
<!-- Armor Enchant Scrolls -->
|
||||
<enchant id="22010" targetGrade="D" bonusRate="10" maxEnchant="16" />
|
||||
<enchant id="22011" targetGrade="C" bonusRate="10" maxEnchant="16" />
|
||||
<enchant id="22012" targetGrade="B" bonusRate="10" maxEnchant="16" />
|
||||
<enchant id="22013" targetGrade="A" bonusRate="10" maxEnchant="16" />
|
||||
<enchant id="20518" targetGrade="S" bonusRate="10" maxEnchant="16" />
|
||||
|
||||
<!-- Ancient Weapon Enchant Crystal -->
|
||||
<enchant id="22014" targetGrade="B" maxEnchant="16" bonusRate="10" />
|
||||
<enchant id="22015" targetGrade="A" maxEnchant="16" bonusRate="10" />
|
||||
<enchant id="20519" targetGrade="S" maxEnchant="16" bonusRate="10" />
|
||||
<!-- Ancient Armor Enchant Crystal -->
|
||||
<enchant id="22016" targetGrade="B" maxEnchant="16" bonusRate="10" />
|
||||
<enchant id="22017" targetGrade="A" maxEnchant="16" bonusRate="10" />
|
||||
<enchant id="20520" targetGrade="S" maxEnchant="16" bonusRate="10" />
|
||||
|
||||
<!-- Divine Weapon Enchant Crystal -->
|
||||
<enchant id="22018" targetGrade="B" bonusRate="100" />
|
||||
<enchant id="22019" targetGrade="A" bonusRate="100" />
|
||||
<enchant id="20521" targetGrade="S" bonusRate="100" />
|
||||
<!-- Divine Armor Enchant Crystal -->
|
||||
<enchant id="22020" targetGrade="B" bonusRate="100" />
|
||||
<enchant id="22021" targetGrade="A" bonusRate="100" />
|
||||
<enchant id="20522" targetGrade="S" bonusRate="100" />
|
||||
|
||||
<!-- Master Yogi's Scroll: Enchant Weapon -->
|
||||
<enchant id="13540" maxEnchant="23">
|
||||
<item id="13539" /> <!-- Staff of Master Yogi -->
|
||||
</enchant>
|
||||
|
||||
<!-- Event - Herdsman's Love Scroll Event -->
|
||||
<enchant id="15381" maxEnchant="16">
|
||||
<item id="15383" /> <!-- Weaver's Multi-colored Clothes (7-day limited period) -->
|
||||
<item id="15384" /> <!-- Weaver's Multi-colored Clothes (30-day limited period) -->
|
||||
<item id="15385" /> <!-- Weaver's Multi-colored Clothes (60-day limited period) -->
|
||||
<item id="15386" /> <!-- Weaver's Multi-colored Clothes (90-day limited period) -->
|
||||
<item id="15387" /> <!-- Weaver's Multi-colored Clothes (Permanent Use) -->
|
||||
<item id="15388" /> <!-- Weaver's Multi-colored Clothes (Event) (7-day limited period) -->
|
||||
<item id="15389" /> <!-- Weaver's Multi-colored Clothes (Event) (30-day limited period) -->
|
||||
<item id="15390" /> <!-- Weaver's Multi-colored Clothes (Event) (60-day limited period) -->
|
||||
<item id="15391" /> <!-- Weaver's Multi-colored Clothes (Event) (90-day limited period) -->
|
||||
<item id="15392" /> <!-- Weaver's Multi-colored Clothes (Event) (Permanent Use) -->
|
||||
</enchant>
|
||||
|
||||
<!-- Event - Vitality Belt Enchant Scroll -->
|
||||
<enchant id="15382" maxEnchant="50">
|
||||
<item id="15393" /> <!-- Vitality Belt (7-day limited period) -->
|
||||
<item id="15394" /> <!-- Vitality Belt (30-day limited period) -->
|
||||
<item id="15395" /> <!-- Vitality Belt (60-day limited period) -->
|
||||
<item id="15396" /> <!-- Vitality Belt (90-day limited period) -->
|
||||
<item id="15397" /> <!-- Vitality Belt (Permanent Use) -->
|
||||
<item id="15398" /> <!-- Vitality Belt (Event) (7-day limited period) -->
|
||||
<item id="15399" /> <!-- Vitality Belt (Event) (30-day limited period) -->
|
||||
<item id="15400" /> <!-- Vitality Belt (Event) (60-day limited period) -->
|
||||
<item id="15401" /> <!-- Vitality Belt (Event) (90-day limited period) -->
|
||||
<item id="15402" /> <!-- Vitality Belt (Event) (Permanent Use) -->
|
||||
</enchant>
|
||||
|
||||
<!-- Weapon enhancing scroll exclusive for PC cafe -->
|
||||
<enchant id="15346" targetGrade="S">
|
||||
<item id="15313" /> <!-- Player Commendation - Forgotten Blade (Player Recommendation Weapon) -->
|
||||
<item id="15314" /> <!-- Player Commendation - Basalt Battlehammer (Player Recommendation Weapon) -->
|
||||
<item id="15315" /> <!-- Player Commendation - Imperial Staff (Player Recommendation Weapon) -->
|
||||
<item id="15316" /> <!-- Player Commendation - Angel Slayer (Player Recommendation Weapon) -->
|
||||
<item id="15317" /> <!-- Player Commendation - Dragon Hunter Axe (Player Recommendation Weapon) -->
|
||||
<item id="15318" /> <!-- Player Commendation - Saint Spear (Player Recommendation Weapon) -->
|
||||
<item id="15319" /> <!-- Player Commendation - Demon Splinter (Player Recommendation Weapon) -->
|
||||
<item id="15320" /> <!-- Player Commendation - Heaven's Divider (Player Recommendation Weapon) -->
|
||||
<item id="15321" /> <!-- Player Commendation - Arcana Macw (Player Recommendation Weapon) -->
|
||||
<item id="15322" /> <!-- Player Commendation - Draconic Bow (Player Recommendation Weapon) -->
|
||||
<item id="15323" /> <!-- Player Commendation - Laevateinn (Player Recommendation Weapon) -->
|
||||
<item id="15324" /> <!-- Player Commendation - Gram (Player Recommendation Weapon) -->
|
||||
<item id="15325" /> <!-- Player Commendation - Sarunga (Player Recommendation Weapon) -->
|
||||
<item id="15326" /> <!-- Player Commendation - Tallum Blade *Dark Legion's Edge (Player Recommendation Weapon) -->
|
||||
</enchant>
|
||||
<enchant id="15347" targetGrade="A">
|
||||
<item id="13210" /> <!-- Player Commendation - Sirra's Blade (Player Commendation Weapon) -->
|
||||
<item id="13211" /> <!-- Player Commendation - Sword of Ipos (Player Commendation Weapon) -->
|
||||
<item id="13212" /> <!-- Player Commendation - Barakiel's Axe (Player Commendation Weapon) -->
|
||||
<item id="13213" /> <!-- Player Commendation - Behemoth Tuning Fork (Player Commendation Weapon) -->
|
||||
<item id="13214" /> <!-- Player Commendation - Naga Storm (Player Commendation Weapon) -->
|
||||
<item id="13215" /> <!-- Player Commendation - Tiphon's Spear (Player Commendation Weapon) -->
|
||||
<item id="13216" /> <!-- Player Commendation - Shyeed's Bow (Player Commendation Weapon) -->
|
||||
<item id="13217" /> <!-- Player Commendation - Sobekk's Hurricane (Player Commendation Weapon) -->
|
||||
<item id="13218" /> <!-- Player Commendation - Themis' Tongue (Player Commendation Weapon) -->
|
||||
<item id="13219" /> <!-- Player Commendation - Cabrio's Hand (Player Commendation Weapon) -->
|
||||
<item id="13220" /> <!-- Player Commendation - Daimon Crystal (Player Commendation Weapon) -->
|
||||
<item id="13221" /> <!-- Player Commendation - Tallum Blade*Damascus (Player Commendation Weapon) -->
|
||||
<item id="13222" /> <!-- Player Commendation - Éclair Bijou (Player Commendation Weapon) -->
|
||||
<item id="13223" /> <!-- Player Commendation - Durendal (Player Commendation Weapon) -->
|
||||
<item id="13224" /> <!-- Player Commendation - Screaming Vengeance (Player Commendation Weapon) -->
|
||||
</enchant>
|
||||
<enchant id="15348" targetGrade="B">
|
||||
<item id="13194" /> <!-- Player Commendation - Damascus Sword (Player Commendation Weapon) -->
|
||||
<item id="13195" /> <!-- Player Commendation - Lance (Player Commendation Weapon) -->
|
||||
<item id="13196" /> <!-- Player Commendation - Deadman's Glory (Player Commendation Weapon) -->
|
||||
<item id="13197" /> <!-- Player Commendation - Art of Battle Axe (Player Commendation Weapon) -->
|
||||
<item id="13198" /> <!-- Player Commendation - Staff of Evil Spirits (Player Commendation Weapon) -->
|
||||
<item id="13199" /> <!-- Player Commendation - Devil's Dagger (Player Commendation Weapon) -->
|
||||
<item id="13200" /> <!-- Player Commendation - Bellion Cestus (Player Commendation Weapon) -->
|
||||
<item id="13201" /> <!-- Player Commendation - Bow of Peril (Player Commendation Weapon) -->
|
||||
<item id="13202" /> <!-- Player Commendation - Samurai*Samurai (Player Commendation Weapon) -->
|
||||
<item id="13203" /> <!-- Player Commendation - Guardian's Sword (Player Commendation Weapon) -->
|
||||
<item id="13204" /> <!-- Player Commendation - Wizard's Tear (Player Commendation Weapon) -->
|
||||
<item id="13205" /> <!-- Player Commendation - Kaim Vanul's Bones (Player Commendation Weapon) -->
|
||||
<item id="13206" /> <!-- Player Commendation - Star Buster (Player Commendation Weapon) -->
|
||||
<item id="13207" /> <!-- Player Commendation - Colichemarde (Player Commendation Weapon) -->
|
||||
<item id="13208" /> <!-- Player Commendation - Dismantler (Player Commendation Weapon) -->
|
||||
<item id="13209" /> <!-- Player Commendation - Hell Hound (Player Commendation Weapon) -->
|
||||
</enchant>
|
||||
<enchant id="15349" targetGrade="C">
|
||||
<item id="13178" /> <!-- Player Commendation - Samurai Long Sword (Player Commendation Weapon) -->
|
||||
<item id="13179" /> <!-- Player Commendation - Ghost's Wand (Player Commendation Weapon) -->
|
||||
<item id="13180" /> <!-- Player Commendation - Ghoul's Wand (Player Commendation Weapon) -->
|
||||
<item id="13181" /> <!-- Player Commendation - Devil's Wand (Player Commendation Weapon) -->
|
||||
<item id="13182" /> <!-- Player Commendation - Crystal Dagger (Player Commendation Weapon) -->
|
||||
<item id="13183" /> <!-- Player Commendation - Great Pata (Player Commendation Weapon) -->
|
||||
<item id="13184" /> <!-- Player Commendation - Eminence Bow (Player Commendation Weapon) -->
|
||||
<item id="13185" /> <!-- Player Commendation - Orcish Poleaxe (Player Commendation Weapon) -->
|
||||
<item id="13186" /> <!-- Player Commendation - Yaksa Mace (Player Commendation Weapon) -->
|
||||
<item id="13187" /> <!-- Player Commendation - Shamshir*Shamshir (Player Commendation Weapon) -->
|
||||
<item id="13188" /> <!-- Player Commendation - Admiral's Estoc (Player Commendation Weapon) -->
|
||||
<item id="13189" /> <!-- Player Commendation - Saber Tooth (Player Commendation Weapon) -->
|
||||
<item id="13190" /> <!-- Player Commendation - Sharpshooter (Player Commendation Weapon) -->
|
||||
<item id="13191" /> <!-- Player Commendation - Ecliptic Sword (Player Commendation Weapon) -->
|
||||
<item id="13192" /> <!-- Player Commendation - Ecliptic Axe (Player Commendation Weapon) -->
|
||||
<item id="13193" /> <!-- Player Commendation - Dwarven Hammer (Player Commendation Weapon) -->
|
||||
</enchant>
|
||||
<enchant id="15350" targetGrade="D">
|
||||
<item id="13163" /> <!-- Player Commendation - Bastard*Crimson Sword (Player Commendation Weapon) -->
|
||||
<item id="13164" /> <!-- Player Commendation - Claymore (Player Commendation Weapon) -->
|
||||
<item id="13165" /> <!-- Player Commendation - Bonebreaker (Player Commendation Weapon) -->
|
||||
<item id="13166" /> <!-- Player Commendation - Atuba Hammer (Player Commendation Weapon) -->
|
||||
<item id="13167" /> <!-- Player Commendation - Ghost's Wand (Player Commendation Weapon) -->
|
||||
<item id="13168" /> <!-- Player Commendation - Hall of Life (Player Commendation Weapon) -->
|
||||
<item id="13169" /> <!-- Player Commendation - Atuba Mace (Player Commendation Weapon) -->
|
||||
<item id="13170" /> <!-- Player Commendation - Mithril Dagger (Player Commendation Weapon) -->
|
||||
<item id="13171" /> <!-- Player Commendation - Scallop Jamadhr (Player Commendation Weapon) -->
|
||||
<item id="13172" /> <!-- Player Commendation - Crossbow (Player Commendation Weapon) -->
|
||||
<item id="13173" /> <!-- Player Commendation - Glaive (Player Commendation Weapon) -->
|
||||
<item id="13174" /> <!-- Player Commendation - Elven Long Sword (Player Commendation Weapon) -->
|
||||
<item id="13175" /> <!-- Player Commendation - Grand Epee (Player Commendation Weapon) -->
|
||||
<item id="13176" /> <!-- Player Commendation - General Katzbalger (Player Commendation Weapon) -->
|
||||
<item id="13177" /> <!-- Player Commendation - Cranequin (Player Commendation Weapon) -->
|
||||
</enchant>
|
||||
|
||||
<!-- Weapon-Type Enhance Backup Stone -->
|
||||
<support id="12362" targetGrade="D" maxEnchant="9" bonusRate="20" />
|
||||
<support id="12363" targetGrade="C" maxEnchant="9" bonusRate="18" />
|
||||
<support id="12364" targetGrade="B" maxEnchant="9" bonusRate="15" />
|
||||
<support id="12365" targetGrade="A" maxEnchant="9" bonusRate="12" />
|
||||
<support id="12366" targetGrade="S" maxEnchant="9" bonusRate="10" />
|
||||
|
||||
<!-- Armor-Type Enhance Backup Stone -->
|
||||
<support id="12367" targetGrade="D" maxEnchant="9" bonusRate="35" />
|
||||
<support id="12368" targetGrade="C" maxEnchant="9" bonusRate="27" />
|
||||
<support id="12369" targetGrade="B" maxEnchant="9" bonusRate="23" />
|
||||
<support id="12370" targetGrade="A" maxEnchant="9" bonusRate="18" />
|
||||
<support id="12371" targetGrade="S" maxEnchant="9" bonusRate="15" />
|
||||
|
||||
<!-- Agathion Auxiliary Stone: Enchant Weapon -->
|
||||
<support id="14702" targetGrade="D" maxEnchant="9" bonusRate="20" />
|
||||
<support id="14703" targetGrade="C" maxEnchant="9" bonusRate="18" />
|
||||
<support id="14704" targetGrade="B" maxEnchant="9" bonusRate="15" />
|
||||
<support id="14705" targetGrade="A" maxEnchant="9" bonusRate="12" />
|
||||
<support id="14706" targetGrade="S" maxEnchant="9" bonusRate="10" />
|
||||
|
||||
<!-- Agathion Auxiliary Stone: Enchant Armor -->
|
||||
<support id="14707" targetGrade="D" maxEnchant="9" bonusRate="35" />
|
||||
<support id="14708" targetGrade="C" maxEnchant="9" bonusRate="27" />
|
||||
<support id="14709" targetGrade="B" maxEnchant="9" bonusRate="23" />
|
||||
<support id="14710" targetGrade="A" maxEnchant="9" bonusRate="18" />
|
||||
<support id="14711" targetGrade="S" maxEnchant="9" bonusRate="15" />
|
||||
</list>
|
@ -41,7 +41,6 @@
|
||||
<item slot="neck" /> <!-- Neck: Necklaces -->
|
||||
<item slot="rear;lear" /> <!-- Right ear, Left ear: Earrings -->
|
||||
<item slot="rfinger;lfinger" /> <!-- Right finger, Left finger: Rings -->
|
||||
<item slot="belt" /> <!-- Belt: Belts -->
|
||||
<item slot="shirt" /> <!-- Shirt: Shirts -->
|
||||
</enchantRate>
|
||||
<!-- Bind only full armor group to to full armor slot items. -->
|
||||
|
@ -1,163 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/InstanceNames.xsd">
|
||||
<instance id="1" name="Party Duel" />
|
||||
<instance id="2" name="Urban Area" />
|
||||
<instance id="3" name="Tower of Infinitum Demon Prince" />
|
||||
<instance id="4" name="Tower of Infinitum Ranku" />
|
||||
<instance id="5" name="Tully's Workshop 1st Floor" />
|
||||
<instance id="6" name="Tully's Workshop 3rd Floor" />
|
||||
<instance id="7" name="Tully's Workshop 5th Floor" />
|
||||
<instance id="8" name="Tully's Workshop 7th Floor" />
|
||||
<instance id="9" name="Dark Cloud Mansion" />
|
||||
<instance id="10" name="Crystal Caverns" />
|
||||
<instance id="11" name="Nornil's Garden" />
|
||||
<instance id="12" name="Nornil's Garden Quest" />
|
||||
<instance id="13" name="Dungeon" />
|
||||
<instance id="14" name="Dungeon" />
|
||||
<instance id="15" name="Dungeon" />
|
||||
<instance id="16" name="Dungeon" />
|
||||
<instance id="17" name="Dungeon" />
|
||||
<instance id="18" name="Dungeon" />
|
||||
<instance id="19" name="Dungeon" />
|
||||
<instance id="20" name="Dungeon" />
|
||||
<instance id="21" name="Dungeon" />
|
||||
<instance id="22" name="Monster Dungeon" />
|
||||
<instance id="23" name="Monster Dungeon" />
|
||||
<instance id="24" name="Monster Dungeon" />
|
||||
<instance id="25" name="Monster Dungeon" />
|
||||
<instance id="26" name="Monster Dungeon" />
|
||||
<instance id="27" name="Monster Dungeon" />
|
||||
<instance id="28" name="Monster Dungeon" />
|
||||
<instance id="29" name="Monster Dungeon" />
|
||||
<instance id="30" name="Monster Dungeon" />
|
||||
<instance id="31" name="Monster Dungeon" />
|
||||
<instance id="32" name="Monster Dungeon" />
|
||||
<instance id="33" name="Monster Dungeon" />
|
||||
<instance id="34" name="Monster Dungeon" />
|
||||
<instance id="35" name="Monster Dungeon" />
|
||||
<instance id="36" name="Monster Dungeon" />
|
||||
<instance id="37" name="Monster Dungeon" />
|
||||
<instance id="38" name="Monster Dungeon" />
|
||||
<instance id="39" name="Monster Dungeon" />
|
||||
<instance id="40" name="Monster Dungeon" />
|
||||
<instance id="41" name="Monster Dungeon" />
|
||||
<instance id="42" name="Monster Dungeon" />
|
||||
<instance id="43" name="Pailaka (Forgotten Temple)" />
|
||||
<instance id="44" name="Pailaka (Devil's Isle)" />
|
||||
<instance id="45" name="Pailaka (Varka Silenos Barracks)" />
|
||||
<instance id="46" name="Rim Kamaloka" />
|
||||
<instance id="47" name="Rim Kamaloka" />
|
||||
<instance id="48" name="Rim Kamaloka" />
|
||||
<instance id="49" name="Rim Kamaloka" />
|
||||
<instance id="50" name="Rim Kamaloka" />
|
||||
<instance id="51" name="Rim Kamaloka" />
|
||||
<instance id="52" name="Rim Kamaloka" />
|
||||
<instance id="53" name="Rim Kamaloka" />
|
||||
<instance id="54" name="Rim Kamaloka" />
|
||||
<instance id="55" name="Rim Kamaloka" />
|
||||
<instance id="56" name="Rim Kamaloka" />
|
||||
<instance id="57" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="58" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="59" name="Near Kamaloka" />
|
||||
<instance id="60" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="61" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="62" name="Near Kamaloka" />
|
||||
<instance id="63" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="64" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="65" name="Near Kamaloka" />
|
||||
<instance id="66" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="67" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="68" name="Near Kamaloka" />
|
||||
<instance id="69" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="70" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="71" name="Near Kamaloka" />
|
||||
<instance id="72" name="Kamaloka (Hall of the Abyss)" />
|
||||
<instance id="73" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="74" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="75" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="76" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="77" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="78" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="79" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="80" name="Pailaka (Rune Castle)" />
|
||||
<instance id="81" name="Pailaka (Rune Castle)" />
|
||||
<instance id="82" name="Pailaka (Rune Castle)" />
|
||||
<instance id="83" name="Pailaka (Rune Castle)" />
|
||||
<instance id="84" name="Pailaka (Rune Castle)" />
|
||||
<instance id="85" name="Pailaka (Rune Castle)" />
|
||||
<instance id="86" name="Pailaka (Rune Castle)" />
|
||||
<instance id="87" name="Pailaka (Rune Castle)" />
|
||||
<instance id="88" name="Pailaka (Rune Castle)" />
|
||||
<instance id="89" name="Pailaka (Rune Castle)" />
|
||||
<instance id="90" name="Pailaka (Rune Castle)" />
|
||||
<instance id="91" name="Pailaka (Rune Castle)" />
|
||||
<instance id="92" name="Pailaka (Rune Castle)" />
|
||||
<instance id="93" name="Pailaka (Rune Castle)" />
|
||||
<instance id="94" name="Pailaka (Rune Castle)" />
|
||||
<instance id="95" name="Pailaka (Rune Castle)" />
|
||||
<instance id="96" name="Pailaka (Rune Castle)" />
|
||||
<instance id="97" name="Pailaka (Rune Castle)" />
|
||||
<instance id="98" name="Pailaka (Rune Castle)" />
|
||||
<instance id="99" name="Pailaka (Rune Castle)" />
|
||||
<instance id="100" name="Pailaka (Rune Castle)" />
|
||||
<instance id="101" name="Pailaka (Rune Castle)" />
|
||||
<instance id="102" name="Pailaka (Rune Castle)" />
|
||||
<instance id="103" name="Pailaka (Rune Castle)" />
|
||||
<instance id="104" name="Pailaka (Rune Castle)" />
|
||||
<instance id="105" name="Pailaka (Rune Castle)" />
|
||||
<instance id="106" name="Pailaka (Rune Castle)" />
|
||||
<instance id="107" name="Pailaka (Rune Castle)" />
|
||||
<instance id="108" name="Pailaka (Rune Castle)" />
|
||||
<instance id="109" name="Pailaka (Rune Castle)" />
|
||||
<instance id="110" name="Seed of Destruction" />
|
||||
<instance id="111" name="Sanctum of the Lords of Dawn" />
|
||||
<instance id="112" name="Disciple's Necropolis (Past)" />
|
||||
<instance id="113" name="Hideout of the Dawn" />
|
||||
<instance id="114" name="Cavern of the Pirate Captain (Nightmare)" />
|
||||
<instance id="115" name="Seed of Infinity (Hall of Suffering)" />
|
||||
<instance id="116" name="Seed of Infinity (Hall of Suffering)" />
|
||||
<instance id="117" name="Secret Area in the Keucereus Fortress" />
|
||||
<instance id="118" name="Secret Area in the Keucereus Fortress" />
|
||||
<instance id="119" name="Seed of Infinity (Hall of Erosion)" />
|
||||
<instance id="120" name="Seed of Infinity (Hall of Erosion)" />
|
||||
<instance id="121" name="Seed of Infinity (Heart of Infinity)" />
|
||||
<instance id="122" name="Seed of Infinity (Heart of Infinity)" />
|
||||
<instance id="123" name="Seed of Destruction (Chamblain's Mounted Troop)" />
|
||||
<instance id="124" name="Seed of Destruction (Soldier's Mounted Troop)" />
|
||||
<instance id="125" name="Seed of Destruction (Warrior's Mounted Troop)" />
|
||||
<instance id="126" name="Seed of Destruction (Great Warrior's Mounted Troop)" />
|
||||
<instance id="127" name="Delusion Chamber (Eastern Seal)" />
|
||||
<instance id="128" name="Delusion Chamber (Western Seal)" />
|
||||
<instance id="129" name="Delusion Chamber (Eastern Seal)" />
|
||||
<instance id="130" name="Delusion Chamber (Northern Seal)" />
|
||||
<instance id="131" name="Delusion Chamber (Great Seal)" />
|
||||
<instance id="132" name="Delusion Chamber (Tower of Seal)" />
|
||||
<instance id="133" name="Cavern of the Pirate Captain (Daydream)" />
|
||||
<instance id="134" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||
<instance id="135" name="Cavern of the Pirate Captain (Daydream)" />
|
||||
<instance id="136" name="Final Emperial Tomb" />
|
||||
<instance id="137" name="Ice Queen's Castle" />
|
||||
<instance id="138" name="Mithril Mine" />
|
||||
<instance id="139" name="Ice Queen's Castle" />
|
||||
<instance id="140" name="Jinia Guild Hideout" />
|
||||
<instance id="141" name="Jinia Guild Hideout" />
|
||||
<instance id="142" name="Tower of Infinitum (5th Floor)" />
|
||||
<instance id="143" name="Tower of Infinitum (10th Floor)" />
|
||||
<instance id="144" name="Ice Queen's Castle (Ultimate Battle)" />
|
||||
<instance id="145" name="Jinia Guild Hideout" />
|
||||
<instance id="146" name="Jinia Guild Hideout" />
|
||||
<instance id="147" name="Olympiad" />
|
||||
<instance id="148" name="Olympiad" />
|
||||
<instance id="149" name="Olympiad" />
|
||||
<instance id="150" name="Olympiad" />
|
||||
<instance id="151" name="Monastery of Silence" />
|
||||
<instance id="152" name="Monastery of Silence" />
|
||||
<instance id="153" name="Monastery of Silence" />
|
||||
<instance id="154" name="Monastery of Silence" />
|
||||
<instance id="155" name="Monastery of Silence" />
|
||||
<instance id="156" name="Library of Sages" />
|
||||
<instance id="157" name="Underground Library of Sages" />
|
||||
<instance id="158" name="Elcadia's Tent" />
|
||||
<instance id="159" name="Penal Colony of Darkness Raid" />
|
||||
<instance id="160" name="Rim Kamaloka" />
|
||||
</list>
|
@ -1,211 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ItemAuctions.xsd">
|
||||
<!-- Documentation: -->
|
||||
<!-- <instance id="NPC ID of the auctioneer" day_of_week="1 - Monday, 7 - Sunday" hour_of_day="0-23" minute_of_hour="0-59"> -->
|
||||
<!-- <item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="1000000" auctionLength="300 (in minutes)"> -->
|
||||
<!-- <extra enchant_level="15" augmentation_id="you can take it from item_attributes table" augmentation_skill_id="3241" augmentation_skill_lvl="10" /> -->
|
||||
<!-- </item> -->
|
||||
<!-- </instance> -->
|
||||
<!-- instead of day_of_week you can use interval between auction in days -->
|
||||
<!-- <instance id="NPC ID of the auctioneer" interval="1" hour_of_day="0-23" minute_of_hour="0-59"> -->
|
||||
<!-- <item auctionItemId="1" itemId="10485" itemCount="1" auctionInitBid="1000000" auctionLength="300" /> -->
|
||||
<!-- </instance> -->
|
||||
<instance id="32320" day_of_week="5" hour_of_day="17">
|
||||
<!-- Improved Weapons (No-Grade) +15 -->
|
||||
<!-- Improved Falchion -->
|
||||
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Great Spear -->
|
||||
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Iron Hammer -->
|
||||
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Sword Breaker -->
|
||||
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Viper Fang -->
|
||||
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Composite Bow -->
|
||||
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Flanged Mace -->
|
||||
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Mage Staff -->
|
||||
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Life Stones -->
|
||||
<!-- Top-Grade Life Stone - Level 80 -->
|
||||
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Top-Grade Life Stone - Level 82 -->
|
||||
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Red Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Green Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Blue Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Red Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- Green Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- Blue Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- High-Grade Life Stone - Level 80 -->
|
||||
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- High-Grade Life Stone - Level 82 -->
|
||||
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Forgotten Scrolls -->
|
||||
<!-- Forgotten Scroll - Protection of Rune -->
|
||||
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Protection of Elemental -->
|
||||
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Protection of Alignment -->
|
||||
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Fighter's Will -->
|
||||
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Archer's Will -->
|
||||
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Magician's Will -->
|
||||
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Hair Accessories -->
|
||||
<!-- Refined Chick Hat -->
|
||||
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Wizard Hat -->
|
||||
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Black Feather Mask -->
|
||||
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Romantic Chapeau -->
|
||||
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Carnival Circlet -->
|
||||
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Jester Hat -->
|
||||
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
</instance>
|
||||
<instance id="32321" day_of_week="1" hour_of_day="17">
|
||||
<!-- Improved Weapons (No-Grade) +15 -->
|
||||
<!-- Improved Falchion -->
|
||||
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Great Spear -->
|
||||
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Iron Hammer -->
|
||||
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Sword Breaker -->
|
||||
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Viper Fang -->
|
||||
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Composite Bow -->
|
||||
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Flanged Mace -->
|
||||
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Mage Staff -->
|
||||
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Life Stones -->
|
||||
<!-- Top-Grade Life Stone - Level 80 -->
|
||||
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Top-Grade Life Stone - Level 82 -->
|
||||
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Red Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Green Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Blue Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Red Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- Green Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- Blue Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- High-Grade Life Stone - Level 80 -->
|
||||
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- High-Grade Life Stone - Level 82 -->
|
||||
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Forgotten Scrolls -->
|
||||
<!-- Forgotten Scroll - Protection of Rune -->
|
||||
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Protection of Elemental -->
|
||||
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Protection of Alignment -->
|
||||
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Fighter's Will -->
|
||||
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Archer's Will -->
|
||||
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Magician's Will -->
|
||||
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Hair Accessories -->
|
||||
<!-- Refined Chick Hat -->
|
||||
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Wizard Hat -->
|
||||
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Black Feather Mask -->
|
||||
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Romantic Chapeau -->
|
||||
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Carnival Circlet -->
|
||||
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Jester Hat -->
|
||||
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
</instance>
|
||||
<instance id="32322" day_of_week="3" hour_of_day="17">
|
||||
<!-- Improved Weapons (No-Grade) +15 -->
|
||||
<!-- Improved Falchion -->
|
||||
<item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Great Spear -->
|
||||
<item auctionItemId="2" itemId="9902" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Iron Hammer -->
|
||||
<item auctionItemId="3" itemId="9903" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Sword Breaker -->
|
||||
<item auctionItemId="4" itemId="9904" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Viper Fang -->
|
||||
<item auctionItemId="5" itemId="9905" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Composite Bow -->
|
||||
<item auctionItemId="6" itemId="9906" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Flanged Mace -->
|
||||
<item auctionItemId="7" itemId="9907" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Improved Mage Staff -->
|
||||
<item auctionItemId="8" itemId="9908" itemCount="1" auctionInitBid="1000000" auctionLength="300" />
|
||||
<!-- Life Stones -->
|
||||
<!-- Top-Grade Life Stone - Level 80 -->
|
||||
<item auctionItemId="9" itemId="9576" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Top-Grade Life Stone - Level 82 -->
|
||||
<item auctionItemId="10" itemId="10486" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Red Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="11" itemId="10480" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Green Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="12" itemId="10482" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Blue Soul Crystal - Stage 15 -->
|
||||
<item auctionItemId="13" itemId="10481" itemCount="1" auctionInitBid="40000000" auctionLength="300" />
|
||||
<!-- Red Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="14" itemId="13071" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- Green Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="15" itemId="13073" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- Blue Soul Crystal - Stage 16 -->
|
||||
<item auctionItemId="16" itemId="13072" itemCount="1" auctionInitBid="50000000" auctionLength="300" />
|
||||
<!-- High-Grade Life Stone - Level 80 -->
|
||||
<item auctionItemId="17" itemId="9575" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- High-Grade Life Stone - Level 82 -->
|
||||
<item auctionItemId="18" itemId="10485" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Forgotten Scrolls -->
|
||||
<!-- Forgotten Scroll - Protection of Rune -->
|
||||
<item auctionItemId="19" itemId="10549" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Protection of Elemental -->
|
||||
<item auctionItemId="20" itemId="10550" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Protection of Alignment -->
|
||||
<item auctionItemId="21" itemId="10551" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Fighter's Will -->
|
||||
<item auctionItemId="22" itemId="10552" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Archer's Will -->
|
||||
<item auctionItemId="23" itemId="10553" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Forgotten Scroll - Magician's Will -->
|
||||
<item auctionItemId="24" itemId="14219" itemCount="1" auctionInitBid="30000000" auctionLength="300" />
|
||||
<!-- Hair Accessories -->
|
||||
<!-- Refined Chick Hat -->
|
||||
<item auctionItemId="25" itemId="13497" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Wizard Hat -->
|
||||
<item auctionItemId="26" itemId="13498" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Black Feather Mask -->
|
||||
<item auctionItemId="27" itemId="13500" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Romantic Chapeau -->
|
||||
<item auctionItemId="28" itemId="13501" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Carnival Circlet -->
|
||||
<item auctionItemId="29" itemId="13493" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
<!-- Refined Jester Hat -->
|
||||
<item auctionItemId="30" itemId="13499" itemCount="1" auctionInitBid="20000000" auctionLength="300" />
|
||||
</instance>
|
||||
</list>
|
@ -14,9 +14,6 @@
|
||||
<item itemId="4639" level="10" leveledItemId="5577" /> <!-- RED 10 - 11 -->
|
||||
<item itemId="5577" level="11" leveledItemId="5580" /> <!-- RED 11 - 12 -->
|
||||
<item itemId="5580" level="12" leveledItemId="5908" /> <!-- RED 12 - 13 -->
|
||||
<item itemId="5908" level="13" leveledItemId="9570" /> <!-- RED 13 - 14 -->
|
||||
<item itemId="9570" level="14" leveledItemId="10480" /> <!-- RED 14 - 15 -->
|
||||
<item itemId="10480" level="15" leveledItemId="13071" /> <!-- RED 15 - 16 -->
|
||||
|
||||
<item itemId="4640" level="0" leveledItemId="4641" /> <!-- GREEN 0 - 1 -->
|
||||
<item itemId="4641" level="1" leveledItemId="4642" /> <!-- GREEN 1 - 2 -->
|
||||
@ -31,9 +28,6 @@
|
||||
<item itemId="4650" level="10" leveledItemId="5578" /> <!-- GREEN 10 - 11 -->
|
||||
<item itemId="5578" level="11" leveledItemId="5581" /> <!-- GREEN 11 - 12 -->
|
||||
<item itemId="5581" level="12" leveledItemId="5911" /> <!-- GREEN 12 - 13 -->
|
||||
<item itemId="5911" level="13" leveledItemId="9572" /> <!-- GREEN 13 - 14 -->
|
||||
<item itemId="9572" level="14" leveledItemId="10482" /> <!-- GREEN 14 - 15 -->
|
||||
<item itemId="10482" level="15" leveledItemId="13073" /> <!-- GREEN 15 - 16 -->
|
||||
|
||||
<item itemId="4651" level="0" leveledItemId="4652" /> <!-- BLUE 0 - 1 -->
|
||||
<item itemId="4652" level="1" leveledItemId="4653" /> <!-- BLUE 1 - 2 -->
|
||||
@ -48,9 +42,6 @@
|
||||
<item itemId="4661" level="10" leveledItemId="5579" /> <!-- BLUE 10 - 11 -->
|
||||
<item itemId="5579" level="11" leveledItemId="5582" /> <!-- BLUE 11 - 12 -->
|
||||
<item itemId="5582" level="12" leveledItemId="5914" /> <!-- BLUE 12 - 13 -->
|
||||
<item itemId="5914" level="13" leveledItemId="9571" /> <!-- BLUE 13 - 14 -->
|
||||
<item itemId="9571" level="14" leveledItemId="10481" /> <!-- BLUE 14 - 15 -->
|
||||
<item itemId="10481" level="15" leveledItemId="13072" /> <!-- BLUE 15 - 16 -->
|
||||
</crystal>
|
||||
<npc>
|
||||
<!-- Mobs that level up crystal from Level 1 up to 10 -->
|
||||
@ -375,9 +366,6 @@
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="10, 11" />
|
||||
<detail chance="10" absorbType="FULL_PARTY" levelList="12, 13" />
|
||||
</item>
|
||||
<item npcId="29176"> <!-- Daytime Zaken -->
|
||||
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="10, 11" />
|
||||
</item>
|
||||
<item npcId="25016"> <!-- The 3rd Underwater Guardian -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11" />
|
||||
</item>
|
||||
@ -592,166 +580,29 @@
|
||||
<item npcId="22216"> <!-- Tyrannosaurus -->
|
||||
<detail chance="15" absorbType="PARTY_ONE_RANDOM" levelList="10, 11" />
|
||||
</item>
|
||||
<item npcId="25536"> <!-- Hannibal -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25539"> <!-- Typhoon -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25643"> <!-- Awakened Ancient Sentry -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25644"> <!-- Awakened Ancient Severer -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25645"> <!-- Awakened Ancient Soul Extractor -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25646"> <!-- Awakened Ancient Soul Devourer -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25647"> <!-- Awakened Ancient Fighter -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25648"> <!-- Awakened Ancient Fighter -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25649"> <!-- Awakened Ancient Executor -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25650"> <!-- Awakened Ancient Executor -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25651"> <!-- Awakened Ancient Prophet -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25652"> <!-- Awakened Ancient Prophet -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25665"> <!-- Yehan Klodekus -->
|
||||
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25666"> <!-- Yehan Klanikus -->
|
||||
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25690"> <!-- Aenkinel Lv 81 -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25691"> <!-- Aenkinel Lv 81 -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25692"> <!-- Aenkinel Lv 81 -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25693"> <!-- Aenkinel Lv 81 -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25694"> <!-- Aenkinel Lv 82 -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25695"> <!-- Aenkinel Lv 84 -->
|
||||
<detail chance="20" absorbType="PARTY_ONE_RANDOM" levelList="12, 13" />
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="14" />
|
||||
</item>
|
||||
<item npcId="25667"> <!-- Cannibalistic Stakato Chief -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25668"> <!-- Cannibalistic Stakato Chief -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25669"> <!-- Cannibalistic Stakato Chief -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25670"> <!-- Cannibalistic Stakato Chief -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13" />
|
||||
</item>
|
||||
<item npcId="25609"> <!-- Epidos -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25610"> <!-- Epidos -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25611"> <!-- Epidos -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25612"> <!-- Epidos -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25162"> <!-- Giant Marpanak -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11" />
|
||||
</item>
|
||||
<item npcId="25467"> <!-- Gorgolos -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11" />
|
||||
</item>
|
||||
<item npcId="29150"> <!-- Ekimus -->
|
||||
<detail chance="10" absorbType="FULL_PARTY" levelList="12, 13, 14, 15" />
|
||||
<detail chance="3" absorbType="FULL_PARTY" levelList="16" />
|
||||
</item>
|
||||
<item npcId="29163"> <!-- Tiat Attack stage -->
|
||||
<detail chance="10" absorbType="FULL_PARTY" levelList="12, 13, 14, 15" />
|
||||
<detail chance="3" absorbType="FULL_PARTY" levelList="16" />
|
||||
</item>
|
||||
<item npcId="25540"> <!-- Demon Prince -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25542"> <!-- Ranku -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25544"> <!-- Tully -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25674"> <!-- Gwindorr -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25680"> <!-- Giant Marpanak (82) -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25681"> <!-- Gorgolos (82) -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25684"> <!-- Last Titan Utenus -->
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="25687"> <!-- Hekaton Prime -->
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="10, 11, 12, 13, 14" />
|
||||
</item>
|
||||
<item npcId="29118"> <!-- Beleth -->
|
||||
<detail chance="10" absorbType="FULL_PARTY" levelList="12, 13, 14, 15" />
|
||||
<detail chance="1" absorbType="FULL_PARTY" levelList="16" />
|
||||
</item>
|
||||
<item npcId="25677"> <!-- Water Spirit Lian -->
|
||||
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="12, 13" />
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="14" />
|
||||
</item>
|
||||
<item npcId="25603"> <!-- Darion -->
|
||||
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="12, 13" />
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="14" />
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="15" />
|
||||
</item>
|
||||
<item npcId="25671"> <!-- Queen Shyeed -->
|
||||
<detail chance="10" absorbType="PARTY_ONE_RANDOM" levelList="12, 13" />
|
||||
<detail chance="5" absorbType="PARTY_ONE_RANDOM" levelList="14" />
|
||||
<detail chance="3" absorbType="PARTY_ONE_RANDOM" levelList="15" />
|
||||
</item>
|
||||
<item npcId="29047"> <!-- Scarlet van Halisha -->
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13" />
|
||||
<detail chance="50" absorbType="FULL_PARTY" levelList="14" />
|
||||
<detail chance="10" absorbType="FULL_PARTY" levelList="15" />
|
||||
</item>
|
||||
<item npcId="29019"> <!-- Antharas -->
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13" />
|
||||
</item>
|
||||
<item npcId="29066"> <!-- Antharas -->
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13" />
|
||||
</item>
|
||||
<item npcId="29067"> <!-- Antharas -->
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13" />
|
||||
</item>
|
||||
<item npcId="29068"> <!-- Antharas -->
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13" />
|
||||
</item>
|
||||
<item npcId="29028"> <!-- Valakas -->
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13, 14, 15, 16" />
|
||||
<detail chance="100" absorbType="FULL_PARTY" levelList="12, 13" />
|
||||
</item>
|
||||
</npc>
|
||||
</list>
|
File diff suppressed because it is too large
Load Diff
@ -1,242 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/PrimeShop.xsd">
|
||||
<!--
|
||||
category = Enchant 1
|
||||
category = Supplies 2
|
||||
category = Decorating 3
|
||||
category = Package 4
|
||||
category = Others 5
|
||||
category = Event 6
|
||||
category = Best 7
|
||||
category = Event & Best 8
|
||||
-->
|
||||
<product id="1050021" category="2" points="3" item="22025" count="1" /> <!-- Powerful Healing Potion -->
|
||||
<product id="1050022" category="2" points="1" item="22026" count="1" /> <!-- High-grade Healing Potion -->
|
||||
<product id="1080001" category="2" points="200" item="22000" count="1" /> <!-- Small fortuna box -->
|
||||
<product id="1080002" category="2" points="270" item="22001" count="1" /> <!-- Middle fortuna box -->
|
||||
<product id="1080003" category="2" points="405" item="22002" count="1" /> <!-- Large fortuna box -->
|
||||
<product id="1080004" category="2" points="81" item="22003" count="1" /> <!-- Small fortuna cube -->
|
||||
<product id="1080005" category="2" points="216" item="22004" count="1" /> <!-- Middle fortuna cube -->
|
||||
<product id="1080006" category="2" points="324" item="22005" count="1" /> <!-- Large fortuna cube -->
|
||||
<product id="1080009" category="2" points="4" item="22027" count="1" /> <!-- Secret medicine of Will - D grade -->
|
||||
<product id="1080010" category="2" points="13" item="22028" count="1" /> <!-- Secret medicine of Will - C grade -->
|
||||
<product id="1080011" category="2" points="22" item="22029" count="1" /> <!-- Secret medicine of Will - B grade -->
|
||||
<product id="1080012" category="2" points="34" item="22030" count="1" /> <!-- Secret medicine of Will - A grade -->
|
||||
<product id="1080013" category="2" points="49" item="22031" count="1" /> <!-- Secret medicine of Will - S grade -->
|
||||
<product id="1080014" category="2" points="10" item="22032" count="1" /> <!-- Secret medicine of Life - D grade -->
|
||||
<product id="1080015" category="2" points="30" item="22033" count="1" /> <!-- Secret medicine of Life - C grade -->
|
||||
<product id="1080016" category="2" points="54" item="22034" count="1" /> <!-- Secret medicine of Life - B grade -->
|
||||
<product id="1080017" category="2" points="85" item="22035" count="1" /> <!-- Secret medicine of Life - A grade -->
|
||||
<product id="1080018" category="2" points="122" item="22036" count="1" /> <!-- Secret medicine of Life - S grade -->
|
||||
<product id="1080019" category="2" points="4" item="22037" count="1" /> <!-- Potion of Will -->
|
||||
<product id="1080021" category="5" points="4" item="22039" count="1" /> <!-- Wind Walk Scroll -->
|
||||
<product id="1080022" category="2" points="8" item="22040" count="1" /> <!-- Haste Scroll -->
|
||||
<product id="1080023" category="2" points="4" item="22041" count="1" /> <!-- Might Scroll -->
|
||||
<product id="1080024" category="2" points="4" item="22042" count="1" /> <!-- Shield Scroll -->
|
||||
<product id="1080025" category="2" points="8" item="22043" count="1" /> <!-- Death Whisper Scroll -->
|
||||
<product id="1080026" category="2" points="8" item="22044" count="1" /> <!-- Guidance Scroll -->
|
||||
<product id="1080027" category="2" points="8" item="22045" count="1" /> <!-- Empower Scroll -->
|
||||
<product id="1080028" category="2" points="8" item="22046" count="1" /> <!-- Grater Acumen Scroll -->
|
||||
<product id="1080029" category="2" points="8" item="22047" count="1" /> <!-- Vampiric Rage Scroll -->
|
||||
<product id="1080030" category="2" points="8" item="22048" count="1" /> <!-- Bless the Body Scroll -->
|
||||
<product id="1080031" category="2" points="8" item="22049" count="1" /> <!-- Berserker Spirit Scroll -->
|
||||
<product id="1080032" category="2" points="4" item="22050" count="1" /> <!-- Magic Barrier Scroll -->
|
||||
<product id="1080033" category="2" points="8" item="22060" count="1" /> <!-- Rune of SP - 336 Hour Expiration Period -->
|
||||
<product id="1080034" category="2" points="8" item="22061" count="1" /> <!-- Rune of SP - 720 Hour Expiration Period -->
|
||||
<product id="1080035" category="2" points="8" item="22062" count="1" /> <!-- Crystal form Rune - 24 Hour Expiration Period -->
|
||||
<product id="1080048" category="1" points="68" item="22066" count="1" /> <!-- Rune of Feather - 24 Hour Expiration Period -->
|
||||
<product id="1080049" category="4" points="52" item="22087" count="1" /> <!-- A Scroll Bundle of Fighter -->
|
||||
<product id="1080050" category="4" points="59" item="22088" count="1" /> <!-- A Scroll Bundle of Mage -->
|
||||
<product id="1080051" category="4" points="21" item="22089" count="1" /> <!-- Bone Quiver -->
|
||||
<product id="1080052" category="4" points="34" item="22090" count="1" /> <!-- Steel Quiver -->
|
||||
<product id="1080053" category="4" points="48" item="22091" count="1" /> <!-- Silver Quiver -->
|
||||
<product id="1080054" category="4" points="54" item="22092" count="1" /> <!-- Mithril Quiver -->
|
||||
<product id="1080055" category="4" points="68" item="22093" count="1" /> <!-- Quiver of Light -->
|
||||
<product id="1080056" category="4" points="21" item="22149" count="1" /> <!-- Bone Bolt Container -->
|
||||
<product id="1080057" category="4" points="34" item="22150" count="1" /> <!-- Steel Bolt Container -->
|
||||
<product id="1080058" category="4" points="48" item="22151" count="1" /> <!-- Silver Bolt Container -->
|
||||
<product id="1080059" category="4" points="54" item="22152" count="1" /> <!-- Mithril Bolt Container -->
|
||||
<product id="1080060" category="4" points="68" item="22153" count="1" /> <!-- Bolt Container of Light -->
|
||||
<product id="1080061" category="4" points="31" item="22094" count="1" /> <!-- Blessed Spiritshot Pack - D grade -->
|
||||
<product id="1080062" category="4" points="61" item="22095" count="1" /> <!-- Blessed Spiritshot Pack - C grade -->
|
||||
<product id="1080063" category="4" points="166" item="22096" count="1" /> <!-- Blessed Spiritshot Pack - B grade -->
|
||||
<product id="1080064" category="4" points="196" item="22097" count="1" /> <!-- Blessed Spiritshot Pack - A grade -->
|
||||
<product id="1080065" category="4" points="237" item="22098" count="1" /> <!-- Blessed Spiritshot Pack - S grade -->
|
||||
<product id="1080066" category="4" points="12" item="22099" count="1" /> <!-- Spiritshot Pack - D grade -->
|
||||
<product id="1080067" category="4" points="24" item="22100" count="1" /> <!-- Spiritshot Pack - C grade -->
|
||||
<product id="1080068" category="4" points="68" item="22101" count="1" /> <!-- Spiritshot Pack - B grade -->
|
||||
<product id="1080069" category="4" points="81" item="22102" count="1" /> <!-- Spiritshot Pack - A grade -->
|
||||
<product id="1080070" category="4" points="102" item="22103" count="1" /> <!-- Spiritshot Pack - S grade -->
|
||||
<product id="1080071" category="4" points="8" item="22104" count="1" /> <!-- Soulshot Pack - D grade -->
|
||||
<product id="1080072" category="4" points="10" item="22105" count="1" /> <!-- Soulshot Pack - C grade -->
|
||||
<product id="1080073" category="4" points="34" item="22106" count="1" /> <!-- Soulshot Pack - B grade -->
|
||||
<product id="1080074" category="4" points="54" item="22107" count="1" /> <!-- Soulshot Pack - A grade -->
|
||||
<product id="1080075" category="4" points="68" item="22108" count="1" /> <!-- Soulshot Pack - S grade -->
|
||||
<product id="1080076" category="4" points="61" item="22109" count="1" /> <!-- Blessed Spiritshot Large Pack - D grade -->
|
||||
<product id="1080077" category="4" points="122" item="22110" count="1" /> <!-- Blessed Spiritshot Large Pack - C grade -->
|
||||
<product id="1080078" category="4" points="331" item="22111" count="1" /> <!-- Blessed Spiritshot Large Pack - B grade -->
|
||||
<product id="1080079" category="4" points="392" item="22112" count="1" /> <!-- Blessed Spiritshot Large Pack - A grade -->
|
||||
<product id="1080080" category="4" points="473" item="22113" count="1" /> <!-- Blessed Spiritshot Large Pack - S grade -->
|
||||
<product id="1080081" category="4" points="24" item="22114" count="1" /> <!-- Spiritshot Large Pack - D grade -->
|
||||
<product id="1080082" category="4" points="48" item="22115" count="1" /> <!-- Spiritshot Large Pack - C grade -->
|
||||
<product id="1080083" category="4" points="135" item="22116" count="1" /> <!-- Spiritshot Large Pack - B grade -->
|
||||
<product id="1080084" category="4" points="162" item="22117" count="1" /> <!-- Spiritshot Large Pack - A grade -->
|
||||
<product id="1080085" category="4" points="203" item="22118" count="1" /> <!-- Spiritshot Large Pack - S grade -->
|
||||
<product id="1080086" category="4" points="14" item="22119" count="1" /> <!-- Soulshot Large Pack - D grade -->
|
||||
<product id="1080087" category="4" points="21" item="22120" count="1" /> <!-- Soulshot Large Pack - C grade -->
|
||||
<product id="1080088" category="4" points="68" item="22121" count="1" /> <!-- Soulshot Large Pack - B grade -->
|
||||
<product id="1080089" category="4" points="108" item="22122" count="1" /> <!-- Soulshot Large Pack - A grade -->
|
||||
<product id="1080090" category="4" points="135" item="22123" count="1" /> <!-- Soulshot Large Pack - S grade -->
|
||||
<product id="1080091" category="3" points="338" item="22124" count="1" /> <!-- Wrapped daisy hairpin -->
|
||||
<product id="1080092" category="3" points="338" item="22125" count="1" /> <!-- Wrapped forget-me-not hairpin -->
|
||||
<product id="1080093" category="3" points="338" item="22126" count="1" /> <!-- Wrapped outlaws eyepatch -->
|
||||
<product id="1080094" category="3" points="338" item="22127" count="1" /> <!-- Wrapped pirates eyepatch -->
|
||||
<product id="1080095" category="3" points="338" item="22128" count="1" /> <!-- Wrapped Monocle -->
|
||||
<product id="1080096" category="3" points="338" item="22129" count="1" /> <!-- Wrapped Red Mask of Victory -->
|
||||
<product id="1080097" category="3" points="338" item="22130" count="1" /> <!-- Wrapped Red Horn of Victory -->
|
||||
<product id="1080098" category="3" points="338" item="22131" count="1" /> <!-- Wrapped Party Mask -->
|
||||
<product id="1080099" category="3" points="338" item="22132" count="1" /> <!-- Wrapped Red Party Mask -->
|
||||
<product id="1080100" category="3" points="338" item="22133" count="1" /> <!-- Wrapped Cat Ear -->
|
||||
<product id="1080101" category="3" points="338" item="22134" count="1" /> <!-- Wrapped Noblewomans Hairpin -->
|
||||
<product id="1080102" category="3" points="338" item="22135" count="1" /> <!-- Wrapped Raccoon Ear -->
|
||||
<product id="1080103" category="3" points="338" item="22136" count="1" /> <!-- Wrapped Rabbit Ear -->
|
||||
<product id="1080104" category="3" points="338" item="22137" count="1" /> <!-- Wrapped Little Angels Wings -->
|
||||
<product id="1080105" category="3" points="338" item="22138" count="1" /> <!-- Wrapped Fairys Tentacle -->
|
||||
<product id="1080106" category="3" points="338" item="22139" count="1" /> <!-- Wrapped Dandys Chapeau -->
|
||||
<product id="1080107" category="3" points="338" item="22140" count="1" /> <!-- Wrapped Artisans Goggles -->
|
||||
<product id="1080112" category="1" points="33" item="20335" count="1" /> <!-- Rune of Experience: 30% - 5 hour limited time -->
|
||||
<product id="1080113" category="1" points="54" item="20336" count="1" /> <!-- Rune of Exp. Points 50% - 5 Hour Expiration Period -->
|
||||
<product id="1080114" category="1" points="52" item="20337" count="1" /> <!-- Rune of Exp. Points 30% - 10 Hour Expiration Period -->
|
||||
<product id="1080115" category="1" points="87" item="20338" count="1" /> <!-- Rune of Exp. Points 50% - 10 Hour Expiration Period -->
|
||||
<product id="1080116" category="1" points="697" item="20339" count="1" /> <!-- Rune of Exp. Points 30% - 7 Day Expiration Period -->
|
||||
<product id="1080117" category="1" points="1161" item="20340" count="1" /> <!-- Rune of Exp. Points 50% - 7 Day Expiration Period -->
|
||||
<product id="1080118" category="1" points="17" item="20341" count="1" /> <!-- Rune of SP 30% - 5 Hour Expiration Period -->
|
||||
<product id="1080119" category="1" points="27" item="20342" count="1" /> <!-- Rune of SP 50% - 5 Hour Expiration Period -->
|
||||
<product id="1080120" category="1" points="26" item="20343" count="1" /> <!-- Rune of SP 30% - 10 Hour Expiration Period -->
|
||||
<product id="1080121" category="1" points="44" item="20344" count="1" /> <!-- Rune of SP 50% - 10 Hour Expiration Period -->
|
||||
<product id="1080122" category="1" points="349" item="20345" count="1" /> <!-- Rune of SP 30% - 7 Day Expiration Period -->
|
||||
<product id="1080123" category="1" points="581" item="20346" count="1" /> <!-- Rune of SP 50% - 7 Day Expiration Period -->
|
||||
<product id="1080124" category="1" points="33" item="20347" count="1" /> <!-- Rune of Crystal level 3 - 5 Hour Expiration Period -->
|
||||
<product id="1080125" category="1" points="54" item="20348" count="1" /> <!-- Rune of Crystal level 5 - 5 Hour Expiration Period -->
|
||||
<product id="1080126" category="1" points="52" item="20349" count="1" /> <!-- Rune of Crystal level 3 - 10 Hour Expiration Period -->
|
||||
<product id="1080127" category="1" points="87" item="20350" count="1" /> <!-- Rune of Crystal level 5 - 10 Hour Expiration Period -->
|
||||
<product id="1080128" category="1" points="697" item="20351" count="1" /> <!-- Rune of Crystal level 3 - 7 Day Expiration Period -->
|
||||
<product id="1080129" category="1" points="1161" item="20352" count="1" /> <!-- Rune of Crystal level 5 - 7 Day Expiration Period -->
|
||||
<product id="1080130" category="1" points="21" item="12362" count="1" /> <!-- Weapon-Type Enhance Backup Stone (D-Grade) -->
|
||||
<product id="1080131" category="1" points="45" item="12363" count="1" /> <!-- Weapon-Type Enhance Backup Stone (C-Grade) -->
|
||||
<product id="1080132" category="1" points="203" item="12364" count="1" /> <!-- Weapon-Type Enhance Backup Stone (B-Grade) -->
|
||||
<product id="1080133" category="1" points="729" item="12365" count="1" /> <!-- Weapon-Type Enhance Backup Stone (A-Grade) -->
|
||||
<product id="1080134" category="1" points="2025" item="12366" count="1" /> <!-- Weapon-Type Enhance Backup Stone (S-Grade) -->
|
||||
<product id="1080135" category="1" points="4" item="12367" count="1" /> <!-- Armor-Type Enhance Backup Stone (D-Grade) -->
|
||||
<product id="1080136" category="1" points="7" item="12368" count="1" /> <!-- Armor-Type Enhance Backup Stone (C-Grade) -->
|
||||
<product id="1080137" category="1" points="29" item="12369" count="1" /> <!-- Armor-Type Enhance Backup Stone (B-Grade) -->
|
||||
<product id="1080138" category="1" points="104" item="12370" count="1" /> <!-- Armor-Type Enhance Backup Stone (A-Grade) -->
|
||||
<product id="1080139" category="1" points="290" item="12371" count="1" /> <!-- Armor-Type Enhance Backup Stone (S-Grade) -->
|
||||
<product id="1080140" category="4" points="14" item="20326" count="1" /> <!-- Beast Soulshot Pack -->
|
||||
<product id="1080141" category="4" points="11" item="20327" count="1" /> <!-- Beast Spiritshot Pack -->
|
||||
<product id="1080142" category="4" points="68" item="20328" count="1" /> <!-- Blessed Beast Spiritshot Pack -->
|
||||
<product id="1080143" category="4" points="27" item="20329" count="1" /> <!-- Beast Soulshot Large Pack -->
|
||||
<product id="1080144" category="4" points="22" item="20330" count="1" /> <!-- Beast Spiritshot Large Pack -->
|
||||
<product id="1080145" category="4" points="135" item="20331" count="1" /> <!-- Blessed Beast Spiritshot Large Pack -->
|
||||
<product id="1080146" category="5" points="30" item="20364" count="1" /> <!-- Omen Beast Transformation Scroll -->
|
||||
<product id="1080147" category="5" points="30" item="20365" count="1" /> <!-- Death Blader Transformation Scroll -->
|
||||
<product id="1080148" category="5" points="30" item="20366" count="1" /> <!-- Grail Apostle Transformation Scroll -->
|
||||
<product id="1080149" category="5" points="30" item="20367" count="1" /> <!-- Unicorn Transformation Scroll -->
|
||||
<product id="1080150" category="5" points="30" item="20368" count="1" /> <!-- Lilim Knight Transformation Scroll -->
|
||||
<product id="1080151" category="5" points="30" item="20369" count="1" /> <!-- Golem Guardian Transformation Scroll -->
|
||||
<product id="1080152" category="5" points="30" item="20370" count="1" /> <!-- Inferno Drake Transformation Scroll -->
|
||||
<product id="1080153" category="5" points="30" item="20371" count="1" /> <!-- Dragon Bomber Transformation Scroll -->
|
||||
<product id="1080154" category="5" points="27" item="20372" count="1" /> <!-- Escape - Talking Island Village -->
|
||||
<product id="1080155" category="5" points="27" item="20373" count="1" /> <!-- Escape - Elven Village -->
|
||||
<product id="1080156" category="5" points="27" item="20374" count="1" /> <!-- Escape - Dark Elven Village -->
|
||||
<product id="1080157" category="5" points="27" item="20375" count="1" /> <!-- Escape - Orc Village -->
|
||||
<product id="1080158" category="5" points="27" item="20376" count="1" /> <!-- Escape - Dwarven Village -->
|
||||
<product id="1080159" category="5" points="27" item="20377" count="1" /> <!-- Escape - Gludin Village -->
|
||||
<product id="1080160" category="5" points="27" item="20378" count="1" /> <!-- Escape - Town of Gludio -->
|
||||
<product id="1080161" category="5" points="27" item="20379" count="1" /> <!-- Escape - Town of Dion -->
|
||||
<product id="1080162" category="5" points="27" item="20380" count="1" /> <!-- Escape - Floran Village -->
|
||||
<product id="1080163" category="5" points="27" item="20381" count="1" /> <!-- Escape - Giran Castle Town -->
|
||||
<product id="1080164" category="5" points="27" item="20382" count="1" /> <!-- Escape - Hardins Academy -->
|
||||
<product id="1080165" category="5" points="27" item="20383" count="1" /> <!-- Escape - Heine -->
|
||||
<product id="1080166" category="5" points="27" item="20384" count="1" /> <!-- Escape - Town of Oren -->
|
||||
<product id="1080167" category="5" points="27" item="20385" count="1" /> <!-- Escape - Ivory Tower -->
|
||||
<product id="1080168" category="5" points="27" item="20386" count="1" /> <!-- Escape - Hunters Village -->
|
||||
<product id="1080169" category="5" points="27" item="20387" count="1" /> <!-- Escape - Town of Aden -->
|
||||
<product id="1080170" category="5" points="27" item="20388" count="1" /> <!-- Escape - Town of Goddard -->
|
||||
<product id="1080171" category="5" points="27" item="20389" count="1" /> <!-- Escape - Rune Township -->
|
||||
<product id="1080172" category="5" points="27" item="20390" count="1" /> <!-- Escape - Town of Schuttgart -->
|
||||
<product id="1080173" category="5" points="675" item="13015" count="1" /> <!-- My Teleport Spellbook -->
|
||||
<product id="1080174" category="5" points="135" item="13016" count="5" /> <!-- My Teleport Scroll -->
|
||||
<product id="1080175" category="5" points="270" item="13016" count="10" /> <!-- My Teleport Scroll -->
|
||||
<product id="1080176" category="5" points="338" item="20033" count="5" /> <!-- My Teleport Flag -->
|
||||
<product id="1080177" category="5" points="675" item="20033" count="10" /> <!-- My Teleport Flag -->
|
||||
<product id="1080178" category="5" points="338" item="13010" count="5" /> <!-- Extra Entrance Pass - Kamaloka (Hall of the Abyss) -->
|
||||
<product id="1080179" category="5" points="675" item="13010" count="10" /> <!-- Extra Entrance Pass - Kamaloka (Hall of the Abyss) -->
|
||||
<product id="1080180" category="5" points="338" item="13011" count="5" /> <!-- Extra Entrance Pass - Near Kamaloka -->
|
||||
<product id="1080181" category="5" points="675" item="13011" count="10" /> <!-- Extra Entrance Pass - Near Kamaloka -->
|
||||
<product id="1080182" category="5" points="338" item="13012" count="5" /> <!-- Extra Entrance Pass - Kamaloka (Labyrinth of the Abyss) -->
|
||||
<product id="1080183" category="5" points="675" item="13012" count="10" /> <!-- Extra Entrance Pass - Kamaloka (Labyrinth of the Abyss) -->
|
||||
<product id="1080185" category="5" points="268" item="13021" count="1" /> <!-- Color Name -->
|
||||
<product id="1080186" category="3" points="14" item="5592" count="1" /> <!-- Greater CP Potion -->
|
||||
<product id="1080197" category="3" points="142" item="20391" count="1" /> <!-- Potion of Energy Maintenance -->
|
||||
<product id="1080198" category="3" points="68" item="20392" count="1" /> <!-- Potion of Vitality Replenishin -->
|
||||
<product id="1080199" category="5" points="79" item="20393" count="1" /> <!-- Sweet Fruit Cocktail -->
|
||||
<product id="1080200" category="5" points="91" item="20394" count="1" /> <!-- Fresh Fruit Cocktail -->
|
||||
<product id="1080201" category="3" points="338" item="139" count="1" /> <!-- Sudden Agathion 7 Day Pack -->
|
||||
<product id="1080202" category="3" points="338" item="140" count="1" /> <!-- Shiny Agathion 7 Day Pack -->
|
||||
<product id="1080203" category="3" points="338" item="141" count="1" /> <!-- Sobbing Agathion 7 Day Pack -->
|
||||
<product id="1080205" category="3" points="254" item="13370" count="1" /> <!-- Pumpkin Transformation Stick 7-Day Pack (Event) -->
|
||||
<product id="1080206" category="3" points="169" item="13371" count="1" /> <!-- Kat the Cat Hat 7-Day Pack (Event) -->
|
||||
<product id="1080207" category="3" points="169" item="13372" count="1" /> <!-- Feline Queen Hat 7-Day Pack (Event) -->
|
||||
<product id="1080208" category="3" points="169" item="13373" count="1" /> <!-- Monster Eye Hat 7-Day Pack (Event) -->
|
||||
<product id="1080209" category="3" points="169" item="13374" count="1" /> <!-- Brown Bear Hat 7-Day Pack (Event) -->
|
||||
<product id="1080210" category="3" points="169" item="13375" count="1" /> <!-- Fungus Hat 7-Day Pack (Event) -->
|
||||
<product id="1080211" category="3" points="169" item="13376" count="1" /> <!-- Skull Hat 7-Day Pack (Event) -->
|
||||
<product id="1080212" category="3" points="169" item="13377" count="1" /> <!-- Ornithomimus Hat 7-Day Pack (Event) -->
|
||||
<product id="1080213" category="3" points="169" item="13378" count="1" /> <!-- Feline King Hat 7-Day Pack (Event) -->
|
||||
<product id="1080214" category="3" points="169" item="13379" count="1" /> <!-- Kai the Cat Hat 7-Day Pack (Event) -->
|
||||
<product id="1080229" category="3" points="169" item="13380" count="1" /> <!-- OX Stick 7-Day Pack (Event) -->
|
||||
<product id="1080230" category="3" points="506" item="13381" count="1" /> <!-- Rock-Paper-Scissors Stick 7-Day Pack (Event) -->
|
||||
<product id="1080236" category="5" points="199" item="17019" count="1" /> <!-- Mounting Item 3 Pack -->
|
||||
<product id="1080238" category="5" points="89" item="14054" count="1" /> <!-- Steam Beatle Mounting Bracelet - 7-day Limited Period -->
|
||||
<product id="1080239" category="5" points="89" item="13022" count="1" /> <!-- Light Purple-Maned Horse Mounting Bracelet - 7 day limited period -->
|
||||
<product id="1080240" category="5" points="18" item="15438" count="1" /> <!-- 10 minute Energy Maintaining Potion -->
|
||||
<product id="1080241" category="5" points="54" item="15440" count="1" /> <!-- Vitality Maintenance Potion - 30 minutes -->
|
||||
<product id="1080242" category="5" points="24" item="20572" count="1" /> <!-- Rune of Exp. Points 30% - 3 hours limited time -->
|
||||
<product id="1080243" category="5" points="9" item="21084" count="1" /> <!-- Rune of Exp. Points 30% -->
|
||||
<product id="1080244" category="5" points="5" item="21086" count="1" /> <!-- Rune of SP 30% -->
|
||||
<product id="1080245" category="5" points="15" item="21030" count="1" /> <!-- Hardins Divine Protection -->
|
||||
<product id="1080246" category="5" points="15" item="21031" count="1" /> <!-- Hardins Blessing -->
|
||||
<product id="1080247" category="5" points="5" item="21032" count="1" /> <!-- Silpeeds Wing -->
|
||||
<product id="1080248" category="5" points="92" item="21033" count="1" /> <!-- Silpeeds Blessing -->
|
||||
<product id="1080249" category="5" points="1" item="21038" count="1" /> <!-- Potion of a Hero -->
|
||||
<!-- Event -->
|
||||
<product id="1080205" category="6" points="254" item="13370" count="1" /> <!-- Pumpkin Transformation Stick 7-Day Pack (Event) -->
|
||||
<product id="1080206" category="6" points="169" item="13371" count="1" /> <!-- Kat the Cat Hat 7-Day Pack (Event) -->
|
||||
<product id="1080207" category="6" points="169" item="13372" count="1" /> <!-- Feline Queen Hat 7-Day Pack (Event) -->
|
||||
<product id="1080208" category="6" points="169" item="13373" count="1" /> <!-- Monster Eye Hat 7-Day Pack (Event) -->
|
||||
<product id="1080209" category="6" points="169" item="13374" count="1" /> <!-- Brown Bear Hat 7-Day Pack (Event) -->
|
||||
<product id="1080210" category="6" points="169" item="13375" count="1" /> <!-- Fungus Hat 7-Day Pack (Event) -->
|
||||
<product id="1080211" category="6" points="169" item="13376" count="1" /> <!-- Skull Hat 7-Day Pack (Event) -->
|
||||
<product id="1080212" category="6" points="169" item="13377" count="1" /> <!-- Ornithomimus Hat 7-Day Pack (Event) -->
|
||||
<product id="1080213" category="6" points="169" item="13378" count="1" /> <!-- Feline King Hat 7-Day Pack (Event) -->
|
||||
<product id="1080214" category="6" points="169" item="13379" count="1" /> <!-- Kai the Cat Hat 7-Day Pack (Event) -->
|
||||
<product id="1080229" category="6" points="169" item="13380" count="1" /> <!-- OX Stick 7-Day Pack (Event) -->
|
||||
<product id="1080230" category="6" points="506" item="13381" count="1" /> <!-- Rock-Paper-Scissors Stick 7-Day Pack (Event) -->
|
||||
<!-- Best -->
|
||||
<product id="1080076" category="7" points="61" item="22109" count="1" /> <!-- Blessed Spiritshot Large Pack - D grade -->
|
||||
<product id="1080077" category="7" points="122" item="22110" count="1" /> <!-- Blessed Spiritshot Large Pack - C grade -->
|
||||
<product id="1080078" category="7" points="331" item="22111" count="1" /> <!-- Blessed Spiritshot Large Pack - B grade -->
|
||||
<product id="1080079" category="7" points="392" item="22112" count="1" /> <!-- Blessed Spiritshot Large Pack - A grade -->
|
||||
<product id="1080080" category="7" points="473" item="22113" count="1" /> <!-- Blessed Spiritshot Large Pack - S grade -->
|
||||
<product id="1080081" category="7" points="24" item="22114" count="1" /> <!-- Spiritshot Large Pack - D grade -->
|
||||
<product id="1080082" category="7" points="48" item="22115" count="1" /> <!-- Spiritshot Large Pack - C grade -->
|
||||
<product id="1080083" category="7" points="135" item="22116" count="1" /> <!-- Spiritshot Large Pack - B grade -->
|
||||
<product id="1080084" category="7" points="162" item="22117" count="1" /> <!-- Spiritshot Large Pack - A grade -->
|
||||
<product id="1080085" category="7" points="203" item="22118" count="1" /> <!-- Spiritshot Large Pack - S grade -->
|
||||
<product id="1080086" category="7" points="14" item="22119" count="1" /> <!-- Soulshot Large Pack - D grade -->
|
||||
<product id="1080087" category="7" points="21" item="22120" count="1" /> <!-- Soulshot Large Pack - C grade -->
|
||||
<product id="1080088" category="7" points="68" item="22121" count="1" /> <!-- Soulshot Large Pack - B grade -->
|
||||
<product id="1080089" category="7" points="108" item="22122" count="1" /> <!-- Soulshot Large Pack - A grade -->
|
||||
<product id="1080090" category="7" points="135" item="22123" count="1" /> <!-- Soulshot Large Pack - S grade -->
|
||||
</list>
|
1559
L2J_Mobius_CT_0_Interlude/dist/game/data/Recipes.xml
vendored
1559
L2J_Mobius_CT_0_Interlude/dist/game/data/Recipes.xml
vendored
File diff suppressed because it is too large
Load Diff
619
L2J_Mobius_CT_0_Interlude/dist/game/data/Routes.xml
vendored
619
L2J_Mobius_CT_0_Interlude/dist/game/data/Routes.xml
vendored
@ -41,289 +41,6 @@
|
||||
<point X="82815" Y="148840" Z="-3469" delay="3" run="true" />
|
||||
<point X="83318" Y="148422" Z="-3406" delay="0" run="true" />
|
||||
</route>
|
||||
<!-- Hellbound Town routes for Patrols -->
|
||||
<route name="castletownguard01" repeat="true" repeatStyle="random">
|
||||
<target id="22360" spawnX="14840" spawnY="251949" spawnZ="-2009" /> <!-- Town Patrolman -->
|
||||
<point X="14840" Y="251949" Z="-1992" delay="0" run="false" />
|
||||
<point X="14679" Y="253399" Z="-2016" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="castletownguard02" repeat="true" repeatStyle="random">
|
||||
<target id="22360" spawnX="16082" spawnY="251790" spawnZ="-2000" /> <!-- Town Patrolman -->
|
||||
<point X="16082" Y="251790" Z="-1992" delay="0" run="false" />
|
||||
<point X="16388" Y="252456" Z="-2000" delay="0" run="false" />
|
||||
<point X="16093" Y="254443" Z="-2064" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="castletownguard03" repeat="true" repeatStyle="random">
|
||||
<target id="22360" spawnX="16524" spawnY="255244" spawnZ="-2080" /> <!-- Town Patrolman -->
|
||||
<point X="16524" Y="255244" Z="-2072" delay="0" run="false" />
|
||||
<point X="17211" Y="256290" Z="-2064" delay="0" run="false" />
|
||||
<point X="18805" Y="256302" Z="-2088" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="castletownguard04" repeat="true" repeatStyle="random">
|
||||
<target id="22360" spawnX="17670" spawnY="252256" spawnZ="-2022" /> <!-- Town Patrolman -->
|
||||
<point X="17344" Y="251070" Z="-1952" delay="0" run="false" />
|
||||
<point X="18708" Y="250659" Z="-1992" delay="0" run="false" />
|
||||
<point X="19533" Y="250667" Z="-2016" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Anomic Foundry routes for Lesser and Greater Evil -->
|
||||
<route name="malign_conveyor_1_1" repeat="true" repeatStyle="conveyor">
|
||||
<target id="22398" spawnX="27883" spawnY="248613" spawnZ="-3209" /> <!-- Lesser Evil -->
|
||||
<point X="27886" Y="248609" Z="-3208" delay="0" run="true" />
|
||||
<point X="28150" Y="247726" Z="-3272" delay="0" run="true" />
|
||||
<point X="27340" Y="246649" Z="-3680" delay="0" run="true" />
|
||||
<point X="27646" Y="245922" Z="-3672" delay="0" run="true" />
|
||||
<!-- <point X="28247" Y="245907" Z="-2552" delay="0" run="true" /> --> <!-- retail -->
|
||||
<point X="28070" Y="245920" Z="-3698" delay="0" run="true" /> <!-- custom -->
|
||||
<point X="28491" Y="245926" Z="-3698" delay="0" run="true" /> <!-- custom -->
|
||||
<point X="29074" Y="245889" Z="-3672" delay="0" run="true" />
|
||||
<point X="29182" Y="244811" Z="-3688" delay="0" run="true" />
|
||||
<point X="28925" Y="244462" Z="-3698" delay="0" run="true" /> <!-- custom -->
|
||||
<!-- <point X="28770" Y="244248" Z="-2496" delay="0" run="true" /> --> <!-- retail -->
|
||||
</route>
|
||||
<route name="malign_conveyor_1_2" repeat="true" repeatStyle="conveyor">
|
||||
<target id="22398" spawnX="26142" spawnY="246442" spawnZ="-3216" /> <!-- Lesser Evil -->
|
||||
<point X="26144" Y="246444" Z="-3208" delay="0" run="true" />
|
||||
<point X="28063" Y="247940" Z="-3248" delay="0" run="true" />
|
||||
<point X="28276" Y="247756" Z="-3272" delay="0" run="true" />
|
||||
<point X="27344" Y="246649" Z="-3680" delay="0" run="true" />
|
||||
<point X="27652" Y="245914" Z="-3688" delay="0" run="true" />
|
||||
<!-- <point X="28255" Y="245912" Z="-2552" delay="0" run="true" /> --> <!-- retail -->
|
||||
<point X="28058" Y="245915" Z="-3701" delay="0" run="true" /> <!-- custom -->
|
||||
</route>
|
||||
<route name="malign_conveyor_1_3" repeat="true" repeatStyle="conveyor">
|
||||
<target id="22398" spawnX="27335" spawnY="246217" spawnZ="-3668" /> <!-- Lesser Evil -->
|
||||
<point X="27336" Y="246216" Z="-3656" delay="0" run="true" />
|
||||
<point X="27645" Y="245921" Z="-3672" delay="0" run="true" />
|
||||
<!-- <point X="28245" Y="245904" Z="-2552" delay="0" run="true" /> --> <!-- retail -->
|
||||
<point X="28058" Y="245915" Z="-3701" delay="0" run="true" /> <!-- custom -->
|
||||
</route>
|
||||
<route name="malign_conveyor_1_4" repeat="true" repeatStyle="conveyor">
|
||||
<target id="22398" spawnX="28486" spawnY="245913" spawnZ="-3698" /> <!-- Lesser Evil -->
|
||||
<point X="28476" Y="245914" Z="-3696" delay="0" run="true" />
|
||||
<point X="29058" Y="245894" Z="-3672" delay="0" run="true" />
|
||||
<point X="29433" Y="245216" Z="-3688" delay="0" run="true" />
|
||||
<point X="28942" Y="244492" Z="-3696" delay="0" run="true" />
|
||||
</route>
|
||||
<route name="malign_conveyor_2_1" repeat="true" repeatStyle="conveyor">
|
||||
<target id="22399" spawnX="28684" spawnY="244118" spawnZ="-3700" /> <!-- Greater Evil -->
|
||||
<point X="28771" Y="244251" Z="-2496" delay="0" run="true" />
|
||||
<point X="28495" Y="243839" Z="-3696" delay="0" run="true" />
|
||||
<point X="28727" Y="242939" Z="-3592" delay="0" run="true" />
|
||||
<point X="28188" Y="242512" Z="-3464" delay="0" run="true" />
|
||||
<point X="27248" Y="242797" Z="-3168" delay="0" run="true" />
|
||||
<point X="26850" Y="243834" Z="-2896" delay="0" run="true" />
|
||||
<point X="24636" Y="246593" Z="-1968" delay="0" run="true" />
|
||||
<point X="24519" Y="248586" Z="-1936" delay="0" run="true" />
|
||||
<point X="23094" Y="250031" Z="-1976" delay="0" run="true" />
|
||||
<point X="22673" Y="251605" Z="-1992" delay="0" run="true" />
|
||||
<point X="24560" Y="254414" Z="-1984" delay="0" run="true" />
|
||||
<point X="25392" Y="255459" Z="-1992" delay="0" run="true" />
|
||||
</route>
|
||||
<!-- Sanctum of the Lords of Dawn -->
|
||||
<route name="iz111_zone01_01" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-75650" spawnY="212107" spawnZ="-7322" />
|
||||
<point X="-75373" Y="212107" Z="-7312" delay="0" run="false" />
|
||||
<point X="-75650" Y="212107" Z="-7312" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone01_02" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-74854" spawnY="212107" spawnZ="-7322" />
|
||||
<point X="-75046" Y="212107" Z="-7312" delay="0" run="false" />
|
||||
<point X="-74854" Y="212107" Z="-7312" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone01_03" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-74534" spawnY="212108" spawnZ="-7321" />
|
||||
<point X="-74255" Y="212108" Z="-7312" delay="0" run="false" />
|
||||
<point X="-74532" Y="212108" Z="-7312" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone01_04" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-75200" spawnY="211178" spawnZ="-7322" />
|
||||
<point X="-75200" Y="211465" Z="-7312" delay="0" run="false" />
|
||||
<point X="-75200" Y="211178" Z="-7312" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone01_05" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-74701" spawnY="211460" spawnZ="-7321" />
|
||||
<point X="-74701" Y="211172" Z="-7312" delay="0" run="false" />
|
||||
<point X="-74701" Y="211460" Z="-7312" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone02_01" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-75190" spawnY="210176" spawnZ="-7418" />
|
||||
<point X="-74750" Y="210174" Z="-7408" delay="0" run="false" />
|
||||
<point X="-75190" Y="210175" Z="-7408" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone02_02" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-74743" spawnY="209820" spawnZ="-7418" />
|
||||
<point X="-75168" Y="209820" Z="-7408" delay="0" run="false" />
|
||||
<point X="-74743" Y="209820" Z="-7408" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone03_01" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-75559" spawnY="207860" spawnZ="-7515" />
|
||||
<point X="-75559" Y="208813" Z="-7504" delay="0" run="false" />
|
||||
<point X="-75559" Y="207860" Z="-7504" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone03_02" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-74227" spawnY="208290" spawnZ="-7520" />
|
||||
<point X="-74508" Y="208290" Z="-7504" delay="0" run="false" />
|
||||
<point X="-74227" Y="208290" Z="-7504" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone03_03" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-74522" spawnY="207063" spawnZ="-7520" />
|
||||
<point X="-74206" Y="207064" Z="-7504" delay="0" run="false" />
|
||||
<point X="-74522" Y="207063" Z="-7504" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone03_04" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-74956" spawnY="206348" spawnZ="-7520" />
|
||||
<point X="-74956" Y="206686" Z="-7504" delay="0" run="false" />
|
||||
<point X="-74956" Y="206348" Z="-7504" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone03_05" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-75402" spawnY="206939" spawnZ="-7520" />
|
||||
<point X="-75693" Y="206939" Z="-7504" delay="0" run="false" />
|
||||
<point X="-75402" Y="206939" Z="-7504" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone03_06" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-74246" spawnY="206515" spawnZ="-7520" />
|
||||
<point X="-75668" Y="206515" Z="-7504" delay="0" run="false" />
|
||||
<point X="-74246" Y="206515" Z="-7504" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone04_01" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-76378" spawnY="207852" spawnZ="-7616" />
|
||||
<point X="-76628" Y="207852" Z="-7600" delay="0" run="false" />
|
||||
<point X="-76378" Y="207852" Z="-7600" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone04_02" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-76628" spawnY="208151" spawnZ="-7616" />
|
||||
<point X="-76367" Y="208151" Z="-7600" delay="0" run="false" />
|
||||
<point X="-76628" Y="208151" Z="-7600" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone04_03" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-76374" spawnY="208848" spawnZ="-7616" />
|
||||
<point X="-76632" Y="208848" Z="-7600" delay="0" run="false" />
|
||||
<point X="-76374" Y="208848" Z="-7600" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone04_04" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-76928" spawnY="209189" spawnZ="-7616" />
|
||||
<point X="-76928" Y="209446" Z="-7600" delay="0" run="false" />
|
||||
<point X="-76928" Y="209189" Z="-7600" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone04_05" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-77183" spawnY="209443" spawnZ="-7616" />
|
||||
<point X="-77183" Y="209188" Z="-7600" delay="0" run="false" />
|
||||
<point X="-77183" Y="209443" Z="-7600" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone05_01" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-78054" spawnY="208464" spawnZ="-7712" />
|
||||
<point X="-77361" Y="208464" Z="-7696" delay="0" run="false" />
|
||||
<point X="-78054" Y="208464" Z="-7696" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone05_02" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-78521" spawnY="208035" spawnZ="-7712" />
|
||||
<point X="-78065" Y="208036" Z="-7696" delay="0" run="false" />
|
||||
<point X="-78521" Y="208035" Z="-7696" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone05_03" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-76881" spawnY="208037" spawnZ="-7712" />
|
||||
<point X="-77340" Y="208036" Z="-7696" delay="0" run="false" />
|
||||
<point X="-76881" Y="208037" Z="-7696" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone05_04" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-78335" spawnY="207793" spawnZ="-7712" />
|
||||
<point X="-77060" Y="207793" Z="-7696" delay="0" run="false" />
|
||||
<point X="-78335" Y="207793" Z="-7696" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone05_05" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-77702" spawnY="207414" spawnZ="-7712" />
|
||||
<point X="-77702" Y="208184" Z="-7696" delay="0" run="false" />
|
||||
<point X="-77702" Y="207414" Z="-7696" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone05_06" repeat="true" repeatStyle="back">
|
||||
<target id="18835" spawnX="-77337" spawnY="207428" spawnZ="-7712" />
|
||||
<point X="-77013" Y="207105" Z="-7696" delay="0" run="false" />
|
||||
<point X="-77336" Y="207428" Z="-7696" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_01" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-78921" spawnY="206110" spawnZ="-7904" />
|
||||
<point X="-78710" Y="206306" Z="-7872" delay="0" run="false" />
|
||||
<point X="-78930" Y="206101" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_02" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-78855" spawnY="206443" spawnZ="-7896" />
|
||||
<point X="-79066" Y="206237" Z="-7888" delay="0" run="false" />
|
||||
<point X="-78855" Y="206443" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_03" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-79357" spawnY="206713" spawnZ="-7904" />
|
||||
<point X="-79357" Y="206330" Z="-7888" delay="0" run="false" />
|
||||
<point X="-79357" Y="206713" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_04" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-79665" spawnY="206257" spawnZ="-7896" />
|
||||
<point X="-79858" Y="206454" Z="-7872" delay="0" run="false" />
|
||||
<point X="-79656" Y="206246" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_05" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-79999" spawnY="206302" spawnZ="-7904" />
|
||||
<point X="-79787" Y="206104" Z="-7888" delay="0" run="false" />
|
||||
<point X="-79999" Y="206302" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_06" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-79781" spawnY="205602" spawnZ="-7904" />
|
||||
<point X="-79991" Y="205392" Z="-7888" delay="0" run="false" />
|
||||
<point X="-79781" Y="205602" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_07" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-79849" spawnY="205260" spawnZ="-7904" />
|
||||
<point X="-79641" Y="205466" Z="-7888" delay="0" run="false" />
|
||||
<point X="-79849" Y="205260" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_08" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-79363" spawnY="205379" spawnZ="-7904" />
|
||||
<point X="-79364" Y="204964" Z="-7888" delay="0" run="false" />
|
||||
<point X="-79363" Y="205379" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_09" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-78870" spawnY="205253" spawnZ="-7904" />
|
||||
<point X="-79085" Y="205454" Z="-7888" delay="0" run="false" />
|
||||
<point X="-78870" Y="205253" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone06_10" repeat="true" repeatStyle="back">
|
||||
<target id="18834" spawnX="-78928" spawnY="205585" spawnZ="-7904" />
|
||||
<point X="-78731" Y="205386" Z="-7872" delay="0" run="false" />
|
||||
<point X="-78942" Y="205599" Z="-7888" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="iz111_zone07_01" repeat="true" repeatStyle="back">
|
||||
<target id="27351" spawnX="-81938" spawnY="205856" spawnZ="-8000" />
|
||||
<point X="-81125" Y="205855" Z="-7984" delay="0" run="false" />
|
||||
<point X="-81938" Y="205856" Z="-7984" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Gludio Airship -->
|
||||
<route name="gludio_airport1" repeat="true" repeatStyle="back">
|
||||
<target id="32628" spawnX="-148777" spawnY="254544" spawnZ="-186" />
|
||||
<point X="-149268" Y="254124" Z="-184" delay="0" run="false" />
|
||||
<point X="-148700" Y="254399" Z="-184" delay="0" run="false" />
|
||||
<point X="-148313" Y="254841" Z="-184" delay="0" run="false" />
|
||||
<point X="-148256" Y="255338" Z="-184" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="gludio_airport2" repeat="true" repeatStyle="back">
|
||||
<target id="32628" spawnX="-148804" spawnY="254521" spawnZ="-187" />
|
||||
<point X="-149239" Y="254100" Z="-184" delay="0" run="false" />
|
||||
<point X="-148671" Y="254375" Z="-184" delay="0" run="false" />
|
||||
<point X="-148284" Y="254817" Z="-184" delay="0" run="false" />
|
||||
<point X="-148227" Y="255314" Z="-184" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="gludio_airport3" repeat="true" repeatStyle="back">
|
||||
<target id="32629" spawnX="-149929" spawnY="254543" spawnZ="-187" />
|
||||
<point X="-149469" Y="254124" Z="-184" delay="0" run="false" />
|
||||
<point X="-150054" Y="254373" Z="-184" delay="0" run="false" />
|
||||
<point X="-150431" Y="254837" Z="-184" delay="0" run="false" />
|
||||
<point X="-150473" Y="255335" Z="-184" delay="0" run="false" />
|
||||
</route>
|
||||
<route name="gludio_airport4" repeat="true" repeatStyle="back">
|
||||
<target id="32629" spawnX="-149909" spawnY="254506" spawnZ="-187" />
|
||||
<point X="-149499" Y="254101" Z="-184" delay="0" run="false" />
|
||||
<point X="-150085" Y="254350" Z="-184" delay="0" run="false" />
|
||||
<point X="-150462" Y="254813" Z="-184" delay="0" run="false" />
|
||||
<point X="-150504" Y="255312" Z="-184" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Leandro -->
|
||||
<route name="scribe_leandro" repeat="true" repeatStyle="back">
|
||||
<target id="31357" spawnX="-82428" spawnY="245203" spawnZ="-3712" />
|
||||
@ -568,342 +285,6 @@
|
||||
<point X="145382" Y="-43318" Z="-2296" delay="4" run="false" />
|
||||
<point X="147265" Y="-43588" Z="-2296" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Shanty Fortress -->
|
||||
<route name="gludio_fort_a_ordery" repeat="true" repeatStyle="cycle">
|
||||
<target id="35659" spawnX="-58672" spawnY="154703" spawnZ="-2688" />
|
||||
<point X="-58672" Y="154703" Z="-2688" delay="30" run="false" />
|
||||
<point X="-57522" Y="156523" Z="-2576" delay="15" run="false" />
|
||||
<point X="-55226" Y="157117" Z="-2064" delay="0" run="false" />
|
||||
<point X="-57528" Y="156515" Z="-2576" delay="0" run="false" />
|
||||
<point X="-58660" Y="154706" Z="-2688" delay="0" run="false" />
|
||||
<point X="-60174" Y="156182" Z="-2832" delay="0" run="false" />
|
||||
<point X="-61834" Y="157703" Z="-3264" delay="0" run="false" />
|
||||
<point X="-62761" Y="159101" Z="-3584" delay="0" run="false" />
|
||||
<point X="-63472" Y="159672" Z="-3680" delay="0" run="false" />
|
||||
<point X="-64072" Y="160631" Z="-3760" delay="0" run="false" />
|
||||
<point X="-64387" Y="161877" Z="-3792" delay="0" run="false" />
|
||||
<point X="-63842" Y="163092" Z="-3840" delay="15" run="false" />
|
||||
<point X="-64397" Y="161831" Z="-3792" delay="0" run="false" />
|
||||
<point X="-64055" Y="160587" Z="-3760" delay="0" run="false" />
|
||||
<point X="-63461" Y="159656" Z="-3680" delay="0" run="false" />
|
||||
<point X="-62744" Y="159095" Z="-3584" delay="0" run="false" />
|
||||
<point X="-61831" Y="157693" Z="-3256" delay="0" run="false" />
|
||||
<point X="-60152" Y="156167" Z="-2824" delay="0" run="false" />
|
||||
<point X="-58652" Y="154707" Z="-2688" delay="0" run="false" />
|
||||
<point X="-58672" Y="154703" Z="-2688" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Southern Fortress -->
|
||||
<route name="gludio_fort_b_ordery" repeat="true" repeatStyle="cycle">
|
||||
<target id="35690" spawnX="-28169" spawnY="216864" spawnZ="-3544" />
|
||||
<point X="-28169" Y="216864" Z="-3544" delay="30" run="false" />
|
||||
<point X="-29028" Y="215089" Z="-3672" delay="0" run="false" />
|
||||
<point X="-30888" Y="213455" Z="-3656" delay="0" run="false" />
|
||||
<point X="-31937" Y="211656" Z="-3656" delay="0" run="false" />
|
||||
<point X="-30880" Y="211006" Z="-3552" delay="0" run="false" />
|
||||
<point X="-27690" Y="210004" Z="-3272" delay="0" run="false" />
|
||||
<point X="-25784" Y="210108" Z="-3272" delay="0" run="false" />
|
||||
<point X="-21682" Y="211459" Z="-3272" delay="0" run="false" />
|
||||
<point X="-18430" Y="212927" Z="-3704" delay="0" run="false" />
|
||||
<point X="-16247" Y="212795" Z="-3664" delay="0" run="false" />
|
||||
<point X="-16868" Y="214267" Z="-3648" delay="0" run="false" />
|
||||
<point X="-17263" Y="215887" Z="-3552" delay="0" run="false" />
|
||||
<point X="-18352" Y="216841" Z="-3504" delay="60" run="false" />
|
||||
<point X="-17263" Y="215887" Z="-3552" delay="0" run="false" />
|
||||
<point X="-16868" Y="214267" Z="-3648" delay="0" run="false" />
|
||||
<point X="-16247" Y="212795" Z="-3664" delay="0" run="false" />
|
||||
<point X="-18430" Y="212927" Z="-3704" delay="0" run="false" />
|
||||
<point X="-21682" Y="211459" Z="-3272" delay="0" run="false" />
|
||||
<point X="-25784" Y="210108" Z="-3272" delay="0" run="false" />
|
||||
<point X="-27690" Y="210004" Z="-3272" delay="0" run="false" />
|
||||
<point X="-30880" Y="211006" Z="-3552" delay="0" run="false" />
|
||||
<point X="-31937" Y="211656" Z="-3656" delay="0" run="false" />
|
||||
<point X="-30888" Y="213455" Z="-3656" delay="0" run="false" />
|
||||
<point X="-29028" Y="215089" Z="-3672" delay="0" run="false" />
|
||||
<point X="-28169" Y="216864" Z="-3544" delay="30" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Hive Fortress -->
|
||||
<route name="dion_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="35728" spawnX="19408" spawnY="189422" spawnZ="-3136" />
|
||||
<point X="19408" Y="189422" Z="-3136" delay="30" run="false" />
|
||||
<point X="20039" Y="187700" Z="-3416" delay="0" run="false" />
|
||||
<point X="19016" Y="185813" Z="-3552" delay="30" run="false" />
|
||||
<point X="17959" Y="181955" Z="-3680" delay="0" run="false" />
|
||||
<point X="16440" Y="181635" Z="-3616" delay="30" run="false" />
|
||||
<point X="15679" Y="182540" Z="-3608" delay="0" run="false" />
|
||||
<point X="15310" Y="182791" Z="-3568" delay="0" run="false" />
|
||||
<point X="15242" Y="184507" Z="-3112" delay="30" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Valley Fortress -->
|
||||
<route name="giran_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="35759" spawnX="123383" spawnY="121093" spawnZ="-2864" />
|
||||
<point X="123383" Y="121093" Z="-2864" delay="30" run="false" />
|
||||
<point X="122670" Y="120890" Z="-3088" delay="0" run="false" />
|
||||
<point X="124617" Y="119069" Z="-3088" delay="0" run="false" />
|
||||
<point X="126177" Y="118273" Z="-3080" delay="0" run="false" />
|
||||
<point X="125979" Y="119528" Z="-2728" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Ivory Tower Fortress -->
|
||||
<route name="oren_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="35797" spawnX="75280" spawnY="1387" spawnZ="-3268" />
|
||||
<point X="74725" Y="1671" Z="-3128" delay="30" run="false" />
|
||||
<point X="76651" Y="1505" Z="-3552" delay="0" run="false" />
|
||||
<point X="79421" Y="4977" Z="-3080" delay="0" run="false" />
|
||||
<point X="77357" Y="7197" Z="-3208" delay="30" run="false" />
|
||||
<point X="76287" Y="9164" Z="-3568" delay="0" run="false" />
|
||||
<point X="72447" Y="8196" Z="-3264" delay="0" run="false" />
|
||||
<point X="71780" Y="7467" Z="-3160" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Narsell Fortress -->
|
||||
<route name="aden_fort_a_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="35828" spawnX="159377" spawnY="52403" spawnZ="-3312" />
|
||||
<point X="159377" Y="52403" Z="-3312" delay="30" run="false" />
|
||||
<point X="161177" Y="54083" Z="-3560" delay="0" run="false" />
|
||||
<point X="162152" Y="54365" Z="-3632" delay="0" run="false" />
|
||||
<point X="162703" Y="55840" Z="-3696" delay="0" run="false" />
|
||||
<point X="162370" Y="58534" Z="-3504" delay="0" run="false" />
|
||||
<point X="160099" Y="60034" Z="-3224" delay="0" run="false" />
|
||||
<point X="158048" Y="62696" Z="-3464" delay="0" run="false" />
|
||||
<point X="157220" Y="63450" Z="-3520" delay="0" run="false" />
|
||||
<point X="155076" Y="63731" Z="-3544" delay="0" run="false" />
|
||||
<point X="153893" Y="64441" Z="-3656" delay="0" run="false" />
|
||||
<point X="153085" Y="62948" Z="-3680" delay="0" run="false" />
|
||||
<point X="150866" Y="58737" Z="-3432" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Bayou Fortress -->
|
||||
<route name="aden_fort_b_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="35859" spawnX="190423" spawnY="43540" spawnZ="-3656" />
|
||||
<point X="190423" Y="43540" Z="-3656" delay="30" run="false" />
|
||||
<point X="189579" Y="45949" Z="-4240" delay="0" run="false" />
|
||||
<point X="187058" Y="43551" Z="-4808" delay="0" run="false" />
|
||||
<point X="185916" Y="41869" Z="-4512" delay="30" run="false" />
|
||||
<point X="185292" Y="39403" Z="-4200" delay="0" run="false" />
|
||||
<point X="185167" Y="38401" Z="-4200" delay="0" run="false" />
|
||||
<point X="184984" Y="36863" Z="-4152" delay="0" run="false" />
|
||||
<point X="184377" Y="36425" Z="-4080" delay="0" run="false" />
|
||||
<point X="185314" Y="35866" Z="-3936" delay="0" run="false" />
|
||||
<point X="185781" Y="35955" Z="-3832" delay="0" run="false" />
|
||||
<point X="186686" Y="35667" Z="-3752" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - White Sands Fortress -->
|
||||
<route name="inna_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="35897" spawnX="114436" spawnY="202528" spawnZ="-3408" />
|
||||
<point X="114436" Y="202528" Z="-3408" delay="30" run="false" />
|
||||
<point X="113809" Y="200514" Z="-3720" delay="0" run="false" />
|
||||
<point X="116035" Y="199822" Z="-3664" delay="0" run="false" />
|
||||
<point X="117017" Y="199876" Z="-3632" delay="0" run="false" />
|
||||
<point X="119959" Y="201032" Z="-3608" delay="0" run="false" />
|
||||
<point X="121849" Y="200614" Z="-3384" delay="0" run="false" />
|
||||
<point X="122868" Y="200874" Z="-3168" delay="0" run="false" />
|
||||
<point X="123130" Y="202427" Z="-3128" delay="30" run="false" />
|
||||
<point X="122427" Y="204162" Z="-3488" delay="0" run="false" />
|
||||
<point X="122661" Y="204842" Z="-3576" delay="0" run="false" />
|
||||
<point X="124051" Y="205402" Z="-3576" delay="0" run="false" />
|
||||
<point X="124211" Y="206023" Z="-3504" delay="0" run="false" />
|
||||
<point X="124948" Y="206778" Z="-3400" delay="0" run="false" />
|
||||
<point X="124483" Y="207777" Z="-3200" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Borderland Fortress -->
|
||||
<route name="godad_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="35928" spawnX="161876" spawnY="-73407" spawnZ="-2984" />
|
||||
<point X="161876" Y="-73407" Z="-2984" delay="30" run="false" />
|
||||
<point X="161795" Y="-75288" Z="-3088" delay="0" run="false" />
|
||||
<point X="159678" Y="-77671" Z="-3584" delay="0" run="false" />
|
||||
<point X="158917" Y="-78117" Z="-3760" delay="0" run="false" />
|
||||
<point X="158989" Y="-77130" Z="-3720" delay="0" run="false" />
|
||||
<point X="158757" Y="-75951" Z="-3720" delay="0" run="false" />
|
||||
<point X="158157" Y="-74161" Z="-3592" delay="30" run="false" />
|
||||
<point X="157547" Y="-73326" Z="-3400" delay="0" run="false" />
|
||||
<point X="153815" Y="-71497" Z="-3392" delay="0" run="false" />
|
||||
<point X="153086" Y="-70701" Z="-3488" delay="0" run="false" />
|
||||
<point X="152262" Y="-70352" Z="-3568" delay="0" run="false" />
|
||||
<point X="155193" Y="-69617" Z="-3008" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Swamp Fortress -->
|
||||
<route name="rune_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="35966" spawnX="71436" spawnY="-58182" spawnZ="-2904" />
|
||||
<point X="71436" Y="-58182" Z="-2904" delay="30" run="false" />
|
||||
<point X="71731" Y="-56949" Z="-3080" delay="0" run="false" />
|
||||
<point X="72715" Y="-56729" Z="-3104" delay="0" run="false" />
|
||||
<point X="73277" Y="-56055" Z="-3104" delay="30" run="false" />
|
||||
<point X="73369" Y="-55636" Z="-3104" delay="0" run="false" />
|
||||
<point X="74136" Y="-54646" Z="-3104" delay="0" run="false" />
|
||||
<point X="73408" Y="-54422" Z="-3104" delay="0" run="false" />
|
||||
<point X="72998" Y="-53404" Z="-3136" delay="0" run="false" />
|
||||
<point X="71661" Y="-52937" Z="-3104" delay="0" run="false" />
|
||||
<point X="71127" Y="-52304" Z="-3104" delay="0" run="false" />
|
||||
<point X="70225" Y="-52304" Z="-3064" delay="0" run="false" />
|
||||
<point X="69668" Y="-52780" Z="-3064" delay="0" run="false" />
|
||||
<point X="68422" Y="-52407" Z="-3240" delay="0" run="false" />
|
||||
<point X="67702" Y="-52940" Z="-3208" delay="0" run="false" />
|
||||
<point X="67798" Y="-52940" Z="-3232" delay="0" run="false" />
|
||||
<point X="66667" Y="-55841" Z="-2840" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Archaic Fortress -->
|
||||
<route name="schutt_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36004" spawnX="105447" spawnY="-139845" spawnZ="-3120" />
|
||||
<point X="105447" Y="-139845" Z="-3120" delay="30" run="false" />
|
||||
<point X="104918" Y="-140382" Z="-3256" delay="0" run="false" />
|
||||
<point X="105507" Y="-142515" Z="-3648" delay="0" run="false" />
|
||||
<point X="106533" Y="-143107" Z="-3656" delay="0" run="false" />
|
||||
<point X="106714" Y="-143825" Z="-3656" delay="0" run="false" />
|
||||
<point X="107510" Y="-144024" Z="-3656" delay="0" run="false" />
|
||||
<point X="108092" Y="-144888" Z="-3656" delay="30" run="false" />
|
||||
<point X="109499" Y="-145168" Z="-3664" delay="0" run="false" />
|
||||
<point X="110064" Y="-146169" Z="-3456" delay="0" run="false" />
|
||||
<point X="110186" Y="-147427" Z="-3096" delay="0" run="false" />
|
||||
<point X="112389" Y="-147779" Z="-3256" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Floran Fortress -->
|
||||
<route name="glu_di_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36035" spawnX="14186" spawnY="149947" spawnZ="-3352" />
|
||||
<point X="14186" Y="149947" Z="-3352" delay="20" run="false" />
|
||||
<point X="16180" Y="150387" Z="-3216" delay="0" run="false" />
|
||||
<point X="18387" Y="151874" Z="-3317" delay="0" run="false" />
|
||||
<point X="18405" Y="154770" Z="-3616" delay="30" run="false" />
|
||||
<point X="17655" Y="156863" Z="-3664" delay="0" run="false" />
|
||||
<point X="12303" Y="153937" Z="-2680" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Cloud Mountain -->
|
||||
<route name="glu_ore_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36073" spawnX="-56032" spawnY="86017" spawnZ="-3259" />
|
||||
<point X="-56032" Y="86017" Z="-3259" delay="30" run="false" />
|
||||
<point X="-57329" Y="86006" Z="-3640" delay="0" run="false" />
|
||||
<point X="-57470" Y="85306" Z="-3664" delay="0" run="false" />
|
||||
<point X="-58892" Y="85159" Z="-3768" delay="30" run="false" />
|
||||
<point X="-59030" Y="80150" Z="-3632" delay="0" run="false" />
|
||||
<point X="-57642" Y="77591" Z="-3512" delay="20" run="false" />
|
||||
<point X="-53971" Y="77664" Z="-3224" delay="40" run="false" />
|
||||
<point X="-53271" Y="85126" Z="-3552" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Tanor Fortress -->
|
||||
<route name="di_gi_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36111" spawnX="58314" spawnY="136319" spawnZ="-2000" />
|
||||
<point X="58314" Y="136319" Z="-2000" delay="30" run="false" />
|
||||
<point X="57078" Y="137124" Z="-2216" delay="0" run="false" />
|
||||
<point X="54644" Y="137366" Z="-2600" delay="0" run="false" />
|
||||
<point X="58696" Y="134202" Z="-3096" delay="30" run="false" />
|
||||
<point X="60967" Y="134154" Z="-3416" delay="0" run="false" />
|
||||
<point X="62813" Y="134744" Z="-3592" delay="0" run="false" />
|
||||
<point X="65158" Y="135007" Z="-3728" delay="0" run="false" />
|
||||
<point X="64278" Y="139384" Z="-3176" delay="30" run="false" />
|
||||
<point X="63711" Y="140599" Z="-2720" delay="0" run="false" />
|
||||
<point X="63187" Y="141192" Z="-2440" delay="0" run="false" />
|
||||
<point X="62811" Y="142466" Z="-2064" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Dragonspine Fortress -->
|
||||
<route name="di_ore_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36142" spawnX="9318" spawnY="92253" spawnZ="-3536" />
|
||||
<point X="9318" Y="92253" Z="-3536" delay="30" run="false" />
|
||||
<point X="9117" Y="91645" Z="-3656" delay="0" run="false" />
|
||||
<point X="9240" Y="90149" Z="-3592" delay="0" run="false" />
|
||||
<point X="11509" Y="90093" Z="-3720" delay="20" run="false" />
|
||||
<point X="13269" Y="90004" Z="-3840" delay="20" run="false" />
|
||||
<point X="14812" Y="89578" Z="-3832" delay="20" run="false" />
|
||||
<point X="14450" Y="90636" Z="-3680" delay="0" run="false" />
|
||||
<point X="14236" Y="91690" Z="-3656" delay="0" run="false" />
|
||||
<point X="13636" Y="92359" Z="-3480" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Antharas Fortress -->
|
||||
<route name="ore_gi_fort_ordery" repeat="true" repeatStyle="cycle">
|
||||
<target id="36173" spawnX="74810" spawnY="90814" spawnZ="-3344" />
|
||||
<point X="74810" Y="90814" Z="-3344" delay="30" run="false" />
|
||||
<point X="75094" Y="92951" Z="-3104" delay="0" run="false" />
|
||||
<point X="75486" Y="92906" Z="-3072" delay="0" run="false" />
|
||||
<point X="75765" Y="91794" Z="-2912" delay="0" run="false" />
|
||||
<point X="77116" Y="90455" Z="-2896" delay="0" run="false" />
|
||||
<point X="77743" Y="89119" Z="-2896" delay="15" run="false" />
|
||||
<point X="77118" Y="90457" Z="-2896" delay="0" run="false" />
|
||||
<point X="75750" Y="91811" Z="-2912" delay="0" run="false" />
|
||||
<point X="75479" Y="92904" Z="-3072" delay="0" run="false" />
|
||||
<point X="75094" Y="92943" Z="-3104" delay="0" run="false" />
|
||||
<point X="74809" Y="90794" Z="-3344" delay="0" run="false" />
|
||||
<point X="76932" Y="88297" Z="-3296" delay="0" run="false" />
|
||||
<point X="77882" Y="87441" Z="-3408" delay="0" run="false" />
|
||||
<point X="78257" Y="85859" Z="-3632" delay="0" run="false" />
|
||||
<point X="80994" Y="85866" Z="-3472" delay="0" run="false" />
|
||||
<point X="82676" Y="87519" Z="-3360" delay="0" run="false" />
|
||||
<point X="83778" Y="88414" Z="-3376" delay="0" run="false" />
|
||||
<point X="83504" Y="90378" Z="-3120" delay="0" run="false" />
|
||||
<point X="84431" Y="90379" Z="-3264" delay="0" run="false" />
|
||||
<point X="85453" Y="90117" Z="-3312" delay="0" run="false" />
|
||||
<point X="85605" Y="89708" Z="-3296" delay="0" run="false" />
|
||||
<point X="84894" Y="88975" Z="-3344" delay="0" run="false" />
|
||||
<point X="83735" Y="88382" Z="-3376" delay="0" run="false" />
|
||||
<point X="82616" Y="87485" Z="-3360" delay="0" run="false" />
|
||||
<point X="80971" Y="85855" Z="-3472" delay="0" run="false" />
|
||||
<point X="78247" Y="85853" Z="-3632" delay="0" run="false" />
|
||||
<point X="77868" Y="87463" Z="-3408" delay="0" run="false" />
|
||||
<point X="76916" Y="88304" Z="-3280" delay="0" run="false" />
|
||||
<point X="75494" Y="89865" Z="-3200" delay="0" run="false" />
|
||||
<point X="74810" Y="90814" Z="-3344" delay="30" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Western Fortress -->
|
||||
<route name="a_o_g_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36211" spawnX="114221" spawnY="-18762" spawnZ="-1768" />
|
||||
<point X="114221" Y="-18762" Z="-1768" delay="30" run="false" />
|
||||
<point X="115920" Y="-19177" Z="-2120" delay="0" run="false" />
|
||||
<point X="117105" Y="-19759" Z="-2400" delay="0" run="false" />
|
||||
<point X="118417" Y="-20135" Z="-2632" delay="30" run="false" />
|
||||
<point X="118881" Y="-20011" Z="-2712" delay="0" run="false" />
|
||||
<point X="117210" Y="-18329" Z="-1816" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Hunters Fortress -->
|
||||
<route name="aden_gi_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36249" spawnX="121072" spawnY="93215" spawnZ="-2736" />
|
||||
<point X="121072" Y="93215" Z="-2736" delay="30" run="false" />
|
||||
<point X="122718" Y="92355" Z="-2320" delay="0" run="false" />
|
||||
<point X="126171" Y="91910" Z="-2216" delay="0" run="false" />
|
||||
<point X="126353" Y="90422" Z="-2296" delay="0" run="false" />
|
||||
<point X="125796" Y="87720" Z="-2432" delay="0" run="false" />
|
||||
<point X="124803" Y="85970" Z="-2464" delay="0" run="false" />
|
||||
<point X="125036" Y="83836" Z="-2376" delay="30" run="false" />
|
||||
<point X="128886" Y="83331" Z="-1416" delay="0" run="false" />
|
||||
<point X="129697" Y="84969" Z="-1256" delay="0" run="false" />
|
||||
<point X="126291" Y="86712" Z="-2240" delay="0" run="false" />
|
||||
<point X="126599" Y="88950" Z="-2325" delay="0" run="false" />
|
||||
<point X="126847" Y="90713" Z="-2264" delay="0" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Aaru Fortress -->
|
||||
<route name="inna_gi_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36287" spawnX="71692" spawnY="188004" spawnZ="-2616" />
|
||||
<point X="71692" Y="188004" Z="-2616" delay="30" run="false" />
|
||||
<point X="69326" Y="187042" Z="-3008" delay="0" run="false" />
|
||||
<point X="68627" Y="185540" Z="-2984" delay="0" run="false" />
|
||||
<point X="69077" Y="184566" Z="-2976" delay="30" run="false" />
|
||||
<point X="70642" Y="182573" Z="-2992" delay="0" run="false" />
|
||||
<point X="73647" Y="181706" Z="-3160" delay="0" run="false" />
|
||||
<point X="74283" Y="181756" Z="-3152" delay="0" run="false" />
|
||||
<point X="73655" Y="182960" Z="-2736" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Demon Fortress -->
|
||||
<route name="ru_go_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36318" spawnX="104686" spawnY="-57581" spawnZ="-944" />
|
||||
<point X="104150" Y="-57163" Z="-848" delay="30" run="false" />
|
||||
<point X="106218" Y="-59401" Z="-1344" delay="0" run="false" />
|
||||
<point X="106898" Y="-59553" Z="-1664" delay="30" run="false" />
|
||||
<point X="107352" Y="-60168" Z="-2000" delay="0" run="false" />
|
||||
<point X="107651" Y="-61177" Z="-2400" delay="0" run="false" />
|
||||
<point X="109094" Y="-62678" Z="-3248" delay="0" run="false" />
|
||||
<point X="108266" Y="-62657" Z="-3104" delay="0" run="false" />
|
||||
<point X="105169" Y="-61226" Z="-2616" delay="0" run="false" />
|
||||
<point X="102968" Y="-59982" Z="-2384" delay="0" run="false" />
|
||||
<point X="100070" Y="-60173" Z="-2792" delay="0" run="false" />
|
||||
<point X="98764" Y="-61095" Z="-2768" delay="0" run="false" />
|
||||
<point X="94946" Y="-60039" Z="-2432" delay="0" run="false" />
|
||||
<point X="96103" Y="-59078" Z="-1992" delay="0" run="false" />
|
||||
<point X="96884" Y="-59043" Z="-1656" delay="0" run="false" />
|
||||
<point X="97064" Y="-57884" Z="-1256" delay="30" run="false" />
|
||||
</route>
|
||||
<!-- Suspicious Merchant - Monastic Fortress -->
|
||||
<route name="ru_sch_fort_ordery" repeat="true" repeatStyle="back">
|
||||
<target id="36356" spawnX="69553" spawnY="-91746" spawnZ="-1488" />
|
||||
<point X="69553" Y="-91746" Z="-1488" delay="30" run="false" />
|
||||
<point X="70941" Y="-89751" Z="-2256" delay="0" run="false" />
|
||||
<point X="71104" Y="-89094" Z="-2368" delay="0" run="false" />
|
||||
<point X="73471" Y="-91462" Z="-2024" delay="30" run="false" />
|
||||
<point X="74532" Y="-92202" Z="-1776" delay="0" run="false" />
|
||||
<point X="74908" Y="-93152" Z="-1536" delay="60" run="false" />
|
||||
</route>
|
||||
<!-- Ghost of von Hellmann's Page -->
|
||||
<route name="rune_ghost1b" repeat="false" repeatStyle="back">
|
||||
<target id="31525" spawnX="51446" spawnY="-54514" spawnZ="-3136" />
|
||||
|
@ -1798,348 +1798,4 @@
|
||||
<classId>96</classId> <!-- Arcana Lord -->
|
||||
<classId>97</classId> <!-- Cardinal -->
|
||||
</npc>
|
||||
<npc id="32141"> <!-- Nerga -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
</npc>
|
||||
<npc id="32142"> <!-- Tenor -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
</npc>
|
||||
<npc id="32143"> <!-- Belkis -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
</npc>
|
||||
<npc id="32144"> <!-- Xonia -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
</npc>
|
||||
<npc id="32182"> <!-- Coplan -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
</npc>
|
||||
<npc id="32183"> <!-- Yunha -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
</npc>
|
||||
<npc id="32194"> <!-- Shubain -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
</npc>
|
||||
<npc id="32195"> <!-- Sione -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
</npc>
|
||||
<npc id="32197"> <!-- Gwain -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
</npc>
|
||||
<npc id="32198"> <!-- Gobie -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
</npc>
|
||||
<npc id="32200"> <!-- Entien -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32201"> <!-- Rindy -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32203"> <!-- Ramen -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32204"> <!-- Fiske -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32207"> <!-- Orkurus -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32208"> <!-- Rasha -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32211"> <!-- Jueno -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32212"> <!-- Rishtar -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32215"> <!-- Tenain -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32216"> <!-- Noir -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32219"> <!-- Fabnor -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32220"> <!-- Selsia -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32223"> <!-- Duroga -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32224"> <!-- Auren -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32227"> <!-- Digler -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32228"> <!-- Medea -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32231"> <!-- Luben -->
|
||||
<classId>123</classId> <!-- Male Kamael Soldier -->
|
||||
<classId>125</classId> <!-- Trooper -->
|
||||
<classId>127</classId> <!-- Berserker -->
|
||||
<classId>131</classId> <!-- Doombringer -->
|
||||
<classId>128</classId> <!-- Male Soul Breaker -->
|
||||
<classId>132</classId> <!-- Male Soul Hound -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32232"> <!-- Minuet -->
|
||||
<classId>124</classId> <!-- Female Kamael Soldier -->
|
||||
<classId>126</classId> <!-- Warder -->
|
||||
<classId>129</classId> <!-- Female Soul Breaker -->
|
||||
<classId>133</classId> <!-- Female Soul Hound -->
|
||||
<classId>130</classId> <!-- Arbalester -->
|
||||
<classId>134</classId> <!-- Trickster -->
|
||||
<classId>135</classId> <!-- Inspector -->
|
||||
<classId>136</classId> <!-- Judicator -->
|
||||
</npc>
|
||||
<npc id="32156"> <!-- Talbot -->
|
||||
<classId>0</classId> <!-- Human Fighter -->
|
||||
<classId>1</classId> <!-- Warrior -->
|
||||
<classId>2</classId> <!-- Gladiator -->
|
||||
<classId>3</classId> <!-- Warlord -->
|
||||
<classId>4</classId> <!-- Human Knight -->
|
||||
<classId>5</classId> <!-- Paladin -->
|
||||
<classId>6</classId> <!-- Dark Avenger -->
|
||||
<classId>7</classId> <!-- Rogue -->
|
||||
<classId>8</classId> <!-- Treasure Hunter -->
|
||||
<classId>9</classId> <!-- Hawkeye -->
|
||||
</npc>
|
||||
<npc id="32155"> <!-- Nabot -->
|
||||
<classId>10</classId> <!-- Human Mystic -->
|
||||
<classId>11</classId> <!-- Human Wizard -->
|
||||
<classId>12</classId> <!-- Sorcerer -->
|
||||
<classId>13</classId> <!-- Necromancer -->
|
||||
<classId>14</classId> <!-- Warlock -->
|
||||
<classId>15</classId> <!-- Cleric -->
|
||||
<classId>16</classId> <!-- Bishop -->
|
||||
<classId>17</classId> <!-- Prophet -->
|
||||
</npc>
|
||||
<npc id="32151"> <!-- Herz -->
|
||||
<classId>44</classId> <!-- Orc Fighter -->
|
||||
<classId>45</classId> <!-- Orc Raider -->
|
||||
<classId>46</classId> <!-- Destroyer -->
|
||||
<classId>47</classId> <!-- Monk -->
|
||||
<classId>48</classId> <!-- Tyrant -->
|
||||
</npc>
|
||||
<npc id="32152"> <!-- Henri -->
|
||||
<classId>49</classId> <!-- Orc Mystic -->
|
||||
<classId>50</classId> <!-- Orc Shaman -->
|
||||
<classId>51</classId> <!-- Overlord -->
|
||||
<classId>52</classId> <!-- Warcryer -->
|
||||
</npc>
|
||||
<npc id="32148"> <!-- Cindet -->
|
||||
<classId>18</classId> <!-- Elven Fighter -->
|
||||
<classId>19</classId> <!-- Elven Knight -->
|
||||
<classId>20</classId> <!-- Temple Knight -->
|
||||
<classId>21</classId> <!-- Sword Singer -->
|
||||
<classId>22</classId> <!-- Elven Scout -->
|
||||
<classId>23</classId> <!-- Plains Walker -->
|
||||
<classId>24</classId> <!-- Silver Ranger -->
|
||||
</npc>
|
||||
<npc id="32149"> <!-- Ennear -->
|
||||
<classId>25</classId> <!-- Elven Mystic -->
|
||||
<classId>26</classId> <!-- Elven Wizard -->
|
||||
<classId>27</classId> <!-- Spellsinger -->
|
||||
<classId>28</classId> <!-- Elemental Summoner -->
|
||||
<classId>29</classId> <!-- Elven Oracle -->
|
||||
<classId>30</classId> <!-- Elven Elder -->
|
||||
</npc>
|
||||
<npc id="32161"> <!-- Black -->
|
||||
<classId>31</classId> <!-- Dark Fighter -->
|
||||
<classId>32</classId> <!-- Palus Knight -->
|
||||
<classId>33</classId> <!-- Shillien Knight -->
|
||||
<classId>34</classId> <!-- Bladedancer -->
|
||||
<classId>35</classId> <!-- Assassin -->
|
||||
<classId>36</classId> <!-- Abyss Walker -->
|
||||
<classId>37</classId> <!-- Phantom Ranger -->
|
||||
</npc>
|
||||
<npc id="32162"> <!-- Martika -->
|
||||
<classId>38</classId> <!-- Dark Mystic -->
|
||||
<classId>39</classId> <!-- Dark Wizard -->
|
||||
<classId>40</classId> <!-- Spellhowler -->
|
||||
<classId>41</classId> <!-- Phantom Summoner -->
|
||||
<classId>42</classId> <!-- Shillien Oracle -->
|
||||
<classId>43</classId> <!-- Shillien Elder -->
|
||||
</npc>
|
||||
<npc id="32159"> <!-- Kincaid -->
|
||||
<classId>53</classId> <!-- Dwarf Fighter -->
|
||||
<classId>56</classId> <!-- Artisan -->
|
||||
<classId>57</classId> <!-- Warsmith -->
|
||||
</npc>
|
||||
<npc id="32172"> <!-- Saylem -->
|
||||
<classId>53</classId> <!-- Dwarf Fighter -->
|
||||
<classId>54</classId> <!-- Scavenger -->
|
||||
<classId>55</classId> <!-- Bounty Hunter -->
|
||||
</npc>
|
||||
<npc id="32170"> <!-- Benis -->
|
||||
<classId>53</classId> <!-- Dwarf Fighter -->
|
||||
<classId>54</classId> <!-- Scavenger -->
|
||||
<classId>55</classId> <!-- Bounty Hunter -->
|
||||
</npc>
|
||||
</list>
|
@ -32,102 +32,4 @@
|
||||
<object id="22220002" name="giran_arena_002" type="2" x="72200" y="143102" z="-3748" />
|
||||
<object id="20230001" name="floran_arena_001" type="2" x="12110" y="182770" z="-3538" />
|
||||
<object id="20230002" name="floran_arena_002" type="2" x="12978" y="183364" z="-3538" />
|
||||
<object id="24230101" name="tomb_of_crystalgolem_2423" type="2" x="159887" y="168717" z="-3564" />
|
||||
<!-- Flagpoles -->
|
||||
<object id="18200500" name="Cloud Mountain_flagpole" type="3" x="-53233" y="91221" z="-1839" />
|
||||
<object id="18220500" name="Shanty_flagpole" type="3" x="-52761" y="156493" z="-1071" />
|
||||
<object id="19240500" name="Southern_flagpole" type="3" x="-22705" y="219801" z="-2254" />
|
||||
<object id="20200500" name="Dragonspine_flagpole" type="3" x="11536" y="94987" z="-2443" />
|
||||
<object id="20220500" name="Floran_flagpole" type="3" x="5612" y="149751" z="-1907" />
|
||||
<object id="20230500" name="Hive_flagpole" type="3" x="16579" y="188062" z="-1942" />
|
||||
<object id="21220500" name="Tanor_flagpole" type="3" x="60280" y="139434" z="-772" />
|
||||
<object id="22150500" name="Monastic_flagpole" type="3" x="72167" y="-94766" z="-446" />
|
||||
<object id="22160500" name="Swamp_flagpole" type="3" x="69834" y="-61427" z="-1804" />
|
||||
<object id="22180500" name="Ivory_flagpole" type="3" x="72859" y="4276" z="-2063" />
|
||||
<object id="22200500" name="Antharas_flagpole" type="3" x="79238" y="91049" z="-1901" />
|
||||
<object id="22230500" name="Aaru_flagpole" type="3" x="73112" y="185986" z="-1599" />
|
||||
<object id="23130500" name="Archaic_flagpole" type="3" x="109484" y="-141224" z="-1975" />
|
||||
<object id="23160500" name="Demon_flagpole" type="3" x="100716" y="-55319" z="336" />
|
||||
<object id="23170500" name="Western_flagpole" type="3" x="111367" y="-15148" z="-13" />
|
||||
<object id="23200500" name="Hunters_flagpole" type="3" x="125245" y="95134" z="-1158" />
|
||||
<object id="23210500" name="Valley_flagpole" type="3" x="126078" y="123344" z="-1603" />
|
||||
<object id="23240500" name="White Sands_flagpole" type="3" x="118412" y="204919" z="-2351" />
|
||||
<object id="24150500" name="Borderland_flagpole" type="3" x="159149" y="-70308" z="-1882" />
|
||||
<object id="24190500" name="Narsell_flagpole" type="3" x="154898" y="55303" z="-2272" />
|
||||
<object id="25190500" name="Bayou_flagpole" type="3" x="189930" y="39739" z="-2428" />
|
||||
<!-- Custom static objects -->
|
||||
<!-- Note: There is known issue with them if player sit on them it may looks like it's sitting on the air its because they do not exists on NA/EU client. -->
|
||||
<!-- <object id="18150002" name="TP_AT_chair_star_01" type="1" x="-59660" y="-68916" z="-2915" /> -->
|
||||
<!-- <object id="18150004" name="TP_AT_chair_star_01" type="1" x="-59840" y="-69023" z="-2910" /> -->
|
||||
<!-- <object id="18150005" name="TP_AT_chair_star_01" type="1" x="-59803" y="-69210" z="-2910" /> -->
|
||||
<!-- <object id="18150007" name="TP_AT_chair_star_01" type="1" x="-59763" y="-69250" z="-2910" /> -->
|
||||
<!-- <object id="18150008" name="TP_AT_chair_star_01" type="1" x="-59675" y="-69463" z="-2910" /> -->
|
||||
<!-- <object id="18150011" name="TP_AT_chair_star_01" type="1" x="-59095" y="-69277" z="-2911" /> -->
|
||||
<!-- <object id="18150012" name="TP_AT_chair_star_01" type="1" x="-60032" y="-69890" z="-2866" /> -->
|
||||
<!-- <object id="18150013" name="TP_AT_chair_star_01" type="1" x="-60247" y="-69834" z="-2861" /> -->
|
||||
<!-- <object id="18150015" name="TP_AT_chair_star_01" type="1" x="-60037" y="-69998" z="-2866" /> -->
|
||||
<!-- <object id="18150021" name="TPchair" type="1" x="-54176" y="-67088" z="-3169" /> -->
|
||||
<!-- <object id="18150022" name="TPchair" type="1" x="-53952" y="-67088" z="-3168" /> -->
|
||||
<!-- <object id="18150023" name="TPchair" type="1" x="-52160" y="-67136" z="-3169" /> -->
|
||||
<!-- <object id="18150024" name="TPchair" type="1" x="-51936" y="-67136" z="-3167" /> -->
|
||||
<!-- <object id="18150025" name="TPchair" type="1" x="-49435" y="-68435" z="-3171" /> -->
|
||||
<!-- <object id="18150026" name="TPchair" type="1" x="-49433" y="-68287" z="-3171" /> -->
|
||||
<!-- <object id="18150027" name="TPchair" type="1" x="-49199" y="-68438" z="-3172" /> -->
|
||||
<!-- <object id="18150028" name="TPchair" type="1" x="-49197" y="-68290" z="-3172" /> -->
|
||||
<!-- <object id="18150029" name="TPchair" type="1" x="-51968" y="-71952" z="-3169" /> -->
|
||||
<!-- <object id="18150030" name="TPchair" type="1" x="-52192" y="-71952" z="-3169" /> -->
|
||||
<!-- <object id="18150031" name="TPchair" type="1" x="-52576" y="-71952" z="-3169" /> -->
|
||||
<!-- <object id="18150032" name="TPchair" type="1" x="-52800" y="-71952" z="-3169" /> -->
|
||||
<!-- <object id="18150033" name="TPchair" type="1" x="-53280" y="-71952" z="-3169" /> -->
|
||||
<!-- <object id="18150034" name="TPchair" type="1" x="-53504" y="-71952" z="-3169" /> -->
|
||||
<!-- <object id="18150035" name="TPchair" type="1" x="-53984" y="-71936" z="-3169" /> -->
|
||||
<!-- <object id="18150036" name="TPchair" type="1" x="-54208" y="-71936" z="-3169" /> -->
|
||||
<!-- <object id="18150037" name="TPchair" type="1" x="-54784" y="-71936" z="-3169" /> -->
|
||||
<!-- <object id="18150038" name="TPchair" type="1" x="-55008" y="-71936" z="-3169" /> -->
|
||||
<!-- <object id="18150039" name="TPchair" type="1" x="-55659" y="-71678" z="-3169" /> -->
|
||||
<!-- <object id="18150040" name="TPchair" type="1" x="-55833" y="-71504" z="-3169" /> -->
|
||||
<!-- <object id="18150041" name="TPchair" type="1" x="-56187" y="-71150" z="-3169" /> -->
|
||||
<!-- <object id="18150042" name="TPchair" type="1" x="-56361" y="-70976" z="-3169" /> -->
|
||||
<!-- <object id="18160001" name="TP_WeddingHall_chair" type="1" x="-50833" y="-54754" z="-2834" /> -->
|
||||
<!-- <object id="18160002" name="TP_WeddingHall_chair" type="1" x="-50874" y="-54732" z="-2834" /> -->
|
||||
<!-- <object id="18160003" name="TP_WeddingHall_chair" type="1" x="-50910" y="-54702" z="-2834" /> -->
|
||||
<!-- <object id="18160004" name="TP_WeddingHall_chair" type="1" x="-50974" y="-54602" z="-2834" /> -->
|
||||
<!-- <object id="18160005" name="TP_WeddingHall_chair" type="1" x="-50987" y="-54557" z="-2834" /> -->
|
||||
<!-- <object id="18160006" name="TP_WeddingHall_chair" type="1" x="-50992" y="-54510" z="-2834" /> -->
|
||||
<!-- <object id="18160007" name="TP_WeddingHall_chair" type="1" x="-50991" y="-53829" z="-2834" /> -->
|
||||
<!-- <object id="18160008" name="TP_WeddingHall_chair" type="1" x="-50987" y="-53782" z="-2834" /> -->
|
||||
<!-- <object id="18160009" name="TP_WeddingHall_chair" type="1" x="-50973" y="-53738" z="-2834" /> -->
|
||||
<!-- <object id="18160010" name="TP_WeddingHall_chair" type="1" x="-50910" y="-53646" z="-2834" /> -->
|
||||
<!-- <object id="18160011" name="TP_WeddingHall_chair" type="1" x="-50873" y="-53617" z="-2834" /> -->
|
||||
<!-- <object id="18160012" name="TP_WeddingHall_chair" type="1" x="-50832" y="-53595" z="-2834" /> -->
|
||||
<!-- <object id="18160013" name="TPchair" type="1" x="-61876" y="-55177" z="-2023" /> -->
|
||||
<!-- <object id="18160014" name="TPchair" type="1" x="-61876" y="-55229" z="-2023" /> -->
|
||||
<!-- <object id="18160015" name="TPchair" type="1" x="-61860" y="-56371" z="-2024" /> -->
|
||||
<!-- <object id="18160016" name="TPchair" type="1" x="-61860" y="-56423" z="-2024" /> -->
|
||||
<!-- <object id="18160017" name="TPchair" type="1" x="-61888" y="-57375" z="-2023" /> -->
|
||||
<!-- <object id="18160018" name="TPchair" type="1" x="-61888" y="-57427" z="-2023" /> -->
|
||||
<!-- <object id="18160019" name="TPchair" type="1" x="-61534" y="-57505" z="-2023" /> -->
|
||||
<!-- <object id="18160020" name="TPchair" type="1" x="-61534" y="-57453" z="-2023" /> -->
|
||||
<!-- <object id="18160021" name="TPchair" type="1" x="-61450" y="-57421" z="-2023" /> -->
|
||||
<!-- <object id="18160022" name="TPchair" type="1" x="-61398" y="-57421" z="-2023" /> -->
|
||||
<!-- <object id="18160023" name="TPchair" type="1" x="-61433" y="-56378" z="-2023" /> -->
|
||||
<!-- <object id="18160024" name="TPchair" type="1" x="-61381" y="-56378" z="-2023" /> -->
|
||||
<!-- <object id="18160025" name="TPchair" type="1" x="-59997" y="-58651" z="-2021" /> -->
|
||||
<!-- <object id="18160026" name="TPchair" type="1" x="-59944" y="-58651" z="-2021" /> -->
|
||||
<!-- <object id="18160027" name="TPchair" type="1" x="-59504" y="-58656" z="-2024" /> -->
|
||||
<!-- <object id="18160028" name="TPchair" type="1" x="-59452" y="-58656" z="-2023" /> -->
|
||||
<!-- <object id="18160029" name="TPchair" type="1" x="-55926" y="-61170" z="-2366" /> -->
|
||||
<!-- <object id="18160030" name="TPchair" type="1" x="-55823" y="-61282" z="-2364" /> -->
|
||||
<!-- <object id="18160031" name="TPchair" type="1" x="-55611" y="-61587" z="-2369" /> -->
|
||||
<!-- <object id="18160032" name="TPchair" type="1" x="-55520" y="-61708" z="-2367" /> -->
|
||||
<!-- <object id="18160033" name="TPchair" type="1" x="-53346" y="-63772" z="-2371" /> -->
|
||||
<!-- <object id="18160034" name="TPchair" type="1" x="-53243" y="-63859" z="-2369" /> -->
|
||||
<!-- <object id="18160035" name="TPchair" type="1" x="-53571" y="-63818" z="-2371" /> -->
|
||||
<!-- <object id="18160036" name="TPchair" type="1" x="-53685" y="-63710" z="-2369" /> -->
|
||||
<!-- <object id="18160037" name="TPchair" type="1" x="-59039" y="-61222" z="-2368" /> -->
|
||||
<!-- <object id="18160038" name="TPchair" type="1" x="-58941" y="-61126" z="-2366" /> -->
|
||||
<!-- <object id="18160039" name="TPchair" type="1" x="-61323" y="-61471" z="-2820" /> -->
|
||||
<!-- <object id="18160040" name="TPchair" type="1" x="-61455" y="-61509" z="-2821" /> -->
|
||||
<!-- <object id="18160041" name="TPchair" type="1" x="-55534" y="-64458" z="-2368" /> -->
|
||||
<!-- <object id="18160042" name="TPchair" type="1" x="-55531" y="-64615" z="-2370" /> -->
|
||||
</list>
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<npcs>
|
||||
<npc>31380</npc> <!-- Diyabu -->
|
||||
@ -9,20 +9,20 @@
|
||||
<item id="5146" price="13860" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
|
||||
<item id="5140" price="5940" /> <!-- Compressed Package of Spiritshots: No Grade -->
|
||||
<item id="5134" price="2760" /> <!-- Compressed Package of Soulshots: No Grade -->
|
||||
<item id="5262" price="46200" /> <!-- Greater Compressed Package of Blessed Spiritshots (No-Grade) -->
|
||||
<item id="5256" price="19800" /> <!-- Greater Compressed Package of Spiritshots (No-Grade) -->
|
||||
<item id="5250" price="9240" /> <!-- Greater Compressed Package of Soulshots (No-Grade) -->
|
||||
<item id="5262" price="46200" /> <!-- Greater Compressed Package of Blessed Spiritshots: No-grade -->
|
||||
<item id="5256" price="19800" /> <!-- Greater Compressed Package of Spiritshots: No-grade -->
|
||||
<item id="5250" price="9240" /> <!-- Greater Compressed Package of Soulshots: No-grade -->
|
||||
<item id="17" price="2" /> <!-- Wooden Arrow -->
|
||||
<item id="1341" price="3" /> <!-- Bone Arrow -->
|
||||
<item id="1342" price="6" /> <!-- Steel Arrow -->
|
||||
<item id="1342" price="6" /> <!-- Fine Steel Arrow -->
|
||||
<item id="1060" price="108" /> <!-- Lesser Healing Potion -->
|
||||
<item id="1061" price="396" /> <!-- Greater Healing Potion -->
|
||||
<item id="1061" price="396" /> <!-- Healing Potion -->
|
||||
<item id="1831" price="90" /> <!-- Antidote -->
|
||||
<item id="1832" price="216" /> <!-- Greater Antidote -->
|
||||
<item id="1833" price="90" /> <!-- Bandage -->
|
||||
<item id="1834" price="216" /> <!-- Emergency Dressing -->
|
||||
<item id="734" price="1440" /> <!-- Haste Potion -->
|
||||
<item id="735" price="2880" /> <!-- Alacrity Potion -->
|
||||
<item id="735" price="2880" /> <!-- Potion of Alacrity -->
|
||||
<item id="6035" price="2880" /> <!-- Magic Haste Potion -->
|
||||
<item id="6037" price="120" /> <!-- Waking Scroll -->
|
||||
<item id="736" price="480" /> <!-- Scroll of Escape -->
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<npcs>
|
||||
<npc>31373</npc> <!-- Atan -->
|
||||
@ -9,20 +9,20 @@
|
||||
<item id="5146" price="13860" /> <!-- Compressed Package of Blessed Spiritshots: No Grade -->
|
||||
<item id="5140" price="5940" /> <!-- Compressed Package of Spiritshots: No Grade -->
|
||||
<item id="5134" price="2760" /> <!-- Compressed Package of Soulshots: No Grade -->
|
||||
<item id="5262" price="46200" /> <!-- Greater Compressed Package of Blessed Spiritshots (No-Grade) -->
|
||||
<item id="5256" price="19800" /> <!-- Greater Compressed Package of Spiritshots (No-Grade) -->
|
||||
<item id="5250" price="9240" /> <!-- Greater Compressed Package of Soulshots (No-Grade) -->
|
||||
<item id="5262" price="46200" /> <!-- Greater Compressed Package of Blessed Spiritshots: No-grade -->
|
||||
<item id="5256" price="19800" /> <!-- Greater Compressed Package of Spiritshots: No-grade -->
|
||||
<item id="5250" price="9240" /> <!-- Greater Compressed Package of Soulshots: No-grade -->
|
||||
<item id="17" price="2" /> <!-- Wooden Arrow -->
|
||||
<item id="1341" price="3" /> <!-- Bone Arrow -->
|
||||
<item id="1342" price="6" /> <!-- Steel Arrow -->
|
||||
<item id="1342" price="6" /> <!-- Fine Steel Arrow -->
|
||||
<item id="1060" price="108" /> <!-- Lesser Healing Potion -->
|
||||
<item id="1061" price="396" /> <!-- Greater Healing Potion -->
|
||||
<item id="1061" price="396" /> <!-- Healing Potion -->
|
||||
<item id="1831" price="90" /> <!-- Antidote -->
|
||||
<item id="1832" price="216" /> <!-- Greater Antidote -->
|
||||
<item id="1833" price="90" /> <!-- Bandage -->
|
||||
<item id="1834" price="216" /> <!-- Emergency Dressing -->
|
||||
<item id="734" price="1440" /> <!-- Haste Potion -->
|
||||
<item id="735" price="2880" /> <!-- Alacrity Potion -->
|
||||
<item id="735" price="2880" /> <!-- Potion of Alacrity -->
|
||||
<item id="6035" price="2880" /> <!-- Magic Haste Potion -->
|
||||
<item id="6037" price="120" /> <!-- Waking Scroll -->
|
||||
<item id="736" price="480" /> <!-- Scroll of Escape -->
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?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="735" price="3600" /> <!-- Potion of Alacrity -->
|
||||
<item id="1831" price="112" /> <!-- Antidote -->
|
||||
<item id="1833" price="112" /> <!-- Bandage -->
|
||||
<item id="1061" price="495" /> <!-- Greater Healing Potion -->
|
||||
<item id="1061" price="495" /> <!-- Healing Potion -->
|
||||
<item id="8786" price="7500" /> <!-- Primeval Potion -->
|
||||
<item id="8598" price="72000" /> <!-- Scroll: Recovery (Grade A) -->
|
||||
<item id="8599" price="120000" /> <!-- Scroll: Recovery (Grade S) -->
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="981" price="0" /> <!-- Red Sunset Sword -->
|
||||
<item id="1333" price="0" /> <!-- Brandish -->
|
||||
<item id="3027" price="0" /> <!-- Old Knight Sword -->
|
||||
<item id="3027" price="0" /> <!-- Old Knight's Sword -->
|
||||
<item id="5284" price="0" /> <!-- Zweihander -->
|
||||
</list>
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="13" price="0" /> <!-- Short Bow -->
|
||||
<item id="14" price="0" /> <!-- Bow -->
|
||||
<item id="271" price="0" /> <!-- Hunting Bow -->
|
||||
<item id="272" price="0" /> <!-- Forest Bow -->
|
||||
<item id="273" price="0" /> <!-- Composite Bow -->
|
||||
<item id="273" price="0" /> <!-- Composition Bow -->
|
||||
<item id="1181" price="0" /> <!-- Neti's Bow -->
|
||||
<item id="1213" price="0" /> <!-- Guard's Bow -->
|
||||
<item id="1307" price="0" /> <!-- Bow -->
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="253" price="0" /> <!-- Spiked Gloves -->
|
||||
<item id="254" price="0" /> <!-- Iron Gloves -->
|
||||
<item id="255" price="0" /> <!-- Fox Claw Gloves -->
|
||||
<item id="256" price="0" /> <!-- Cestus -->
|
||||
<item id="257" price="0" /> <!-- Viper Fang -->
|
||||
<item id="257" price="0" /> <!-- Viper's Fang -->
|
||||
<item id="2368" price="0" /> <!-- Training Gloves -->
|
||||
<item id="2371" price="0" /> <!-- Fist of Butcher -->
|
||||
<item id="5133" price="0" /> <!-- Chrono Unitus -->
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="15" price="0" /> <!-- Short Spear -->
|
||||
<item id="16" price="0" /> <!-- Great Spear -->
|
||||
<item id="16" price="0" /> <!-- Long Spear -->
|
||||
<item id="1302" price="0" /> <!-- Bec de Corbin -->
|
||||
<item id="1303" price="0" /> <!-- Lance -->
|
||||
<item id="3026" price="0" /> <!-- Talins Spear -->
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="4" price="0" /> <!-- Club -->
|
||||
<item id="5" price="0" /> <!-- Mace -->
|
||||
@ -6,9 +6,9 @@
|
||||
<item id="7" price="0" /> <!-- Apprentice's Rod -->
|
||||
<item id="87" price="0" /> <!-- Iron Hammer -->
|
||||
<item id="152" price="0" /> <!-- Heavy Chisel -->
|
||||
<item id="153" price="0" /> <!-- Sigil -->
|
||||
<item id="153" price="0" /> <!-- Sickle -->
|
||||
<item id="154" price="0" /> <!-- Dwarven Mace -->
|
||||
<item id="155" price="0" /> <!-- Flanged Mace -->
|
||||
<item id="155" price="0" /> <!-- Buzdygan -->
|
||||
<item id="747" price="0" /> <!-- Wand of Adept -->
|
||||
<item id="748" price="0" /> <!-- Gallint's Oak Wand -->
|
||||
<item id="1300" price="0" /> <!-- Apprentice's Rod -->
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="8" price="0" /> <!-- Willow Staff -->
|
||||
<item id="9" price="0" /> <!-- Cedar Staff -->
|
||||
<item id="176" price="0" /> <!-- Apprentice's Staff -->
|
||||
<item id="176" price="0" /> <!-- Journeyman's Staff -->
|
||||
<item id="177" price="0" /> <!-- Mage Staff -->
|
||||
<item id="744" price="0" /> <!-- Staff of Sentinel -->
|
||||
<item id="754" price="0" /> <!-- Red Sunset Staff -->
|
||||
|
@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="274" price="0" /> <!-- Reinforced Bow -->
|
||||
<item id="274" price="0" /> <!-- Strengthened Bow -->
|
||||
<item id="275" price="0" /> <!-- Long Bow -->
|
||||
<item id="276" price="0" /> <!-- Elven Bow -->
|
||||
<item id="277" price="0" /> <!-- Dark Elven Bow -->
|
||||
<item id="278" price="0" /> <!-- Gastraphetes -->
|
||||
<item id="279" price="0" /> <!-- Reinforced Long Bow -->
|
||||
<item id="279" price="0" /> <!-- Strengthened Long Bow -->
|
||||
<item id="280" price="0" /> <!-- Light Crossbow -->
|
||||
<item id="7823" price="0" /> <!-- Traveler's Dark Elven Bow -->
|
||||
<item id="7824" price="0" /> <!-- Traveler's Long Bow -->
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="72" price="0" /> <!-- Stormbringer -->
|
||||
<item id="73" price="0" /> <!-- Shamshir -->
|
||||
@ -48,12 +48,12 @@
|
||||
<item id="5797" price="0" /> <!-- Tomb Savant A -->
|
||||
<item id="5798" price="0" /> <!-- Tomb Savant B -->
|
||||
<item id="5800" price="0" /> <!-- Nephilim Lord -->
|
||||
<item id="5801" price="0" /> <!-- For NPC (Dusk) -->
|
||||
<item id="5801" price="0" /> <!-- Dusk -->
|
||||
<item id="6307" price="0" /> <!-- Sword of Limit - Guidance -->
|
||||
<item id="6308" price="0" /> <!-- Sword of Limit - Critical Drain -->
|
||||
<item id="6309" price="0" /> <!-- Sword of Limit - Health -->
|
||||
<item id="6310" price="0" /> <!-- Sword of Whispering Death - Empower -->
|
||||
<item id="6311" price="0" /> <!-- Sword of Whispering Death - M. Atk. -->
|
||||
<item id="6311" price="0" /> <!-- Sword of Whispering Death - Magic Power -->
|
||||
<item id="6312" price="0" /> <!-- Sword of Whispering Death - Magic Silence -->
|
||||
<item id="6313" price="0" /> <!-- Homunkulus's Sword - Acumen -->
|
||||
<item id="6314" price="0" /> <!-- Homunkulus's Sword - Conversion -->
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="281" price="0" /> <!-- Crystallized Ice Bow -->
|
||||
<item id="282" price="0" /> <!-- Elemental Bow -->
|
||||
@ -11,14 +11,14 @@
|
||||
<item id="4813" price="0" /> <!-- Elemental Bow - Guidance -->
|
||||
<item id="4814" price="0" /> <!-- Elemental Bow - Miser -->
|
||||
<item id="4815" price="0" /> <!-- Elemental Bow - Quick Recovery -->
|
||||
<item id="4816" price="0" /> <!-- Noble Elven Bow - Evasion -->
|
||||
<item id="4817" price="0" /> <!-- Noble Elven Bow - Miser -->
|
||||
<item id="4818" price="0" /> <!-- Noble Elven Bow - Cheap Shot -->
|
||||
<item id="4816" price="0" /> <!-- Elven Bow of Nobility - Evasion -->
|
||||
<item id="4817" price="0" /> <!-- Elven Bow of Nobility - Miser -->
|
||||
<item id="4818" price="0" /> <!-- Elven Bow of Nobility - Cheap Shot -->
|
||||
<item id="4819" price="0" /> <!-- Akat Long Bow - Guidance -->
|
||||
<item id="4820" price="0" /> <!-- Akat Long Bow - Evasion -->
|
||||
<item id="4821" price="0" /> <!-- Akat Long Bow - Miser -->
|
||||
<item id="4822" price="0" /> <!-- Eminence Bow - Guidance -->
|
||||
<item id="4823" price="0" /> <!-- Eminence Bow - Miser -->
|
||||
<item id="4824" price="0" /> <!-- Eminence Bow - Cheap Shot -->
|
||||
<item id="1342" price="0" /> <!-- Steel Arrow -->
|
||||
<item id="1342" price="0" /> <!-- Fine Steel Arrow -->
|
||||
</list>
|
||||
|
@ -1,9 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="4734" price="0" /> <!-- Silver Axe - Haste -->
|
||||
<item id="4735" price="0" /> <!-- Skull Graver - Anger -->
|
||||
<item id="4736" price="0" /> <!-- Skull Graver - Health -->
|
||||
<item id="4737" price="0" /> <!-- Skull Graver - Rsk. Focus -->
|
||||
<item id="4737" price="0" /> <!-- Skull Graver - Rsk.Focus -->
|
||||
<item id="4738" price="0" /> <!-- Dwarven War Hammer - Anger -->
|
||||
<item id="4739" price="0" /> <!-- Dwarven War Hammer - Health -->
|
||||
<item id="4740" price="0" /> <!-- Dwarven War Hammer - Haste -->
|
||||
@ -17,20 +17,20 @@
|
||||
<item id="7702" price="0" /> <!-- Stick of Faith - Magic Hold -->
|
||||
<item id="7703" price="0" /> <!-- Stick of Faith - Magic Shield -->
|
||||
<item id="7704" price="0" /> <!-- Stick of Eternity - Empower -->
|
||||
<item id="7705" price="0" /> <!-- Stick of Eternity - Rsk. Evasion -->
|
||||
<item id="7705" price="0" /> <!-- Stick of Eternity - Rsk., Evasion -->
|
||||
<item id="7706" price="0" /> <!-- Stick of Eternity - Blessed Body -->
|
||||
<item id="7707" price="0" /> <!-- Nirvana Axe - M. Atk. -->
|
||||
<item id="7707" price="0" /> <!-- Nirvana Axe - Magic Power -->
|
||||
<item id="7708" price="0" /> <!-- Nirvana Axe - Magic Poison -->
|
||||
<item id="7709" price="0" /> <!-- Nirvana Axe - Magic Weakness -->
|
||||
<item id="7710" price="0" /> <!-- Club of Nature - Acumen -->
|
||||
<item id="7711" price="0" /> <!-- Club of Nature - Mental Shield -->
|
||||
<item id="7711" price="0" /> <!-- Club of Nature - Magic Mental Shield -->
|
||||
<item id="7712" price="0" /> <!-- Club of Nature - Magic Hold -->
|
||||
<item id="7713" price="0" /> <!-- Mace of Underworld - Mana Up -->
|
||||
<item id="7714" price="0" /> <!-- Mace of Underworld - Magic Silence -->
|
||||
<item id="7715" price="0" /> <!-- Mace of Underworld - Conversion -->
|
||||
<item id="7713" price="0" /> <!-- Mace of The Underworld - Mana Up -->
|
||||
<item id="7714" price="0" /> <!-- Mace of The Underworld - Magic Silence -->
|
||||
<item id="7715" price="0" /> <!-- Mace of The Underworld - Conversion -->
|
||||
<item id="2503" price="0" /> <!-- Yaksa Mace -->
|
||||
<item id="162" price="0" /> <!-- War Axe -->
|
||||
<item id="202" price="0" /> <!-- Mace of Underworld -->
|
||||
<item id="202" price="0" /> <!-- Mace of The Underworld -->
|
||||
<item id="201" price="0" /> <!-- Club of Nature -->
|
||||
<item id="196" price="0" /> <!-- Stick of Eternity -->
|
||||
<item id="174" price="0" /> <!-- Nirvana Axe -->
|
||||
|
@ -1,11 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="4888" price="0" /> <!-- Deadman's Staff - Magic Regeneration -->
|
||||
<item id="4889" price="0" /> <!-- Deadman's Staff - Mental Shield -->
|
||||
<item id="4890" price="0" /> <!-- Deadman's Staff - Magic Hold -->
|
||||
<item id="4891" price="0" /> <!-- Ghoul's Staff - Rsk. Evasion -->
|
||||
<item id="4892" price="0" /> <!-- Ghoul's Staff - Mana Up -->
|
||||
<item id="4893" price="0" /> <!-- Ghoul's Staff - Blessed Body -->
|
||||
<item id="4893" price="0" /> <!-- Ghoul's Staff - Bodily Blessing -->
|
||||
<item id="4894" price="0" /> <!-- Demon's Staff - Magic Poison -->
|
||||
<item id="4895" price="0" /> <!-- Demon's Staff - Magic Weakness -->
|
||||
<item id="4896" price="0" /> <!-- Demon's Staff - Magic Chaos -->
|
||||
|
@ -1,12 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="79" price="0" /> <!-- Sword of Damascus -->
|
||||
<item id="136" price="0" /> <!-- (Not In Use) -->
|
||||
<item id="137" price="0" /> <!-- (Not In Use) -->
|
||||
<item id="138" price="0" /> <!-- (Not In Use) -->
|
||||
<item id="139" price="0" /> <!-- Sudden Agathion 7-Day Pack -->
|
||||
<item id="140" price="0" /> <!-- Shiny Agathion 7-Day Pack -->
|
||||
<item id="141" price="0" /> <!-- Sobbing Agathion 7-Day Pack -->
|
||||
<item id="136" price="0" /> <!-- Blade of Serenity -->
|
||||
<item id="137" price="0" /> <!-- Mist Sword -->
|
||||
<item id="138" price="0" /> <!-- Sword of Desert -->
|
||||
<item id="139" price="0" /> <!-- Dusk Sword -->
|
||||
<item id="140" price="0" /> <!-- Eminence Sword -->
|
||||
<item id="141" price="0" /> <!-- Hazard Sword -->
|
||||
<item id="142" price="0" /> <!-- Keshanberk -->
|
||||
<item id="146" price="0" /> <!-- Ghoulbane -->
|
||||
<item id="148" price="0" /> <!-- Sword of Valhalla -->
|
||||
|
@ -1,18 +1,18 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="229" price="0" /> <!-- Kris -->
|
||||
<item id="234" price="0" /> <!-- Demon's Dagger -->
|
||||
<item id="234" price="0" /> <!-- Demon Dagger -->
|
||||
<item id="243" price="0" /> <!-- Hell Knife -->
|
||||
<item id="4777" price="0" /> <!-- Kris - Evasion -->
|
||||
<item id="4778" price="0" /> <!-- Kris - Focus -->
|
||||
<item id="4779" price="0" /> <!-- Kris - Back Blow -->
|
||||
<item id="4780" price="0" /> <!-- Demon's Dagger - Critical Bleed -->
|
||||
<item id="4781" price="0" /> <!-- Demon's Dagger - Critical Poison -->
|
||||
<item id="4782" price="0" /> <!-- Demon's Dagger - Mortal Strike -->
|
||||
<item id="4780" price="0" /> <!-- Demon Dagger - Critical Bleed -->
|
||||
<item id="4781" price="0" /> <!-- Demon Dagger - Critical Poison -->
|
||||
<item id="4782" price="0" /> <!-- Demon Dagger - Mortal Strike -->
|
||||
<item id="4786" price="0" /> <!-- Hell Knife - Focus -->
|
||||
<item id="4787" price="0" /> <!-- Hell Knife - Back Blow -->
|
||||
<item id="4788" price="0" /> <!-- Hell Knife - Mortal Strike -->
|
||||
<item id="6359" price="0" /> <!-- Demon's Dagger - Critical Damage -->
|
||||
<item id="6359" price="0" /> <!-- Demon Dagger - Critical Damage -->
|
||||
<item id="7813" price="0" /> <!-- Hell Knife - Magic Regeneration -->
|
||||
<item id="7814" price="0" /> <!-- Hell Knife - Mental Shield -->
|
||||
<item id="7815" price="0" /> <!-- Hell Knife - Magic Weakness -->
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="91" price="0" /> <!-- Heavy War Axe -->
|
||||
<item id="163" price="0" /> <!-- (Not In Use) -->
|
||||
<item id="163" price="0" /> <!-- _ -->
|
||||
<item id="171" price="0" /> <!-- Deadman's Glory -->
|
||||
<item id="175" price="0" /> <!-- Art of Battle Axe -->
|
||||
<item id="4747" price="0" /> <!-- Heavy War Axe - Anger -->
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="92" price="0" /> <!-- Sprite's Staff -->
|
||||
<item id="207" price="0" /> <!-- Staff of Phantom -->
|
||||
@ -10,6 +10,6 @@
|
||||
<item id="4898" price="0" /> <!-- Sprite's Staff - Mental Shield -->
|
||||
<item id="4899" price="0" /> <!-- Sprite's Staff - Magic Hold -->
|
||||
<item id="4900" price="0" /> <!-- Staff of Evil Spirits - Magic Focus -->
|
||||
<item id="4901" price="0" /> <!-- Staff of Evil Spirits - Blessed Body -->
|
||||
<item id="4901" price="0" /> <!-- Staff of Evil Spirits - Bodily Blessing -->
|
||||
<item id="4902" price="0" /> <!-- Staff of Evil Spirits - Magic Poison -->
|
||||
</list>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="80" price="0" /> <!-- Tallum Blade -->
|
||||
<item id="85" price="0" /> <!-- Phantom Sword -->
|
||||
@ -13,10 +13,10 @@
|
||||
<item id="5635" price="0" /> <!-- Tallum Blade - Critical Poison -->
|
||||
<item id="5636" price="0" /> <!-- Tallum Blade - Haste -->
|
||||
<item id="5637" price="0" /> <!-- Tallum Blade - Anger -->
|
||||
<item id="5638" price="0" /> <!-- Elemental Sword - M. Atk. -->
|
||||
<item id="5638" price="0" /> <!-- Elemental Sword - Magic Power -->
|
||||
<item id="5639" price="0" /> <!-- Elemental Sword - Magic Paralyze -->
|
||||
<item id="5640" price="0" /> <!-- Elemental Sword - Empower -->
|
||||
<item id="5641" price="0" /> <!-- Sword of Miracles - M. Atk. -->
|
||||
<item id="5641" price="0" /> <!-- Sword of Miracles - Magic Power -->
|
||||
<item id="5642" price="0" /> <!-- Sword of Miracles - Magic Silence -->
|
||||
<item id="5643" price="0" /> <!-- Sword of Miracles - Acumen -->
|
||||
<item id="5647" price="0" /> <!-- Dark Legion's Edge - Critical Damage -->
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="164" price="0" /> <!-- Elysian -->
|
||||
<item id="170" price="0" /> <!-- Sudden Agathion 7-Day Pack (Event) -->
|
||||
<item id="170" price="0" /> <!-- _ -->
|
||||
<item id="2504" price="0" /> <!-- Meteor Shower -->
|
||||
<item id="4756" price="0" /> <!-- Meteor Shower - Health -->
|
||||
<item id="4757" price="0" /> <!-- Meteor Shower - Focus -->
|
||||
|
@ -1,14 +1,14 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="212" price="0" /> <!-- Dasparion's Staff -->
|
||||
<item id="213" price="0" /> <!-- Branch of the Mother Tree -->
|
||||
<item id="213" price="0" /> <!-- Branch of The Mother Tree -->
|
||||
<item id="4903" price="0" /> <!-- Dasparion's Staff -->
|
||||
<item id="4904" price="0" /> <!-- Dasparion's Staff -->
|
||||
<item id="4905" price="0" /> <!-- Dasparion's Staff -->
|
||||
<item id="5596" price="0" /> <!-- Dasparion's Staff - Mana Up -->
|
||||
<item id="5597" price="0" /> <!-- Dasparion's Staff - Conversion -->
|
||||
<item id="5598" price="0" /> <!-- Dasparion's Staff - Acumen -->
|
||||
<item id="5605" price="0" /> <!-- Branch of the Mother Tree - Conversion -->
|
||||
<item id="5606" price="0" /> <!-- Branch of the Mother Tree - Magic Damage -->
|
||||
<item id="5607" price="0" /> <!-- Branch of the Mother Tree - Acumen -->
|
||||
<item id="5605" price="0" /> <!-- Branch of The Mother Tree - Conversion -->
|
||||
<item id="5606" price="0" /> <!-- Branch of The Mother Tree - Magic Damage -->
|
||||
<item id="5607" price="0" /> <!-- Branch of The Mother Tree - Acumen -->
|
||||
</list>
|
||||
|
@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="82" price="0" /> <!-- Gaz Blade -->
|
||||
<item id="82" price="0" /> <!-- God's Blade -->
|
||||
<item id="6364" price="0" /> <!-- Forgotten Blade -->
|
||||
<item id="6581" price="0" /> <!-- Forgotten Blade - Haste -->
|
||||
<item id="6582" price="0" /> <!-- Forgotten Blade - Health -->
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="237" price="0" /> <!-- Dragon's Tooth -->
|
||||
<item id="6367" price="0" /> <!-- Angel Slayer -->
|
||||
<item id="6590" price="0" /> <!-- Angel Slayer - Critical Damage -->
|
||||
<item id="6590" price="0" /> <!-- Angel Slayer - Crt. Damage -->
|
||||
<item id="6591" price="0" /> <!-- Angel Slayer - HP Drain -->
|
||||
<item id="6592" price="0" /> <!-- Angel Slayer - Haste -->
|
||||
<item id="6617" price="0" /> <!-- Infinity Stinger -->
|
||||
|
@ -1,10 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="290" price="0" /> <!-- The Bow -->
|
||||
<item id="6368" price="0" /> <!-- Shining Bow -->
|
||||
<item id="6593" price="0" /> <!-- Shining Bow - Cheap Shot -->
|
||||
<item id="6594" price="0" /> <!-- Shining Bow - Focus -->
|
||||
<item id="6595" price="0" /> <!-- Shining Bow - Critical Slow -->
|
||||
<item id="6595" price="0" /> <!-- Shining Bow - Crt. Slow -->
|
||||
<item id="6619" price="0" /> <!-- Infinity Bow -->
|
||||
<item id="7575" price="0" /> <!-- Draconic Bow -->
|
||||
<item id="7576" price="0" /> <!-- Draconic Bow - Cheap Shot -->
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="6371" price="0" /> <!-- Demon Splinter -->
|
||||
<item id="6602" price="0" /> <!-- Demon Splinter - Focus -->
|
||||
<item id="6603" price="0" /> <!-- Demon Splinter - Health -->
|
||||
<item id="6604" price="0" /> <!-- Demon Splinter - Critical Stun -->
|
||||
<item id="6604" price="0" /> <!-- Demon Splinter - Crt. Stun -->
|
||||
<item id="6618" price="0" /> <!-- Infinity Fang -->
|
||||
</list>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="1270" price="0" /> <!-- Orb of Abyss -->
|
||||
<item id="1201" price="0" /> <!-- Mark of Faith -->
|
||||
<item id="1261" price="0" /> <!-- Dark Jewel -->
|
||||
<item id="1261" price="0" /> <!-- Jewel of Darkness -->
|
||||
<item id="1161" price="0" /> <!-- Sword of Ritual -->
|
||||
<item id="1292" price="0" /> <!-- Bead of Season -->
|
||||
<item id="1615" price="0" /> <!-- Khavatari Totem -->
|
||||
@ -22,7 +22,7 @@
|
||||
<item id="1635" price="0" /> <!-- Final Pass Certificate -->
|
||||
<item id="1617" price="0" /> <!-- Kasha Bear Pelt -->
|
||||
<item id="1618" price="0" /> <!-- Kasha Blade Spider Husk -->
|
||||
<item id="1265" price="0" /> <!-- Garmiel's Book -->
|
||||
<item id="1265" price="0" /> <!-- Garmiel Book -->
|
||||
<item id="1253" price="0" /> <!-- Seed of Anger -->
|
||||
<item id="1254" price="0" /> <!-- Seed of Despair -->
|
||||
<item id="1255" price="0" /> <!-- Seed of Horror -->
|
||||
|
@ -1,117 +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="10549" price="0" /> <!-- Forgotten Scroll - Protection of Rune -->
|
||||
<item id="10550" price="0" /> <!-- Forgotten Scroll - Protection of Elemental -->
|
||||
<item id="10551" price="0" /> <!-- Forgotten Scroll - Protection of Alignment -->
|
||||
<item id="10552" price="0" /> <!-- Forgotten Scroll - Fighter's Will -->
|
||||
<item id="10553" price="0" /> <!-- Forgotten Scroll - Archer's Will -->
|
||||
<item id="10554" price="0" /> <!-- Forgotten Scroll - Anti-Magic Armor -->
|
||||
<item id="10555" price="0" /> <!-- Forgotten Scroll - Seed of Revenge -->
|
||||
<item id="10556" price="0" /> <!-- Forgotten Scroll - Hell Scream -->
|
||||
<item id="10557" price="0" /> <!-- Forgotten Scroll - Song of Windstorm -->
|
||||
<item id="10558" price="0" /> <!-- Forgotten Scroll - Dance of Blade Storm -->
|
||||
<item id="10559" price="0" /> <!-- Forgotten Scroll - Sixth Sense -->
|
||||
<item id="10560" price="0" /> <!-- Forgotten Scroll - Expose Weak Point -->
|
||||
<item id="10561" price="0" /> <!-- Forgotten Scroll - Exciting Adventure -->
|
||||
<item id="10562" price="0" /> <!-- Forgotten Scroll - Wind Riding -->
|
||||
<item id="10563" price="0" /> <!-- Forgotten Scroll - Ghost Walking -->
|
||||
<item id="10564" price="0" /> <!-- Forgotten Scroll - Flame Hawk -->
|
||||
<item id="10565" price="0" /> <!-- Forgotten Scroll - Arrow Rain -->
|
||||
<item id="10566" price="0" /> <!-- Forgotten Scroll - Ghost Piercing -->
|
||||
<item id="10567" price="0" /> <!-- Forgotten Scroll - Dread Pool -->
|
||||
<item id="10568" price="0" /> <!-- Forgotten Scroll - Weapon Blockade -->
|
||||
<item id="10569" price="0" /> <!-- Forgotten Scroll - Force of Destruction -->
|
||||
<item id="10570" price="0" /> <!-- Forgotten Scroll - Demolition Impact -->
|
||||
<item id="10571" price="0" /> <!-- Forgotten Scroll - Golem Armor -->
|
||||
<item id="10572" price="0" /> <!-- Forgotten Scroll - Flame Armor -->
|
||||
<item id="10573" price="0" /> <!-- Forgotten Scroll - Frost Armor -->
|
||||
<item id="10574" price="0" /> <!-- Forgotten Scroll - Hurricane Armor -->
|
||||
<item id="10575" price="0" /> <!-- Forgotten Scroll - Vampiric Mist -->
|
||||
<item id="10576" price="0" /> <!-- Forgotten Scroll - Servitor Barrier -->
|
||||
<item id="10577" price="0" /> <!-- Forgotten Scroll - Excessive Loyalty -->
|
||||
<item id="10578" price="0" /> <!-- Forgotten Scroll - Mutual Response -->
|
||||
<item id="10579" price="0" /> <!-- Forgotten Scroll - Improve Combat -->
|
||||
<item id="10580" price="0" /> <!-- Forgotten Scroll - Improve Magic -->
|
||||
<item id="10581" price="0" /> <!-- Forgotten Scroll - Improve Condition -->
|
||||
<item id="10582" price="0" /> <!-- Forgotten Scroll - Improve Critical Attack -->
|
||||
<item id="10583" price="0" /> <!-- Forgotten Scroll - Improve Shield Defense -->
|
||||
<item id="10584" price="0" /> <!-- Forgotten Scroll - Improve Movement -->
|
||||
<item id="10585" price="0" /> <!-- Forgotten Scroll - Sublime Self Sacrifice -->
|
||||
<item id="10586" price="0" /> <!-- Forgotten Scroll - Blessing of Eva -->
|
||||
<item id="10587" price="0" /> <!-- Forgotten Scroll - Lord of Vampire -->
|
||||
<item id="10588" price="0" /> <!-- Forgotten Scroll - Thorn Root -->
|
||||
<item id="10589" price="0" /> <!-- Forgotten Scroll - Seal of Limit -->
|
||||
<item id="10590" price="0" /> <!-- Spellbook - Summon Smart Cubic -->
|
||||
<item id="10591" price="0" /> <!-- Forgotten Scroll - Spirit of Phoenix/Flame Icon -->
|
||||
<item id="10592" price="0" /> <!-- Forgotten Scroll - Eva's Will -->
|
||||
<item id="10593" price="0" /> <!-- Forgotten Scroll - Pain of Shilen / Spirit of Shilen -->
|
||||
<item id="10594" price="0" /> <!-- Forgotten Scroll - Wild Shot -->
|
||||
<item id="10595" price="0" /> <!-- Forgotten Scroll - Lightning Shock -->
|
||||
<item id="10597" price="0" /> <!-- Battle Manual - Curse of Life Flow -->
|
||||
<item id="10595" price="0" /> <!-- Forgotten Scroll - Lightning Shock -->
|
||||
<item id="10608" price="0" /> <!-- Forgotten Scroll - Chant of Combat -->
|
||||
<item id="10609" price="0" /> <!-- Forgotten Scroll - Chant of Critical -->
|
||||
<item id="10610" price="0" /> <!-- Forgotten Scroll - Chant of Blood Awakening -->
|
||||
<item id="12768" price="0" /> <!-- Forgotten Scroll - Evasion Counter -->
|
||||
<item id="12769" price="0" /> <!-- Forgotten Scroll - Evasion Chance -->
|
||||
<item id="12770" price="0" /> <!-- Forgotten Scroll - Evasion Haste -->
|
||||
<item id="12771" price="0" /> <!-- Forgotten Scroll - Shadow Step -->
|
||||
<item id="14170" price="0" /> <!-- Forgotten Scroll - Seed of Revenge -->
|
||||
<item id="14171" price="0" /> <!-- Forgotten Scroll - Hell Scream -->
|
||||
<item id="14172" price="0" /> <!-- Forgotten Scroll - Spirit of Phoenix -->
|
||||
<item id="14173" price="0" /> <!-- Forgotten Scroll - Eva's Will / Touch of Eva -->
|
||||
<item id="14174" price="0" /> <!-- Forgotten Scroll - Pain of Shillien -->
|
||||
<item id="14175" price="0" /> <!-- Forgotten Scroll - Exciting Adventure -->
|
||||
<item id="14176" price="0" /> <!-- Forgotten Scroll - Wind Riding -->
|
||||
<item id="14177" price="0" /> <!-- Forgotten Scroll - Ghost Walking -->
|
||||
<item id="14178" price="0" /> <!-- Forgotten Scroll - Flame Hawk -->
|
||||
<item id="14179" price="0" /> <!-- Forgotten Scroll - Arrow Rain -->
|
||||
<item id="14180" price="0" /> <!-- Forgotten Scroll - Ghost Piercing -->
|
||||
<item id="14181" price="0" /> <!-- Forgotten Scroll - Dread Pool -->
|
||||
<item id="14182" price="0" /> <!-- Forgotten Scroll - Force of Destruction -->
|
||||
<item id="14183" price="0" /> <!-- Forgotten Scroll - Demolition Impact -->
|
||||
<item id="14184" price="0" /> <!-- Forgotten Scroll - Golem Armor -->
|
||||
<item id="14185" price="0" /> <!-- Forgotten Scroll - Wild Shot -->
|
||||
<item id="14186" price="0" /> <!-- Forgotten Scroll - Lightning Shock -->
|
||||
<item id="14187" price="0" /> <!-- Forgotten Scroll - Flame Armor -->
|
||||
<item id="14188" price="0" /> <!-- Forgotten Scroll - Frost Armor -->
|
||||
<item id="14189" price="0" /> <!-- Forgotten Scroll - Hurricane Armor -->
|
||||
<item id="14190" price="0" /> <!-- Forgotten Scroll - Vampiric Mist -->
|
||||
<item id="14191" price="0" /> <!-- Forgotten Scroll - Meteor -->
|
||||
<item id="14192" price="0" /> <!-- Forgotten Scroll - Star Fall -->
|
||||
<item id="14193" price="0" /> <!-- Forgotten Scroll - Sublime Self Sacrifice -->
|
||||
<item id="14194" price="0" /> <!-- Forgotten Scroll - Blessing of Eva -->
|
||||
<item id="14195" price="0" /> <!-- Forgotten Scroll - Lord of Vampire -->
|
||||
<item id="14196" price="0" /> <!-- Forgotten Scroll - Thorn Root -->
|
||||
<item id="14197" price="0" /> <!-- Forgotten Scroll - Seal of Limit -->
|
||||
<item id="14198" price="0" /> <!-- Forgotten Scroll - Song of Purification -->
|
||||
<item id="14199" price="0" /> <!-- Forgotten Scroll - Dance of Berserker -->
|
||||
<item id="14200" price="0" /> <!-- Forgotten Scroll - Summon Imperial Phoenix -->
|
||||
<item id="14201" price="0" /> <!-- Forgotten Scroll - Maximum Force Focus -->
|
||||
<item id="14202" price="0" /> <!-- Forgotten Scroll - Maximum Sonic Focus -->
|
||||
<item id="14203" price="0" /> <!-- Forgotten Scroll - Weapon Blockade -->
|
||||
<item id="14204" price="0" /> <!-- Forgotten Scroll - Spirit of the Cat -->
|
||||
<item id="14205" price="0" /> <!-- Forgotten Scroll - Spirit of the Unicorn -->
|
||||
<item id="14206" price="0" /> <!-- Forgotten Scroll - Spirit of the Phantom -->
|
||||
<item id="14207" price="0" /> <!-- Forgotten Scroll - Deflect Magic -->
|
||||
<item id="14208" price="0" /> <!-- Forgotten Scroll - Final Secret -->
|
||||
<item id="14209" price="0" /> <!-- Forgotten Scroll - Hide -->
|
||||
<item id="14210" price="0" /> <!-- Forgotten Scroll - Dual Dagger Mastery -->
|
||||
<item id="14211" price="0" /> <!-- Forgotten Scroll - Seven Arrow -->
|
||||
<item id="14212" price="0" /> <!-- Forgotten Scroll - Enlightenment - Wizard -->
|
||||
<item id="14213" price="0" /> <!-- Forgotten Scroll - Enlightenment - Healer -->
|
||||
<item id="14214" price="0" /> <!-- Forgotten Scroll - Chant of Movement -->
|
||||
<item id="14215" price="0" /> <!-- Forgotten Scroll - Combat of Pa'agrio -->
|
||||
<item id="14216" price="0" /> <!-- Forgotten Scroll - Critical of Pa'agrio -->
|
||||
<item id="14217" price="0" /> <!-- Forgotten Scroll - Condition of Pa'agrio -->
|
||||
<item id="14218" price="0" /> <!-- Forgotten Scroll - Dual Blow -->
|
||||
<item id="14219" price="0" /> <!-- Forgotten Scroll - Magician's Will -->
|
||||
<item id="14220" price="0" /> <!-- Forgotten Scroll - Silent Mind -->
|
||||
<item id="14221" price="0" /> <!-- Forgotten Scroll - Turn Stone -->
|
||||
<item id="14222" price="0" /> <!-- This Forgotten Scroll can be used by Fortune Seekers level 83 and above to learn Lucky Strike. -->
|
||||
<item id="14223" price="0" /> <!-- This Forgotten Scroll can be used by Doombringers level 83 and above to learn Eye for Eye. -->
|
||||
<item id="14224" price="0" /> <!-- Forgotten Scroll - Curse of Desparion -->
|
||||
<item id="14225" price="0" /> <!-- Forgotten Scroll - Counter Critical -->
|
||||
<item id="14226" price="0" /> <!-- Forgotten Scroll - Onslaught of Pa'agrio -->
|
||||
<item id="14227" price="0" /> <!-- Forgotten Scroll - Great Fury -->
|
||||
</list>
|
@ -1,66 +1,43 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="8723" price="0" /> <!-- Life Stone - Level 46 -->
|
||||
<item id="8724" price="0" /> <!-- Life Stone - Level 49 -->
|
||||
<item id="8725" price="0" /> <!-- Life Stone - Level 52 -->
|
||||
<item id="8726" price="0" /> <!-- Life Stone - Level 55 -->
|
||||
<item id="8727" price="0" /> <!-- Life Stone - Level 58 -->
|
||||
<item id="8728" price="0" /> <!-- Life Stone - Level 61 -->
|
||||
<item id="8729" price="0" /> <!-- Life Stone - Level 64 -->
|
||||
<item id="8730" price="0" /> <!-- Life Stone - Level 67 -->
|
||||
<item id="8731" price="0" /> <!-- Life Stone - Level 70 -->
|
||||
<item id="8732" price="0" /> <!-- Life Stone - Level 76 -->
|
||||
<item id="9573" price="0" /> <!-- Life Stone - Level 80 -->
|
||||
<item id="14166" price="0" /> <!-- Life Stone - Level 84 -->
|
||||
<item id="8733" price="0" /> <!-- Mid-Grade Life Stone - Level 46 -->
|
||||
<item id="8734" price="0" /> <!-- Mid-Grade Life Stone - Level 49 -->
|
||||
<item id="8735" price="0" /> <!-- Mid-Grade Life Stone - Level 52 -->
|
||||
<item id="8736" price="0" /> <!-- Mid-Grade Life Stone - Level 55 -->
|
||||
<item id="8737" price="0" /> <!-- Mid-Grade Life Stone - Level 58 -->
|
||||
<item id="8738" price="0" /> <!-- Mid-Grade Life Stone - Level 61 -->
|
||||
<item id="8739" price="0" /> <!-- Mid-Grade Life Stone - Level 64 -->
|
||||
<item id="8740" price="0" /> <!-- Mid-Grade Life Stone - Level 67 -->
|
||||
<item id="8741" price="0" /> <!-- Mid-Grade Life Stone - Level 70 -->
|
||||
<item id="8742" price="0" /> <!-- Mid-Grade Life Stone - Level 76 -->
|
||||
<item id="9574" price="0" /> <!-- Mid-Grade Life Stone - Level 80 -->
|
||||
<item id="14167" price="0" /> <!-- Mid-Grade Life Stone - Level 84 -->
|
||||
<item id="8743" price="0" /> <!-- High-Grade Life Stone - Level 46 -->
|
||||
<item id="8744" price="0" /> <!-- High-Grade Life Stone - Level 49 -->
|
||||
<item id="8745" price="0" /> <!-- High-Grade Life Stone - Level 52 -->
|
||||
<item id="8746" price="0" /> <!-- High-Grade Life Stone - Level 55 -->
|
||||
<item id="8747" price="0" /> <!-- High-Grade Life Stone - Level 58 -->
|
||||
<item id="8748" price="0" /> <!-- High-Grade Life Stone - Level 61 -->
|
||||
<item id="8749" price="0" /> <!-- High-Grade Life Stone - Level 64 -->
|
||||
<item id="8750" price="0" /> <!-- High-Grade Life Stone - Level 67 -->
|
||||
<item id="8751" price="0" /> <!-- High-Grade Life Stone - Level 70 -->
|
||||
<item id="8752" price="0" /> <!-- High-Grade Life Stone - Level 76 -->
|
||||
<item id="9575" price="0" /> <!-- High-Grade Life Stone - Level 80 -->
|
||||
<item id="10485" price="0" /> <!-- High-Grade Life Stone - Level 82 -->
|
||||
<item id="14168" price="0" /> <!-- High-Grade Life Stone - Level 84 -->
|
||||
<item id="8753" price="0" /> <!-- Top-Grade Life Stone - Level 46 -->
|
||||
<item id="8754" price="0" /> <!-- Top-Grade Life Stone - Level 49 -->
|
||||
<item id="8755" price="0" /> <!-- Top-Grade Life Stone - Level 52 -->
|
||||
<item id="8756" price="0" /> <!-- Top-Grade Life Stone - Level 55 -->
|
||||
<item id="8757" price="0" /> <!-- Top-Grade Life Stone - Level 58 -->
|
||||
<item id="8758" price="0" /> <!-- Top-Grade Life Stone - Level 61 -->
|
||||
<item id="8759" price="0" /> <!-- Top-Grade Life Stone - Level 64 -->
|
||||
<item id="8760" price="0" /> <!-- Top-Grade Life Stone - Level 67 -->
|
||||
<item id="8761" price="0" /> <!-- Top-Grade Life Stone - Level 70 -->
|
||||
<item id="8762" price="0" /> <!-- Top-Grade Life Stone - Level 76 -->
|
||||
<item id="9576" price="0" /> <!-- Top-Grade Life Stone - Level 80 -->
|
||||
<item id="10486" price="0" /> <!-- Top-Grade Life Stone - Level 82 -->
|
||||
<item id="14169" price="0" /> <!-- Top-Grade Life Stone - Level 84 -->
|
||||
<item id="12754" price="0" /> <!-- Accessory Life Stone - Level 46 -->
|
||||
<item id="12755" price="0" /> <!-- Accessory Life Stone - Level 49 -->
|
||||
<item id="12756" price="0" /> <!-- Accessory Life Stone - Level 52 -->
|
||||
<item id="12757" price="0" /> <!-- Accessory Life Stone - Level 55 -->
|
||||
<item id="12758" price="0" /> <!-- Accessory Life Stone - Level 58 -->
|
||||
<item id="12759" price="0" /> <!-- Accessory Life Stone - Level 61 -->
|
||||
<item id="12760" price="0" /> <!-- Accessory Life Stone - Level 64 -->
|
||||
<item id="12761" price="0" /> <!-- Accessory Life Stone - Level 67 -->
|
||||
<item id="12762" price="0" /> <!-- Accessory Life Stone - Level 70 -->
|
||||
<item id="12763" price="0" /> <!-- Accessory Life Stone - Level 76 -->
|
||||
<item id="12821" price="0" /> <!-- Accessory Life Stone - Level 80 -->
|
||||
<item id="12822" price="0" /> <!-- Accessory Life Stone - Level 82 -->
|
||||
<item id="14008" price="0" /> <!-- Accessory Type Life Stone - Level 84 -->
|
||||
<item id="8723" price="0" /> <!-- Life Stone: level 46 -->
|
||||
<item id="8724" price="0" /> <!-- Life Stone: level 49 -->
|
||||
<item id="8725" price="0" /> <!-- Life Stone: level 52 -->
|
||||
<item id="8726" price="0" /> <!-- Life Stone: level 55 -->
|
||||
<item id="8727" price="0" /> <!-- Life Stone: level 58 -->
|
||||
<item id="8728" price="0" /> <!-- Life Stone: level 61 -->
|
||||
<item id="8729" price="0" /> <!-- Life Stone: level 64 -->
|
||||
<item id="8730" price="0" /> <!-- Life Stone: level 67 -->
|
||||
<item id="8731" price="0" /> <!-- Life Stone: level 70 -->
|
||||
<item id="8732" price="0" /> <!-- Life Stone: level 76 -->
|
||||
<item id="8733" price="0" /> <!-- Mid-Grade Life Stone: level 46 -->
|
||||
<item id="8734" price="0" /> <!-- Mid-Grade Life Stone: level 49 -->
|
||||
<item id="8735" price="0" /> <!-- Mid-Grade Life Stone: level 52 -->
|
||||
<item id="8736" price="0" /> <!-- Mid-Grade Life Stone: level 55 -->
|
||||
<item id="8737" price="0" /> <!-- Mid-Grade Life Stone: level 58 -->
|
||||
<item id="8738" price="0" /> <!-- Mid-Grade Life Stone: level 61 -->
|
||||
<item id="8739" price="0" /> <!-- Mid-Grade Life Stone: level 64 -->
|
||||
<item id="8740" price="0" /> <!-- Mid-Grade Life Stone: level 67 -->
|
||||
<item id="8741" price="0" /> <!-- Mid-Grade Life Stone: level 70 -->
|
||||
<item id="8742" price="0" /> <!-- Mid-Grade Life Stone: level 76 -->
|
||||
<item id="8743" price="0" /> <!-- High-Grade Life Stone: level 46 -->
|
||||
<item id="8744" price="0" /> <!-- High-Grade Life Stone: level 49 -->
|
||||
<item id="8745" price="0" /> <!-- High-Grade Life Stone: level 52 -->
|
||||
<item id="8746" price="0" /> <!-- High-Grade Life Stone: level 55 -->
|
||||
<item id="8747" price="0" /> <!-- High-Grade Life Stone: level 58 -->
|
||||
<item id="8748" price="0" /> <!-- High-Grade Life Stone: level 61 -->
|
||||
<item id="8749" price="0" /> <!-- High-Grade Life Stone: level 64 -->
|
||||
<item id="8750" price="0" /> <!-- High-Grade Life Stone: level 67 -->
|
||||
<item id="8751" price="0" /> <!-- High-Grade Life Stone: level 70 -->
|
||||
<item id="8752" price="0" /> <!-- High-Grade Life Stone: level 76 -->
|
||||
<item id="8753" price="0" /> <!-- Top-Grade Life Stone: level 46 -->
|
||||
<item id="8754" price="0" /> <!-- Top-Grade Life Stone: level 49 -->
|
||||
<item id="8755" price="0" /> <!-- Top-Grade Life Stone: level 52 -->
|
||||
<item id="8756" price="0" /> <!-- Top-Grade Life Stone: level 55 -->
|
||||
<item id="8757" price="0" /> <!-- Top-Grade Life Stone: level 58 -->
|
||||
<item id="8758" price="0" /> <!-- Top-Grade Life Stone: level 61 -->
|
||||
<item id="8759" price="0" /> <!-- Top-Grade Life Stone: level 64 -->
|
||||
<item id="8760" price="0" /> <!-- Top-Grade Life Stone: level 67 -->
|
||||
<item id="8761" price="0" /> <!-- Top-Grade Life Stone: level 70 -->
|
||||
<item id="8762" price="0" /> <!-- Top-Grade Life Stone: level 76 -->
|
||||
</list>
|
||||
|
@ -1,51 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="9546" price="0" /> <!-- Fire Stone -->
|
||||
<item id="9547" price="0" /> <!-- Water Stone -->
|
||||
<item id="9548" price="0" /> <!-- Earth Stone -->
|
||||
<item id="9549" price="0" /> <!-- Wind Stone -->
|
||||
<item id="9550" price="0" /> <!-- Dark Stone -->
|
||||
<item id="9551" price="0" /> <!-- Holy Stone -->
|
||||
<item id="10521" price="0" /> <!-- Rough Fire Ore -->
|
||||
<item id="10522" price="0" /> <!-- Rough Water Ore -->
|
||||
<item id="10523" price="0" /> <!-- Rough Earth Ore -->
|
||||
<item id="10524" price="0" /> <!-- Rough Wind Ore -->
|
||||
<item id="10525" price="0" /> <!-- Rough Dark Ore -->
|
||||
<item id="10526" price="0" /> <!-- Rough Holy Ore -->
|
||||
<item id="9552" price="0" /> <!-- Fire Crystal -->
|
||||
<item id="9553" price="0" /> <!-- Water Crystal -->
|
||||
<item id="9554" price="0" /> <!-- Earth Crystal -->
|
||||
<item id="9555" price="0" /> <!-- Wind Crystal -->
|
||||
<item id="9556" price="0" /> <!-- Dark Crystal -->
|
||||
<item id="9557" price="0" /> <!-- Holy Crystal -->
|
||||
<item id="9558" price="0" /> <!-- Fire Jewel -->
|
||||
<item id="9559" price="0" /> <!-- Water Jewel -->
|
||||
<item id="9560" price="0" /> <!-- Earth Jewel -->
|
||||
<item id="9561" price="0" /> <!-- Wind Jewel -->
|
||||
<item id="9562" price="0" /> <!-- Dark Jewel -->
|
||||
<item id="9563" price="0" /> <!-- Holy Jewel -->
|
||||
<item id="9564" price="0" /> <!-- Fire Energy -->
|
||||
<item id="9565" price="0" /> <!-- Water Energy -->
|
||||
<item id="9566" price="0" /> <!-- Earth Energy -->
|
||||
<item id="9567" price="0" /> <!-- Wind Energy -->
|
||||
<item id="9568" price="0" /> <!-- Dark Energy -->
|
||||
<item id="9569" price="0" /> <!-- Holy Energy -->
|
||||
<item id="9997" price="0" /> <!-- Fire Potion -->
|
||||
<item id="9998" price="0" /> <!-- Water Potion -->
|
||||
<item id="9999" price="0" /> <!-- Earth Potion -->
|
||||
<item id="10000" price="0" /> <!-- Wind Potion -->
|
||||
<item id="10001" price="0" /> <!-- Dark Potion -->
|
||||
<item id="10002" price="0" /> <!-- Holy Potion -->
|
||||
<item id="7906" price="0" /> <!-- Fire Blessing -->
|
||||
<item id="7907" price="0" /> <!-- Water Blessing -->
|
||||
<item id="7908" price="0" /> <!-- Wind Blessing -->
|
||||
<item id="7909" price="0" /> <!-- Earth Blessing -->
|
||||
<item id="7910" price="0" /> <!-- Dark Blessing -->
|
||||
<item id="7911" price="0" /> <!-- Holy Blessing -->
|
||||
<item id="7912" price="0" /> <!-- Fire Shard -->
|
||||
<item id="7913" price="0" /> <!-- Water Shard -->
|
||||
<item id="7914" price="0" /> <!-- Wind Shard -->
|
||||
<item id="7915" price="0" /> <!-- Earth Shard -->
|
||||
<item id="7916" price="0" /> <!-- Dark Shard -->
|
||||
<item id="7917" price="0" /> <!-- Holy Shard -->
|
||||
<item id="7906" price="0" /> <!-- Blessing of Fire -->
|
||||
<item id="7907" price="0" /> <!-- Blessing of Water -->
|
||||
<item id="7908" price="0" /> <!-- Blessing of Wind -->
|
||||
<item id="7909" price="0" /> <!-- Blessing of Earth -->
|
||||
<item id="7910" price="0" /> <!-- Blessing of Darkness -->
|
||||
<item id="7911" price="0" /> <!-- Blessing of Sanctity -->
|
||||
<item id="7912" price="0" /> <!-- Fire Crystal -->
|
||||
<item id="7913" price="0" /> <!-- Water Crystal -->
|
||||
<item id="7914" price="0" /> <!-- Wind Crystal -->
|
||||
<item id="7915" price="0" /> <!-- Earth Crystal -->
|
||||
<item id="7916" price="0" /> <!-- Dark Crystal -->
|
||||
<item id="7917" price="0" /> <!-- Sanctity Crystal -->
|
||||
</list>
|
||||
|
@ -1,7 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="6622" price="0" /> <!-- Giant's Codex -->
|
||||
<item id="9625" price="0" /> <!-- Giant's Codex - Oblivion -->
|
||||
<item id="9626" price="0" /> <!-- Giant's Codex - Discipline -->
|
||||
<item id="9627" price="0" /> <!-- Giant's Codex - Mastery -->
|
||||
<item id="6622" price="0" /> <!-- Secret Book of Giants -->
|
||||
</list>
|
||||
|
@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="8618" price="0" /> <!-- Ancient Book: Divine Inspiration (Modern Language Version) -->
|
||||
<item id="8619" price="0" /> <!-- Ancient Book: Divine Inspiration (Original Language Version) -->
|
||||
<item id="8620" price="0" /> <!-- Ancient Book: Divine Inspiration (Manuscript) -->
|
||||
<item id="8621" price="0" /> <!-- Ancient Book: Divine Inspiration (Original Version) -->
|
||||
<item id="8618" price="0" /> <!-- Ancient Book - Divine Inspiration (Modern Language Version) -->
|
||||
<item id="8619" price="0" /> <!-- Ancient Book - Divine Inspiration (Original Language Version) -->
|
||||
<item id="8620" price="0" /> <!-- Ancient Book - Divine Inspiration (Manuscript) -->
|
||||
<item id="8621" price="0" /> <!-- Ancient Book - Divine Inspiration (Original Version) -->
|
||||
</list>
|
||||
|
@ -1,30 +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="9648" price="0" /> <!-- Transformation Sealbook: Onyx Beast -->
|
||||
<item id="9649" price="0" /> <!-- Transformation Sealbook: Death Blader -->
|
||||
<item id="9650" price="0" /> <!-- Transformation Sealbook: Grail Apostle -->
|
||||
<item id="9651" price="0" /> <!-- Transformation Sealbook: Unicorn -->
|
||||
<item id="9652" price="0" /> <!-- Transformation Sealbook: Lilim Knight -->
|
||||
<item id="9653" price="0" /> <!-- Transformation Sealbook: Golem Guardian -->
|
||||
<item id="9654" price="0" /> <!-- Transformation Sealbook: Inferno Drake -->
|
||||
<item id="9655" price="0" /> <!-- Transformation Sealbook: Dragon Bomber -->
|
||||
<item id="10288" price="0" /> <!-- Transformation Sealbook: Divine Knight -->
|
||||
<item id="10289" price="0" /> <!-- Transformation Sealbook: Divine Warrior -->
|
||||
<item id="10290" price="0" /> <!-- Transformation Sealbook: Divine Rogue -->
|
||||
<item id="10291" price="0" /> <!-- Transformation Sealbook: Divine Healer -->
|
||||
<item id="10292" price="0" /> <!-- Transformation Sealbook: Divine Wizard -->
|
||||
<item id="10293" price="0" /> <!-- Transformation Sealbook: Divine Enchanter -->
|
||||
<item id="10294" price="0" /> <!-- Transformation Sealbook: Divine Summoner -->
|
||||
<item id="10295" price="0" /> <!-- Transformation Sealbook: Zaken -->
|
||||
<item id="10296" price="0" /> <!-- Transformation Sealbook: Anakim -->
|
||||
<item id="10297" price="0" /> <!-- Transformation Sealbook: Venom -->
|
||||
<item id="10298" price="0" /> <!-- Transformation Sealbook: Gordon -->
|
||||
<item id="10299" price="0" /> <!-- Transformation Sealbook: Ranku -->
|
||||
<item id="10300" price="0" /> <!-- Transformation Sealbook - Kechi -->
|
||||
<item id="10301" price="0" /> <!-- Transformation Sealbook: Demon Prince -->
|
||||
<item id="10302" price="0" /> <!-- Transformation Sealbook: Heretic -->
|
||||
<item id="10303" price="0" /> <!-- Transformation Sealbook: Veil Master -->
|
||||
<item id="10304" price="0" /> <!-- Transformation Sealbook: Saber Tooth Tiger -->
|
||||
<item id="10305" price="0" /> <!-- Transformation Sealbook: Oel Mahum -->
|
||||
<item id="10306" price="0" /> <!-- Transformation Sealbook: Doll Blader -->
|
||||
</list>
|
@ -1,61 +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="52" price="0" /> <!-- Vesper Dual Sword -->
|
||||
<item id="13457" price="0" /> <!-- Vesper Cutter -->
|
||||
<item id="13458" price="0" /> <!-- Vesper Slasher -->
|
||||
<item id="13459" price="0" /> <!-- Vesper Buster -->
|
||||
<item id="13460" price="0" /> <!-- Vesper Shaper -->
|
||||
<item id="13461" price="0" /> <!-- Vesper Fighter -->
|
||||
<item id="13462" price="0" /> <!-- Vesper Stormer -->
|
||||
<item id="13463" price="0" /> <!-- Vesper Avenger -->
|
||||
<item id="13464" price="0" /> <!-- Vesper Retributer -->
|
||||
<item id="13465" price="0" /> <!-- Vesper Caster -->
|
||||
<item id="13466" price="0" /> <!-- Vesper Singer -->
|
||||
<item id="13467" price="0" /> <!-- Vesper Thrower -->
|
||||
<item id="13468" price="0" /> <!-- Vesper Pincer -->
|
||||
<item id="13469" price="0" /> <!-- Vesper Shooter -->
|
||||
<item id="13470" price="0" /> <!-- Vesper Nagan -->
|
||||
<item id="13884" price="0" /> <!-- Vesper Dual Daggers -->
|
||||
<item id="14118" price="0" /> <!-- Vesper Cutter - Haste -->
|
||||
<item id="14119" price="0" /> <!-- Vesper Cutter - Health -->
|
||||
<item id="14120" price="0" /> <!-- Vesper Cutter - Focus -->
|
||||
<item id="14121" price="0" /> <!-- Vesper Slasher - Haste -->
|
||||
<item id="14122" price="0" /> <!-- Vesper Slasher - Health -->
|
||||
<item id="14123" price="0" /> <!-- Vesper Slasher - Focus -->
|
||||
<item id="14124" price="0" /> <!-- Vesper Buster - Mana Up -->
|
||||
<item id="14125" price="0" /> <!-- Vesper Buster - Acumen -->
|
||||
<item id="14126" price="0" /> <!-- Vesper Buster - Magic Hold -->
|
||||
<item id="14127" price="0" /> <!-- Vesper Shaper - Critical Damage -->
|
||||
<item id="14128" price="0" /> <!-- Vesper Shaper - HP Drain -->
|
||||
<item id="14129" price="0" /> <!-- Vesper Shaper - Haste -->
|
||||
<item id="14130" price="0" /> <!-- Vesper Fighter - Focus -->
|
||||
<item id="14131" price="0" /> <!-- Vesper Fighter - Health -->
|
||||
<item id="14132" price="0" /> <!-- Vesper Fighter - Critical Stun -->
|
||||
<item id="14133" price="0" /> <!-- Vesper Stormer - Health -->
|
||||
<item id="14134" price="0" /> <!-- Vesper Stormer - Guidance -->
|
||||
<item id="14135" price="0" /> <!-- Vesper Stormer - Haste -->
|
||||
<item id="14136" price="0" /> <!-- Vesper Avenger - HP Drain -->
|
||||
<item id="14137" price="0" /> <!-- Vesper Avenger - Health -->
|
||||
<item id="14138" price="0" /> <!-- Vesper Avenger - HP Regeneration -->
|
||||
<item id="14139" price="0" /> <!-- Vesper Retributer - HP Regeneration -->
|
||||
<item id="14140" price="0" /> <!-- Vesper Retributer - Health -->
|
||||
<item id="14141" price="0" /> <!-- Vesper Retributer - HP Drain -->
|
||||
<item id="14142" price="0" /> <!-- Vesper Caster - Acumen -->
|
||||
<item id="14143" price="0" /> <!-- Vesper Caster - MP Regeneration -->
|
||||
<item id="14144" price="0" /> <!-- Vesper Caster - Mana Up -->
|
||||
<item id="14145" price="0" /> <!-- Vesper Singer - Empower -->
|
||||
<item id="14146" price="0" /> <!-- Vesper Singer - MP Regeneration -->
|
||||
<item id="14147" price="0" /> <!-- Vesper Singer - Magic Hold -->
|
||||
<item id="14148" price="0" /> <!-- Vesper Thrower - Cheap Shot -->
|
||||
<item id="14149" price="0" /> <!-- Vesper Thrower - Focus -->
|
||||
<item id="14150" price="0" /> <!-- Vesper Thrower - Critical Slow -->
|
||||
<item id="14151" price="0" /> <!-- Vesper Pincer - Haste -->
|
||||
<item id="14152" price="0" /> <!-- Vesper Pincer - Health -->
|
||||
<item id="14153" price="0" /> <!-- Vesper Pincer - Focus -->
|
||||
<item id="14154" price="0" /> <!-- Vesper Shooter - Cheap Shot -->
|
||||
<item id="14155" price="0" /> <!-- Vesper Shooter - Focus -->
|
||||
<item id="14156" price="0" /> <!-- Vesper Shooter - Critical Slow -->
|
||||
<item id="14157" price="0" /> <!-- Vesper Nagan - Haste -->
|
||||
<item id="14158" price="0" /> <!-- Vesper Nagan - Health -->
|
||||
<item id="14159" price="0" /> <!-- Vesper Nagan - Focus -->
|
||||
</list>
|
@ -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="14160" price="0" /> <!-- Sealed Vesper Earring -->
|
||||
<item id="14161" price="0" /> <!-- Sealed Vesper Necklace -->
|
||||
<item id="14162" price="0" /> <!-- Sealed Vesper Ring -->
|
||||
<item id="14163" price="0" /> <!-- Vesper Earring -->
|
||||
<item id="14164" price="0" /> <!-- Vesper Necklace -->
|
||||
<item id="14165" price="0" /> <!-- Vesper Ring -->
|
||||
</list>
|
@ -1,18 +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="13687" price="0" /> <!-- Knight's Cloak -->
|
||||
<item id="13688" price="0" /> <!-- Knight's Cloak - Light Armor exclusive -->
|
||||
<item id="13689" price="0" /> <!-- Knight's Cloak - Robe exclusive -->
|
||||
<item id="13690" price="0" /> <!-- Knight's Cloak - Kamael exclusive -->
|
||||
<item id="13889" price="0" /> <!-- Holy Spirit's Cloak - Kamael exclusive -->
|
||||
<item id="13890" price="0" /> <!-- Holy Spirit's Cloak -->
|
||||
<item id="13891" price="0" /> <!-- Holy Spirit's Cloak - Light Armor exclusive -->
|
||||
<item id="13892" price="0" /> <!-- Holy Spirit's Cloak - Robe exclusive -->
|
||||
<item id="14601" price="0" /> <!-- Ancient Cloak: Kamael exclusive - Kamael Use -->
|
||||
<item id="14608" price="0" /> <!-- Ancient Cloak: Light Armor exclusive -->
|
||||
<item id="14609" price="0" /> <!-- Ancient Cloak -->
|
||||
<item id="14610" price="0" /> <!-- Ancient Cloak: Robe exclusive -->
|
||||
<item id="13686" price="0" /> <!-- Sealed Knight's Cloak -->
|
||||
<item id="13893" price="0" /> <!-- Sealed Holy Spirit's Cloak -->
|
||||
<item id="14603" price="0" /> <!-- Sealed Ancient Cloak -->
|
||||
</list>
|
@ -1,97 +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="13894" price="0" /> <!-- Cloth Belt -->
|
||||
<item id="13895" price="0" /> <!-- Leather Belt -->
|
||||
<item id="13896" price="0" /> <!-- Iron Belt -->
|
||||
<item id="13897" price="0" /> <!-- Mithril Belt -->
|
||||
<item id="13938" price="0" /> <!-- Low-Grade Magic Pouch Cloth Belt -->
|
||||
<item id="13939" price="0" /> <!-- Regular Magic Pouch Cloth Belt -->
|
||||
<item id="13940" price="0" /> <!-- High-Grade Magic Pouch Cloth Belt -->
|
||||
<item id="13941" price="0" /> <!-- Top-Grade Magic Pouch Cloth Belt -->
|
||||
<item id="13942" price="0" /> <!-- Low-Grade Magic Pouch Leather Belt -->
|
||||
<item id="13943" price="0" /> <!-- Regular Magic Pouch Leather Belt -->
|
||||
<item id="13944" price="0" /> <!-- High-Grade Magic Pouch Leather Belt -->
|
||||
<item id="13945" price="0" /> <!-- Top-Grade Magic Pouch Leather Belt -->
|
||||
<item id="13946" price="0" /> <!-- Low-Grade Magic Pouch Iron Belt -->
|
||||
<item id="13947" price="0" /> <!-- Regular Magic Pouch Iron Belt -->
|
||||
<item id="13948" price="0" /> <!-- High-Grade Magic Pouch Iron Belt -->
|
||||
<item id="13949" price="0" /> <!-- Top-Grade Magic Pouch Iron Belt -->
|
||||
<item id="13950" price="0" /> <!-- Low-Grade Magic Pouch Mithril Belt -->
|
||||
<item id="13951" price="0" /> <!-- Regular Magic Pouch Mithril Belt -->
|
||||
<item id="13952" price="0" /> <!-- High-Grade Magic Pouch Mithril Belt -->
|
||||
<item id="13953" price="0" /> <!-- Top-Grade Magic Pouch Mithril Belt -->
|
||||
<item id="13954" price="0" /> <!-- Low-Grade Magic Pin Cloth Belt -->
|
||||
<item id="13955" price="0" /> <!-- Regular Magic Pin Cloth Belt -->
|
||||
<item id="13956" price="0" /> <!-- High-Grade Magic Pin Cloth Belt -->
|
||||
<item id="13957" price="0" /> <!-- Top-Grade Magic Pin Cloth Belt -->
|
||||
<item id="13958" price="0" /> <!-- Low-Grade Magic Pin Leather Belt -->
|
||||
<item id="13959" price="0" /> <!-- Regular Magic Pin Leather Belt -->
|
||||
<item id="13960" price="0" /> <!-- High-Grade Magic Pin Leather Belt -->
|
||||
<item id="13961" price="0" /> <!-- Top-Grade Magic Pin Leather Belt -->
|
||||
<item id="13962" price="0" /> <!-- Low-Grade Magic Pin Iron Belt -->
|
||||
<item id="13963" price="0" /> <!-- Regular Magic Pin Iron Belt -->
|
||||
<item id="13964" price="0" /> <!-- High-Grade Magic Pin Iron Belt -->
|
||||
<item id="13965" price="0" /> <!-- Top-Grade Magic Pin Iron Belt -->
|
||||
<item id="13966" price="0" /> <!-- Low-Grade Magic Pin Mithril Belt -->
|
||||
<item id="13967" price="0" /> <!-- Regular Magic Pin Mithril Belt -->
|
||||
<item id="13968" price="0" /> <!-- High-Grade Magic Pin Mithril Belt -->
|
||||
<item id="13969" price="0" /> <!-- Top-Grade Magic Pin Mithril Belt -->
|
||||
<item id="13713" price="0" /> <!-- Gludio Supply Box - Belt - Grade B, C -->
|
||||
<item id="13714" price="0" /> <!-- Dion Supply Box - Belt - Grade B, C -->
|
||||
<item id="13715" price="0" /> <!-- Giran Supply Box - Belt - Grade B, C -->
|
||||
<item id="13716" price="0" /> <!-- Oren Supply Box - Belt - Grade B, C -->
|
||||
<item id="13717" price="0" /> <!-- Aden Supply Box - Belt - Grade B, C -->
|
||||
<item id="13718" price="0" /> <!-- Innadril Supply Box - Belt - Grade B, C -->
|
||||
<item id="13719" price="0" /> <!-- Goddard Supply Box: Belt - Grade B, C -->
|
||||
<item id="13720" price="0" /> <!-- Rune Supply Box - Belt - Grade B, C -->
|
||||
<item id="13721" price="0" /> <!-- Schuttgart Supply Box - Belt - Grade B, C -->
|
||||
<item id="14549" price="0" /> <!-- Gludio Supply Box - Belt - Grade S, A -->
|
||||
<item id="14550" price="0" /> <!-- Dion Supply Box - Belt - Grade S, A -->
|
||||
<item id="14551" price="0" /> <!-- Giran Supply Box - Belt - Grade S, A -->
|
||||
<item id="14552" price="0" /> <!-- Oren Supply Box - Belt - Grade S, A -->
|
||||
<item id="14553" price="0" /> <!-- Aden Supply Box - Belt - Grade S, A -->
|
||||
<item id="14554" price="0" /> <!-- Innadril Supply Box - Belt - Grade S, A -->
|
||||
<item id="14555" price="0" /> <!-- Goddard Supply Box: Belt - Grade S, A -->
|
||||
<item id="14556" price="0" /> <!-- Rune Supply Box - Belt - Grade S, A -->
|
||||
<item id="14557" price="0" /> <!-- Schuttgart Supply Box - Belt - Grade S, A -->
|
||||
<item id="14922" price="0" /> <!-- Low-grade Magic Rune Clip Iron Belt - HP Recovery -->
|
||||
<item id="14923" price="0" /> <!-- Ordinary Magic Rune Clip Iron Belt - HP Recovery -->
|
||||
<item id="14924" price="0" /> <!-- High-grade Magic Rune Clip Iron Belt - HP Recovery -->
|
||||
<item id="14925" price="0" /> <!-- Top-grade Magic Rune Clip Iron Belt - HP Recovery -->
|
||||
<item id="14926" price="0" /> <!-- Low-grade Magic Rune Clip Mithril Belt - HP Recovery -->
|
||||
<item id="14927" price="0" /> <!-- Ordinary Magic Rune Clip Mithril Belt - HP Recovery -->
|
||||
<item id="14928" price="0" /> <!-- High-grade Magic Rune Clip Mithril Belt - HP Recovery -->
|
||||
<item id="14929" price="0" /> <!-- Top-grade Magic Rune Clip Mithril Belt - HP Recovery -->
|
||||
<item id="14930" price="0" /> <!-- Low-grade Magic Rune Clip Iron Belt - MP Recovery -->
|
||||
<item id="14931" price="0" /> <!-- Ordinary Magic Rune Clip Iron Belt - MP Recovery -->
|
||||
<item id="14932" price="0" /> <!-- High-grade Magic Rune Clip Iron Belt - MP Recovery -->
|
||||
<item id="14933" price="0" /> <!-- Top-grade Magic Rune Clip Iron Belt - MP Recovery -->
|
||||
<item id="14934" price="0" /> <!-- Low-grade Magic Rune Clip Mithril Belt - MP Recovery -->
|
||||
<item id="14935" price="0" /> <!-- Ordinary Magic Rune Clip Mithril Belt - MP Recovery -->
|
||||
<item id="14936" price="0" /> <!-- High-grade Magic Rune Clip Mithril Belt - MP Recovery -->
|
||||
<item id="14937" price="0" /> <!-- Top-grade Magic Rune Clip Mithril Belt - MP Recovery -->
|
||||
<item id="14938" price="0" /> <!-- Low-grade Magic Ornament Iron Belt - PvP Physical Attack -->
|
||||
<item id="14939" price="0" /> <!-- Regular Magic Ornament Iron Belt - PvP Physical Attack -->
|
||||
<item id="14940" price="0" /> <!-- High-grade Magic Ornament Iron Belt - PvP Physical Attack -->
|
||||
<item id="14941" price="0" /> <!-- Top-grade Magic Ornament Iron Belt - PvP Physical Attack -->
|
||||
<item id="14942" price="0" /> <!-- Low-grade Magic Ornament Iron Belt - PvP Skill Attack -->
|
||||
<item id="14943" price="0" /> <!-- Regular Magic Ornament Iron Belt - PvP Skill Attack -->
|
||||
<item id="14944" price="0" /> <!-- High-grade Magic Ornament Iron Belt - PvP Skill Attack -->
|
||||
<item id="14945" price="0" /> <!-- Top-grade Magic Ornament Iron Belt - PvP Skill Attack -->
|
||||
<item id="14946" price="0" /> <!-- Low-grade Magic Ornament Iron Belt - PVP Defense -->
|
||||
<item id="14947" price="0" /> <!-- Regular Magic Ornament Iron Belt - PVP Defense -->
|
||||
<item id="14948" price="0" /> <!-- High-grade Magic Ornament Iron Belt - PVP Defense -->
|
||||
<item id="14949" price="0" /> <!-- Top-grade Magic Ornament Iron Belt - PVP Defense -->
|
||||
<item id="14950" price="0" /> <!-- Low-grade Magic Ornament Mithril Belt - PvP Physical Attack -->
|
||||
<item id="14951" price="0" /> <!-- Regular Magic Ornament Mithril Belt - PvP Physical Attack -->
|
||||
<item id="14952" price="0" /> <!-- High-grade Magic Ornament Mithril Belt - PvP Physical Attack -->
|
||||
<item id="14953" price="0" /> <!-- Top-grade Magic Ornament Mithril Belt - PvP Physical Attack -->
|
||||
<item id="14954" price="0" /> <!-- Low-grade Magic Ornament Mithril Belt - PvP Skill Attack -->
|
||||
<item id="14955" price="0" /> <!-- Regular Magic Ornament Mithril Belt - PvP Skill Attack -->
|
||||
<item id="14956" price="0" /> <!-- High-grade Magic Ornament Mithril Belt - PvP Skill Attack -->
|
||||
<item id="14957" price="0" /> <!-- Top-grade Magic Ornament Mithril Belt - PvP Skill Attack -->
|
||||
<item id="14958" price="0" /> <!-- Low-grade Magic Ornament Mithril Belt - PVP Defense -->
|
||||
<item id="14959" price="0" /> <!-- Regular Magic Ornament Mithril Belt - PVP Defense -->
|
||||
<item id="14960" price="0" /> <!-- High-grade Magic Ornament Mithril Belt - PVP Defense -->
|
||||
<item id="14961" price="0" /> <!-- Top-grade Magic Ornament Mithril Belt - PVP Defense -->
|
||||
</list>
|
@ -1,41 +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="13695" price="0" /> <!-- Gludio Supply Box - Magic Pin - Grade B, C -->
|
||||
<item id="13696" price="0" /> <!-- Dion Supply Box - Magic Pin - Grade B, C -->
|
||||
<item id="13697" price="0" /> <!-- Giran Supply Box - Magic Pin - Grade B, C -->
|
||||
<item id="13698" price="0" /> <!-- Oren Supply Box - Magic Pin - Grade B, C -->
|
||||
<item id="13699" price="0" /> <!-- Aden Supply Box - Magic Pin - Grade B, C -->
|
||||
<item id="13700" price="0" /> <!-- Innadril Supply Box - Magic Pin - Grade B, C -->
|
||||
<item id="13701" price="0" /> <!-- Goddard Supply Box: Magic Pin - Grade B, C -->
|
||||
<item id="13702" price="0" /> <!-- Rune Supply Box - Magic Pin - Grade B, C -->
|
||||
<item id="13703" price="0" /> <!-- Schuttgart Supply Box - Magic Pin - Grade B, C -->
|
||||
<item id="14531" price="0" /> <!-- Gludio Supply Box - Magic Pin - Grade S, A -->
|
||||
<item id="14532" price="0" /> <!-- Dion Supply Box - Magic Pin - Grade S, A -->
|
||||
<item id="14533" price="0" /> <!-- Giran Supply Box - Magic Pin - Grade S, A -->
|
||||
<item id="14534" price="0" /> <!-- Oren Supply Box - Magic Pin - Grade S, A -->
|
||||
<item id="14535" price="0" /> <!-- Aden Supply Box - Magic Pin - Grade S, A -->
|
||||
<item id="14536" price="0" /> <!-- Innadril Supply Box - Magic Pin - Grade S, A -->
|
||||
<item id="14537" price="0" /> <!-- Goddard Supply Box: Magic Pin - Grade S, A -->
|
||||
<item id="14538" price="0" /> <!-- Rune Supply Box - Magic Pin - Grade S, A -->
|
||||
<item id="14539" price="0" /> <!-- Schuttgart Supply Box - Magic Pin - Grade S, A -->
|
||||
<item id="13898" price="0" /> <!-- Sealed Magic Pin (C-Grade) -->
|
||||
<item id="13899" price="0" /> <!-- Sealed Magic Pin (B-Grade) -->
|
||||
<item id="13900" price="0" /> <!-- Sealed Magic Pin (A-Grade) -->
|
||||
<item id="13901" price="0" /> <!-- Sealed Magic Pin (S-Grade) -->
|
||||
<item id="13902" price="0" /> <!-- Low-Grade Magic Pin (C-Grade) -->
|
||||
<item id="13903" price="0" /> <!-- Mid-Grade Magic Pin (C-Grade) -->
|
||||
<item id="13904" price="0" /> <!-- High-Grade Magic Pin (C-Grade) -->
|
||||
<item id="13905" price="0" /> <!-- Top-Grade Magic Pin (C-Grade) -->
|
||||
<item id="13906" price="0" /> <!-- Low-Grade Magic Pin (B-Grade) -->
|
||||
<item id="13907" price="0" /> <!-- Mid-Grade Magic Pin (B-Grade) -->
|
||||
<item id="13908" price="0" /> <!-- High-Grade Magic Pin (B-Grade) -->
|
||||
<item id="13909" price="0" /> <!-- Top-Grade Magic Pin (B-Grade) -->
|
||||
<item id="13910" price="0" /> <!-- Low-Grade Magic Pin (A-Grade) -->
|
||||
<item id="13911" price="0" /> <!-- Mid-Grade Magic Pin (A-Grade) -->
|
||||
<item id="13912" price="0" /> <!-- High-Grade Magic Pin (A-Grade) -->
|
||||
<item id="13913" price="0" /> <!-- Top-Grade Magic Pin (A-Grade) -->
|
||||
<item id="13914" price="0" /> <!-- Low-Grade Magic Pin (S-Grade) -->
|
||||
<item id="13915" price="0" /> <!-- Mid-Grade Magic Pin (S-Grade) -->
|
||||
<item id="13916" price="0" /> <!-- High-Grade Magic Pin (S-Grade) -->
|
||||
<item id="13917" price="0" /> <!-- Top-Grade Magic Pin (S-Grade) -->
|
||||
</list>
|
@ -1,41 +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="13704" price="0" /> <!-- Gludio Supply Box - Magic Pouch - Grade B, C -->
|
||||
<item id="13705" price="0" /> <!-- Dion Supply Box - Magic Pouch - Grade B, C -->
|
||||
<item id="13706" price="0" /> <!-- Giran Supply Box - Magic Pouch - Grade B, C -->
|
||||
<item id="13707" price="0" /> <!-- Oren Supply Box - Magic Pouch - Grade B, C -->
|
||||
<item id="13708" price="0" /> <!-- Aden Supply Box - Magic Pouch - Grade B, C -->
|
||||
<item id="13709" price="0" /> <!-- Innadril Supply Box - Magic Pouch - Grade B, C -->
|
||||
<item id="13710" price="0" /> <!-- Goddard Supply Box: Magic Pouch - Grade B, C -->
|
||||
<item id="13711" price="0" /> <!-- Rune Supply Box - Magic Pouch - Grade B, C -->
|
||||
<item id="13712" price="0" /> <!-- Schuttgart Supply Box - Magic Pouch - Grade B, C -->
|
||||
<item id="14540" price="0" /> <!-- Gludio Supply Box - Magic Pouch - Grade S, A -->
|
||||
<item id="14541" price="0" /> <!-- Dion Supply Box - Magic Pouch - Grade S, A -->
|
||||
<item id="14542" price="0" /> <!-- Giran Supply Box - Magic Pouch - Grade S, A -->
|
||||
<item id="14543" price="0" /> <!-- Oren Supply Box - Magic Pouch - Grade S, A -->
|
||||
<item id="14544" price="0" /> <!-- Aden Supply Box - Magic Pouch - Grade S, A -->
|
||||
<item id="14545" price="0" /> <!-- Innadril Supply Box - Magic Pouch - Grade S, A -->
|
||||
<item id="14546" price="0" /> <!-- Goddard Supply Box: Magic Pouch - Grade S, A -->
|
||||
<item id="14547" price="0" /> <!-- Rune Supply Box - Magic Pouch - Grade S, A -->
|
||||
<item id="14548" price="0" /> <!-- Schuttgart Supply Box - Magic Pouch - Grade S, A -->
|
||||
<item id="13918" price="0" /> <!-- Sealed Magic Pouch (C-Grade) -->
|
||||
<item id="13919" price="0" /> <!-- Sealed Magic Pouch (B-Grade) -->
|
||||
<item id="13920" price="0" /> <!-- Sealed Magic Pouch (A-Grade) -->
|
||||
<item id="13921" price="0" /> <!-- Sealed Magic Pouch (S-Grade) -->
|
||||
<item id="13922" price="0" /> <!-- Low-Grade Magic Pouch (C-Grade) -->
|
||||
<item id="13923" price="0" /> <!-- Mid-Grade Magic Pouch (C-Grade) -->
|
||||
<item id="13924" price="0" /> <!-- High-Grade Magic Pouch (C-Grade) -->
|
||||
<item id="13925" price="0" /> <!-- Top-Grade Magic Pouch (C-Grade) -->
|
||||
<item id="13926" price="0" /> <!-- Low-Grade Magic Pouch (B-Grade) -->
|
||||
<item id="13927" price="0" /> <!-- Mid-Grade Magic Pouch (B-Grade) -->
|
||||
<item id="13928" price="0" /> <!-- High-Grade Magic Pouch (B-Grade) -->
|
||||
<item id="13929" price="0" /> <!-- Top-Grade Magic Pouch (B-Grade) -->
|
||||
<item id="13930" price="0" /> <!-- Low-Grade Magic Pouch (A-Grade) -->
|
||||
<item id="13931" price="0" /> <!-- Mid-Grade Magic Pouch (A-Grade) -->
|
||||
<item id="13932" price="0" /> <!-- High-Grade Magic Pouch (A-Grade) -->
|
||||
<item id="13933" price="0" /> <!-- Top-Grade Magic Pouch (A-Grade) -->
|
||||
<item id="13934" price="0" /> <!-- Low-Grade Magic Pouch (S-Grade) -->
|
||||
<item id="13935" price="0" /> <!-- Mid-Grade Magic Pouch (S-Grade) -->
|
||||
<item id="13936" price="0" /> <!-- High-Grade Magic Pouch (S-Grade) -->
|
||||
<item id="13937" price="0" /> <!-- Top-Grade Magic Pouch (S-Grade) -->
|
||||
</list>
|
@ -1,44 +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="9577" price="0" /> <!-- Cotton Shirt -->
|
||||
<item id="9578" price="0" /> <!-- Linen Shirt -->
|
||||
<item id="9579" price="0" /> <!-- Silk Shirt -->
|
||||
<item id="10491" price="0" /> <!-- Silk Shirt - HP -->
|
||||
<item id="10492" price="0" /> <!-- Silk Shirt - MP -->
|
||||
<item id="10493" price="0" /> <!-- Silk Shirt - CP -->
|
||||
<item id="9580" price="0" /> <!-- Thin Leather Shirt -->
|
||||
<item id="10494" price="0" /> <!-- Thin Leather Shirt - HP -->
|
||||
<item id="10495" price="0" /> <!-- Thin Leather Shirt - MP -->
|
||||
<item id="10496" price="0" /> <!-- Thin Leather Shirt - CP -->
|
||||
<item id="9581" price="0" /> <!-- Scale Shirt -->
|
||||
<item id="10497" price="0" /> <!-- Scale Shirt - HP -->
|
||||
<item id="10498" price="0" /> <!-- Scale Shirt - MP -->
|
||||
<item id="10499" price="0" /> <!-- Scale Shirt - CP -->
|
||||
<item id="9582" price="0" /> <!-- Mithril Shirt -->
|
||||
<item id="10500" price="0" /> <!-- Mithril Shirt - HP -->
|
||||
<item id="10501" price="0" /> <!-- Mithril Shirt - MP -->
|
||||
<item id="10502" price="0" /> <!-- Mithril Shirt - CP -->
|
||||
<item id="9583" price="0" /> <!-- Striped Cotton Shirt -->
|
||||
<item id="9584" price="0" /> <!-- Stripe Linen Shirt -->
|
||||
<item id="9585" price="0" /> <!-- Striped Silk Shirt -->
|
||||
<item id="10503" price="0" /> <!-- Striped Silk Shirt - HP -->
|
||||
<item id="10504" price="0" /> <!-- Striped Silk Shirt - MP -->
|
||||
<item id="10505" price="0" /> <!-- Striped Silk Shirt - CP -->
|
||||
<item id="9586" price="0" /> <!-- Thin Striped Leather Shirt -->
|
||||
<item id="10506" price="0" /> <!-- Thin Striped Leather Shirt - HP -->
|
||||
<item id="10507" price="0" /> <!-- Thin Striped Leather Shirt - MP -->
|
||||
<item id="10508" price="0" /> <!-- Thin Striped Leather Shirt - CP -->
|
||||
<item id="9587" price="0" /> <!-- Striped Scale Shirt -->
|
||||
<item id="10509" price="0" /> <!-- Striped Scale Shirt - HP -->
|
||||
<item id="10510" price="0" /> <!-- Striped Scale Shirt - MP -->
|
||||
<item id="10511" price="0" /> <!-- Striped Scale Shirt - CP -->
|
||||
<item id="9588" price="0" /> <!-- Striped Mithril Shirt -->
|
||||
<item id="10512" price="0" /> <!-- Striped Mithril Shirt - HP -->
|
||||
<item id="10513" price="0" /> <!-- Striped Mithril Shirt - MP -->
|
||||
<item id="10514" price="0" /> <!-- Striped Mithril Shirt - CP -->
|
||||
<item id="13296" price="0" /> <!-- Pailaka Shirt -->
|
||||
<item id="13389" price="0" /> <!-- Kratei Barbed Shirt - CP -->
|
||||
<item id="13390" price="0" /> <!-- Kratei Mithril Shirt - CP -->
|
||||
<item id="13391" price="0" /> <!-- Kratei Striped Barbed Shirt - CP -->
|
||||
<item id="13392" price="0" /> <!-- Kratei Striped Mithril Shirt - CP -->
|
||||
</list>
|
@ -1,14 +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="9589" price="0" /> <!-- Iron Bracelet -->
|
||||
<item id="9590" price="0" /> <!-- Bronze Bracelet -->
|
||||
<item id="9591" price="0" /> <!-- Steel Bracelet -->
|
||||
<item id="9592" price="0" /> <!-- Mithril Bracelet -->
|
||||
<item id="10209" price="0" /> <!-- Enhanced Steel Bracelet -->
|
||||
<item id="10210" price="0" /> <!-- Enhanced Mithril Bracelet -->
|
||||
<item id="13295" price="0" /> <!-- Pailaka Bracelet -->
|
||||
<item id="15312" price="0" /> <!-- Dawn's Bracelet -->
|
||||
<item id="15208" price="0" /> <!-- Bracelet of Friendship - 30-day limited period -->
|
||||
<item id="20594" price="0" /> <!-- Summon of Love Bracelet (event) - 24-hour limited period -->
|
||||
<item id="20628" price="0" /> <!-- Summon of Love Bracelet - 7-day limited period -->
|
||||
</list>
|
@ -1,85 +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="9923" price="0" /> <!-- Black Talisman - Escape -->
|
||||
<item id="9922" price="0" /> <!-- Black Talisman - Mending -->
|
||||
<item id="9956" price="0" /> <!-- Black Talisman - Arcane Freedom -->
|
||||
<item id="9959" price="0" /> <!-- Black Talisman - Free Speech -->
|
||||
<item id="9957" price="0" /> <!-- Black Talisman - Physical Freedom -->
|
||||
<item id="9958" price="0" /> <!-- Black Talisman - Rescue -->
|
||||
<item id="9955" price="0" /> <!-- Black Talisman - Vocalization -->
|
||||
<item id="10533" price="0" /> <!-- Blue Talisman - P. Atk. -->
|
||||
<item id="10416" price="0" /> <!-- Blue Talisman - Explosion -->
|
||||
<item id="10424" price="0" /> <!-- Blue Talisman - Greater Healing -->
|
||||
<item id="10417" price="0" /> <!-- Blue Talisman - Magic Explosion -->
|
||||
<item id="10423" price="0" /> <!-- Blue Talisman - Self-Destruction -->
|
||||
<item id="10534" price="0" /> <!-- Blue Talisman - Shield Defense -->
|
||||
<item id="9921" price="0" /> <!-- Blue Talisman - Shield Protection -->
|
||||
<item id="9916" price="0" /> <!-- Blue Talisman of Defense -->
|
||||
<item id="9926" price="0" /> <!-- Blue Talisman of Defense -->
|
||||
<item id="9930" price="0" /> <!-- Blue Talisman of Evasion -->
|
||||
<item id="9924" price="0" /> <!-- Blue Talisman of Healing -->
|
||||
<item id="9932" price="0" /> <!-- Blue Talisman - Divine Protection -->
|
||||
<item id="9920" price="0" /> <!-- Blue Talisman of Invisibility -->
|
||||
<item id="9927" price="0" /> <!-- Blue Talisman of Magic Defense -->
|
||||
<item id="9914" price="0" /> <!-- Blue Talisman of Power -->
|
||||
<item id="9929" price="0" /> <!-- Blue Talisman of Protection -->
|
||||
<item id="9919" price="0" /> <!-- Blue Talisman of Reflection -->
|
||||
<item id="9915" price="0" /> <!-- Blue Talisman of Wild Magic -->
|
||||
<item id="10142" price="0" /> <!-- Grey Talisman - Buffalo Transform -->
|
||||
<item id="10141" price="0" /> <!-- Grey Talisman - Yeti Transform -->
|
||||
<item id="9951" price="0" /> <!-- Grey Talisman of Mid-Grade Fishing -->
|
||||
<item id="9950" price="0" /> <!-- Grey Talisman of Weight Training -->
|
||||
<item id="10158" price="0" /> <!-- Grey Talisman of Upper Grade Fishing -->
|
||||
<item id="9952" price="0" /> <!-- Orange Talisman - Hot Springs CP Potion -->
|
||||
<item id="9953" price="0" /> <!-- Orange Talisman - Elixir of Life -->
|
||||
<item id="9954" price="0" /> <!-- Orange Talisman - Elixir of Mental Strength -->
|
||||
<item id="12816" price="0" /> <!-- Red Talisman - CP Regeneration -->
|
||||
<item id="10542" price="0" /> <!-- Red Talisman - HP/CP Recovery -->
|
||||
<item id="10518" price="0" /> <!-- Red Talisman - Life Force -->
|
||||
<item id="12815" price="0" /> <!-- Red Talisman - Max CP -->
|
||||
<item id="9918" price="0" /> <!-- Red Talisman of Maximum Clarity -->
|
||||
<item id="9931" price="0" /> <!-- Red Talisman of Meditation -->
|
||||
<item id="9928" price="0" /> <!-- Red Talisman of Mental Regeneration -->
|
||||
<item id="9917" price="0" /> <!-- Red Talisman of Minimum Clarity -->
|
||||
<item id="9925" price="0" /> <!-- Red Talisman of Recovery -->
|
||||
<item id="10519" price="0" /> <!-- White Talisman - Earth -->
|
||||
<item id="10419" price="0" /> <!-- White Talisman - Darkness -->
|
||||
<item id="10421" price="0" /> <!-- White Talisman - Fire -->
|
||||
<item id="10422" price="0" /> <!-- White Talisman - Light -->
|
||||
<item id="10418" price="0" /> <!-- White Talisman - Storm -->
|
||||
<item id="10420" price="0" /> <!-- White Talisman - Water -->
|
||||
<item id="9963" price="0" /> <!-- White Talisman of Attention -->
|
||||
<item id="9964" price="0" /> <!-- White Talisman of Bandages -->
|
||||
<item id="9960" price="0" /> <!-- White Talisman of Bravery -->
|
||||
<item id="9966" price="0" /> <!-- White Talisman of Freedom -->
|
||||
<item id="9962" price="0" /> <!-- White Talisman of Grounding -->
|
||||
<item id="9961" price="0" /> <!-- White Talisman of Motion -->
|
||||
<item id="9965" price="0" /> <!-- White Talisman of Protection -->
|
||||
<item id="10539" price="0" /> <!-- Yellow Talisman - CP Recovery Rate -->
|
||||
<item id="12818" price="0" /> <!-- Yellow Talisman - Damage Transition -->
|
||||
<item id="10535" price="0" /> <!-- Yellow Talisman - P. Def. -->
|
||||
<item id="10537" price="0" /> <!-- Yellow Talisman - Evasion -->
|
||||
<item id="10538" price="0" /> <!-- Yellow Talisman - Healing Power -->
|
||||
<item id="10540" price="0" /> <!-- Yellow Talisman - HP Recovery Rate -->
|
||||
<item id="12817" price="0" /> <!-- Yellow Talisman - Increase Force -->
|
||||
<item id="10541" price="0" /> <!-- Yellow Talisman - Low Grade MP Recovery Rate -->
|
||||
<item id="10536" price="0" /> <!-- Yellow Talisman - M. Atk. -->
|
||||
<item id="10543" price="0" /> <!-- Yellow Talisman - Speed -->
|
||||
<item id="9938" price="0" /> <!-- Yellow Talisman of Accuracy -->
|
||||
<item id="9940" price="0" /> <!-- Yellow Talisman of Alacrity -->
|
||||
<item id="9935" price="0" /> <!-- Yellow Talisman of Arcane Defense -->
|
||||
<item id="9937" price="0" /> <!-- Yellow Talisman of Arcane Haste -->
|
||||
<item id="9936" price="0" /> <!-- Yellow Talisman of Arcane Power -->
|
||||
<item id="9947" price="0" /> <!-- Yellow Talisman of CP Regeneration -->
|
||||
<item id="9944" price="0" /> <!-- Yellow Talisman of Critical Dodging -->
|
||||
<item id="9943" price="0" /> <!-- Yellow Talisman of Critical Damage -->
|
||||
<item id="9942" price="0" /> <!-- Yellow Talisman of Critical Reduction -->
|
||||
<item id="9939" price="0" /> <!-- Yellow Talisman of Defense -->
|
||||
<item id="9945" price="0" /> <!-- Yellow Talisman of Evasion -->
|
||||
<item id="9946" price="0" /> <!-- Yellow Talisman of Healing -->
|
||||
<item id="9949" price="0" /> <!-- Yellow Talisman of Mental Regeneration -->
|
||||
<item id="9948" price="0" /> <!-- Yellow Talisman of Physical Regeneration -->
|
||||
<item id="9933" price="0" /> <!-- Yellow Talisman of Power -->
|
||||
<item id="9941" price="0" /> <!-- Yellow Talisman of Speed -->
|
||||
<item id="9934" price="0" /> <!-- Yellow Talisman of Violent Haste -->
|
||||
</list>
|
@ -3,12 +3,7 @@
|
||||
<item id="57" price="0" /> <!-- Adena -->
|
||||
<item id="5575" price="0" /> <!-- Ancient Adena -->
|
||||
<item id="6673" price="0" /> <!-- Festival Adena -->
|
||||
<item id="13067" price="0" /> <!-- Fantasy Isle Coin -->
|
||||
<item id="13068" price="0" /> <!-- Fantasy Isle Coin (Player Commendation) -->
|
||||
<item id="10639" price="0" /> <!-- Mouse Coin -->
|
||||
<item id="3470" price="0" /> <!-- Gold Bar -->
|
||||
<item id="9142" price="0" /> <!-- Apiga -->
|
||||
<item id="9143" price="0" /> <!-- Golden Apiga -->
|
||||
<item id="14720" price="0" /> <!-- Event - Apiga -->
|
||||
<item id="14721" price="0" /> <!-- Event - Golden Apiga -->
|
||||
</list>
|
||||
|
@ -1,13 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="6656" price="0" /> <!-- Earring of Antharas -->
|
||||
<item id="6657" price="0" /> <!-- Necklace of Valakas -->
|
||||
<item id="6658" price="0" /> <!-- Ring of Baium -->
|
||||
<item id="6659" price="0" /> <!-- Earring of Zaken -->
|
||||
<item id="6659" price="0" /> <!-- Zaken's Earring -->
|
||||
<item id="6660" price="0" /> <!-- Ring of Queen Ant -->
|
||||
<item id="6661" price="0" /> <!-- Earring of Orfen -->
|
||||
<item id="6662" price="0" /> <!-- Ring of Core -->
|
||||
<item id="8191" price="0" /> <!-- Necklace of Frintezza -->
|
||||
<item id="10170" price="0" /> <!-- Baylor's Earring -->
|
||||
<item id="10314" price="0" /> <!-- Ring of Beleth -->
|
||||
<item id="8191" price="0" /> <!-- Frintezza's Necklace -->
|
||||
</list>
|
||||
|
@ -1,39 +1,13 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="3500" price="0" /> <!-- Dragonflute of Wind -->
|
||||
<item id="3501" price="0" /> <!-- Dragonflute of Star -->
|
||||
<item id="3502" price="0" /> <!-- Dragonflute of Twilight -->
|
||||
<item id="4422" price="0" /> <!-- Dragon Bugle of Wind -->
|
||||
<item id="4423" price="0" /> <!-- Dragon Bugle of Star -->
|
||||
<item id="4424" price="0" /> <!-- Dragon Bugle of Twilight -->
|
||||
<item id="4424" price="0" /> <!-- Dragon Bugle of Dusk -->
|
||||
<item id="6648" price="0" /> <!-- Baby Buffalo Panpipe -->
|
||||
<item id="6649" price="0" /> <!-- Baby Cougar Chime -->
|
||||
<item id="6650" price="0" /> <!-- Baby Kookaburra Ocarina -->
|
||||
<item id="10311" price="0" /> <!-- Improved Buffalo Panpipe -->
|
||||
<item id="10312" price="0" /> <!-- Improved Cougar Chime -->
|
||||
<item id="10312" price="0" /> <!-- Improved Cougar Chime -->
|
||||
<item id="10313" price="0" /> <!-- Improved Kookaburra Ocarina -->
|
||||
<item id="10308" price="0" /> <!-- Red Dragon Bugle of Wind -->
|
||||
<item id="10309" price="0" /> <!-- Red Dragon Bugle of Star -->
|
||||
<item id="10310" price="0" /> <!-- Red Dragon Bugle of Twilight -->
|
||||
<item id="10426" price="0" /> <!-- Fenrir Necklace -->
|
||||
<item id="10611" price="0" /> <!-- Snow Fenrir Necklace -->
|
||||
<item id="10307" price="0" /> <!-- Great Snow Wolf Necklace -->
|
||||
<item id="2375" price="0" /> <!-- Wolf Collar -->
|
||||
<item id="14828" price="0" /> <!-- Deinonychus Mesozoic Stone -->
|
||||
<item id="14819" price="0" /> <!-- Guardian's Dragon Bugle -->
|
||||
<item id="13017" price="0" /> <!-- White Weasel Hunting Helper Necklace -->
|
||||
<item id="13018" price="0" /> <!-- Fairy Princess Hunting Helper Necklace -->
|
||||
<item id="13019" price="0" /> <!-- Wild Beast Fighter Hunting Helper Necklace -->
|
||||
<item id="13020" price="0" /> <!-- Fox Shaman Hunting Helper Necklace -->
|
||||
<item id="14061" price="0" /> <!-- Toy Knight Summon Whistle -->
|
||||
<item id="14062" price="0" /> <!-- Spirit Shaman Summon Whistle -->
|
||||
<item id="14063" price="0" /> <!-- Owl Monk Summon Whistle -->
|
||||
<item id="14064" price="0" /> <!-- Turtle Ascetic Summon Whistle -->
|
||||
<item id="13548" price="0" /> <!-- Toy Knight Summon Whistle -->
|
||||
<item id="13549" price="0" /> <!-- Soul Monk Summon Whistle -->
|
||||
<item id="13550" price="0" /> <!-- Owl Monk Summon Whistle -->
|
||||
<item id="13551" price="0" /> <!-- Turtle Ascetic Summon Whistle -->
|
||||
<item id="20760" price="0" /> <!-- Rudolph Necklace (Event) -->
|
||||
<item id="20761" price="0" /> <!-- Rudolph Necklace -->
|
||||
</list>
|
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="6834" price="0" /> <!-- Circlet of Innadril -->
|
||||
<item id="6835" price="0" /> <!-- Circlet of Dion -->
|
||||
<item id="6836" price="0" /> <!-- Goddard Circlet -->
|
||||
<item id="6836" price="0" /> <!-- Circlet of Goddard -->
|
||||
<item id="6837" price="0" /> <!-- Circlet of Oren -->
|
||||
<item id="6838" price="0" /> <!-- Circlet of Gludio -->
|
||||
<item id="6839" price="0" /> <!-- Circlet of Giran -->
|
||||
@ -10,21 +10,4 @@
|
||||
<item id="8182" price="0" /> <!-- Circlet of Rune -->
|
||||
<item id="8183" price="0" /> <!-- Circlet of Schuttgart -->
|
||||
<item id="6841" price="0" /> <!-- The Lord's Crown -->
|
||||
<item id="13472" price="0" /> <!-- Circlet of Innadril Valor -->
|
||||
<item id="13473" price="0" /> <!-- Circlet of Aden Valor -->
|
||||
<item id="13474" price="0" /> <!-- Circlet of Dion Valor -->
|
||||
<item id="13475" price="0" /> <!-- Circlet of Dion Sniper -->
|
||||
<item id="13476" price="0" /> <!-- Circlet of Innadril Sniper -->
|
||||
<item id="13477" price="0" /> <!-- Circlet of Oren Sniper -->
|
||||
<item id="13478" price="0" /> <!-- Circlet of Gludio Sage -->
|
||||
<item id="13479" price="0" /> <!-- Circlet of Rune Sage -->
|
||||
<item id="13480" price="0" /> <!-- Circlet of Giran Sage -->
|
||||
<item id="13481" price="0" /> <!-- Goddard Circlet of Combat -->
|
||||
<item id="13482" price="0" /> <!-- Circlet of Schuttgart Combat -->
|
||||
<item id="13483" price="0" /> <!-- Circlet of Oren Combat -->
|
||||
<item id="13484" price="0" /> <!-- Gludio Circlet Silence -->
|
||||
<item id="13485" price="0" /> <!-- Circlet of Schuttgart Silence -->
|
||||
<item id="13486" price="0" /> <!-- Circlet of Aden Unity -->
|
||||
<item id="13487" price="0" /> <!-- Circlet of Rune Silence -->
|
||||
<item id="13506" price="0" /> <!-- Improved Lord's Crown -->
|
||||
</list>
|
||||
|
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="5808" price="0" /> <!-- Party Mask -->
|
||||
<item id="6394" price="0" /> <!-- Red Party Mask -->
|
||||
<item id="6843" price="0" /> <!-- Cat Ears -->
|
||||
<item id="6843" price="0" /> <!-- Cat Ear -->
|
||||
<item id="6844" price="0" /> <!-- Lady's Hair Pin -->
|
||||
<item id="6845" price="0" /> <!-- Pirate's Eye Patch -->
|
||||
<item id="6846" price="0" /> <!-- Monocle -->
|
||||
@ -18,16 +18,16 @@
|
||||
<item id="7836" price="0" /> <!-- Santa's Hat -->
|
||||
<item id="7837" price="0" /> <!-- Sayha's White Mask -->
|
||||
<item id="7839" price="0" /> <!-- Gran Kain's Black Mask -->
|
||||
<item id="7840" price="0" /> <!-- Rabbit Ears - Event -->
|
||||
<item id="7841" price="0" /> <!-- Racoon Ears -->
|
||||
<item id="7842" price="0" /> <!-- Cat Ears -->
|
||||
<item id="7843" price="0" /> <!-- Pirate's Eyepatch -->
|
||||
<item id="7844" price="0" /> <!-- Monocle -->
|
||||
<item id="7845" price="0" /> <!-- Outlaw's Eyepatch -->
|
||||
<item id="7846" price="0" /> <!-- Maiden's Hairpin -->
|
||||
<item id="7847" price="0" /> <!-- Lady's Hairpin -->
|
||||
<item id="7848" price="0" /> <!-- Forget-me-not Hairpin -->
|
||||
<item id="7849" price="0" /> <!-- Daisy Hairpin -->
|
||||
<item id="7840" price="0" /> <!-- Rabbit Ears (Event) -->
|
||||
<item id="7841" price="0" /> <!-- Racoon Ears (Event) -->
|
||||
<item id="7842" price="0" /> <!-- Cat Ears (Event) -->
|
||||
<item id="7843" price="0" /> <!-- Pirate's Eyepatch (Event) -->
|
||||
<item id="7844" price="0" /> <!-- Monocle (Event) -->
|
||||
<item id="7845" price="0" /> <!-- Outlaw's Eyepatch (Event) -->
|
||||
<item id="7846" price="0" /> <!-- Lady's Hairpin (Event) -->
|
||||
<item id="7847" price="0" /> <!-- Noblewoman's Hairpin (Event) -->
|
||||
<item id="7848" price="0" /> <!-- Forget-me-not Hairpin (Event) -->
|
||||
<item id="7849" price="0" /> <!-- Daisy Hairpin (Event) -->
|
||||
<item id="8177" price="0" /> <!-- Raid Challenger's Circlet -->
|
||||
<item id="8178" price="0" /> <!-- Raid Adventurer's Circlet -->
|
||||
<item id="8179" price="0" /> <!-- Raid Master's Circlet -->
|
||||
@ -41,7 +41,7 @@
|
||||
<item id="8189" price="0" /> <!-- Fairy Antennae -->
|
||||
<item id="8552" price="0" /> <!-- Mask of Spirits -->
|
||||
<item id="8557" price="0" /> <!-- Blue Party Hat -->
|
||||
<item id="8558" price="0" /> <!-- Eva's Mark (Event) -->
|
||||
<item id="8558" price="0" /> <!-- Eva's Mark -->
|
||||
<item id="8559" price="0" /> <!-- Diadem -->
|
||||
<item id="8560" price="0" /> <!-- Teddy Bear Hat -->
|
||||
<item id="8561" price="0" /> <!-- Piggy Hat -->
|
||||
@ -56,8 +56,8 @@
|
||||
<item id="8660" price="0" /> <!-- Demon Horns -->
|
||||
<item id="8661" price="0" /> <!-- Mask of Spirits -->
|
||||
<item id="8662" price="0" /> <!-- Fairy Antennae (Event) -->
|
||||
<item id="8910" price="0" /> <!-- Black Feather Mask -->
|
||||
<item id="8911" price="0" /> <!-- Black Half Mask (Event) -->
|
||||
<item id="8910" price="0" /> <!-- Black Feather Mask (Event) -->
|
||||
<item id="8911" price="0" /> <!-- Black Half-Mask (Event) -->
|
||||
<item id="8912" price="0" /> <!-- Single Stem Flower -->
|
||||
<item id="8913" price="0" /> <!-- Butterfly Hairpin -->
|
||||
<item id="8914" price="0" /> <!-- Luxurious Gold Circlet -->
|
||||
@ -71,162 +71,15 @@
|
||||
<item id="8922" price="0" /> <!-- Pirate Hat -->
|
||||
<item id="8923" price="0" /> <!-- Scar -->
|
||||
<item id="8936" price="0" /> <!-- Santa's Antlers -->
|
||||
<item id="8947" price="0" /> <!-- L2day - Rabbit Ears -->
|
||||
<item id="8948" price="0" /> <!-- L2day - Little Angel Wings -->
|
||||
<item id="8949" price="0" /> <!-- L2day - Fairy Antennae -->
|
||||
<item id="8950" price="0" /> <!-- L2day - Feathered Hat -->
|
||||
<item id="8951" price="0" /> <!-- L2day - Artisan's Goggles -->
|
||||
<item id="8947" price="0" /> <!-- L2 Day: Rabbit Ears -->
|
||||
<item id="8948" price="0" /> <!-- L2 Day: Little Angel Wings -->
|
||||
<item id="8949" price="0" /> <!-- L2 Day: Fairy Antennae -->
|
||||
<item id="8950" price="0" /> <!-- L2 Day: Feathered Hat -->
|
||||
<item id="8951" price="0" /> <!-- L2 Day: Artisan's Goggles -->
|
||||
<item id="9138" price="0" /> <!-- Santa's Hat -->
|
||||
<item id="9145" price="0" /> <!-- Little Angel Wings (Event) -->
|
||||
<item id="9158" price="0" /> <!-- Gold Circlet of Redemption -->
|
||||
<item id="9158" price="0" /> <!-- Golden Circlet of Redemption -->
|
||||
<item id="9159" price="0" /> <!-- Silver Circlet of Salvation -->
|
||||
<item id="9160" price="0" /> <!-- Pig Wrangler's Cap -->
|
||||
<item id="9208" price="0" /> <!-- Phantom Mask (Event) -->
|
||||
<item id="10175" price="0" /> <!-- Goblin Circlet (Event) -->
|
||||
<item id="10176" price="0" /> <!-- White Half Mask -->
|
||||
<item id="10177" price="0" /> <!-- Black Half Mask -->
|
||||
<item id="10240" price="0" /> <!-- Bird Nest -->
|
||||
<item id="10241" price="0" /> <!-- Purple Viking Circlet -->
|
||||
<item id="10242" price="0" /> <!-- Golden Viking Circlet -->
|
||||
<item id="10243" price="0" /> <!-- Panda Hat -->
|
||||
<item id="10244" price="0" /> <!-- White Sheep Hat -->
|
||||
<item id="10245" price="0" /> <!-- Black Sheep Hat -->
|
||||
<item id="10246" price="0" /> <!-- Frog Hat -->
|
||||
<item id="10247" price="0" /> <!-- Fish Hat -->
|
||||
<item id="10248" price="0" /> <!-- Straw Hat -->
|
||||
<item id="10249" price="0" /> <!-- Chicken Hat -->
|
||||
<item id="10250" price="0" /> <!-- Adventurer Hat (Event) -->
|
||||
<item id="10251" price="0" /> <!-- Medieval Party Mask -->
|
||||
<item id="10613" price="0" /> <!-- Bird Nest (Event) -->
|
||||
<item id="10614" price="0" /> <!-- White Wool Hat (Event) -->
|
||||
<item id="10615" price="0" /> <!-- Black Wool Hat (Event) -->
|
||||
<item id="10616" price="0" /> <!-- Straw Hat (Event) -->
|
||||
<item id="10617" price="0" /> <!-- Ant Hat - Year 2008 -->
|
||||
<item id="10618" price="0" /> <!-- Ol Mahum Hat - Year 2008 -->
|
||||
<item id="10619" price="0" /> <!-- Wolf Hat - Year 2008 -->
|
||||
<item id="12372" price="0" /> <!-- Monkey Hat -->
|
||||
<item id="12373" price="0" /> <!-- Pig Hat -->
|
||||
<item id="12781" price="0" /> <!-- Ol Mahum Hat -->
|
||||
<item id="12782" price="0" /> <!-- Kat the Cat Hat - 30-day limited period -->
|
||||
<item id="12783" price="0" /> <!-- Feline Queen Hat - 30-day limited period -->
|
||||
<item id="12784" price="0" /> <!-- Ant Hat -->
|
||||
<item id="12785" price="0" /> <!-- Wolf Hat -->
|
||||
<item id="12786" price="0" /> <!-- Monster Eye Hat - 30-day limited period -->
|
||||
<item id="12787" price="0" /> <!-- Brown Bear Hat - 30-day limited period -->
|
||||
<item id="12788" price="0" /> <!-- Fungus Hat - 30-day limited period -->
|
||||
<item id="12789" price="0" /> <!-- Skull Hat - 30-day limited period -->
|
||||
<item id="12790" price="0" /> <!-- Ornithomimus Hat - 30-day limited period -->
|
||||
<item id="12791" price="0" /> <!-- Feline King Hat - 30-day limited period -->
|
||||
<item id="12792" price="0" /> <!-- Kai the Cat Hat - 30-day limited period -->
|
||||
<item id="12838" price="0" /> <!-- Fish Hat (Event) -->
|
||||
<item id="12839" price="0" /> <!-- Medieval Style Party Mask (Event) -->
|
||||
<item id="13058" price="0" /> <!-- Silenos Hair Accessory -->
|
||||
<item id="13234" price="0" /> <!-- Varka Karm (used by Varka Silenos) -->
|
||||
<item id="13235" price="0" /> <!-- Ketra Karm (used by Ketra Orcs) -->
|
||||
<item id="13236" price="0" /> <!-- Bronze Kamaloka Circlet -->
|
||||
<item id="13237" price="0" /> <!-- Silver Kamaloka Circlet -->
|
||||
<item id="13238" price="0" /> <!-- Gold Kamaloka Circlet -->
|
||||
<item id="13239" price="0" /> <!-- Kat the Cat Hat - 7-day limited period -->
|
||||
<item id="13240" price="0" /> <!-- Feline Queen Hat - 7-day limited period -->
|
||||
<item id="13241" price="0" /> <!-- Monster Eye Hat - 7-day limited period -->
|
||||
<item id="13242" price="0" /> <!-- Brown Bear Hat - 7-day limited period -->
|
||||
<item id="13243" price="0" /> <!-- Fungus Hat - 7-day limited period -->
|
||||
<item id="13244" price="0" /> <!-- Skull Hat - 7-day limited period -->
|
||||
<item id="13245" price="0" /> <!-- Ornithomimus Hat - 7-day limited period -->
|
||||
<item id="13246" price="0" /> <!-- Feline King Hat - 7-day limited period -->
|
||||
<item id="13247" price="0" /> <!-- Kai the Cat Hat - 7-day limited period -->
|
||||
<item id="13310" price="0" /> <!-- Kat the Cat Hat (Event) - 30-day limited period -->
|
||||
<item id="13311" price="0" /> <!-- Feline Queen Hat (Event) - 30-day limited period -->
|
||||
<item id="13312" price="0" /> <!-- Monster Eye Hat (Event) - 30-day limited period -->
|
||||
<item id="13313" price="0" /> <!-- Brown Bear Hat (Event) - 30-day limited period -->
|
||||
<item id="13314" price="0" /> <!-- Fungus Hat (Event) - 30-day limited period -->
|
||||
<item id="13315" price="0" /> <!-- Skull Hat (Event) - 30-day limited period -->
|
||||
<item id="13316" price="0" /> <!-- Ornithomimus Hat (Event) - 30-day limited period -->
|
||||
<item id="13317" price="0" /> <!-- Feline King Hat (Event) - 30-day limited period -->
|
||||
<item id="13318" price="0" /> <!-- Kai the Cat Hat (Event) - 30-day limited period -->
|
||||
<item id="13325" price="0" /> <!-- Kat the Cat Hat (Event) - 7-day limited period -->
|
||||
<item id="13326" price="0" /> <!-- Feline Queen Hat (Event) - 7-day limited period -->
|
||||
<item id="13327" price="0" /> <!-- Monster Eye Hat (Event) - 7-day limited period -->
|
||||
<item id="13328" price="0" /> <!-- Brown Bear Hat (Event) - 7-day limited period -->
|
||||
<item id="13329" price="0" /> <!-- Fungus Hat (Event) - 7-day limited period -->
|
||||
<item id="13330" price="0" /> <!-- Skull Hat (Event) - 7-day limited period -->
|
||||
<item id="13331" price="0" /> <!-- Ornithomimus Hat (Event) - 7-day limited period -->
|
||||
<item id="13332" price="0" /> <!-- Feline King Hat (Event) - 7-day limited period -->
|
||||
<item id="13333" price="0" /> <!-- Kai the Cat Hat (Event) - 7-day limited period -->
|
||||
<item id="13415" price="0" /> <!-- Frog Hat -->
|
||||
<item id="13416" price="0" /> <!-- Chicken Hat -->
|
||||
<item id="13416" price="0" /> <!-- Chicken Hat -->
|
||||
<item id="13429" price="0" /> <!-- Teddy Bear Hat (Event) -->
|
||||
<item id="13430" price="0" /> <!-- Piggy Hat (Event) -->
|
||||
<item id="13431" price="0" /> <!-- Jester Hat (Event) -->
|
||||
<item id="13488" price="0" /> <!-- Birthday Hat -->
|
||||
<item id="13489" price="0" /> <!-- Halloween Hat -->
|
||||
<item id="13490" price="0" /> <!-- Arrow-Pierced Apple -->
|
||||
<item id="13491" price="0" /> <!-- Popped-Out Eye -->
|
||||
<item id="13492" price="0" /> <!-- Graduation Cap -->
|
||||
<item id="13493" price="0" /> <!-- Refined Carnival Circlet -->
|
||||
<item id="13494" price="0" /> <!-- Refined Angel Ring -->
|
||||
<item id="13495" price="0" /> <!-- Refined Devil Horn -->
|
||||
<item id="13496" price="0" /> <!-- Refined Pirate Hat -->
|
||||
<item id="13497" price="0" /> <!-- Refined Chick Hat -->
|
||||
<item id="13498" price="0" /> <!-- Refined Wizard Hat -->
|
||||
<item id="13499" price="0" /> <!-- Refined Jester Hat -->
|
||||
<item id="13500" price="0" /> <!-- Refined Black Feather Mask -->
|
||||
<item id="13501" price="0" /> <!-- Refined Romantic Chapeau -->
|
||||
<item id="13502" price="0" /> <!-- Refined Carnival Circlet -->
|
||||
<item id="13503" price="0" /> <!-- Refined Medieval Style Party Mask -->
|
||||
<item id="13504" price="0" /> <!-- Refined Dapper Cap -->
|
||||
<item id="13505" price="0" /> <!-- Clownfish Hat -->
|
||||
<item id="13513" price="0" /> <!-- Mining Hat -->
|
||||
<item id="13514" price="0" /> <!-- Improved Mining Hat -->
|
||||
<item id="13515" price="0" /> <!-- Search Hat -->
|
||||
<item id="13516" price="0" /> <!-- Improved Search Hat -->
|
||||
<item id="13517" price="0" /> <!-- Event - Raccoon Hat -->
|
||||
<item id="13518" price="0" /> <!-- Event - Top Hat -->
|
||||
<item id="13519" price="0" /> <!-- Event - Black Mask -->
|
||||
<item id="13520" price="0" /> <!-- Event - Jindo Dog Hat -->
|
||||
<item id="13521" price="0" /> <!-- Event - Shaggy Dog Hat -->
|
||||
<item id="13522" price="0" /> <!-- Event - Rider Goggles -->
|
||||
<item id="13523" price="0" /> <!-- Event - Lineage Souvenir Circlet -->
|
||||
<item id="14712" price="0" /> <!-- Cow Hair Accessory -->
|
||||
<item id="14746" price="0" /> <!-- For Events - Refined Chick Hat -->
|
||||
<item id="14747" price="0" /> <!-- For Events - Refined Black Feather Mask -->
|
||||
<item id="14748" price="0" /> <!-- For Events - Refined Carnival Circlet -->
|
||||
<item id="14749" price="0" /> <!-- Afro Perm Wig -->
|
||||
<item id="14750" price="0" /> <!-- Bamboo Hat -->
|
||||
<item id="14751" price="0" /> <!-- Smart Glasses -->
|
||||
<item id="20017" price="0" /> <!-- Afro Hair -->
|
||||
<item id="20020" price="0" /> <!-- Uniform Hat -->
|
||||
<item id="20021" price="0" /> <!-- Assassin's Bamboo Hat -->
|
||||
<item id="20022" price="0" /> <!-- Ruthless Tribe Mask -->
|
||||
<item id="20023" price="0" /> <!-- Ribbon Hairband -->
|
||||
<item id="20024" price="0" /> <!-- Visor -->
|
||||
<item id="20031" price="0" /> <!-- Kat the Cat Hat -->
|
||||
<item id="20032" price="0" /> <!-- Skull Hat -->
|
||||
<item id="20095" price="0" /> <!-- Santa Horn Hat -->
|
||||
<item id="20100" price="0" /> <!-- Saving Santa Hat - 24-hour limited period -->
|
||||
<item id="20275" price="0" /> <!-- Gold Afro -->
|
||||
<item id="20276" price="0" /> <!-- Pink Afro -->
|
||||
<item id="20321" price="0" /> <!-- Goggle -->
|
||||
<item id="20322" price="0" /> <!-- Napoleon Hat -->
|
||||
<item id="20323" price="0" /> <!-- Horn Hairband -->
|
||||
<item id="20324" price="0" /> <!-- Black Gem Mask -->
|
||||
<item id="20325" price="0" /> <!-- Plastic Hair -->
|
||||
<item id="22156" price="0" /> <!-- Daisy Hairpin -->
|
||||
<item id="22157" price="0" /> <!-- Forget-me-not Hairpin -->
|
||||
<item id="22158" price="0" /> <!-- Outlaw's Eyepatch -->
|
||||
<item id="22159" price="0" /> <!-- Pirate's Eyepatch -->
|
||||
<item id="22160" price="0" /> <!-- Monocle -->
|
||||
<item id="22161" price="0" /> <!-- Red Mask of Victory -->
|
||||
<item id="22162" price="0" /> <!-- Red Horn of Victory -->
|
||||
<item id="22163" price="0" /> <!-- Party Mask -->
|
||||
<item id="22164" price="0" /> <!-- Red Party Mask -->
|
||||
<item id="22165" price="0" /> <!-- Cat Ears -->
|
||||
<item id="22166" price="0" /> <!-- Lady's Hair Pin -->
|
||||
<item id="22167" price="0" /> <!-- Raccoon Ears -->
|
||||
<item id="22168" price="0" /> <!-- Rabbit Ear -->
|
||||
<item id="22169" price="0" /> <!-- Little Angel Wings -->
|
||||
<item id="22170" price="0" /> <!-- Fairy's Tentacle -->
|
||||
<item id="22171" price="0" /> <!-- Dandy's Chapeau -->
|
||||
<item id="22172" price="0" /> <!-- Artisan's Goggles -->
|
||||
</list>
|
||||
|
@ -1,6 +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="13552" price="0" /> <!-- Spellbook - Flying Final Form -->
|
||||
<item id="13553" price="0" /> <!-- Spellbook - Aurabird Falcon -->
|
||||
<item id="13554" price="0" /> <!-- Spellbook - Aurabird Owl -->
|
||||
</list>
|
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||
<item id="8193" price="0" /> <!-- Fisherman's Potion - Green -->
|
||||
<item id="8194" price="0" /> <!-- Fisherman's Potion - Jade -->
|
||||
@ -9,5 +9,5 @@
|
||||
<item id="8199" price="0" /> <!-- Fisherman's Potion - Red -->
|
||||
<item id="8200" price="0" /> <!-- Fisherman's Potion - White -->
|
||||
<item id="8201" price="0" /> <!-- Fisherman's Potion - Black -->
|
||||
<item id="8202" price="0" /> <!-- Fisherman's Potion -->
|
||||
<item id="8202" price="0" /> <!-- Fishing Potion -->
|
||||
</list>
|
||||
|
@ -1,62 +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="9376" price="0" /> <!-- Dynasty Rapier -->
|
||||
<item id="9377" price="0" /> <!-- Dynasty Rapier - Focus -->
|
||||
<item id="9378" price="0" /> <!-- Dynasty Rapier - Health -->
|
||||
<item id="9379" price="0" /> <!-- Dynasty Rapier - Light -->
|
||||
<item id="9380" price="0" /> <!-- Dynasty Ancient Sword -->
|
||||
<item id="9381" price="0" /> <!-- Dynasty Ancient Sword - Focus -->
|
||||
<item id="9382" price="0" /> <!-- Dynasty Ancient Sword - Health -->
|
||||
<item id="9383" price="0" /> <!-- Dynasty Ancient Sword - Light -->
|
||||
<item id="9384" price="0" /> <!-- Dynasty Crossbow -->
|
||||
<item id="9385" price="0" /> <!-- Dynasty Crossbow - Cheap Shot -->
|
||||
<item id="9386" price="0" /> <!-- Dynasty Crossbow - Guidance -->
|
||||
<item id="9387" price="0" /> <!-- Dynasty Crossbow - Focus -->
|
||||
<item id="9441" price="0" /> <!-- Dynasty Shield -->
|
||||
<item id="9442" price="0" /> <!-- Dynasty Sword -->
|
||||
<item id="9443" price="0" /> <!-- Dynasty Blade -->
|
||||
<item id="9444" price="0" /> <!-- Dynasty Phantom -->
|
||||
<item id="9445" price="0" /> <!-- Dynasty Bow -->
|
||||
<item id="9446" price="0" /> <!-- Dynasty Knife -->
|
||||
<item id="9447" price="0" /> <!-- Dynasty Halberd -->
|
||||
<item id="9448" price="0" /> <!-- Dynasty Cudgel -->
|
||||
<item id="9449" price="0" /> <!-- Dynasty Mace -->
|
||||
<item id="9450" price="0" /> <!-- Dynasty Bagh-Nakh -->
|
||||
<item id="9854" price="0" /> <!-- Dynasty Sword - Focus -->
|
||||
<item id="9855" price="0" /> <!-- Dynasty Sword - Health -->
|
||||
<item id="9856" price="0" /> <!-- Dynasty Sword - Light -->
|
||||
<item id="9857" price="0" /> <!-- Dynasty Blade - Focus -->
|
||||
<item id="9858" price="0" /> <!-- Dynasty Blade - Health -->
|
||||
<item id="9859" price="0" /> <!-- Dynasty Blade - Light -->
|
||||
<item id="9860" price="0" /> <!-- Dynasty Phantom - Acumen -->
|
||||
<item id="9861" price="0" /> <!-- Dynasty Phantom - Mana Up -->
|
||||
<item id="9862" price="0" /> <!-- Dynasty Phantom - Conversion -->
|
||||
<item id="9863" price="0" /> <!-- Dynasty Bow - Cheap Shot -->
|
||||
<item id="9864" price="0" /> <!-- Dynasty Bow - Guidance -->
|
||||
<item id="9865" price="0" /> <!-- Dynasty Bow - Focus -->
|
||||
<item id="9866" price="0" /> <!-- Dynasty Knife - Focus -->
|
||||
<item id="9867" price="0" /> <!-- Dynasty Knife - Evasion -->
|
||||
<item id="9868" price="0" /> <!-- Dynasty Knife - Critical Damage -->
|
||||
<item id="9869" price="0" /> <!-- Dynasty Halberd - Anger -->
|
||||
<item id="9870" price="0" /> <!-- Dynasty Halberd - Critical Stun -->
|
||||
<item id="9871" price="0" /> <!-- Dynasty Halberd - Light -->
|
||||
<item id="9872" price="0" /> <!-- Dynasty Cudgel - Anger -->
|
||||
<item id="9873" price="0" /> <!-- Dynasty Cudgel - Health -->
|
||||
<item id="9874" price="0" /> <!-- Dynasty Cudgel - Rsk. Focus -->
|
||||
<item id="9875" price="0" /> <!-- Dynasty Mace - Mana Up -->
|
||||
<item id="9876" price="0" /> <!-- Dynasty Mace - Conversion -->
|
||||
<item id="9877" price="0" /> <!-- Dynasty Mace - Acumen -->
|
||||
<item id="9878" price="0" /> <!-- Dynasty Bagh-Nakh - Rsk. Evasion -->
|
||||
<item id="9879" price="0" /> <!-- Dynasty Bagh-Nakh - Focus -->
|
||||
<item id="9880" price="0" /> <!-- Dynasty Bagh-Nakh - Haste -->
|
||||
<item id="10004" price="0" /> <!-- Dynasty Dual Sword -->
|
||||
<item id="10252" price="0" /> <!-- Dynasty Staff -->
|
||||
<item id="10527" price="0" /> <!-- Dynasty Staff - Mana Up -->
|
||||
<item id="10528" price="0" /> <!-- Dynasty Staff - Conversion -->
|
||||
<item id="10529" price="0" /> <!-- Dynasty Staff - Acumen -->
|
||||
<item id="10253" price="0" /> <!-- Dynasty Crusher -->
|
||||
<item id="10530" price="0" /> <!-- Dynasty Crusher - Anger -->
|
||||
<item id="10531" price="0" /> <!-- Dynasty Crusher - Health -->
|
||||
<item id="10532" price="0" /> <!-- Dynasty Crusher - Rsk. Focus -->
|
||||
<item id="13882" price="0" /> <!-- Dynasty Dual Daggers -->
|
||||
</list>
|
@ -1,53 +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="10215" price="0" /> <!-- Icarus Sawsword -->
|
||||
<item id="10216" price="0" /> <!-- Icarus Disperser -->
|
||||
<item id="10217" price="0" /> <!-- Icarus Spirit -->
|
||||
<item id="10218" price="0" /> <!-- Icarus Heavy Arms -->
|
||||
<item id="10219" price="0" /> <!-- Icarus Trident -->
|
||||
<item id="10220" price="0" /> <!-- Icarus Hammer -->
|
||||
<item id="10221" price="0" /> <!-- Icarus Hand -->
|
||||
<item id="10222" price="0" /> <!-- Icarus Hall -->
|
||||
<item id="10223" price="0" /> <!-- Icarus Spitter -->
|
||||
<item id="10224" price="0" /> <!-- Icarus Stinger -->
|
||||
<item id="10225" price="0" /> <!-- Icarus Wingblade -->
|
||||
<item id="10226" price="0" /> <!-- Icarus Shooter -->
|
||||
<item id="10415" price="0" /> <!-- Icarus Dual Sword -->
|
||||
<item id="10434" price="0" /> <!-- Icarus Sawsword - Focus -->
|
||||
<item id="10435" price="0" /> <!-- Icarus Sawsword - Health -->
|
||||
<item id="10436" price="0" /> <!-- Icarus Sawsword - Light -->
|
||||
<item id="10437" price="0" /> <!-- Icarus Heavy Arms - Focus -->
|
||||
<item id="10438" price="0" /> <!-- Icarus Heavy Arms - Health -->
|
||||
<item id="10439" price="0" /> <!-- Icarus Heavy Arms - Light -->
|
||||
<item id="10440" price="0" /> <!-- Icarus Spirit - Acumen -->
|
||||
<item id="10441" price="0" /> <!-- Icarus Spirit - Mana Up -->
|
||||
<item id="10442" price="0" /> <!-- Icarus Spirit - Conversion -->
|
||||
<item id="10443" price="0" /> <!-- Icarus Spitter - Cheap Shot -->
|
||||
<item id="10444" price="0" /> <!-- Icarus Spitter - Guidance -->
|
||||
<item id="10445" price="0" /> <!-- Icarus Spitter - Focus -->
|
||||
<item id="10446" price="0" /> <!-- Icarus Disperser - Focus -->
|
||||
<item id="10447" price="0" /> <!-- Icarus Disperser - Evasion -->
|
||||
<item id="10448" price="0" /> <!-- Icarus Disperser - Critical Damage -->
|
||||
<item id="10449" price="0" /> <!-- Icarus Trident - Anger -->
|
||||
<item id="10450" price="0" /> <!-- Icarus Trident - Critical Stun -->
|
||||
<item id="10451" price="0" /> <!-- Icarus Trident - Light -->
|
||||
<item id="10452" price="0" /> <!-- Icarus Hammer - Anger -->
|
||||
<item id="10453" price="0" /> <!-- Icarus Hammer - Health -->
|
||||
<item id="10454" price="0" /> <!-- Icarus Hammer - Rsk. Focus -->
|
||||
<item id="10455" price="0" /> <!-- Icarus Hall - Mana Up -->
|
||||
<item id="10456" price="0" /> <!-- Icarus Hall - Conversion -->
|
||||
<item id="10457" price="0" /> <!-- Icarus Hall - Acumen -->
|
||||
<item id="10458" price="0" /> <!-- Icarus Hand - Rsk. Evasion -->
|
||||
<item id="10459" price="0" /> <!-- Icarus Hand - Focus -->
|
||||
<item id="10460" price="0" /> <!-- Icarus Hand - Haste -->
|
||||
<item id="10461" price="0" /> <!-- Icarus Stinger - Focus -->
|
||||
<item id="10462" price="0" /> <!-- Icarus Stinger - Health -->
|
||||
<item id="10463" price="0" /> <!-- Icarus Stinger - Light -->
|
||||
<item id="10464" price="0" /> <!-- Icarus Wingblade - Focus -->
|
||||
<item id="10465" price="0" /> <!-- Icarus Wingblade - Health -->
|
||||
<item id="10466" price="0" /> <!-- Icarus Wingblade - Light -->
|
||||
<item id="10467" price="0" /> <!-- Icarus Shooter - Cheap Shot -->
|
||||
<item id="10468" price="0" /> <!-- Icarus Shooter - Guidance -->
|
||||
<item id="10469" price="0" /> <!-- Icarus Shooter - Focus -->
|
||||
<item id="13883" price="0" /> <!-- Icarus Dual Daggers -->
|
||||
</list>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user