Merged with released L2J-Unity files.
This commit is contained in:
@@ -2,9 +2,14 @@
|
|||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
|
||||||
<classpathentry kind="lib" path="dist/libs/c3p0-0.9.5.2.jar"/>
|
<classpathentry kind="lib" path="dist/libs/c3p0-0.9.5.2.jar"/>
|
||||||
|
<classpathentry kind="lib" path="dist/libs/cron4j-2.2.5.jar"/>
|
||||||
<classpathentry kind="lib" path="dist/libs/ecj-4.4.2.jar"/>
|
<classpathentry kind="lib" path="dist/libs/ecj-4.4.2.jar"/>
|
||||||
|
<classpathentry kind="lib" path="dist/libs/exp4j-0.4.7.jar"/>
|
||||||
|
<classpathentry kind="lib" path="dist/libs/googleauth-1.1.0.jar"/>
|
||||||
|
<classpathentry kind="lib" path="dist/libs/mail-1.5.2.jar"/>
|
||||||
<classpathentry kind="lib" path="dist/libs/mchange-commons-java-0.2.11.jar"/>
|
<classpathentry kind="lib" path="dist/libs/mchange-commons-java-0.2.11.jar"/>
|
||||||
<classpathentry kind="lib" path="dist/libs/mysql-connector-java-5.1.38-bin.jar"/>
|
<classpathentry kind="lib" path="dist/libs/mysql-connector-java-5.1.38-bin.jar"/>
|
||||||
|
<classpathentry kind="lib" path="dist/libs/netty-all-5.0.0.Alpha2.jar"/>
|
||||||
<classpathentry including="**/*.java" kind="src" path="dist/game/data/scripts"/>
|
<classpathentry including="**/*.java" kind="src" path="dist/game/data/scripts"/>
|
||||||
<classpathentry kind="src" path="java"/>
|
<classpathentry kind="src" path="java"/>
|
||||||
<classpathentry kind="output" path="bin"/>
|
<classpathentry kind="output" path="bin"/>
|
||||||
|
|||||||
@@ -15,6 +15,14 @@ org.eclipse.jdt.core.compiler.annotation.nonnull=org.eclipse.jdt.annotation.NonN
|
|||||||
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
|
org.eclipse.jdt.core.compiler.annotation.nonnullbydefault=org.eclipse.jdt.annotation.NonNullByDefault
|
||||||
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jdt.annotation.Nullable
|
||||||
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||||
|
org.eclipse.jdt.core.compiler.compliance=1.8
|
||||||
|
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||||
|
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||||
|
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||||
org.eclipse.jdt.core.compiler.doc.comment.support=enabled
|
org.eclipse.jdt.core.compiler.doc.comment.support=enabled
|
||||||
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
org.eclipse.jdt.core.compiler.problem.annotationSuperInterface=warning
|
||||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||||
@@ -114,6 +122,8 @@ org.eclipse.jdt.core.compiler.problem.unusedPrivateMember=warning
|
|||||||
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
|
||||||
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
|
||||||
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=warning
|
||||||
|
org.eclipse.jdt.core.compiler.source=1.8
|
||||||
|
org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines=99
|
||||||
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
|
||||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=0
|
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression=0
|
||||||
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0
|
org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation=0
|
||||||
|
|||||||
-17
@@ -1,17 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `auction`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `auction` (
|
|
||||||
`id` int(11) NOT NULL DEFAULT '0',
|
|
||||||
`sellerId` int(11) NOT NULL DEFAULT '0',
|
|
||||||
`sellerName` varchar(50) NOT NULL DEFAULT 'NPC',
|
|
||||||
`sellerClanName` varchar(50) NOT NULL DEFAULT '',
|
|
||||||
`itemType` varchar(25) NOT NULL DEFAULT '',
|
|
||||||
`itemId` int(11) NOT NULL DEFAULT '0',
|
|
||||||
`itemObjectId` int(11) NOT NULL DEFAULT '0',
|
|
||||||
`itemName` varchar(40) NOT NULL DEFAULT '',
|
|
||||||
`itemQuantity` BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
|
||||||
`startingBid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
|
||||||
`currentBid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
|
||||||
`endDate` bigint(13) unsigned NOT NULL DEFAULT '0',
|
|
||||||
PRIMARY KEY (`itemType`,`itemId`,`itemObjectId`),
|
|
||||||
KEY `id` (`id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
DROP TABLE IF EXISTS `character_daily_rewards`;
|
||||||
|
CREATE TABLE IF NOT EXISTS `character_daily_rewards` (
|
||||||
|
`charId` int(10) UNSIGNED NOT NULL ,
|
||||||
|
`rewardId` int(3) UNSIGNED NOT NULL ,
|
||||||
|
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 ,
|
||||||
|
`progress` int UNSIGNED NOT NULL DEFAULT 0 ,
|
||||||
|
`lastCompleted` bigint UNSIGNED NOT NULL ,
|
||||||
|
PRIMARY KEY (`charId`, `rewardId`)
|
||||||
|
);
|
||||||
@@ -3,6 +3,5 @@ CREATE TABLE IF NOT EXISTS `character_friends` (
|
|||||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`friendId` INT UNSIGNED NOT NULL DEFAULT 0,
|
`friendId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`relation` INT UNSIGNED NOT NULL DEFAULT 0,
|
`relation` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`memo` text,
|
|
||||||
PRIMARY KEY (`charId`,`friendId`)
|
PRIMARY KEY (`charId`,`friendId`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `character_quest_global_data`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `character_quest_global_data` (
|
|
||||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
|
||||||
`var` VARCHAR(20) NOT NULL DEFAULT '',
|
|
||||||
`value` VARCHAR(255) ,
|
|
||||||
PRIMARY KEY (`charId`,`var`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
@@ -5,9 +5,8 @@ CREATE TABLE IF NOT EXISTS `character_shortcuts` (
|
|||||||
`page` decimal(3) NOT NULL DEFAULT 0,
|
`page` decimal(3) NOT NULL DEFAULT 0,
|
||||||
`type` decimal(3) ,
|
`type` decimal(3) ,
|
||||||
`shortcut_id` decimal(16) ,
|
`shortcut_id` decimal(16) ,
|
||||||
`level` varchar(5) ,
|
`level` SMALLINT UNSIGNED ,
|
||||||
`class_index` int(1) NOT NULL DEFAULT '0',
|
`class_index` int(1) NOT NULL DEFAULT '0',
|
||||||
PRIMARY KEY (`charId`,`slot`,`page`,`class_index`),
|
PRIMARY KEY (`charId`,`slot`,`page`,`class_index`),
|
||||||
KEY `shortcut_id` (`shortcut_id`)
|
KEY `shortcut_id` (`shortcut_id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
ALTER TABLE `character_shortcuts` MODIFY COLUMN `level` varchar(9);
|
|
||||||
+1
-3
@@ -2,9 +2,7 @@ DROP TABLE IF EXISTS `character_skills`;
|
|||||||
CREATE TABLE IF NOT EXISTS `character_skills` (
|
CREATE TABLE IF NOT EXISTS `character_skills` (
|
||||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`skill_id` INT NOT NULL DEFAULT 0,
|
`skill_id` INT NOT NULL DEFAULT 0,
|
||||||
`skill_level` INT(3) NOT NULL DEFAULT 1,
|
`skill_level` INT(4) NOT NULL DEFAULT 1,
|
||||||
`class_index` INT(1) NOT NULL DEFAULT 0,
|
`class_index` INT(1) NOT NULL DEFAULT 0,
|
||||||
PRIMARY KEY (`charId`,`skill_id`,`class_index`)
|
PRIMARY KEY (`charId`,`skill_id`,`class_index`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
ALTER TABLE `character_skills` MODIFY COLUMN `skill_level` INT(4);
|
|
||||||
UPDATE `character_skills` SET skill_level=((skill_level % 100) + (round(skill_level / 100) * 1000)) WHERE skill_level <= 1000 AND skill_level >= 100;
|
|
||||||
@@ -2,7 +2,7 @@ DROP TABLE IF EXISTS `character_skills_save`;
|
|||||||
CREATE TABLE IF NOT EXISTS `character_skills_save` (
|
CREATE TABLE IF NOT EXISTS `character_skills_save` (
|
||||||
`charId` INT NOT NULL DEFAULT 0,
|
`charId` INT NOT NULL DEFAULT 0,
|
||||||
`skill_id` INT NOT NULL DEFAULT 0,
|
`skill_id` INT NOT NULL DEFAULT 0,
|
||||||
`skill_level` INT(3) NOT NULL DEFAULT 1,
|
`skill_level` INT(4) NOT NULL DEFAULT 1,
|
||||||
`remaining_time` INT NOT NULL DEFAULT 0,
|
`remaining_time` INT NOT NULL DEFAULT 0,
|
||||||
`reuse_delay` INT(8) NOT NULL DEFAULT 0,
|
`reuse_delay` INT(8) NOT NULL DEFAULT 0,
|
||||||
`systime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
`systime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||||
@@ -11,5 +11,3 @@ CREATE TABLE IF NOT EXISTS `character_skills_save` (
|
|||||||
`buff_index` INT(2) NOT NULL DEFAULT 0,
|
`buff_index` INT(2) NOT NULL DEFAULT 0,
|
||||||
PRIMARY KEY (`charId`,`skill_id`,`skill_level`,`class_index`)
|
PRIMARY KEY (`charId`,`skill_id`,`skill_level`,`class_index`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
ALTER TABLE `character_skills_save` MODIFY COLUMN `skill_level` INT(4);
|
|
||||||
UPDATE `character_skills_save` SET skill_level=((skill_level % 100) + (round(skill_level / 100) * 1000)) WHERE skill_level <= 1000 AND skill_level >= 100;
|
|
||||||
@@ -4,8 +4,8 @@ CREATE TABLE IF NOT EXISTS `character_subclasses` (
|
|||||||
`class_id` int(2) NOT NULL DEFAULT 0,
|
`class_id` int(2) NOT NULL DEFAULT 0,
|
||||||
`exp` bigint(20) NOT NULL DEFAULT 0,
|
`exp` bigint(20) NOT NULL DEFAULT 0,
|
||||||
`sp` bigint(10) NOT NULL DEFAULT 0,
|
`sp` bigint(10) NOT NULL DEFAULT 0,
|
||||||
`vitality_points` int(10) NOT NULL DEFAULT '140000',
|
|
||||||
`level` int(2) NOT NULL DEFAULT 40,
|
`level` int(2) NOT NULL DEFAULT 40,
|
||||||
|
`vitality_points` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`class_index` int(1) NOT NULL DEFAULT 0,
|
`class_index` int(1) NOT NULL DEFAULT 0,
|
||||||
`dual_class` BOOLEAN NOT NULL DEFAULT FALSE,
|
`dual_class` BOOLEAN NOT NULL DEFAULT FALSE,
|
||||||
PRIMARY KEY (`charId`,`class_id`)
|
PRIMARY KEY (`charId`,`class_id`)
|
||||||
|
|||||||
+4
-7
@@ -1,4 +1,3 @@
|
|||||||
DROP TABLE IF EXISTS `characters`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `characters` (
|
CREATE TABLE IF NOT EXISTS `characters` (
|
||||||
`account_name` VARCHAR(45) DEFAULT NULL,
|
`account_name` VARCHAR(45) DEFAULT NULL,
|
||||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
@@ -21,9 +20,9 @@ CREATE TABLE IF NOT EXISTS `characters` (
|
|||||||
`exp` BIGINT UNSIGNED DEFAULT 0,
|
`exp` BIGINT UNSIGNED DEFAULT 0,
|
||||||
`expBeforeDeath` BIGINT UNSIGNED DEFAULT 0,
|
`expBeforeDeath` BIGINT UNSIGNED DEFAULT 0,
|
||||||
`sp` BIGINT(10) UNSIGNED NOT NULL DEFAULT 0,
|
`sp` BIGINT(10) UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`reputation` INT UNSIGNED DEFAULT 0,
|
`reputation` INT DEFAULT NULL,
|
||||||
`fame` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
|
`fame` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`raidpoints` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
|
`raidbossPoints` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`pvpkills` SMALLINT UNSIGNED DEFAULT NULL,
|
`pvpkills` SMALLINT UNSIGNED DEFAULT NULL,
|
||||||
`pkkills` SMALLINT UNSIGNED DEFAULT NULL,
|
`pkkills` SMALLINT UNSIGNED DEFAULT NULL,
|
||||||
`clanid` INT UNSIGNED DEFAULT NULL,
|
`clanid` INT UNSIGNED DEFAULT NULL,
|
||||||
@@ -50,11 +49,9 @@ CREATE TABLE IF NOT EXISTS `characters` (
|
|||||||
`sponsor` INT UNSIGNED NOT NULL DEFAULT 0,
|
`sponsor` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`clan_join_expiry_time` bigint(13) unsigned NOT NULL DEFAULT '0',
|
`clan_join_expiry_time` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||||
`clan_create_expiry_time` bigint(13) unsigned NOT NULL DEFAULT '0',
|
`clan_create_expiry_time` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||||
`death_penalty_level` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
|
|
||||||
`bookmarkslot` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
|
`bookmarkslot` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`vitality_points` int(10) NOT NULL DEFAULT '140000',
|
`vitality_points` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`pccafe_points` int(6) DEFAULT NULL,
|
`createDate` date NOT NULL DEFAULT '0000-00-00',
|
||||||
`createDate` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
||||||
`language` VARCHAR(2) DEFAULT NULL,
|
`language` VARCHAR(2) DEFAULT NULL,
|
||||||
`faction` TINYINT UNSIGNED NOT NULL DEFAULT 0,
|
`faction` TINYINT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
PRIMARY KEY (`charId`),
|
PRIMARY KEY (`charId`),
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
DROP TABLE IF EXISTS `clan_variables`;
|
||||||
|
CREATE TABLE IF NOT EXISTS `clan_variables` (
|
||||||
|
`clanId` int(10) UNSIGNED NOT NULL,
|
||||||
|
`var` varchar(255) NOT NULL,
|
||||||
|
`val` text NOT NULL,
|
||||||
|
KEY `clanId` (`clanId`)
|
||||||
|
);
|
||||||
+6
-2
@@ -2,8 +2,12 @@ DROP TABLE IF EXISTS `clan_wars`;
|
|||||||
CREATE TABLE IF NOT EXISTS `clan_wars` (
|
CREATE TABLE IF NOT EXISTS `clan_wars` (
|
||||||
`clan1` varchar(35) NOT NULL DEFAULT '',
|
`clan1` varchar(35) NOT NULL DEFAULT '',
|
||||||
`clan2` varchar(35) NOT NULL DEFAULT '',
|
`clan2` varchar(35) NOT NULL DEFAULT '',
|
||||||
`wantspeace1` decimal(1,0) NOT NULL DEFAULT '0',
|
`clan1Kill` int(11) NOT NULL DEFAULT 0,
|
||||||
`wantspeace2` decimal(1,0) NOT NULL DEFAULT '0',
|
`clan2Kill` int(11) NOT NULL DEFAULT 0,
|
||||||
|
`winnerClan` varchar(35) NOT NULL DEFAULT '0',
|
||||||
|
`startTime` bigint(13) NOT NULL DEFAULT 0,
|
||||||
|
`endTime` bigint(13) NOT NULL DEFAULT 0,
|
||||||
|
`state` tinyint(4) NOT NULL DEFAULT 0,
|
||||||
KEY `clan1` (`clan1`),
|
KEY `clan1` (`clan1`),
|
||||||
KEY `clan2` (`clan2`)
|
KEY `clan2` (`clan2`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
-46
@@ -1,54 +1,8 @@
|
|||||||
DROP TABLE IF EXISTS `clanhall`;
|
DROP TABLE IF EXISTS `clanhall`;
|
||||||
CREATE TABLE IF NOT EXISTS `clanhall` (
|
CREATE TABLE IF NOT EXISTS `clanhall` (
|
||||||
`id` int(11) NOT NULL DEFAULT '0',
|
`id` int(11) NOT NULL DEFAULT '0',
|
||||||
`name` varchar(40) NOT NULL DEFAULT '',
|
|
||||||
`ownerId` int(11) NOT NULL DEFAULT '0',
|
`ownerId` int(11) NOT NULL DEFAULT '0',
|
||||||
`lease` int(10) NOT NULL DEFAULT '0',
|
|
||||||
`desc` text NOT NULL,
|
|
||||||
`location` varchar(15) NOT NULL DEFAULT '',
|
|
||||||
`paidUntil` bigint(13) unsigned NOT NULL DEFAULT '0',
|
`paidUntil` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||||
`Grade` decimal(1,0) NOT NULL DEFAULT '0',
|
|
||||||
`paid` int( 1 ) NOT NULL DEFAULT '0',
|
|
||||||
PRIMARY KEY `id` (`id`),
|
PRIMARY KEY `id` (`id`),
|
||||||
KEY `ownerId` (`ownerId`)
|
KEY `ownerId` (`ownerId`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
INSERT IGNORE INTO `clanhall` VALUES
|
|
||||||
('22','Moonstone Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
|
|
||||||
('23','Onyx Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
|
|
||||||
('24','Topaz Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
|
|
||||||
('25','Ruby Hall','0','500000','Clan hall located in the Town of Gludio','Gludio','0','2','0'),
|
|
||||||
('26','Crystal Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
|
|
||||||
('27','Onyx Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
|
|
||||||
('28','Sapphire Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
|
|
||||||
('29','Moonstone Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
|
|
||||||
('30','Emerald Hall','0','500000','Clan hall located in Gludin Village','Gludin','0','2','0'),
|
|
||||||
('31','The Atramental Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
|
|
||||||
('32','The Scarlet Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
|
|
||||||
('33','The Viridian Barracks','0','200000','Clan hall located in the Town of Dion','Dion','0','1','0'),
|
|
||||||
('36','The Golden Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
|
|
||||||
('37','The Silver Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
|
|
||||||
('38','The Mithril Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
|
|
||||||
('39','Silver Manor','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
|
|
||||||
('40','Gold Manor','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
|
|
||||||
('41','The Bronze Chamber','0','1000000','Clan hall located in the Town of Aden','Aden','0','3','0'),
|
|
||||||
('42','The Golden Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
|
|
||||||
('43','The Silver Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
|
|
||||||
('44','The Mithril Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
|
|
||||||
('45','The Bronze Chamber','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
|
|
||||||
('46','Silver Manor','0','1000000','Clan hall located in the Town of Giran','Giran','0','3','0'),
|
|
||||||
('47','Moonstone Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
|
|
||||||
('48','Onyx Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
|
|
||||||
('49','Emerald Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
|
|
||||||
('50','Sapphire Hall','0','1000000','Clan hall located in the Town of Goddard','Goddard','0','3','0'),
|
|
||||||
('51','Mont Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
|
|
||||||
('52','Astaire Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
|
|
||||||
('53','Aria Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
|
|
||||||
('54','Yiana Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
|
|
||||||
('55','Roien Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
|
|
||||||
('56','Luna Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
|
|
||||||
('57','Traban Chamber','0','1000000','An upscale Clan hall located in the Rune Township','Rune','0','3','0'),
|
|
||||||
('58','Eisen Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
|
|
||||||
('59','Heavy Metal Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
|
|
||||||
('60','Molten Ore Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0'),
|
|
||||||
('61','Titan Hall','0','500000','Clan hall located in the Town of Schuttgart','Schuttgart','0','2','0');
|
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
DROP TABLE IF EXISTS `clanhall_auctions_bidders`;
|
||||||
|
CREATE TABLE IF NOT EXISTS `clanhall_auctions_bidders` (
|
||||||
|
`clanHallId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
|
`clanId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
|
`bid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
|
`bidTime` BIGINT(13) UNSIGNED NOT NULL DEFAULT 0,
|
||||||
|
PRIMARY KEY( `clanHallId`, `clanId`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `clanhall_functions`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `clanhall_functions` (
|
|
||||||
`hall_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 (`hall_id`,`type`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `clanhall_siege_attackers`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `clanhall_siege_attackers` (
|
|
||||||
`clanhall_id` int(3) NOT NULL DEFAULT '0',
|
|
||||||
`attacker_id` int(10) NOT NULL DEFAULT '0'
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
@@ -1,785 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `clanhall_siege_guards`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `clanhall_siege_guards` (
|
|
||||||
`clanHallId` tinyint(2) unsigned NOT NULL DEFAULT '0',
|
|
||||||
`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',
|
|
||||||
`respawnDelay` mediumint(5) NOT NULL DEFAULT '0',
|
|
||||||
`isSiegeBoss` enum('false','true') NOT NULL DEFAULT 'false',
|
|
||||||
KEY `clanHallId` (`clanHallId`)
|
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
INSERT INTO `clanhall_siege_guards` VALUES
|
|
||||||
-- Devasted Castle
|
|
||||||
-- Front Gate
|
|
||||||
(34,35408,178306,-17535,-2200,32768,7200,'false'),
|
|
||||||
(34,35409,178304,-17712,-2200,32768,7200,'false'),
|
|
||||||
(34,35413,178222,-14944,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178255,-14944,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178288,-14944,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178321,-14944,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178354,-14944,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178387,-14944,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178420,-14944,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178454,-14944,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178222,-14924,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178255,-14924,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178288,-14924,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178321,-14924,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178354,-14924,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178387,-14924,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178420,-14924,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,178454,-14924,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178222,-14904,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178255,-14904,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178288,-14904,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178321,-14904,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178354,-14904,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178387,-14904,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178420,-14904,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178454,-14904,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178222,-14884,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178255,-14884,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178288,-14884,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178321,-14884,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178354,-14884,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178387,-14884,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178420,-14884,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,178454,-14884,-2200,16384,7200,'false'),
|
|
||||||
-- East Terrace
|
|
||||||
(34,35413,178801,-14975,-2080,16384,7200,'false'),
|
|
||||||
(34,35413,178822,-14936,-2080,16384,7200,'false'),
|
|
||||||
(34,35413,178843,-14897,-2080,16384,7200,'false'),
|
|
||||||
(34,35413,178865,-14857,-2080,16384,7200,'false'),
|
|
||||||
(34,35413,178886,-14818,-2080,16384,7200,'false'),
|
|
||||||
(34,35413,178908,-14778,-2080,16384,7200,'false'),
|
|
||||||
(34,35413,178929,-14739,-2080,16384,7200,'false'),
|
|
||||||
(34,35413,178951,-14699,-2080,16384,7200,'false'),
|
|
||||||
-- West Terrace
|
|
||||||
(34,35413,177834,-15015,-2210,16384,7200,'false'),
|
|
||||||
(34,35413,177803,-14971,-2210,16384,7200,'false'),
|
|
||||||
(34,35413,177772,-14927,-2210,16384,7200,'false'),
|
|
||||||
(34,35413,177741,-14883,-2210,16384,7200,'false'),
|
|
||||||
(34,35413,177711,-14838,-2210,16384,7200,'false'),
|
|
||||||
(34,35413,177680,-14794,-2210,16384,7200,'false'),
|
|
||||||
(34,35413,177649,-14750,-2210,16384,7200,'false'),
|
|
||||||
(34,35413,177619,-14705,-2210,16384,7200,'false'),
|
|
||||||
-- Area 2 (back wall of resistance)
|
|
||||||
(34,35413,178640,-18216,-2200,-16384,7200,'false'),
|
|
||||||
(34,35413,178661,-18218,-2200,-16384,7200,'false'),
|
|
||||||
(34,35413,178682,-18220,-2200,-16384,7200,'false'),
|
|
||||||
(34,35413,178703,-18222,-2200,-16384,7200,'false'),
|
|
||||||
(34,35413,178724,-18224,-2200,-16384,7200,'false'),
|
|
||||||
(34,35413,178745,-18226,-2200,-16384,7200,'false'),
|
|
||||||
(34,35413,178766,-18228,-2200,-16384,7200,'false'),
|
|
||||||
(34,35413,178788,-18229,-2200,-16384,7200,'false'),
|
|
||||||
(34,35414,178640,-18196,-2200,-16384,7200,'false'),
|
|
||||||
(34,35414,178661,-18198,-2200,-16384,7200,'false'),
|
|
||||||
(34,35414,178682,-18200,-2200,-16384,7200,'false'),
|
|
||||||
(34,35414,178703,-18202,-2200,-16384,7200,'false'),
|
|
||||||
(34,35414,178724,-18204,-2200,-16384,7200,'false'),
|
|
||||||
(34,35414,178745,-18206,-2200,-16384,7200,'false'),
|
|
||||||
(34,35414,178766,-18208,-2200,-16384,7200,'false'),
|
|
||||||
(34,35414,178788,-18209,-2200,-16384,7200,'false'),
|
|
||||||
(34,35412,178640,-18176,-2200,-16384,7200,'false'),
|
|
||||||
(34,35412,178661,-18178,-2200,-16384,7200,'false'),
|
|
||||||
(34,35412,178682,-18180,-2200,-16384,7200,'false'),
|
|
||||||
(34,35412,178703,-18182,-2200,-16384,7200,'false'),
|
|
||||||
(34,35412,178724,-18184,-2200,-16384,7200,'false'),
|
|
||||||
(34,35412,178745,-18186,-2200,-16384,7200,'false'),
|
|
||||||
(34,35412,178766,-18188,-2200,-16384,7200,'false'),
|
|
||||||
(34,35412,178788,-18189,-2200,-16384,7200,'false'),
|
|
||||||
-- Area 3
|
|
||||||
(34,35413,177335,-17128,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,177305,-17128,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,177276,-17128,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,177246,-17128,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,177217,-17128,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,177187,-17128,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,177158,-17128,-2200,16384,7200,'false'),
|
|
||||||
(34,35413,177129,-17128,-2200,16384,7200,'false'),
|
|
||||||
(34,35414,177335,-17148,-2200,16384,7200,'false'),
|
|
||||||
(34,35414,177305,-17148,-2200,16384,7200,'false'),
|
|
||||||
(34,35414,177276,-17148,-2200,16384,7200,'false'),
|
|
||||||
(34,35414,177246,-17148,-2200,16384,7200,'false'),
|
|
||||||
(34,35414,177217,-17148,-2200,16384,7200,'false'),
|
|
||||||
(34,35414,177187,-17148,-2200,16384,7200,'false'),
|
|
||||||
(34,35414,177158,-17148,-2200,16384,7200,'false'),
|
|
||||||
(34,35414,177129,-17148,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,177335,-17168,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,177305,-17168,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,177276,-17168,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,177246,-17168,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,177217,-17168,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,177187,-17168,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,177158,-17168,-2200,16384,7200,'false'),
|
|
||||||
(34,35412,177129,-17168,-2200,16384,7200,'false'),
|
|
||||||
-- Region 1 (left)
|
|
||||||
(34,35413,177707,-15427,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177727,-15464,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177680,-15485,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177745,-15498,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177769,-15540,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177722,-15561,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177788,-15578,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177811,-15622,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177765,-15643,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177838,-15664,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177859,-15704,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177813,-15726,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177880,-15744,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177906,-15791,-2226,3000,7200,'false'),
|
|
||||||
(34,35413,177859,-15812,-2226,3000,7200,'false'),
|
|
||||||
(34,35411,177470,-15856,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177506,-15887,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177627,-15953,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177703,-15999,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177400,-15854,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177517,-15930,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177564,-15963,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177608,-15985,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177709,-16043,-2253,10000,7200,'false'),
|
|
||||||
(34,35411,177387,-15955,-2250,10000,7200,'false'),
|
|
||||||
(34,35411,177661,-16014,-2253,10000,7200,'false'),
|
|
||||||
(34,35411,177308,-15861,-2253,10000,7200,'false'),
|
|
||||||
(34,35411,177606,-16035,-2253,10000,7200,'false'),
|
|
||||||
(34,35411,177861,-16164,-2253,10000,7200,'false'),
|
|
||||||
(34,35411,177810,-16145,-2253,10000,7200,'false'),
|
|
||||||
(34,35411,177719,-15951,-2253,10000,7200,'false'),
|
|
||||||
(34,35411,177667,-15921,-2253,10000,7200,'false'),
|
|
||||||
(34,35415,177428,-15981,-2250,10000,7200,'false'),
|
|
||||||
(34,35415,177473,-16011,-2250,10000,7200,'false'),
|
|
||||||
(34,35415,177612,-16090,-2250,10000,7200,'false'),
|
|
||||||
(34,35415,177657,-16113,-2250,10000,7200,'false'),
|
|
||||||
(34,35415,177387,-15996,-2250,10000,7200,'false'),
|
|
||||||
(34,35415,177433,-16026,-2250,10000,7200,'false'),
|
|
||||||
(34,35415,177530,-16079,-2250,10000,7200,'false'),
|
|
||||||
(34,35415,177571,-16105,-2250,10000,7200,'false'),
|
|
||||||
(34,35415,177663,-16154,-2250,10000,7200,'false'),
|
|
||||||
-- Region 1 (right)
|
|
||||||
(34,35413,179009,-15201,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179052,-15226,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179073,-15203,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179101,-15253,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179144,-15271,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179164,-15247,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179189,-15286,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179226,-15309,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179246,-15285,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179260,-15341,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179302,-15372,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179322,-15349,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179341,-15406,-2221,40000,7200,'false'),
|
|
||||||
(34,35413,179391,-15439,-2221,40000,7200,'false'),
|
|
||||||
(34,35411,179327,-16101,-2253,25000,7200,'false'),
|
|
||||||
(34,35411,179426,-16009,-2253,25000,7200,'false'),
|
|
||||||
(34,35415,179491,-15981,-2256,25000,7200,'false'),
|
|
||||||
(34,35415,179503,-15925,-2256,25000,7200,'false'),
|
|
||||||
(34,35415,179544,-15882,-2256,25000,7200,'false'),
|
|
||||||
(34,35415,179570,-15901,-2256,25000,7200,'false'),
|
|
||||||
(34,35415,179279,-16219,-2256,25000,7200,'false'),
|
|
||||||
(34,35415,179370,-16196,-2256,25000,7200,'false'),
|
|
||||||
(34,35415,179408,-16158,-2256,25000,7200,'false'),
|
|
||||||
(34,35415,179562,-15984,-2256,25000,7200,'false'),
|
|
||||||
(34,35415,179599,-15943,-2256,25000,7200,'false'),
|
|
||||||
-- Region 2
|
|
||||||
(34,35411,179433,-16991,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179715,-17454,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179438,-16875,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179540,-16876,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179593,-16876,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179485,-17213,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179537,-17214,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179641,-17215,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179542,-17453,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179594,-17453,-2246,16384,1200,'false'),
|
|
||||||
(34,35411,179444,-16937,-2256,16384,1200,'false'),
|
|
||||||
(34,35411,179468,-17280,-2256,16384,1200,'false'),
|
|
||||||
(34,35411,179514,-17281,-2256,16384,1200,'false'),
|
|
||||||
(34,35411,179479,-17133,-2256,16384,1200,'false'),
|
|
||||||
(34,35411,179525,-17135,-2256,16384,1200,'false'),
|
|
||||||
(34,35415,179576,-17137,-2256,16384,1200,'false'),
|
|
||||||
(34,35415,179633,-17137,-2256,16384,1200,'false'),
|
|
||||||
(34,35415,179436,-17776,-2256,16384,1200,'false'),
|
|
||||||
(34,35415,179636,-17780,-2256,16384,1200,'false'),
|
|
||||||
(34,35415,179697,-17781,-2256,16384,1200,'false'),
|
|
||||||
(34,35415,179446,-17391,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179508,-17341,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179432,-17719,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179437,-17522,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179557,-17524,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179707,-17722,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179604,-17525,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179665,-17527,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179534,-17892,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179436,-17841,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179482,-17841,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179536,-17842,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179694,-17897,-2252,16384,1200,'false'),
|
|
||||||
(34,35415,179696,-17844,-2252,16384,1200,'false'),
|
|
||||||
-- Region 3
|
|
||||||
(34,35413,178578,-18383,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178577,-18422,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178576,-18461,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178575,-18500,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178574,-18539,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178573,-18577,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178571,-18618,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178571,-18657,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178571,-18697,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178570,-18736,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178530,-18382,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178530,-18421,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178528,-18461,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178528,-18499,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178526,-18538,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178526,-18576,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178524,-18618,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178523,-18656,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178523,-18696,-2250,0,7200,'false'),
|
|
||||||
(34,35413,178523,-18735,-2250,0,7200,'false'),
|
|
||||||
-- Region 4
|
|
||||||
(34,35413,178437,-16548,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178437,-16587,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178435,-16627,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178435,-16665,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178433,-16704,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178433,-16742,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178431,-16784,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178431,-16822,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178430,-16862,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178430,-16901,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178161,-16562,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178160,-16600,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178158,-16640,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178158,-16679,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178156,-16718,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178156,-16756,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178154,-16797,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178154,-16836,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178153,-16876,-2217,0,7200,'false'),
|
|
||||||
(34,35413,178153,-16914,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177876,-16558,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177876,-16597,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177874,-16637,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177873,-16675,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177872,-16714,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177871,-16752,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177870,-16794,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177869,-16832,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177869,-16873,-2217,0,7200,'false'),
|
|
||||||
(34,35413,177868,-16911,-2217,0,7200,'false'),
|
|
||||||
(34,35411,178403,-16566,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178398,-16781,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178397,-16824,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178395,-16865,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178326,-16720,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178324,-16762,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178324,-16804,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178122,-16672,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178120,-16714,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178122,-16759,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178117,-16885,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178061,-16738,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178063,-16784,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178060,-16826,-2218,0,7200,'false'),
|
|
||||||
(34,35411,178060,-16868,-2218,0,7200,'false'),
|
|
||||||
(34,35415,178366,-16582,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178366,-16674,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178366,-16721,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178363,-16768,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178290,-16550,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178290,-16690,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178288,-16783,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178285,-16832,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178095,-16736,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178092,-16782,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178090,-16878,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178029,-16587,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178029,-16727,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178027,-16773,-2217,0,7200,'false'),
|
|
||||||
(34,35415,178027,-16820,-2217,0,7200,'false'),
|
|
||||||
-- Region 5
|
|
||||||
(34,35413,177466,-17397,-2207,32768,7200,'false'),
|
|
||||||
(34,35415,177440,-17380,-2215,32768,7200,'false'),
|
|
||||||
(34,35416,177501,-17384,-2219,32768,7200,'false'),
|
|
||||||
(34,35415,177439,-17426,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177438,-17472,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177436,-17605,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177432,-17791,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177431,-17836,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177559,-17708,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177558,-17755,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177564,-17425,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177561,-17563,-2215,32768,7200,'false'),
|
|
||||||
(34,35413,177466,-17445,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177466,-17537,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177466,-17627,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177466,-17716,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177467,-17809,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177603,-17446,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177603,-17539,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177604,-17628,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177604,-17718,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177601,-17811,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177693,-17447,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177693,-17539,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177693,-17629,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177693,-17718,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177694,-17811,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177396,-17452,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177396,-17545,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177397,-17634,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177397,-17723,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177398,-17817,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177749,-17446,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177749,-17538,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177750,-17628,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177750,-17717,-2207,32768,7200,'false'),
|
|
||||||
(34,35413,177751,-17810,-2207,32768,7200,'false'),
|
|
||||||
(34,35415,177531,-17399,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177527,-17537,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177527,-17578,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177524,-17763,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177523,-17810,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177636,-17516,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177635,-17603,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177633,-17740,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177632,-17788,-2215,32768,7200,'false'),
|
|
||||||
(34,35415,177631,-17835,-2215,32768,7200,'false'),
|
|
||||||
(34,35416,177501,-17424,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177500,-17469,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177496,-17645,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177496,-17686,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177666,-17508,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177664,-17559,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177664,-17599,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177662,-17644,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177662,-17685,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177661,-17818,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177728,-17377,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177725,-17503,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177724,-17553,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177724,-17594,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177722,-17728,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177722,-17768,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177721,-17813,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177567,-17376,-2219,32768,7200,'false'),
|
|
||||||
(34,35416,177560,-17849,-2219,32768,7200,'false'),
|
|
||||||
-- Region 6
|
|
||||||
(34,35410,178298,-17624,-2194,32768,7200,'true');
|
|
||||||
|
|
||||||
INSERT INTO `clanhall_siege_guards` VALUES
|
|
||||||
-- Partisan's Hideaway (Fortress of Resistance)
|
|
||||||
-- Mercury Monster
|
|
||||||
(21,35369,44545,108867,-2020,0,60,'false'),
|
|
||||||
(21,35369,44505,108867,-2020,0,60,'false'),
|
|
||||||
(21,35371,44535,108884,-2020,0,60,'false'),
|
|
||||||
(21,35371,44515,108884,-2020,0,60,'false'),
|
|
||||||
(21,35371,44515,108850,-2020,0,60,'false'),
|
|
||||||
(21,35371,44535,108850,-2020,0,60,'false'),
|
|
||||||
(21,35370,44565,108867,-2020,0,60,'false'),
|
|
||||||
(21,35370,44553,108895,-2020,0,60,'false'),
|
|
||||||
(21,35370,44535,108895,-2020,0,60,'false'),
|
|
||||||
(21,35370,44497,108895,-2020,0,60,'false'),
|
|
||||||
(21,35370,44485,108867,-2020,0,60,'false'),
|
|
||||||
(21,35370,44497,108839,-2020,0,60,'false'),
|
|
||||||
(21,35370,44525,108827,-2020,0,60,'false'),
|
|
||||||
(21,35370,44553,108839,-2020,0,60,'false'),
|
|
||||||
(21,35374,44812,109492,-1705,0,60,'false'),
|
|
||||||
(21,35373,44788,109492,-1705,0,60,'false'),
|
|
||||||
(21,35374,45236,108980,-1705,0,60,'false'),
|
|
||||||
(21,35373,45168,109020,-1705,0,60,'false'),
|
|
||||||
-- (21,35372,anywhere - total 15,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
(21,35382,50343,111282,-1970,0,60,'false'),
|
|
||||||
(21,35383,43129,108841,-1980,0,60,'false'),
|
|
||||||
(21,35375,44525,108867,-2020,0,10800,'true');
|
|
||||||
|
|
||||||
INSERT INTO `clanhall_siege_guards` VALUES
|
|
||||||
-- Bandit Stronghold
|
|
||||||
(35,35560,79745,-15472,-1792,0,1200,'false'),
|
|
||||||
(35,35561,83348,-18267,-1248,14536,1200,'false'),
|
|
||||||
(35,35562,81258,-17387,-1248,11144,1200,'false'),
|
|
||||||
(35,35563,81832,-14223,-1248,-17664,1200,'false'),
|
|
||||||
(35,35564,83687,-14532,-1248,-19008,1200,'false'),
|
|
||||||
(35,35565,85263,-15447,-1248,-21328,1200,'false');
|
|
||||||
|
|
||||||
INSERT INTO `clanhall_siege_guards` VALUES
|
|
||||||
-- Beast Farm
|
|
||||||
(63,35612,60606,-93984,-1344,0,1200,'false'),
|
|
||||||
(63,35613,56098,-91770,-1360,0,1200,'false'),
|
|
||||||
(63,35614,58276,-90672,-1360,0,1200,'false'),
|
|
||||||
(63,35615,59970,-92422,-1360,0,1200,'false'),
|
|
||||||
(63,35616,58783,-94540,-1360,0,1200,'false'),
|
|
||||||
(63,35617,56415,-94126,-1360,0,1200,'false');
|
|
||||||
|
|
||||||
INSERT INTO `clanhall_siege_guards` VALUES
|
|
||||||
-- Fortress of the Dead
|
|
||||||
(64,35630,59282,-26496,568,49000,7200,'false'),
|
|
||||||
(64,35631,56619,-27866,568,49000,7200,'false'),
|
|
||||||
(64,35634,57931,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,57888,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,57845,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,57801,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,57758,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,58150,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,58107,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,58063,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,58020,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,57977,-29540,565,49152,7200,'false'),
|
|
||||||
(64,35634,57783,-29569,565,49152,7200,'false'),
|
|
||||||
(64,35634,57740,-29569,565,49152,7200,'false'),
|
|
||||||
(64,35634,58170,-29570,565,49152,7200,'false'),
|
|
||||||
(64,35634,58128,-29570,565,49152,7200,'false'),
|
|
||||||
(64,35633,57929,-29570,575,49152,7200,'false'),
|
|
||||||
(64,35633,57885,-29570,575,49152,7200,'false'),
|
|
||||||
(64,35633,57836,-29570,575,49152,7200,'false'),
|
|
||||||
(64,35633,58072,-29570,575,49152,7200,'false'),
|
|
||||||
(64,35633,58029,-29570,575,49152,7200,'false'),
|
|
||||||
(64,35633,57980,-29570,575,49152,7200,'false'),
|
|
||||||
(64,35633,57928,-29606,575,49152,7200,'false'),
|
|
||||||
(64,35633,57885,-29606,575,49152,7200,'false'),
|
|
||||||
(64,35633,57836,-29606,575,49152,7200,'false'),
|
|
||||||
(64,35633,58072,-29607,575,49152,7200,'false'),
|
|
||||||
(64,35633,58028,-29607,575,49152,7200,'false'),
|
|
||||||
(64,35633,57979,-29607,575,49152,7200,'false'),
|
|
||||||
(64,35633,57780,-29606,575,49152,7200,'false'),
|
|
||||||
(64,35633,57731,-29606,575,49152,7200,'false'),
|
|
||||||
(64,35633,58172,-29608,575,49152,7200,'false'),
|
|
||||||
(64,35633,58123,-29608,575,49152,7200,'false'),
|
|
||||||
(64,35634,58435,-29647,567,49152,7200,'false'),
|
|
||||||
(64,35634,58450,-29681,567,49152,7200,'false'),
|
|
||||||
(64,35634,58468,-29713,567,49152,7200,'false'),
|
|
||||||
(64,35634,58484,-29745,567,49152,7200,'false'),
|
|
||||||
(64,35634,58500,-29777,567,49152,7200,'false'),
|
|
||||||
(64,35634,58520,-29815,587,49152,7200,'false'),
|
|
||||||
(64,35634,58536,-29848,587,49152,7200,'false'),
|
|
||||||
(64,35634,58556,-29886,567,49152,7200,'false'),
|
|
||||||
(64,35634,57473,-29664,567,49152,7200,'false'),
|
|
||||||
(64,35634,57452,-29695,567,49152,7200,'false'),
|
|
||||||
(64,35634,57435,-29728,567,49152,7200,'false'),
|
|
||||||
(64,35634,57420,-29760,567,49152,7200,'false'),
|
|
||||||
(64,35634,57409,-29791,567,49152,7200,'false'),
|
|
||||||
(64,35634,57394,-29824,580,49152,7200,'false'),
|
|
||||||
(64,35634,57379,-29856,580,49152,7200,'false'),
|
|
||||||
(64,35634,57363,-29888,567,49152,7200,'false'),
|
|
||||||
(64,35634,57893,-26684,591,-88,7200,'false'),
|
|
||||||
(64,35634,57893,-26722,591,-88,7200,'false'),
|
|
||||||
(64,35634,57893,-26759,591,-88,7200,'false'),
|
|
||||||
(64,35634,57893,-26646,591,-88,7200,'false'),
|
|
||||||
(64,35634,57863,-26646,591,-88,7200,'false'),
|
|
||||||
(64,35634,57863,-26684,591,-88,7200,'false'),
|
|
||||||
(64,35634,57863,-26722,591,-88,7200,'false'),
|
|
||||||
(64,35634,57863,-26758,591,-88,7200,'false'),
|
|
||||||
(64,35635,57973,-26684,591,-88,7200,'false'),
|
|
||||||
(64,35635,57973,-26722,591,-88,7200,'false'),
|
|
||||||
(64,35635,57973,-26759,591,-88,7200,'false'),
|
|
||||||
(64,35635,57973,-26646,591,-88,7200,'false'),
|
|
||||||
(64,35635,57943,-26646,591,-88,7200,'false'),
|
|
||||||
(64,35635,57943,-26684,591,-88,7200,'false'),
|
|
||||||
(64,35635,57943,-26721,591,-88,7200,'false'),
|
|
||||||
(64,35635,57943,-26758,591,-88,7200,'false'),
|
|
||||||
(64,35633,58046,-26682,591,-88,7200,'false'),
|
|
||||||
(64,35633,58046,-26720,591,-88,7200,'false'),
|
|
||||||
(64,35633,58046,-26758,591,-88,7200,'false'),
|
|
||||||
(64,35633,58046,-26644,591,-88,7200,'false'),
|
|
||||||
(64,35633,58017,-26644,591,-88,7200,'false'),
|
|
||||||
(64,35633,58017,-26682,591,-88,7200,'false'),
|
|
||||||
(64,35633,58017,-26720,591,-88,7200,'false'),
|
|
||||||
(64,35633,58017,-26757,591,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26764,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26802,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26840,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26876,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26726,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26570,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26608,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26645,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26682,565,-88,7200,'false'),
|
|
||||||
(64,35634,58889,-26532,565,-88,7200,'false'),
|
|
||||||
(64,35634,58887,-26379,565,-88,7200,'false'),
|
|
||||||
(64,35634,58887,-26417,565,-88,7200,'false'),
|
|
||||||
(64,35634,58887,-26454,565,-88,7200,'false'),
|
|
||||||
(64,35634,58887,-26491,565,-88,7200,'false'),
|
|
||||||
(64,35634,58887,-26341,565,-88,7200,'false'),
|
|
||||||
(64,35632,56669,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35634,56708,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,56746,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,56784,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,56820,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,56858,-26903,565,16448,7200,'false'),
|
|
||||||
(64,35634,56894,-26903,565,16448,7200,'false'),
|
|
||||||
(64,35634,56670,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,56935,-26903,565,16448,7200,'false'),
|
|
||||||
(64,35634,57018,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,57056,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,57093,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,57130,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,57168,-26903,565,16448,7200,'false'),
|
|
||||||
(64,35634,57204,-26903,565,16448,7200,'false'),
|
|
||||||
(64,35634,56980,-26902,565,16448,7200,'false'),
|
|
||||||
(64,35634,56708,-26874,565,16448,7200,'false'),
|
|
||||||
(64,35634,56746,-26874,565,16448,7200,'false'),
|
|
||||||
(64,35634,56783,-26874,565,16448,7200,'false'),
|
|
||||||
(64,35634,56820,-26874,565,16448,7200,'false'),
|
|
||||||
(64,35634,56857,-26875,565,16448,7200,'false'),
|
|
||||||
(64,35634,56894,-26875,565,16448,7200,'false'),
|
|
||||||
(64,35634,56670,-26874,565,16448,7200,'false'),
|
|
||||||
(64,35634,56935,-26875,565,16448,7200,'false'),
|
|
||||||
(64,35634,57018,-26875,565,16448,7200,'false'),
|
|
||||||
(64,35634,57056,-26875,565,16448,7200,'false'),
|
|
||||||
(64,35634,57094,-26875,565,16448,7200,'false'),
|
|
||||||
(64,35634,57131,-26875,565,16448,7200,'false'),
|
|
||||||
(64,35634,57168,-26876,565,16448,7200,'false'),
|
|
||||||
(64,35634,57205,-26876,565,16448,7200,'false'),
|
|
||||||
(64,35634,56980,-26875,565,16448,7200,'false'),
|
|
||||||
(64,35632,56708,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,56748,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,56788,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,56829,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,56870,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,56910,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,56950,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,56989,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,57030,-26839,592,16384,7200,'false'),
|
|
||||||
(64,35632,56667,-26799,592,16384,7200,'false'),
|
|
||||||
(64,35632,56706,-26799,592,16384,7200,'false'),
|
|
||||||
(64,35632,56747,-26799,592,16384,7200,'false'),
|
|
||||||
(64,35632,56786,-26799,592,16384,7200,'false'),
|
|
||||||
(64,35632,56827,-26799,592,16384,7200,'false'),
|
|
||||||
(64,35636,56869,-26802,587,16384,7200,'false'),
|
|
||||||
(64,35636,56908,-26802,587,16384,7200,'false'),
|
|
||||||
(64,35636,56948,-26802,587,16384,7200,'false'),
|
|
||||||
(64,35636,56989,-26802,587,16384,7200,'false'),
|
|
||||||
(64,35636,57030,-26802,587,16384,7200,'false'),
|
|
||||||
(64,35636,57071,-26804,587,16384,7200,'false'),
|
|
||||||
(64,35636,57111,-26804,587,16384,7200,'false'),
|
|
||||||
(64,35636,57151,-26804,587,16384,7200,'false'),
|
|
||||||
(64,35636,57191,-26804,587,16384,7200,'false'),
|
|
||||||
(64,35636,57233,-26804,587,16384,7200,'false'),
|
|
||||||
(64,35636,57070,-26842,587,16384,7200,'false'),
|
|
||||||
(64,35636,57110,-26842,587,16384,7200,'false'),
|
|
||||||
(64,35636,57150,-26842,587,16384,7200,'false'),
|
|
||||||
(64,35636,57190,-26842,587,16384,7200,'false'),
|
|
||||||
(64,35636,57232,-26842,587,16384,7200,'false'),
|
|
||||||
(64,35634,57461,-28550,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28503,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28455,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28408,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28360,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28791,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28744,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28696,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28649,565,0,7200,'false'),
|
|
||||||
(64,35634,57461,-28601,565,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28587,592,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28901,587,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28632,592,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28678,592,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28727,592,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28775,592,0,7200,'false'),
|
|
||||||
(64,35632,57606,-28399,592,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28398,592,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28444,592,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28494,592,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28541,592,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28856,587,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28807,587,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28761,587,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28716,587,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28668,587,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28624,587,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28575,587,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28529,587,0,7200,'false'),
|
|
||||||
(64,35636,57605,-28483,587,0,7200,'false'),
|
|
||||||
(64,35632,57543,-28826,592,0,7200,'false'),
|
|
||||||
(64,35632,57545,-28882,592,0,7200,'false'),
|
|
||||||
(64,35632,57545,-28933,592,0,7200,'false'),
|
|
||||||
(64,35634,57462,-29031,565,0,7200,'false'),
|
|
||||||
(64,35634,57462,-28984,565,0,7200,'false'),
|
|
||||||
(64,35634,57462,-28937,565,0,7200,'false'),
|
|
||||||
(64,35634,57462,-28889,565,0,7200,'false'),
|
|
||||||
(64,35634,57462,-28841,565,0,7200,'false'),
|
|
||||||
(64,35632,57546,-28986,592,0,7200,'false'),
|
|
||||||
(64,35632,57606,-28984,592,0,7200,'false'),
|
|
||||||
(64,35632,58972,-28365,592,-24512,7200,'false'),
|
|
||||||
(64,35634,58879,-28217,565,-24440,7200,'false'),
|
|
||||||
(64,35634,58913,-28250,565,-24440,7200,'false'),
|
|
||||||
(64,35634,58948,-28284,565,-24440,7200,'false'),
|
|
||||||
(64,35634,58980,-28316,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59015,-28349,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59050,-28384,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59084,-28417,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59119,-28450,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59151,-28481,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59187,-28518,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59222,-28552,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59256,-28585,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59291,-28619,565,-24440,7200,'false'),
|
|
||||||
(64,35634,59322,-28650,565,-24440,7200,'false'),
|
|
||||||
(64,35632,59166,-28557,592,-24512,7200,'false'),
|
|
||||||
(64,35636,58894,-28289,587,41088,7200,'false'),
|
|
||||||
(64,35636,58931,-28325,587,41088,7200,'false'),
|
|
||||||
(64,35636,59007,-28399,587,41088,7200,'false'),
|
|
||||||
(64,35636,59044,-28435,587,41088,7200,'false'),
|
|
||||||
(64,35636,59090,-28484,587,41088,7200,'false'),
|
|
||||||
(64,35636,59127,-28519,587,41088,7200,'false'),
|
|
||||||
(64,35636,59207,-28597,587,41088,7200,'false'),
|
|
||||||
(64,35636,59244,-28633,587,41088,7200,'false'),
|
|
||||||
(64,35634,56938,-27347,576,32768,7200,'false'),
|
|
||||||
(64,35634,56938,-27309,576,32768,7200,'false'),
|
|
||||||
(64,35634,56938,-27271,576,32768,7200,'false'),
|
|
||||||
(64,35634,56938,-27235,576,32768,7200,'false'),
|
|
||||||
(64,35634,56940,-27197,576,32768,7200,'false'),
|
|
||||||
(64,35634,56940,-27160,576,32768,7200,'false'),
|
|
||||||
(64,35634,56938,-27385,576,32768,7200,'false'),
|
|
||||||
(64,35634,56940,-27120,576,32768,7200,'false'),
|
|
||||||
(64,35635,56910,-27347,576,32768,7200,'false'),
|
|
||||||
(64,35635,56910,-27309,576,32768,7200,'false'),
|
|
||||||
(64,35635,56910,-27271,576,32768,7200,'false'),
|
|
||||||
(64,35635,56910,-27234,576,32768,7200,'false'),
|
|
||||||
(64,35635,56912,-27197,576,32768,7200,'false'),
|
|
||||||
(64,35635,56912,-27160,576,32768,7200,'false'),
|
|
||||||
(64,35635,56910,-27385,576,32768,7200,'false'),
|
|
||||||
(64,35635,56912,-27119,576,32768,7200,'false'),
|
|
||||||
(64,35633,56880,-27346,576,32768,7200,'false'),
|
|
||||||
(64,35633,56881,-27308,576,32768,7200,'false'),
|
|
||||||
(64,35633,56881,-27271,576,32768,7200,'false'),
|
|
||||||
(64,35633,56881,-27234,576,32768,7200,'false'),
|
|
||||||
(64,35633,56882,-27197,576,32768,7200,'false'),
|
|
||||||
(64,35633,56882,-27160,576,32768,7200,'false'),
|
|
||||||
(64,35633,56880,-27384,576,32768,7200,'false'),
|
|
||||||
(64,35633,56883,-27119,576,32768,7200,'false'),
|
|
||||||
(64,35632,59015,-27459,575,49152,7200,'false'),
|
|
||||||
(64,35632,59054,-27459,575,49152,7200,'false'),
|
|
||||||
(64,35632,59094,-27459,575,49152,7200,'false'),
|
|
||||||
(64,35632,59134,-27459,575,49152,7200,'false'),
|
|
||||||
(64,35632,59175,-27459,575,49152,7200,'false'),
|
|
||||||
(64,35632,59220,-27459,575,49152,7200,'false'),
|
|
||||||
(64,35632,59259,-27459,575,49152,7200,'false'),
|
|
||||||
(64,35632,59299,-27459,575,49152,7200,'false'),
|
|
||||||
(64,35632,59015,-27409,575,49152,7200,'false'),
|
|
||||||
(64,35632,59054,-27409,575,49152,7200,'false'),
|
|
||||||
(64,35632,59094,-27409,575,49152,7200,'false'),
|
|
||||||
(64,35632,59133,-27409,575,49152,7200,'false'),
|
|
||||||
(64,35632,59174,-27409,575,49152,7200,'false'),
|
|
||||||
(64,35632,59220,-27409,575,49152,7200,'false'),
|
|
||||||
(64,35632,59259,-27409,575,49152,7200,'false'),
|
|
||||||
(64,35632,59299,-27409,575,49152,7200,'false'),
|
|
||||||
(64,35636,59015,-27352,575,49152,7200,'false'),
|
|
||||||
(64,35636,59054,-27352,575,49152,7200,'false'),
|
|
||||||
(64,35636,59094,-27352,575,49152,7200,'false'),
|
|
||||||
(64,35636,59134,-27352,575,49152,7200,'false'),
|
|
||||||
(64,35636,59175,-27352,575,49152,7200,'false'),
|
|
||||||
(64,35636,59220,-27352,575,49152,7200,'false'),
|
|
||||||
(64,35636,59259,-27352,575,49152,7200,'false'),
|
|
||||||
(64,35636,59299,-27352,575,49152,7200,'false'),
|
|
||||||
(64,35636,59016,-27299,575,49152,7200,'false'),
|
|
||||||
(64,35636,59055,-27299,575,49152,7200,'false'),
|
|
||||||
(64,35636,59095,-27299,575,49152,7200,'false'),
|
|
||||||
(64,35636,59134,-27299,575,49152,7200,'false'),
|
|
||||||
(64,35636,59175,-27299,575,49152,7200,'false'),
|
|
||||||
(64,35636,59220,-27299,575,49152,7200,'false'),
|
|
||||||
(64,35636,59260,-27299,575,49152,7200,'false'),
|
|
||||||
(64,35636,59300,-27299,575,49152,7200,'false'),
|
|
||||||
(64,35637,57288,-27776,587,32768,7200,'false'),
|
|
||||||
(64,35636,57174,-27680,587,32768,7200,'false'),
|
|
||||||
(64,35636,57175,-27643,587,32768,7200,'false'),
|
|
||||||
(64,35636,57175,-27606,587,32768,7200,'false'),
|
|
||||||
(64,35636,57175,-27755,587,32768,7200,'false'),
|
|
||||||
(64,35636,57174,-27718,587,32768,7200,'false'),
|
|
||||||
(64,35634,57237,-27608,576,32768,7200,'false'),
|
|
||||||
(64,35634,57239,-27763,576,32768,7200,'false'),
|
|
||||||
(64,35636,57209,-27701,587,32768,7200,'false'),
|
|
||||||
(64,35636,57210,-27664,587,32768,7200,'false'),
|
|
||||||
(64,35636,57209,-27627,587,32768,7200,'false'),
|
|
||||||
(64,35636,57210,-27776,587,32768,7200,'false'),
|
|
||||||
(64,35636,57209,-27739,587,32768,7200,'false'),
|
|
||||||
(64,35634,57239,-27725,576,32768,7200,'false'),
|
|
||||||
(64,35634,57238,-27687,576,32768,7200,'false'),
|
|
||||||
(64,35634,57237,-27648,576,32768,7200,'false'),
|
|
||||||
(64,35634,57260,-27625,576,32768,7200,'false'),
|
|
||||||
(64,35634,57262,-27779,576,32768,7200,'false'),
|
|
||||||
(64,35634,57262,-27742,576,32768,7200,'false'),
|
|
||||||
(64,35634,57262,-27704,576,32768,7200,'false'),
|
|
||||||
(64,35634,57261,-27665,576,32768,7200,'false'),
|
|
||||||
(64,35637,57288,-27732,587,32768,7200,'false'),
|
|
||||||
(64,35637,57288,-27687,587,32768,7200,'false'),
|
|
||||||
(64,35637,57288,-27644,587,32768,7200,'false'),
|
|
||||||
(64,35637,57288,-27599,587,32768,7200,'false'),
|
|
||||||
(64,35637,57256,-27574,587,32768,7200,'false'),
|
|
||||||
(64,35637,57543,-27786,587,32768,1200,'false'),
|
|
||||||
(64,35636,57429,-27690,587,32768,1200,'false'),
|
|
||||||
(64,35636,57430,-27653,587,32768,1200,'false'),
|
|
||||||
(64,35636,57429,-27616,587,32768,1200,'false'),
|
|
||||||
(64,35636,57430,-27765,587,32768,1200,'false'),
|
|
||||||
(64,35636,57429,-27727,587,32768,1200,'false'),
|
|
||||||
(64,35634,57492,-27618,576,32768,1200,'false'),
|
|
||||||
(64,35634,57494,-27772,576,32768,1200,'false'),
|
|
||||||
(64,35636,57464,-27711,587,32768,1200,'false'),
|
|
||||||
(64,35636,57465,-27674,587,32768,1200,'false'),
|
|
||||||
(64,35636,57464,-27637,587,32768,1200,'false'),
|
|
||||||
(64,35636,57464,-27785,587,32768,1200,'false'),
|
|
||||||
(64,35636,57463,-27748,587,32768,1200,'false'),
|
|
||||||
(64,35634,57494,-27735,576,32768,1200,'false'),
|
|
||||||
(64,35634,57493,-27697,576,32768,1200,'false'),
|
|
||||||
(64,35634,57492,-27658,576,32768,1200,'false'),
|
|
||||||
(64,35634,57515,-27634,576,32768,1200,'false'),
|
|
||||||
(64,35634,57517,-27789,576,32768,1200,'false'),
|
|
||||||
(64,35634,57517,-27752,576,32768,1200,'false'),
|
|
||||||
(64,35634,57516,-27714,576,32768,1200,'false'),
|
|
||||||
(64,35634,57515,-27675,576,32768,1200,'false'),
|
|
||||||
(64,35637,57543,-27742,587,32768,1200,'false'),
|
|
||||||
(64,35637,57543,-27697,587,32768,1200,'false'),
|
|
||||||
(64,35637,57543,-27654,587,32768,1200,'false'),
|
|
||||||
(64,35637,57543,-27609,587,32768,1200,'false'),
|
|
||||||
(64,35637,57578,-27783,587,32768,1200,'false'),
|
|
||||||
(64,35637,57578,-27739,587,32768,1200,'false'),
|
|
||||||
(64,35637,57578,-27695,587,32768,1200,'false'),
|
|
||||||
(64,35637,57578,-27651,587,32768,1200,'false'),
|
|
||||||
(64,35637,57578,-27607,587,32768,1200,'false'),
|
|
||||||
(64,35637,57476,-27575,587,32768,1200,'false'),
|
|
||||||
(64,35637,57511,-27573,587,32768,1200,'false'),
|
|
||||||
(64,35637,57473,-27837,587,32768,1200,'false'),
|
|
||||||
(64,35637,57508,-27835,587,32768,1200,'false'),
|
|
||||||
(64,35637,57905,-27648,576,32768,7200,'false'),
|
|
||||||
(64,35637,57905,-27712,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27182,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27232,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27282,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27332,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27382,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27432,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27482,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27532,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27582,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27632,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27682,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27732,576,32768,7200,'false'),
|
|
||||||
(64,35637,58233,-27782,576,32768,7200,'false'),
|
|
||||||
(64,35629,58680,-27507,592,32768,7200,'true');
|
|
||||||
|
|
||||||
INSERT INTO `clanhall_siege_guards` VALUES
|
|
||||||
-- Rainbow Springs
|
|
||||||
(62,35596,151552,-127075,-2208,5896,60,'false'),
|
|
||||||
(62,35588,151557,-126987,-2224,0,7200,'false'),
|
|
||||||
-- (62,35593,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
-- (62,35594,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
-- (62,35595,anywhere - total 10,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
(62,35597,153136,-125333,-2208,-16328,60,'false'),
|
|
||||||
(62,35589,153135,-125425,-2224,0,7200,'false'),
|
|
||||||
-- (62,35593,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
-- (62,35594,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
-- (62,35595,anywhere - total 10,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
(62,35598,155660,-125753,-2208,-16496,60,'false'),
|
|
||||||
(62,35590,155661,-125844,-2224,0,7200,'false'),
|
|
||||||
-- (62,35593,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
-- (62,35594,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
-- (62,35595,anywhere - total 10,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
(62,35599,153887,-127538,-2208,15992,60,'false'),
|
|
||||||
(62,35591,153888,-127444,-2224,0,7200,'false');
|
|
||||||
-- (62,35593,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
-- (62,35594,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
|
|
||||||
-- (62,35595,anywhere - total 10,0,60,'false'); TODO: needs support for random spawn by zone.
|
|
||||||
+1
-1
@@ -2,7 +2,7 @@ DROP TABLE IF EXISTS `cursed_weapons`;
|
|||||||
CREATE TABLE IF NOT EXISTS `cursed_weapons` (
|
CREATE TABLE IF NOT EXISTS `cursed_weapons` (
|
||||||
`itemId` INT,
|
`itemId` INT,
|
||||||
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
|
||||||
`playerKarma` INT DEFAULT 0,
|
`playerReputation` INT DEFAULT 0,
|
||||||
`playerPkKills` INT DEFAULT 0,
|
`playerPkKills` INT DEFAULT 0,
|
||||||
`nbKills` INT DEFAULT 0,
|
`nbKills` INT DEFAULT 0,
|
||||||
`endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
`endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
DROP TABLE IF EXISTS `custom_npc_buffer`;
|
DROP TABLE IF EXISTS `custom_npc_buffer`;
|
||||||
CREATE TABLE IF NOT EXISTS `custom_npc_buffer` (
|
CREATE TABLE IF NOT EXISTS `custom_npc_buffer` (
|
||||||
`npc_id` int(10) NOT NULL,
|
`npc_id` mediumint(7) NOT NULL,
|
||||||
`skill_id` int(6) NOT NULL,
|
`skill_id` int(6) NOT NULL,
|
||||||
`skill_level` int(6) NOT NULL DEFAULT '1',
|
`skill_level` int(6) NOT NULL DEFAULT '1',
|
||||||
`skill_fee_id` int(6) NOT NULL DEFAULT '0',
|
`skill_fee_id` int(6) NOT NULL DEFAULT '0',
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
DROP TABLE IF EXISTS `event_schedulers`;
|
||||||
|
CREATE TABLE IF NOT EXISTS `event_schedulers` (
|
||||||
|
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
|
`eventName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
||||||
|
`schedulerName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
|
||||||
|
`lastRun` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
UNIQUE KEY `eventName_schedulerName` (`eventName`,`schedulerName`) USING BTREE
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `fishing_championship`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `fishing_championship` (
|
|
||||||
`player_name` VARCHAR(35) NOT NULL,
|
|
||||||
`fish_length` DOUBLE(10,3) NOT NULL,
|
|
||||||
`rewarded` INT(1) NOT NULL
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
+2
-2
@@ -23,8 +23,8 @@ INSERT IGNORE INTO `grandboss_data` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`
|
|||||||
(29028, -105200, -253104, -15264, 0, 62041918, 2248572), -- Valakas (85)
|
(29028, -105200, -253104, -15264, 0, 62041918, 2248572), -- Valakas (85)
|
||||||
-- (29066, 185708, 114298, -8221,32768, 14518000, 3996000), -- Antharas Weak (79)
|
-- (29066, 185708, 114298, -8221,32768, 14518000, 3996000), -- Antharas Weak (79)
|
||||||
-- (29067, 185708, 114298, -8221,32768, 16184000, 3996000), -- Antharas Normal (79)
|
-- (29067, 185708, 114298, -8221,32768, 16184000, 3996000), -- Antharas Normal (79)
|
||||||
(29068, 185708, 114298, -8221,32768, 62802301, 1998000), -- Antharas Strong (85)
|
(29068, 185708, 114298, -8221,32768, 62802301, 1998000); -- Antharas Strong (85)
|
||||||
(29118, 0, 0, 0, 0, 4109288, 1220547); -- Beleth (83)
|
-- (29118, 0, 0, 0, 0, 4109288, 1220547); -- Beleth (83)
|
||||||
-- (29045, -87780, -155086, -9080, 16384, 1018821.42723286, 52001.06567747795), -- Frintezza (85)
|
-- (29045, -87780, -155086, -9080, 16384, 1018821.42723286, 52001.06567747795), -- Frintezza (85)
|
||||||
-- (29046, -87789, -153295, -9176, 16384, 1824900, 23310), -- Scarlet Van Halisha (85)
|
-- (29046, -87789, -153295, -9176, 16384, 1824900, 23310), -- Scarlet Van Halisha (85)
|
||||||
-- (29047, -87789, -153295, -9176, 16384, 898044, 4519), -- Scarlet Van Halisha (85)
|
-- (29047, -87789, -153295, -9176, 16384, 898044, 4519), -- Scarlet Van Halisha (85)
|
||||||
|
|||||||
@@ -1,6 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `grandboss_list`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `grandboss_list` (
|
|
||||||
`player_id` decimal(11,0) NOT NULL,
|
|
||||||
`zone` decimal(11,0) NOT NULL,
|
|
||||||
PRIMARY KEY (`player_id`,`zone`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
@@ -1,8 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `item_soulcrystal`;
|
|
||||||
CREATE TABLE `item_soulcrystal` (
|
|
||||||
`object_id` int(11) NOT NULL,
|
|
||||||
`slot_id` int(1) NOT NULL,
|
|
||||||
`is_special` bit(1) NOT NULL,
|
|
||||||
`effect_id` int(4) NOT NULL,
|
|
||||||
PRIMARY KEY (`object_id`,`slot_id`,`is_special`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
DROP TABLE IF EXISTS `item_special_abilities`;
|
||||||
|
CREATE TABLE IF NOT EXISTS `item_special_abilities` (
|
||||||
|
`objectId` int(10) unsigned NOT NULL,
|
||||||
|
`type` tinyint(1) unsigned NOT NULL DEFAULT 1,
|
||||||
|
`optionId` int(10) unsigned NOT NULL,
|
||||||
|
`position` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||||
|
PRIMARY KEY (`objectId`,`optionId`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
-18399
File diff suppressed because it is too large
Load Diff
@@ -17,7 +17,5 @@ CREATE TABLE IF NOT EXISTS `messages` (
|
|||||||
`itemId` INT(11) NOT NULL DEFAULT '0',
|
`itemId` INT(11) NOT NULL DEFAULT '0',
|
||||||
`enchantLvl` INT(3) NOT NULL DEFAULT '0',
|
`enchantLvl` INT(3) NOT NULL DEFAULT '0',
|
||||||
`elementals` VARCHAR(25),
|
`elementals` VARCHAR(25),
|
||||||
`systemMessage1` INT(10) NOT NULL DEFAULT '-1',
|
|
||||||
`systemMessage2` INT(10) NOT NULL DEFAULT '-1',
|
|
||||||
PRIMARY KEY (`messageId`)
|
PRIMARY KEY (`messageId`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
@@ -1,12 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `mods_wedding`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `mods_wedding` (
|
|
||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
||||||
`player1Id` int(11) NOT NULL DEFAULT '0',
|
|
||||||
`player2Id` int(11) NOT NULL DEFAULT '0',
|
|
||||||
`married` varchar(5) DEFAULT NULL,
|
|
||||||
`affianceDate` decimal(20,0) DEFAULT '0',
|
|
||||||
`weddingDate` decimal(20,0) DEFAULT '0',
|
|
||||||
PRIMARY KEY (`id`),
|
|
||||||
KEY `player1Id` (`player1Id`),
|
|
||||||
KEY `player2Id` (`player2Id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
-22
@@ -1,22 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `npc_buffer`;
|
|
||||||
CREATE TABLE `npc_buffer` (
|
|
||||||
`npc_id` int(6) NOT NULL,
|
|
||||||
`skill_id` int(6) NOT NULL,
|
|
||||||
`skill_level` int(6) NOT NULL DEFAULT '1',
|
|
||||||
`skill_fee_id` int(6) NOT NULL DEFAULT '0',
|
|
||||||
`skill_fee_amount` int(6) NOT NULL DEFAULT '0',
|
|
||||||
`buff_group` int(6) NOT NULL DEFAULT '0',
|
|
||||||
PRIMARY KEY (`npc_id`,`skill_id`,`buff_group`)
|
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
INSERT INTO `npc_buffer` VALUES
|
|
||||||
(36402,4356,3,0,0,4356),
|
|
||||||
(36402,4352,2,0,0,4352),
|
|
||||||
(36402,4345,3,0,0,4345),
|
|
||||||
(36402,4359,3,0,0,4359),
|
|
||||||
(36402,4351,6,0,0,4351),
|
|
||||||
(36402,4355,3,0,0,4355),
|
|
||||||
(36402,4357,2,0,0,4357),
|
|
||||||
(36402,4342,2,0,0,4342),
|
|
||||||
(36402,4358,3,0,0,4358),
|
|
||||||
(36402,4360,3,0,0,4360);
|
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
DROP TABLE IF EXISTS `npc_respawns`;
|
||||||
|
CREATE TABLE IF NOT EXISTS `npc_respawns` (
|
||||||
|
`id` int(10) NOT NULL,
|
||||||
|
`x` int(10) NOT NULL,
|
||||||
|
`y` int(10) NOT NULL,
|
||||||
|
`z` int(10) NOT NULL,
|
||||||
|
`heading` int(10) NOT NULL,
|
||||||
|
`respawnTime` bigint(20) unsigned NOT NULL DEFAULT '0',
|
||||||
|
`currentHp` double unsigned NOT NULL,
|
||||||
|
`currentMp` double unsigned NOT NULL,
|
||||||
|
PRIMARY KEY (`id`)
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
+700
-1265
File diff suppressed because it is too large
Load Diff
@@ -1,372 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `raidboss_spawnlist`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `raidboss_spawnlist` (
|
|
||||||
`boss_id` smallint(5) unsigned NOT NULL,
|
|
||||||
`amount` tinyint(1) unsigned NOT NULL DEFAULT '1',
|
|
||||||
`loc_x` mediumint(6) NOT NULL,
|
|
||||||
`loc_y` mediumint(6) NOT NULL,
|
|
||||||
`loc_z` mediumint(6) NOT NULL,
|
|
||||||
`heading` mediumint(6) NOT NULL DEFAULT '0',
|
|
||||||
`respawn_delay` mediumint(6) unsigned NOT NULL DEFAULT '86400', -- 24 Hours
|
|
||||||
`respawn_random` mediumint(6) unsigned NOT NULL DEFAULT '43200', -- 12 Hours
|
|
||||||
`respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
|
|
||||||
`currentHp` decimal(8,0) DEFAULT NULL,
|
|
||||||
`currentMp` decimal(8,0) DEFAULT NULL,
|
|
||||||
PRIMARY KEY (`boss_id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
|
|
||||||
(25001,-54416,146480,-2887,0,86400,43200,95986,514), -- Greyclaw Kutus (23)
|
|
||||||
(25004,-94208,100240,-3520,0,86400,43200,168366,731), -- Turek Mercenary Captain (30)
|
|
||||||
(25007,124240,75376,-2800,0,86400,43200,331522,1178), -- Retreat Spider Cletu (42)
|
|
||||||
(25010,113920,52960,-3735,0,86400,43200,624464,1975), -- Furious Thieles (55)
|
|
||||||
(25013,169744,11920,-2732,0,86400,43200,507285,1660), -- Ghost Of Peasant Leader (50)
|
|
||||||
(25016,76787,245775,-10376,0,86400,43200,730956,2301), -- The 3rd Underwater Guardian (60)
|
|
||||||
(25019,7376,169376,-3600,0,86400,43200,206185,575), -- Pan Dryad (25)
|
|
||||||
(25020,90384,125568,-2128,0,86400,43200,156584,860), -- Breka Warlock Pastu (34)
|
|
||||||
(25023,27280,101744,-3696,0,86400,43200,208019,860), -- Stakato Queen Zyrnna (34)
|
|
||||||
(25026,92976,7920,-3914,0,86400,43200,352421,1598), -- Katu Van Leader Atui (49)
|
|
||||||
(25029,54941,206705,-3728,0,86400,43200,578190,1847), -- Atraiban (53)
|
|
||||||
(25032,88532,245798,-10376,0,86400,43200,690320,2169), -- Eva's Guardian Millenu (58)
|
|
||||||
-- (25035,180968,12035,-2720,0,86400,43200,888658,2987), -- Shilen's Messenger Cabrio (70) (Not spawned anymore in GoD)
|
|
||||||
(25038,-57360,186272,-4967,0,86400,43200,116581,668), -- Tirak (28)
|
|
||||||
(25041,10416,126880,-3676,0,86400,43200,165289,893), -- Remmel (35)
|
|
||||||
(25044,107792,27728,-3488,0,86400,43200,319791,1476), -- Barion (47)
|
|
||||||
(25047,116352,27648,-3319,0,86400,43200,352421,1598), -- Karte (49)
|
|
||||||
(25050,125520,27216,-3632,0,86400,43200,771340,1722), -- Verfa (51)
|
|
||||||
(25051,117760,-9072,-3264,0,86400,43200,818959,2639), -- Rahha (65)
|
|
||||||
-- (25054,113432,16403,3960,0,86400,43200,945900,3347), -- Kernon (75) (Not spawned anymore in GoD)
|
|
||||||
(25057,107056,168176,-3456,0,86400,43200,288415,1355), -- Biconne Of Blue Sky (45)
|
|
||||||
(25060,-60428,188264,-4512,0,86400,43200,99367,545), -- Unrequited Kael (24)
|
|
||||||
(25063,-91024,116304,-3466,0,86400,43200,330579,893), -- Chertuba Of Great Soul (35)
|
|
||||||
(25064,96891,93825,-3720,0,86400,43200,218810,1062), -- Wizard Of Storm Teruk (40)
|
|
||||||
(25067,94992,-23168,-2176,0,86400,43200,554640,1784), -- Captain Of Red Flag Shaka (52)
|
|
||||||
(25070,125600,50100,-3600,0,86400,43200,451391,1975), -- Enchanted Forest Watcher Ruell (55)
|
|
||||||
-- (25073,143265,110044,-3944,0,86400,43200,875948,2917), -- Bloody Priest Rudelto (69) (Not spawned anymore in H5)
|
|
||||||
(25076,-60976,127552,-2960,0,86400,43200,103092,575), -- Princess Molrang (25)
|
|
||||||
(25079,53712,102656,-1072,0,86400,43200,168366,731), -- Cat's Eye Bandit (30)
|
|
||||||
(25082,88512,140576,-3483,0,86400,43200,206753,1028), -- Leader Of Cat Gang (39)
|
|
||||||
(25085,66944,67504,-3704,0,86400,43200,371721,1296), -- Timak Orc Chief Ranger (44)
|
|
||||||
(25088,90848,16368,-5296,0,86400,43200,702418,1237), -- Crazy Mechanic Golem (43)
|
|
||||||
(25089,165424,93776,-2992,0,86400,43200,512194,2235), -- Soulless Wild Boar (59)
|
|
||||||
(25092,116151,16227,1944,0,86400,43200,888658,2987), -- Korim (70)
|
|
||||||
(25095,-37856,198128,-2672,0,86400,43200,121941,699), -- Elf Renoa (29)
|
|
||||||
(25098,123536,133504,-3584,0,86400,43200,330579,893), -- Sejarr's Servitor (35)
|
|
||||||
(25099,64048,16048,-3536,0,86400,43200,273375,1296), -- Rotten Tree Repiro (44)
|
|
||||||
(25102,113840,84256,-2480,0,86400,43200,576831,1355), -- Shacram (45)
|
|
||||||
(25103,135872,94592,-3735,0,86400,43200,451391,1975), -- Sorcerer Isirr (55)
|
|
||||||
(25106,173880,-11412,-2880,0,86400,43200,526218,2301), -- Ghost Of The Well Lidia (60)
|
|
||||||
-- (25109,152660,110387,-5520,0,86400,43200,935092,3274), -- Antharas Priest Cloe (74) (Not spawned anymore in H5)
|
|
||||||
(25112,116128,139392,-3640,0,86400,43200,127782,731), -- Agent Of Beres, Meana (30)
|
|
||||||
(25115,125789,207644,-3752,0,86400,43200,294846,1062), -- Icarus Sample 1 (40)
|
|
||||||
(25118,50896,146576,-3645,0,86400,43200,330579,893), -- Guilotine, Warden Of The Execution Grounds (35)
|
|
||||||
(25119,121872,64032,-3536,0,86400,43200,507285,1660), -- Messenger Of Fairy Queen Berun (50)
|
|
||||||
(25122,86290,-8232,-3032,0,86400,43200,467209,2039), -- Refugee Hopeful Leo (56)
|
|
||||||
(25125,170656,85184,-2000,0,86400,43200,1637918,2639), -- Fierce Tiger King Angel (65)
|
|
||||||
(25126,116263,15916,6992,0,86400,43200,1974940,3643), -- Longhorn Golkonda (79)
|
|
||||||
(25127,-47552,219232,-2413,0,86400,43200,198734,545), -- Langk Matriarch Rashkos (24)
|
|
||||||
(25128,17696,179056,-3520,0,86400,43200,148507,827), -- Vuku Grand Seer Gharmash (33)
|
|
||||||
(25131,75488,-9360,-2720,0,86400,43200,369009,1660), -- Carnage Lord Gato (50)
|
|
||||||
(25134,87536,75872,-3591,0,86400,43200,218810,1062), -- Leto Chief Talkin (40)
|
|
||||||
(25137,125280,102576,-3305,0,86400,43200,451391,1975), -- Beleth's Seer Sephia (55)
|
|
||||||
-- (25140,0,0,0,0,0,0,0,0), -- Hekaton Prime (65) (Not spawned anymore in H5)
|
|
||||||
(25143,113102,16002,6992,0,86400,43200,977229,3568), -- Fire Of Wrath Shuriel (78)
|
|
||||||
(25146,-13056,215680,-3760,0,86400,43200,90169,455), -- Serpent Demon Bifrons (21)
|
|
||||||
(25149,-12656,138176,-3584,0,907200,604800,103092,575), -- Zombie Lord Crowl (25)
|
|
||||||
(25152,43872,123968,-2928,0,86400,43200,165289,893), -- Flame Lord Shadar (35)
|
|
||||||
(25155,73520,66912,-3728,0,86400,43200,294846,1053), -- Shaman King Selu (40)
|
|
||||||
(25158,77104,5408,-3088,0,86400,43200,920790,1523), -- King Tarlk (48)
|
|
||||||
(25159,124984,43200,-3625,0,86400,43200,435256,1911), -- Paniel The Unicorn (54)
|
|
||||||
-- (25162,0,0,0,0,0,0,0,0), -- Giant Marpanak (60) (Not spawned anymore in H5)
|
|
||||||
(25163,130500,59098,3584,0,86400,43200,1777317,2987), -- Roaring Skylancer (70)
|
|
||||||
(25166,-21800,152000,-2900,0,86400,43200,134813,575), -- Ikuntai (25)
|
|
||||||
(25169,-54464,170288,-3136,0,86400,43200,336732,731), -- Ragraman (30)
|
|
||||||
(25170,26064,121808,-3738,0,86400,43200,195371,994), -- Lizardmen Leader Hellion (38)
|
|
||||||
(25173,75968,110784,-2512,0,86400,43200,288415,1355), -- Tiger King Karuta (45)
|
|
||||||
-- (25176,92544,115232,-3200,0,86400,43200,451391,1975), -- Black Lily (55) (Not spawned anymore in H5)
|
|
||||||
(25179,167152,53120,-4148,0,86400,43200,526218,2301), -- Guardian Of The Statue Of Giant Karum (60)
|
|
||||||
(25182,41966,215417,-3728,0,86400,43200,512194,2235), -- Demon Kurikups (59)
|
|
||||||
(25185,99732,204331,-3784,0,86400,43200,165289,893), -- Tasaba Patriarch Hellena (35)
|
|
||||||
(25188,127544,215264,-2960,0,86400,43200,255564,731), -- Apepi (30)
|
|
||||||
(25189,127837,200661,-3792,0,86400,43200,156584,860), -- Cronos's Servitor Mumu (34)
|
|
||||||
(25192,125920,190208,-3291,0,86400,43200,258849,1237), -- Earth Protector Panathen (43)
|
|
||||||
(25198,102656,157424,-3735,0,86400,43200,1777317,2987), -- Fafurion's Herald Lokness (70)
|
|
||||||
(25199,108096,157408,-3688,0,86400,43200,912634,3130), -- Water Dragon Seer Sheshark (72)
|
|
||||||
(25202,119760,157392,-3744,0,86400,43200,935092,3274), -- Krokian Padisha Sobekk (74)
|
|
||||||
(25205,123808,153408,-3671,0,86400,43200,956490,3420), -- Ocean Flame Ashakiel (76)
|
|
||||||
(25208,109663,213615,-3624,0,86400,43200,218810,1062), -- Water Couatle Ateka (40)
|
|
||||||
(25211,113456,198118,-3689,0,86400,43200,174646,927), -- Sebek (36)
|
|
||||||
(25214,111582,209341,-3687,0,86400,43200,218810,1062), -- Fafurion's Page Sika (40)
|
|
||||||
-- (25217,89904,105712,-3292,0,86400,43200,369009,1660), -- Cursed Clara (50) (Not spawned anymore in H5)
|
|
||||||
-- (25220,113551,17083,-2120,0,86400,43200,924022,3202), -- Death Lord Hallate (73) (Not spawned anymore in GoD)
|
|
||||||
(25223,43152,152352,-2848,0,86400,43200,165289,893), -- Soul Collector Acheron (35)
|
|
||||||
(25226,104240,-3664,-3392,0,86400,43200,768537,2435), -- Roaring Lord Kastor (62)
|
|
||||||
-- (25229,137568,-19488,-3552,0,86400,43200,1891801,3347), -- Storm Winged Naga (75) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
(25230,66672,46704,-3920,0,86400,43200,482650,2104), -- Timak Seer Ragoth (57)
|
|
||||||
(25233,185800,-26500,-2000,0,86400,43200,1256671,2917), -- Spirit Of Andras, The Betrayer (69)
|
|
||||||
-- (25234,120080,111248,-3047,0,86400,43200,1052436,2301), -- Ancient Weird Drake (60) (Not spawned anymore in H5)
|
|
||||||
(25235,116400,-62528,-3264,0,86400,43200,912634,3130), -- Vanor Chief Kandra (72)
|
|
||||||
(25238,155000,85400,-3200,0,86400,43200,512194,2235), -- Abyss Brukunt (59)
|
|
||||||
(25241,165984,88048,-2384,0,86400,43200,624464,1975), -- Harit Hero Tamash (55)
|
|
||||||
(25244,171880,54868,-5992,0,86400,43200,1891801,3347), -- Last Lesser Giant Olkuth (75)
|
|
||||||
(25245,188809,47780,-5968,0,86400,43200,977229,3568), -- Last Lesser Giant Glaki (78)
|
|
||||||
(25248,127903,-13399,-3720,0,86400,43200,1825269,3130), -- Doom Blade Tanatos (72)
|
|
||||||
-- (25249,147104,-20560,-3377,0,86400,43200,945900,3347), -- Palatanos Of Horrific Power (75) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
(25252,192376,22087,-3608,0,86400,43200,888658,2987), -- Palibati Queen Themis (70)
|
|
||||||
(25255,170048,-24896,-3440,0,86400,43200,1637918,2639), -- Gargoyle Lord Tiphon (65)
|
|
||||||
(25256,170320,42640,-4832,0,86400,43200,526218,2301), -- Taik High Prefect Arak (60)
|
|
||||||
(25259,42050,208107,-3752,0,86400,43200,1248928,1975), -- Zaken's Butcher Krantz (55)
|
|
||||||
(25260,93120,19440,-3607,0,86400,43200,392985,1355), -- Iron Giant Totem (45)
|
|
||||||
-- (25263,144400,-28192,-1920,0,86400,43200,848789,2777), -- Kernon's Faithful Servant Kelone (67) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
-- (25266,188983,13647,-2672,0,86400,43200,945900,3347), -- Bloody Empress Decarbia (75) (Not spawned anymore in GoD)
|
|
||||||
(25269,123504,-23696,-3481,0,86400,43200,888658,3058), -- Beast Lord Behemoth (70)
|
|
||||||
(25272,49248,127792,-3552,0,86400,43200,233163,1415), -- Partisan Leader Talakin (28)
|
|
||||||
-- (25273,23800,119500,-8976,0,86400,43200,507285,2104), -- Carnamakos (50) (Spawn by Quest)
|
|
||||||
-- (25276,154088,-14116,-3736,0,86400,43200,1891801,3347), -- Death Lord Ipos (75) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
(25277,54651,180269,-4976,0,86400,43200,507285,1660), -- Lilith's Witch Marilion (50)
|
|
||||||
(25280,85622,88766,-5120,0,86400,43200,1248928,1975), -- Pagan Watcher Cerberon (55)
|
|
||||||
(25281,151053,88124,-5424,0,86400,43200,1777317,2987), -- Anakim's Nemesis Zakaron (70)
|
|
||||||
(25282,179311,-7632,-4896,0,86400,43200,1891801,3347), -- Death Lord Shax (75)
|
|
||||||
-- (25283,184410,-10111,-5488,0,86400,43200,1639146,3793), -- Lilith (80) (Spawn by Seven Signs)
|
|
||||||
-- (25286,185000,-13000,-5488,0,86400,43200,1639146,3793), -- Anakim (80) (Spawn by Seven Signs)
|
|
||||||
-- (25290,186304,-43744,-3193,0,86400,43200,977229,3718), -- Daimon The White-Eyed (78) (Spawn by Quest 604_DaimontheWhiteEyedPart2)
|
|
||||||
(25293,134672,-115600,-1216,0,86400,43200,977229,3568), -- Hestia, Guardian Deity Of The Hot Springs (78)
|
|
||||||
-- (25296,158352,-121088,-2240,0,86400,43200,935092,3718), -- Icicle Emperor Bumbalump (74) (Spawn by Quest 625_TheFinestIngredientsPart2)
|
|
||||||
(25299,148160,-73808,-4919,0,86400,43200,714778,3718), -- Ketra's Hero Hekaton (80)
|
|
||||||
-- (25302,145504,-81664,-6016,0,86400,43200,773553,4183), -- Ketra's Commander Tayr (80) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
-- (25305,145008,-84992,-6240,0,86400,43200,1639965,4553), -- Ketra's Chief Brakki (80) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
-- (25306,142368,-82512,-6487,0,86400,43200,534922,3718), -- Soul Of Fire Nastron (80) (Spawn by Quest 616_MagicalPowerOfFirePart2)
|
|
||||||
(25309,115552,-39200,-2480,0,86400,43200,714778,3718), -- Varka's Hero Shadith (80)
|
|
||||||
-- (25312,109216,-36160,-938,0,86400,43200,773553,4183), -- Varka's Commander Mos (80) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
-- (25315,105584,-43024,-1728,0,86400,43200,1639965,4553), -- Varka's Chief Horus (80) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
-- (25316,105452,-36775,-1050,0,86400,43200,534922,3718), -- Soul Of Water Ashutar (80) (Spawn by Quest 610_MagicalPowerOfWaterPart2)
|
|
||||||
(25319,185820,-106096,-6314,34214,86400,43200,1100996,4304), -- Ember (80)
|
|
||||||
(25322,93296,-75104,-1824,0,86400,43200,834231,2707), -- Demon's Agent Falston (66)
|
|
||||||
(25325,91008,-85904,-2736,0,86400,43200,888658,2987), -- Flame Of Splendor Barakiel (70)
|
|
||||||
(25328,59331,-42403,-3003,0,10800,3600,900867,3058), -- Eilhalder Von Hellmann (71) (Only Spawn at Night)
|
|
||||||
-- (25333,0,0,0,0,0,0,0,0), -- Anakazel (28) (Spawn by Dimensional Rift)
|
|
||||||
-- (25334,0,0,0,0,0,0,0,0), -- Anakazel (38) (Spawn by Dimensional Rift)
|
|
||||||
-- (25335,0,0,0,0,0,0,0,0), -- Anakazel (48) (Spawn by Dimensional Rift)
|
|
||||||
-- (25336,0,0,0,0,0,0,0,0), -- Anakazel (58) (Spawn by Dimensional Rift)
|
|
||||||
-- (25337,0,0,0,0,0,0,0,0), -- Anakazel (68) (Spawn by Dimensional Rift)
|
|
||||||
-- (25338,0,0,0,0,0,0,0,0), -- Anakazel (78) (Spawn by Dimensional Rift)
|
|
||||||
-- (25339,0,0,0,0,86400,43200,96646,3718), -- Shadow Of Halisha (81) (Spawn by Four Sepulchers Instance)
|
|
||||||
-- (25342,0,0,0,0,86400,43200,96646,3718), -- Shadow Of Halisha (81) (Spawn by Four Sepulchers Instance)
|
|
||||||
-- (25346,0,0,0,0,86400,43200,96646,3718), -- Shadow Of Halisha (81) (Spawn by Four Sepulchers Instance)
|
|
||||||
-- (25349,0,0,0,0,86400,43200,96646,3718), -- Shadow Of Halisha (81) (Spawn by Four Sepulchers Instance)
|
|
||||||
(25352,-16912,174912,-3264,0,86400,43200,127782,731), -- Giant Wasteland Basilisk (30)
|
|
||||||
(25354,-16096,184288,-3817,0,86400,43200,165289,893), -- Gargoyle Lord Sirocco (35)
|
|
||||||
(25357,-3456,112864,-3456,0,86400,43200,90169,455), -- Sukar Wererat Chief (21)
|
|
||||||
(25360,29216,179280,-3624,0,86400,43200,107186,606), -- Tiger Hornet (26)
|
|
||||||
(25362,-55920,186768,-3336,0,86400,43200,95986,514), -- Tracker Leader Sharuk (23)
|
|
||||||
(25365,-62000,190256,-3687,0,86400,43200,214372,606), -- Patriarch Kuroboros (26)
|
|
||||||
(25366,-62368,179440,-3594,0,86400,43200,95986,514), -- Kuroboros' Priest (23)
|
|
||||||
(25369,-45616,111024,-3808,0,86400,43200,103092,575), -- Soul Scavenger (25)
|
|
||||||
(25372,48000,243376,-6611,0,86400,43200,175392,426), -- Discarded Guardian (20)
|
|
||||||
(25373,9649,77467,-3808,0,86400,43200,90169,455), -- Malex Herald Of Dagoniel (21)
|
|
||||||
(25375,22500,80300,-2772,0,86400,43200,87696,426), -- Zombie Lord Farakelsus (20)
|
|
||||||
-- (25378,-54096,84288,-3512,0,86400,43200,87696,426), -- Madness Beast (20) (The whole area was replaced on Infinite Odyssey)
|
|
||||||
(25380,-47367,51548,-5904,0,86400,43200,90169,455), -- Kaysha Herald Of Icarus (21)
|
|
||||||
(25383,51632,153920,-3552,0,86400,43200,156584,860), -- Revenant Of Sir Calibus (34)
|
|
||||||
-- (25385,53600,143472,-3872,0,86400,43200,174646,927), -- Evil Spirit Tempest (36) (Not spawned anymore in Ertheia)
|
|
||||||
(25388,40128,101920,-1241,0,86400,43200,165289,893), -- Red Eye Captain Trakia (35)
|
|
||||||
(25391,45600,120592,-2455,0,86400,43200,297015,827), -- Nurka's Messenger (33)
|
|
||||||
(25392,29928,107160,-3708,0,86400,43200,141034,795), -- Captain Of Queen's Royal Guards (32)
|
|
||||||
(25394,129481,219722,-3600,0,86400,43200,390743,994), -- Premo Prime (38)
|
|
||||||
(25395,15000,119000,-11900,0,86400,43200,288415,1355), -- Archon Suscepter (45)
|
|
||||||
(25398,5000,189000,-3728,0,86400,43200,165289,893), -- Eye Of Beleth (35)
|
|
||||||
(25401,117808,102880,-3600,0,86400,43200,141034,795), -- Skyla (32)
|
|
||||||
(25404,35992,191312,-3104,0,86400,43200,148507,827), -- Corsair Captain Kylon (33)
|
|
||||||
-- (25407,115072,112272,-3018,0,86400,43200,526218,2301), -- Lord Ishka (60) (Not spawned anymore in H5)
|
|
||||||
(25410,72192,125424,-3657,0,86400,43200,218810,1062), -- Road Scavenger Leader (40)
|
|
||||||
-- (25412,0,0,0,0,0,0,0,0), -- Necrosentinel Royal Guard (47) (Not spawned anymore in H5)
|
|
||||||
(25415,128352,138464,-3467,0,86400,43200,218810,1062), -- Nakondas (40)
|
|
||||||
(25418,62416,8096,-3376,0,86400,43200,273375,1296), -- Dread Avenger Kraven (44)
|
|
||||||
(25420,42032,24128,-4704,0,86400,43200,335987,1537), -- Orfen's Handmaiden (48)
|
|
||||||
-- (25423,113600,47120,-4640,0,86400,43200,539706,2368), -- Fairy Queen Timiniel [Removed Infinite Odyssey] (61)
|
|
||||||
(25426,-18048,-101264,-2112,0,86400,43200,103092,575), -- Betrayer Of Urutu Freki (25)
|
|
||||||
(25429,172064,-214752,-3565,0,86400,43200,103092,575), -- Mammon Collector Talos (25)
|
|
||||||
(25431,79648,18320,-5232,0,86400,43200,273375,1296), -- Flamestone Golem (44)
|
|
||||||
(25434,104096,-16896,-1803,0,86400,43200,451391,1975), -- Bandit Leader Barda (55)
|
|
||||||
(25437,67296,64128,-3723,0,86400,43200,576831,1355), -- Timak Orc Gosmos (45)
|
|
||||||
(25438,107000,92000,-2272,0,86400,43200,273375,1296), -- Thief Kelbar (44)
|
|
||||||
(25441,111440,82912,-2912,0,86400,43200,288415,1355), -- Evil Spirit Cyrion (45)
|
|
||||||
(25444,113232,17456,-4384,0,86400,43200,588136,2639), -- Enmity Ghost Ramdal (65)
|
|
||||||
(25447,113200,17552,-1424,0,86400,43200,645953,3058), -- Immortal Savior Mardil (71)
|
|
||||||
(25450,113600,15104,9559,0,86400,43200,987470,3643), -- Cherub Galaxia (79)
|
|
||||||
-- (25453,156704,-6096,-4185,0,86400,43200,888658,2987), -- Meanas Anor (70) (Not spawned anymore in Infinite Odyssey)
|
|
||||||
(25456,133632,87072,-3623,0,86400,43200,352421,1598), -- Mirror Of Oblivion (49)
|
|
||||||
(25460,150304,67776,-3688,0,86400,43200,385670,1722), -- Deadman Ereve (51)
|
|
||||||
(25463,166288,68096,-3264,0,86400,43200,467209,2039), -- Harit Guardian Garangky (56)
|
|
||||||
-- (25467,0,0,0,0,0,0,0,0), -- Gorgolos (64) (Not spawned anymore in H5)
|
|
||||||
-- (25470,0,0,0,0,0,0,0,0), -- Last Titan Utenus (66) (Not spawned anymore in H5)
|
|
||||||
(25473,175712,29856,-3776,0,86400,43200,402319,1784), -- Grave Robber Kim (52)
|
|
||||||
(25475,183568,24560,-3184,0,86400,43200,451391,1975), -- Ghost Knight Kabed (55)
|
|
||||||
(25478,168288,28368,-3632,0,86400,43200,588136,2639), -- Shilen's Priest Hisilrome (65)
|
|
||||||
(25481,53517,205413,-3728,0,86400,43200,418874,1847), -- Magus Kenishee (53)
|
|
||||||
(25484,43160,220463,-3680,0,86400,43200,369009,1660), -- Zaken's Chief Mate Tillion (50)
|
|
||||||
-- (25487,0,0,0,0,0,0,0,0), -- Water Spirit Lian (40) (Not spawned anymore in H5)
|
|
||||||
-- (25490,0,0,0,0,0,0,0,0), -- Gwindorr (40) (Not spawned anymore in H5)
|
|
||||||
(25493,83174,254428,-10873,0,86400,43200,451391,1975), -- Eva's Spirit Niniel (55)
|
|
||||||
(25496,88300,258000,-10200,0,86400,43200,402319,1784), -- Fafurion's Envoy Pingolpin (52)
|
|
||||||
(25498,126624,174448,-3056,0,86400,43200,288415,1355), -- Fafurion's Henchman Istary (45)
|
|
||||||
(25501,48575,-106191,-1568,0,86400,43200,127782,731), -- Boss Akata (30)
|
|
||||||
(25504,123000,-141000,-1100,0,86400,43200,206753,1028), -- Nellis' Vengeful Spirit (39)
|
|
||||||
(25506,127900,-160600,-1100,0,86400,43200,184670,960), -- Rayito The Looter (37)
|
|
||||||
-- (25509,0,0,0,0,0,0,0,0), -- Dark Shaman Varangka (53) (Not spawned anymore in H5)
|
|
||||||
-- (25512,0,0,0,0,0,0,0,0), -- Gigantic Chaos Golem (52) (Not spawned anymore in GoD)
|
|
||||||
-- (25514,0,0,0,0,0,0,0,0), -- Queen Shyeed (80) (Not spawned anymore in H5)
|
|
||||||
(25523,170000,-60000,-3500,0,86400,43200,1848045,3202), -- Plague Golem (73)
|
|
||||||
(25524,144600,-5500,-4100,0,86400,43200,956490,3420), -- Flamestone Giant (76)
|
|
||||||
(25527,3776,-6768,-3276,0,86400,43200,1608553,451), -- Uruka (80)
|
|
||||||
-- (25528,0,0,0,0,86400,43200,49148,9999), -- Tiberias (22) (handled by instance script)
|
|
||||||
-- (25531,0,0,0,0,86400,43200,2140552,9999), -- Darnel (81) (stats to be done)
|
|
||||||
-- (25532,0,0,0,0,86400,43200,534278,9999), -- Kechi (82) (stats to be done)
|
|
||||||
-- (25534,0,0,0,0,86400,43200,2129066,9999), -- Tears (83) (stats to be done)
|
|
||||||
-- (25536,0,0,0,0,86400,43200,1027906,9999), -- Hannibal (83) (stats to be done)
|
|
||||||
-- (25539,-17475,253163,-3432,0,86400,43200,2076371,9999), -- Typhoon (84) (Not spawned anymore in GoD)
|
|
||||||
-- (25540,0,0,0,0,86400,43200,3524173,9999), -- Demon Prince (83) (handled by instance script)
|
|
||||||
-- (25542,0,0,0,0,86400,43200,3524173,9999), -- Ranku (83) (handled by instance script)
|
|
||||||
-- (25544,-12557,273901,-9000,0,86400,43200,2682423,4177), -- Tully (83) (Not spawned anymore in GoD)
|
|
||||||
-- (25546,0,0,0,0,0,0,0,0), -- Rhianna the Traitor (74) (Spawned by instance)
|
|
||||||
-- (25549,0,0,0,0,0,0,0,0), -- Tesla the Deceiver (75) (Spawned by instance)
|
|
||||||
-- (25552,0,0,0,0,0,0,0,0), -- Soul Hunter Chakundel (76) (Spawned by instance)
|
|
||||||
-- (25553,0,0,0,0,0,0,0,0), -- Durango the Crusher (77) (Spawned by instance)
|
|
||||||
-- (25554,0,0,0,0,0,0,0,0), -- Brutus the Obstinate (78) (Spawned by instance)
|
|
||||||
-- (25557,0,0,0,0,0,0,0,0), -- Ranger Karankawa (79) (Spawned by instance)
|
|
||||||
-- (25560,0,0,0,0,0,0,0,0), -- Sargon the Mad (79) (Spawned by instance)
|
|
||||||
-- (25563,0,0,0,0,0,0,0,0), -- Beautiful Atrielle (81) (Spawned by instance)
|
|
||||||
-- (25566,0,0,0,0,0,0,0,0), -- Nagen the Tomboy (82) (Spawned by instance)
|
|
||||||
-- (25569,0,0,0,0,0,0,0,0), -- Jax the Destroyer (85) (Spawned by instance)
|
|
||||||
-- (25572,0,0,0,0,0,0,0,0), -- Hager the Outlaw (72) (Spawned by instance)
|
|
||||||
-- (25575,0,0,0,0,0,0,0,0), -- All-Seeing Rango (73) (Spawned by instance)
|
|
||||||
-- (25578,0,0,0,0,0,0,0,0), -- Jakard (73) (Spawned by instance)
|
|
||||||
-- (25579,0,0,0,0,0,0,0,0), -- Helsing (74) (Spawned by instance)
|
|
||||||
-- (25582,0,0,0,0,0,0,0,0), -- Gillien (75) (Spawned by instance)
|
|
||||||
-- (25585,0,0,0,0,0,0,0,0), -- Medici (76) (Spawned by instance)
|
|
||||||
-- (25588,0,0,0,0,0,0,0,0), -- Immortal Muus (77) (Spawned by instance)
|
|
||||||
-- (25589,0,0,0,0,0,0,0,0), -- Brand the Exile (78) (Spawned by instance)
|
|
||||||
-- (25592,0,0,0,0,0,0,0,0), -- Commander Koenig (79) (Spawned by instance)
|
|
||||||
-- (25593,0,0,0,0,0,0,0,0), -- Gerg the Hunter (80) (Spawned by instance)
|
|
||||||
-- (25603,20886,244088,11062,0,86400,43200,2308600,4255), -- Darion (87) (Not spawned anymore in GoD)
|
|
||||||
-- (25609,0,0,0,0,86400,43200,9999,9999), -- Epidos (82) (stats to be done)
|
|
||||||
-- (25610,0,0,0,0,86400,43200,9999,9999), -- Epidos (82) (stats to be done)
|
|
||||||
-- (25611,0,0,0,0,86400,43200,9999,9999), -- Epidos (82) (stats to be done)
|
|
||||||
-- (25612,0,0,0,0,86400,43200,9999,9999), -- Epidos (82) (stats to be done)
|
|
||||||
-- (25616,0,0,0,0,0,0,0,0), -- Lost Warden (29) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25617,0,0,0,0,0,0,0,0), -- Lost Warden (39) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25618,0,0,0,0,0,0,0,0), -- Lost Warden (49) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25619,0,0,0,0,0,0,0,0), -- Lost Warden (59) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25620,0,0,0,0,0,0,0,0), -- Lost Warden (69) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25621,0,0,0,0,0,0,0,0), -- Lost Warden (78) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25622,0,0,0,0,0,0,0,0), -- Lost Warden (81) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25623,-192361,254528,15,0,86400,43200,99999,99999), -- Valdstone (80) (stats to be done)
|
|
||||||
-- (25624,-174600,219711,44,0,86400,43200,99999,99999), -- Rok (80) (stats to be done)
|
|
||||||
-- (25625,-181989,208968,44,0,86400,43200,99999,99999), -- Enira (80) (stats to be done)
|
|
||||||
-- (25626,-252898,235845,53,0,86400,43200,99999,99999), -- Dius (80) (stats to be done)
|
|
||||||
-- (25643,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Sentry (81) (stats to be done)
|
|
||||||
-- (25644,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Severer (81) (stats to be done)
|
|
||||||
-- (25645,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Soul Extractor (81) (stats to be done)
|
|
||||||
-- (25646,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Soul Devourer (81) (stats to be done)
|
|
||||||
-- (25647,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Fighter (81) (stats to be done)
|
|
||||||
-- (25648,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Fighter (81) (stats to be done)
|
|
||||||
-- (25649,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Executor (81) (stats to be done)
|
|
||||||
-- (25650,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Executor (81) (stats to be done)
|
|
||||||
-- (25651,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Prophet (81) (stats to be done)
|
|
||||||
-- (25652,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Prophet (81) (stats to be done)
|
|
||||||
-- (25653,0,0,0,0,0,0,0,0), -- Kanadis Herald (81) (Spawned by Pailaka's instance)
|
|
||||||
-- (25654,0,0,0,0,0,0,0,0), -- Kanadis Herald (83) (Spawned by Pailaka's instance)
|
|
||||||
-- (25655,0,0,0,0,0,0,0,0), -- Kanadis Herald (85) (Spawned by Pailaka's instance)
|
|
||||||
-- (25659,0,0,0,0,0,0,0,0), -- Kanadis Guide (77) (Spawned by Pailaka's instance)
|
|
||||||
-- (25660,0,0,0,0,0,0,0,0), -- Kanadis Guide (80) (Spawned by Pailaka's instance)
|
|
||||||
-- (25661,0,0,0,0,0,0,0,0), -- Kanadis Guide (83) (Spawned by Pailaka's instance)
|
|
||||||
-- (25665,0,0,0,0,86400,43200,9999,9999), -- Yehan Klodekus (81) (stats to be done)
|
|
||||||
-- (25666,0,0,0,0,86400,43200,9999,9999), -- Yehan Klanikus (81) (stats to be done)
|
|
||||||
-- (25667,0,0,0,0,86400,43200,9999,9999), -- Cannibalistic Stakato Chief (82) (stats to be done)
|
|
||||||
-- (25668,0,0,0,0,86400,43200,9999,9999), -- Cannibalistic Stakato Chief (82) (stats to be done)
|
|
||||||
-- (25669,0,0,0,0,86400,43200,9999,9999), -- Cannibalistic Stakato Chief (82) (stats to be done)
|
|
||||||
-- (25670,0,0,0,0,86400,43200,9999,9999), -- Cannibalistic Stakato Chief (82) (stats to be done)
|
|
||||||
-- (25671,79634,-55428,-6104,0,86400,43200,743801,4022), -- Queen Shyeed (84) (Spawn by AI)
|
|
||||||
(25674,86534,216888,-3176,0,86400,43200,736436,3945), -- Gwindorr (83)
|
|
||||||
(25677,83056,183232,-3616,0,86400,43200,743801,4022), -- Water Spirit Lian (84)
|
|
||||||
(25680,193902,54135,-4184,0,21600,21600,2035459,3869), -- Giant Marpanak (82)
|
|
||||||
(25681,186210,61479,-4000,0,21600,21600,729145,3869), -- Gorgolos (82)
|
|
||||||
(25684,186919,56297,-4480,0,21600,21600,736436,3945), -- Last Titan Utenus (83)
|
|
||||||
-- (25687,191777,56197,-7624,0,0,3600,1027906,3945), -- Hekaton Prime (83) (Spawn by Quest)
|
|
||||||
-- (25690,0,0,0,0,0,0,0,0), -- Aenkinel (81) (Spawned by Delusion Chamber)
|
|
||||||
-- (25691,0,0,0,0,0,0,0,0), -- Aenkinel (81) (Spawned by Delusion Chamber)
|
|
||||||
-- (25692,0,0,0,0,0,0,0,0), -- Aenkinel (81) (Spawned by Delusion Chamber)
|
|
||||||
-- (25693,0,0,0,0,0,0,0,0), -- Aenkinel (81) (Spawned by Delusion Chamber)
|
|
||||||
-- (25694,0,0,0,0,0,0,0,0), -- Aenkinel (82) (Spawned by Delusion Chamber)
|
|
||||||
-- (25695,0,0,0,0,0,0,0,0), -- Aenkinel (84) (Spawned by Delusion Chamber)
|
|
||||||
(25696,-180146,175202,-10287,13632,86400,21600,1817998,40998), -- Taklacan (85)
|
|
||||||
(25697,-174800,186738,-15100,49504,86400,21600,15024785,40998), -- Torumba (85)
|
|
||||||
(25698,-213004,175631,-11978,16380,86400,21600,1502478,40998), -- Dopagen (85)
|
|
||||||
-- (25699,0,0,0,0,0,0,0,0), -- Glakias (85) (Spawned by Freya Boss Instance Normal)
|
|
||||||
-- (25700,0,0,0,0,0,0,0,0), -- Glakias (85) (Spawned by Freya Boss Instance Hard)
|
|
||||||
(25701,112798,-76800,-10,-15544,86400,43200,2231403,48422), -- Anays (84)
|
|
||||||
-- (25703,0,0,0,0,0,0,0,0), -- Gigantic Golem (79) (Spawned by Dr Chaos AI)
|
|
||||||
-- (25709,0,0,0,0,0,0,0,0), -- Lost Warden (83) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25710,0,0,0,0,0,0,0,0), -- Lost Captain (83) (Spawned by Kamaloka's instance)
|
|
||||||
-- (25713,0,0,0,0,0,0,0,0), -- Darnels (84) (stats to be done)
|
|
||||||
-- (25714,0,0,0,0,0,0,0,0), -- Kietch (84) (stats to be done)
|
|
||||||
-- (25716,0,0,0,0,0,0,0,0), -- Tears (84) (stats to be done)
|
|
||||||
-- (29030,0,0,0,0,0,0,0,0), -- Fenril Hound Kerinne (84) (stats to be done)
|
|
||||||
-- (29033,0,0,0,0,0,0,0,0), -- Fenril Hound Freki (84) (stats to be done)
|
|
||||||
-- (29036,0,0,0,0,0,0,0,0), -- Fenril Hound Uruz (84) (stats to be done)
|
|
||||||
-- (29037,0,0,0,0,0,0,0,0), -- Fenril Hound Kinaz (84) (stats to be done)
|
|
||||||
(29040,189400,-105702,-782,0,604800,0,520605,4140), -- Wings of Flame Ixion (84) TODO: Check if respawn time should be stored into DB to be restored on restart (original record haven't dbsaving={death_time;parameters} and boss_respawn_set=yes parameters)
|
|
||||||
(29054,11882,-49216,-3008,0,0,0,1352750,1494), -- Venom (75)
|
|
||||||
-- (29056,0,0,0,0,0,0,0,0), -- Ice Fairy Sirra (60) (Not spawned anymore in H5)
|
|
||||||
-- (29060,106000,-128000,-3000,0,86400,43200,1566263,9999), -- Captain Of The Ice Queen's Royal Guard (59) (Spawn by Quest)
|
|
||||||
-- (29062,-16373,-53562,-10197,0,86400,43200,275385,9999), -- Andreas Van Halter (80) -- stats to be done (Spawn by Quest)
|
|
||||||
-- (29065,26528,-8244,-2007,0,86400,43200,1639965,9999), -- Sailren (80) -- stats to be done (Spawn by Quest)
|
|
||||||
(29095,147408,-43552,-2328,0,86400,43200,2289038,4553), -- Gordon (80) -- walking around Goddard
|
|
||||||
-- (29096,0,0,0,0,0,0,0,0), -- Anais (80) (Not spawned anymore in H5)
|
|
||||||
-- (29099,0,0,0,0,0,0,0,0), -- Baylor (83) (stats to be done)
|
|
||||||
-- (29129,0,0,0,0,0,0,0,0), -- Lost Captain (29) (Spawned by Kamaloka's instance)
|
|
||||||
-- (29132,0,0,0,0,0,0,0,0), -- Lost Captain (39) (Spawned by Kamaloka's instance)
|
|
||||||
-- (29135,0,0,0,0,0,0,0,0), -- Lost Captain (49) (Spawned by Kamaloka's instance)
|
|
||||||
-- (29138,0,0,0,0,0,0,0,0), -- Lost Captain (59) (Spawned by Kamaloka's instance)
|
|
||||||
-- (29141,0,0,0,0,0,0,0,0), -- Lost Captain (69) (Spawned by Kamaloka's instance)
|
|
||||||
-- (29144,0,0,0,0,0,0,0,0), -- Lost Captain (78) (Spawned by Kamaloka's instance)
|
|
||||||
-- (29147,0,0,0,0,0,0,0,0), -- Lost Captain (81) (Spawned by Kamaloka's instance)
|
|
||||||
-- (29186,0,0,0,0,0,0,0,0), -- Balor (85) (stats to be done)
|
|
||||||
(25725,152260,110394,-5552,0,86400,43200,6165648,20499), -- Drake Lord (85)
|
|
||||||
(25726,145788,120118,-3912,32768,86400,43200,6165648,20499), -- Behemoth Leader (85)
|
|
||||||
(25727,148241,117965,-3712,0,86400,43200,6165648,20499); -- Dragon Beast (85)
|
|
||||||
|
|
||||||
-- Removed
|
|
||||||
DELETE FROM `raidboss_spawnlist` WHERE (boss_id = 25118); -- Guilotine, Warden Of The Execution Grounds
|
|
||||||
DELETE FROM `raidboss_spawnlist` WHERE (boss_id = 25252); -- Palibati Queen Themis
|
|
||||||
DELETE FROM `raidboss_spawnlist` WHERE (boss_id = 25539); -- Typhoon
|
|
||||||
|
|
||||||
-- Guilotine Fortress
|
|
||||||
INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
|
|
||||||
(25886,48232,147384,-3400,10866,86400,43200,0,0),
|
|
||||||
(25887,43151,144689,-3100,52598,86400,43200,0,0),
|
|
||||||
(25888,44970,155903,-1000,52598,86400,43200,0,0),
|
|
||||||
(25892,44824,155944,-1056,35323,86400,43200,0,0);
|
|
||||||
|
|
||||||
-- Correct Location for Tiger King Karuta
|
|
||||||
REPLACE INTO `raidboss_spawnlist` (`boss_id`, `amount`, `loc_x`, `loc_y`, `loc_z`, `heading`, `respawn_delay`, `respawn_random`, `respawn_time`, `currentHp`, `currentMp`) VALUES
|
|
||||||
(25173, 1, 80049, 102334, -3577, 28250, 86400, 43200, 0, '235128', '1279');
|
|
||||||
|
|
||||||
-- Orc Village Area changes
|
|
||||||
INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
|
|
||||||
(25922, 17688, -148888, -184, 17681, 5000, 0, 3271103, 5116283),
|
|
||||||
(25927, -18371, -114358, -4072, 16383, 86400, 21600, 3271103, 5116283),
|
|
||||||
(25928, 16278, -119509, -880, 25269, 8000, 0, 3271103, 5116283),
|
|
||||||
(25929, 16125, -119266, -872, 50450, 8000, 0, 3271103, 5116283),
|
|
||||||
(25930, 16086, -119455, -880, 7324, 8000, 0, 3271103, 5116283),
|
|
||||||
(25931, 16318, -119300, -872, 40015, 8000, 0, 3271103, 5116283);
|
|
||||||
|
|
||||||
-- Wastelands
|
|
||||||
-- Ragraman
|
|
||||||
REPLACE INTO `raidboss_spawnlist` (`boss_id`, `amount`, `loc_x`, `loc_y`, `loc_z`, `heading`, `respawn_delay`, `respawn_random`, `respawn_time`, `currentHp`, `currentMp`) VALUES
|
|
||||||
(25169, 1, -54464, 172151, -3633, 0, 86400, 43200, 0, '175403', '473');
|
|
||||||
-- Rose
|
|
||||||
INSERT INTO `raidboss_spawnlist` (`boss_id`, `amount`, `loc_x`, `loc_y`, `loc_z`, `heading`, `respawn_delay`, `respawn_random`, `respawn_time`, `currentHp`, `currentMp`) VALUES
|
|
||||||
(25870, 1, -30013, 168759, -3862, 26591, 86400, 43200, 0, '517915', '517915');
|
|
||||||
-- Thorn
|
|
||||||
INSERT INTO `raidboss_spawnlist` (`boss_id`, `amount`, `loc_x`, `loc_y`, `loc_z`, `heading`, `respawn_delay`, `respawn_random`, `respawn_time`, `currentHp`, `currentMp`) VALUES
|
|
||||||
(25871, 1, -27329, 182826, -3639, 24935, 86400, 43200, 0, '517915', '517915');
|
|
||||||
@@ -1,6 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `rainbowsprings_attacker_list`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `rainbowsprings_attacker_list` (
|
|
||||||
`clanId` int(10) DEFAULT NULL,
|
|
||||||
`war_decrees_count` double(20,0) DEFAULT NULL,
|
|
||||||
KEY `clanid` (`clanid`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `random_spawn`;
|
|
||||||
CREATE TABLE `random_spawn` (
|
|
||||||
`groupId` tinyint(3) unsigned NOT NULL,
|
|
||||||
`npcId` smallint(5) unsigned NOT NULL,
|
|
||||||
`count` tinyint(1) unsigned NOT NULL DEFAULT '1',
|
|
||||||
`initialDelay` int(8) NOT NULL DEFAULT '-1',
|
|
||||||
`respawnDelay` int(8) NOT NULL DEFAULT '-1',
|
|
||||||
`despawnDelay` int(8) NOT NULL DEFAULT '-1',
|
|
||||||
`broadcastSpawn` enum('true','false') NOT NULL DEFAULT 'false',
|
|
||||||
`randomSpawn` enum('true','false') NOT NULL DEFAULT 'true',
|
|
||||||
PRIMARY KEY (`groupId`)
|
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
INSERT INTO `random_spawn` VALUES
|
|
||||||
(136,32012,1,-1,3600000,0,'false','true'), -- Tantan (Aged ExAdventurer quest)
|
|
||||||
(137,32335,1,-1,120000,120000,'false','true'), -- Marksman (Guards on kamael island)
|
|
||||||
(138,32335,1,-1,120000,120000,'false','true'), -- Marksman (Guards on kamael island)
|
|
||||||
(139,32335,1,-1,120000,120000,'false','true'), -- Marksman (Guards on kamael island)
|
|
||||||
(140,32335,1,-1,120000,120000,'false','true'), -- Marksman (Guards on kamael island)
|
|
||||||
(141,32335,1,-1,120000,120000,'false','true'); -- Marksman (Guards on kamael island)
|
|
||||||
@@ -1,61 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `random_spawn_loc`;
|
|
||||||
CREATE TABLE `random_spawn_loc` (
|
|
||||||
`groupId` tinyint(3) unsigned NOT NULL,
|
|
||||||
`x` mediumint(6) NOT NULL,
|
|
||||||
`y` mediumint(6) NOT NULL,
|
|
||||||
`z` mediumint(6) NOT NULL,
|
|
||||||
`heading` mediumint(6) NOT NULL DEFAULT '0',
|
|
||||||
PRIMARY KEY (`groupId`,`x`,`y`,`z`,`heading`)
|
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
INSERT INTO `random_spawn_loc` VALUES
|
|
||||||
-- Aged ExAdventurer quest
|
|
||||||
(136,89856,-7248,-3034,0),
|
|
||||||
(136,79232,-5904,-2864,0),
|
|
||||||
(136,77584,-1120,-3626,0),
|
|
||||||
(136,96640,-1296,-3648,0),
|
|
||||||
(136,94416,-10256,-3245,0),
|
|
||||||
|
|
||||||
-- Guards on kamael island
|
|
||||||
(137,-73271,53065,-3696,59621),
|
|
||||||
(137,-77006,45317,-2752,19656),
|
|
||||||
(137,-77375,44929,-2720,13828),
|
|
||||||
(137,-80400,40591,-2824,39386),
|
|
||||||
(137,-81005,39627,-2840,30125),
|
|
||||||
(137,-82545,55187,-2848,5047),
|
|
||||||
(137,-83304,58078,-2768,44634),
|
|
||||||
(137,-83539,45978,-2832,1972),
|
|
||||||
(137,-84169,39571,-2448,34277),
|
|
||||||
(137,-92675,56763,-2840,18707),
|
|
||||||
(137,-92931,55027,-2592,63304),
|
|
||||||
(138,-103659,50494,-2000,40765),
|
|
||||||
(138,-107335,48421,-1416,25399),
|
|
||||||
(138,-107347,47372,-1464,59666),
|
|
||||||
(138,-107788,45439,-1584,28523),
|
|
||||||
(138,-109520,47211,-1288,44919),
|
|
||||||
(138,-109520,48888,-1208,49863),
|
|
||||||
(139,-116128,50592,-696,16859),
|
|
||||||
(139,-116225,50135,-744,10002),
|
|
||||||
(139,-116556,50016,-808,5365),
|
|
||||||
(139,-116619,49487,-872,21965),
|
|
||||||
(139,-117008,50954,-728,55329),
|
|
||||||
(139,-117055,49577,-896,3880),
|
|
||||||
(139,-117080,49690,-880,63806),
|
|
||||||
(139,-117606,49650,-920,17813),
|
|
||||||
(139,-117779,50125,-920,47382),
|
|
||||||
(139,-118000,50105,-968,27540),
|
|
||||||
(139,-118097,49912,-936,11260),
|
|
||||||
(139,-120378,37949,1408,4430),
|
|
||||||
(140,-121910,61003,-2368,64230),
|
|
||||||
(140,-122440,55179,-1608,56123),
|
|
||||||
(140,-122475,54840,-1560,5826),
|
|
||||||
(140,-122928,43524,888,44634),
|
|
||||||
(140,-123215,44319,928,30481),
|
|
||||||
(140,-123401,61164,-2656,47517),
|
|
||||||
(140,-123800,60127,-2632,56043),
|
|
||||||
(140,-123943,60348,-2632,22373),
|
|
||||||
(141,-124298,74848,-2800,35875),
|
|
||||||
(141,-124355,71875,-2800,58069),
|
|
||||||
(141,-124356,77403,-3392,58154),
|
|
||||||
(141,-124608,74480,-2704,57957),
|
|
||||||
(141,-126495,61819,-2704,33561);
|
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
DROP TABLE IF EXISTS `residence_functions`;
|
||||||
|
CREATE TABLE IF NOT EXISTS `residence_functions` (
|
||||||
|
`id` int NOT NULL ,
|
||||||
|
`level` int NOT NULL ,
|
||||||
|
`expiration` bigint NOT NULL ,
|
||||||
|
`residenceId` int NOT NULL ,
|
||||||
|
PRIMARY KEY (`id`, `level`, `residenceId`)
|
||||||
|
);
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
-- schedule_config format: Time to add from the last siege in this format DD;MM;YY;HH;mm
|
|
||||||
-- DD = Days to add to the current date for next siege
|
|
||||||
-- MM = Month to add to the current date for the next siege
|
|
||||||
-- YY = Years to add to the current date for the next siege
|
|
||||||
-- HH = Hour of the day when siege must start
|
|
||||||
-- mm = Minutes of the day when siege must start
|
|
||||||
-- Example for a siege each 7 days which starts at 12 o clock: 7;0;0;12;00
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `siegable_clanhall`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `siegable_clanhall` (
|
|
||||||
`clanHallId` int(10) NOT NULL DEFAULT '0',
|
|
||||||
`name` varchar(45) DEFAULT NULL,
|
|
||||||
`ownerId` int(10) DEFAULT NULL,
|
|
||||||
`desc` varchar(100) DEFAULT NULL,
|
|
||||||
`location` varchar(100) DEFAULT NULL,
|
|
||||||
`nextSiege` bigint(20) DEFAULT NULL,
|
|
||||||
`siegeLenght` int(10) DEFAULT NULL,
|
|
||||||
`schedule_config` varchar(20) DEFAULT NULL,
|
|
||||||
PRIMARY KEY (`clanHallId`),
|
|
||||||
KEY `ownerId` (`ownerId`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
INSERT IGNORE INTO `siegable_clanhall` (`clanHallId`, `name`, `ownerId`, `desc`, `location`, `nextSiege`, `siegeLenght`, `schedule_config`) VALUES
|
|
||||||
(21, 'Fortress of Resistance', 0, 'Contestable Clan Hall', 'Dion', 0, 3600000, '14;0;0;12;00'),
|
|
||||||
(34, 'Devastated Castle', 0, 'Contestable Clan Hall', 'Aden', 0, 3600000, '14;0;0;12;00'),
|
|
||||||
(35, 'Bandit StrongHold', 0, 'Contestable Clan Hall', 'Oren', 0, 3600000, '14;0;0;12;00'),
|
|
||||||
(62, 'Rainbow Springs', 0, 'Contestable Clan Hall', 'Goddard', 0, 3600000, '14;0;0;12;00'),
|
|
||||||
(63, 'Beast Farm', 0, 'Contestable Clan Hall', 'Rune', 0, 3600000, '14;0;0;12;00'),
|
|
||||||
(64, 'Fortresss of the Dead', 0, 'Contestable Clan Hall', 'Rune', 0, 3600000, '14;0;0;12;00');
|
|
||||||
@@ -1,10 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `siegable_hall_flagwar_attackers`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `siegable_hall_flagwar_attackers` (
|
|
||||||
`hall_id` tinyint(2) unsigned NOT NULL DEFAULT '0',
|
|
||||||
`flag` int(10) unsigned NOT NULL DEFAULT '0',
|
|
||||||
`npc` int(10) unsigned NOT NULL DEFAULT '0',
|
|
||||||
`clan_id` int(10) unsigned NOT NULL DEFAULT '0',
|
|
||||||
PRIMARY KEY (`flag`),
|
|
||||||
KEY `hall_id` (`hall_id`),
|
|
||||||
KEY `clan_id` (`clan_id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
@@ -1,9 +0,0 @@
|
|||||||
DROP TABLE IF EXISTS `siegable_hall_flagwar_attackers_members`;
|
|
||||||
CREATE TABLE IF NOT EXISTS `siegable_hall_flagwar_attackers_members` (
|
|
||||||
`hall_id` tinyint(2) unsigned NOT NULL DEFAULT '0',
|
|
||||||
`clan_id` int(10) unsigned NOT NULL DEFAULT '0',
|
|
||||||
`object_id` int(10) unsigned NOT NULL DEFAULT '0',
|
|
||||||
KEY `hall_id` (`hall_id`),
|
|
||||||
KEY `clan_id` (`clan_id`),
|
|
||||||
KEY `object_id` (`object_id`)
|
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
|
||||||
-50904
File diff suppressed because it is too large
Load Diff
+1
-94
@@ -619,7 +619,7 @@ INSERT INTO `teleport` VALUES
|
|||||||
('Fantasy Isle -> Krateis Cube',12108,-70293,-71029,-1416,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),
|
('Krateis Cube -> Fantasy Isle',12109,-59224,-56837,-2032,0,0,57),
|
||||||
('Gludio -> Airship dock',12118,-149406,255247,-80,0,0,57),
|
('Gludio -> Airship dock',12118,-149406,255247,-80,0,0,57),
|
||||||
('Airship dock -> Talking Island',12119,-112156,257222,-1408,0,0,57),
|
('Airship dock -> Talking Island',12119,-113525,256531,-1508,0,0,57),
|
||||||
('Talking Island -> Airship dock',12120,-149406,255247,-80,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),
|
('Fantasy Isle -> Handys Block',12121,-57328,-60566,-2360,0,0,57),
|
||||||
('Keucereus -> Heart of Infinity',12122,-204288,242026,1744,0,0,57),
|
('Keucereus -> Heart of Infinity',12122,-204288,242026,1744,0,0,57),
|
||||||
@@ -1027,96 +1027,3 @@ INSERT INTO `teleport` VALUES
|
|||||||
('Monastic Fortress -> Den of Evil',20178,68693,-110438,-1946,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 -> Ice Merchant Cabin',20179,113903,-108752,-860,500,0,57), -- retail
|
||||||
('Monastic Fortress -> Shyeed\'s Cavern',20180,76911,-55295,-5824,500,0,57); -- retail
|
('Monastic Fortress -> Shyeed\'s Cavern',20180,76911,-55295,-5824,500,0,57); -- retail
|
||||||
|
|
||||||
-- Ye Sagira
|
|
||||||
INSERT INTO `teleport` VALUES
|
|
||||||
('Ye Sagira Explorarion Observatory -> The 1st Exploration Zone',3318001, -115005, 237383, -3088,0,0,57),
|
|
||||||
('Ye Sagira Explorarion Observatory -> Exit to the East',3318101, -109294, 237397, -2928,0,0,57),
|
|
||||||
('Ye Sagira Explorarion Observatory -> Exit to the West',3318102, -122189, 241009, -2328,0,0,57),
|
|
||||||
('Ye Sagira Explorarion Observatory -> Return to village',3318103, -114413, 252159, -1592,0,0,57),
|
|
||||||
('Ruins of Ye Sagira Exploration Observatory', 3318004, -114675, 230171, -1648, 0, 0, 57),
|
|
||||||
('The 2nd Exploration Zone Blue', 3318005, -118350, 233992, -2904, 0, 0, 57),
|
|
||||||
('The 3rd Exploration Zone Blue', 3318006, -116303, 239062, -2736, 0, 0, 57),
|
|
||||||
('The 4th Exploration Zone Blue', 3318007, -112382, 238710, -2904, 0, 0, 57),
|
|
||||||
('The 5th Exploration Zone Blue', 3318008, -110980, 233774, -3200, 0, 0, 57),
|
|
||||||
('The 2nd Exploration Zone Red', 3318009, -116777, 233958, -2896, 0, 0, 57),
|
|
||||||
('The 3rd Exploration Zone Red', 3318010, -118123, 239306, -2736, 0, 0, 57),
|
|
||||||
('The 4th Exploration Zone Red', 3318011, -112314, 240190, -2920, 0, 0, 57);
|
|
||||||
|
|
||||||
-- Reliquary of the Giants
|
|
||||||
INSERT INTO `teleport` VALUES ('Reliquary of the Giants', 3334401, -114562, 227307, -2864, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Reliquary of the Giants -> Talking Island', 3320501, -112529, 256741, -1456, 0, 0, 57);
|
|
||||||
|
|
||||||
-- Magmeld
|
|
||||||
INSERT INTO `teleport` VALUES ('Arms of Timiniel', 3291201, 214432, 79857, 816, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Garden of Genesis', 3291202, 207548, 112214, -2064, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Prison of Darkness', 3291203, 175314, 148011, -11648, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Prison of Darkness -> Arcan', 3294601, 207509, 86654, -1006, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Orbis Temple Entrance', 3291204, 198703, 86034, -192, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Orbis Temple 1st floor', 3291205, 213023, 52487, -8416, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Orbis Temple 2nd floor', 3291206, 213025, 50424, -14640, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Orbis Temple 3rd floor', 3291207, 214292, 115551, -12736, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Arcan -> Garden of Genesis', 3308901, 207637, 112584, -2057, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Garden of Genesis -> Arcan', 3309001, 210803, 89448, -1148, 0, 0, 57);
|
|
||||||
|
|
||||||
-- Hunters Village to Anghel Waterfall
|
|
||||||
INSERT INTO `teleport` VALUES ('Hunters Village -> Anghel Waterfall', 3023301, 172458, 90314, -1984, 6300, 1, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Hunters Village -> Anghel Waterfall', 3023302, 172458, 90314, -1984, 0, 1, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('Hunters Village -> Anghel Waterfall', 3023303, 172458, 90314, -1984, 3150, 1, 57);
|
|
||||||
|
|
||||||
-- Wastelands
|
|
||||||
INSERT INTO `teleport` (`Description`, `id`, `loc_x`, `loc_y`, `loc_z`, `price`, `fornoble`, `itemId`) VALUES
|
|
||||||
('Wastelands Merchant Entrance', 3319001, -17151, 208992, -3664, 0, 0, 57),
|
|
||||||
('Elder Casian', 3319002, -16832, 194491, -4208, 0, 0, 57),
|
|
||||||
('Ant Nest Entrance', 3319003, -9570, 176327, -4144, 0, 0, 57),
|
|
||||||
('Near Wasteland Basilisk', 3319004, -16415, 174003, -3304, 0, 0, 57),
|
|
||||||
('Gargoyle Lord Sirocco', 3319005, -16516, 182801, -3872, 0, 0, 57),
|
|
||||||
('Ragraman', 3319006, -53027, 172265, -3680, 0, 0, 57),
|
|
||||||
('Iris', 3319007, -31348, 169552, -3840, 0, 0, 57),
|
|
||||||
('Thorn', 3319008, -28460, 183596, -3760, 0, 0, 57);
|
|
||||||
|
|
||||||
INSERT INTO `teleport` VALUES
|
|
||||||
('Isle of Souls Harbor -> Gludin', 1140, -80684, 149770, -3040, 7300, 0, 57),
|
|
||||||
('Isle of Souls Harbor -> Rune Township', 1141, 43835, -47749, -792, 10000, 0, 57);
|
|
||||||
|
|
||||||
INSERT INTO `teleport` VALUES
|
|
||||||
('Dragon Valley - Town of Giran', 3317001, 83497, 148015, -3400, 0, 0, 57),
|
|
||||||
('Namo - Dragon Valley Junction', 3317002, 80012, 115911, -3672, 1900, 0, 57),
|
|
||||||
('Whirling Vortex Junction', 3317003, 102278, 113038, -3720, 1900, 0, 57),
|
|
||||||
('Namo - Entrance to Antharas Lair', 3317004, 131116, 114333, -3704, 1900, 0, 57),
|
|
||||||
('Northern Dragon Valley', 3317005, 87712, 106060, -3176, 0, 0, 57),
|
|
||||||
('Southern Dragon Valley', 3317006, 88016, 118852, -3056, 0, 0, 57),
|
|
||||||
('Northern Whirling Vortex', 3317007, 108064, 112432, -3008, 0, 0, 57),
|
|
||||||
('Southern Dragon Valley', 3317008, 109918, 121266, -3720, 0, 0, 57),
|
|
||||||
('Deep in Whirling Vortex', 3317009, 119506, 112331, -3688, 0, 0, 57),
|
|
||||||
('Antharas Lair - Barrier Bridge', 3317010, 146129, 111232, -3568, 0, 0, 57),
|
|
||||||
('Deep in Anthars'' Lair', 3317011, 148447, 110582, -3944, 0, 0, 57);
|
|
||||||
|
|
||||||
INSERT INTO `teleport` VALUES
|
|
||||||
('Windmill Hill -> Gludio', '3319009', '-14557', '123809', '-3104', '0', '0', '57');
|
|
||||||
|
|
||||||
-- 3rd Floor Cruma Tower
|
|
||||||
UPDATE `teleport` SET `Description`='Cruma Tower 2nd floor -> Cruma Tower 3rd floor',`loc_x`=17720,`loc_y`=114863,`loc_z`=-11710 WHERE id=24;
|
|
||||||
|
|
||||||
-- Gracia
|
|
||||||
INSERT INTO `teleport` VALUES ('HellfireTeleport1', 990001, -147856, 250651, -14024, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('HellfireTeleport2', 990002, -147728, 152787, -14048, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('HellfireTeleport3', 990003, -150131, 143145, -11960, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('HellfireTeleport4', 990004, -150169, 241022, -11928, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('DevicetoHellfire', 999001, -147642, 152827, -14059, 0, 0, 57);
|
|
||||||
|
|
||||||
-- Enchnated Valley
|
|
||||||
UPDATE `teleport` SET `Description`='Hunters -> Enchanted Valley',`loc_x`=114681,`loc_y`=48255,`loc_z`=4576 WHERE `Id`=100;
|
|
||||||
INSERT INTO `teleport` VALUES ('Herb Collector -> Enchanted Valley ', '3408701', '116703', '53018', '-3632', '0', '0', '57');
|
|
||||||
|
|
||||||
-- Whispering Woods
|
|
||||||
INSERT INTO `teleport` VALUES ('Dolkin -> Whispering Woods', '3400201', '-88295', '237404', '-2880', '0', '0', '57');
|
|
||||||
|
|
||||||
-- Harnak Underground Ruins
|
|
||||||
INSERT INTO `teleport` VALUES ('UndergroundLevel1', 990008, -114700, 147909, -7720, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('UndergroundLevel2', 990005, -114715, 149146, -10786, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('UndergroundLevel3', 990006, -114713, 183251, -13845, 0, 0, 57);
|
|
||||||
INSERT INTO `teleport` VALUES ('UndergroundOutside', 990007, -116160, 236370, -3088, 0, 0, 57);
|
|
||||||
|
|
||||||
-- Shuttgart to Frozen Labyrinth
|
|
||||||
INSERT INTO `teleport` VALUES ('Shuttgart', '200929', '123521', '-126591', '-2448', '500', '0', '57');
|
|
||||||
Vendored
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
while :; do
|
while :; do
|
||||||
[ -f log/java0.log.0 ] && mv log/java0.log.0 "log/`date +%Y-%m-%d_%H-%M-%S`_java.log"
|
[ -f log/java0.log.0 ] && mv log/java0.log.0 "log/`date +%Y-%m-%d_%H-%M-%S`_java.log"
|
||||||
[ -f log/stdout.log ] && mv log/stdout.log "log/`date +%Y-%m-%d_%H-%M-%S`_stdout.log"
|
[ -f log/stdout.log ] && mv log/stdout.log "log/`date +%Y-%m-%d_%H-%M-%S`_stdout.log"
|
||||||
java -Djava.util.logging.manager=com.l2jmobius.util.L2LogManager -Xms1024m -Xmx1536m -jar GameServer.jar > log/stdout.log 2>&1
|
java -Djava.util.logging.manager=com.l2jmobius.log.L2LogManager -Xms4096m -Xmx2048m -jar GameServer.jar > log/stdout.log 2>&1
|
||||||
[ $? -ne 2 ] && break
|
[ $? -ne 2 ] && break
|
||||||
# /etc/init.d/mysql restart
|
# /etc/init.d/mysql restart
|
||||||
sleep 10
|
sleep 10
|
||||||
|
|||||||
+32
-26
@@ -27,6 +27,8 @@
|
|||||||
<admin command="admin_config_server" accessLevel="100" />
|
<admin command="admin_config_server" accessLevel="100" />
|
||||||
<admin command="admin_gmon" accessLevel="100" />
|
<admin command="admin_gmon" accessLevel="100" />
|
||||||
<admin command="admin_worldchat" accessLevel="100" />
|
<admin command="admin_worldchat" accessLevel="100" />
|
||||||
|
<admin command="admin_zones" accessLevel="100"/>
|
||||||
|
<admin command="admin_pointpicking" accessLevel="100"/>
|
||||||
|
|
||||||
<!-- ADMIN ANNOUNCEMENTS -->
|
<!-- ADMIN ANNOUNCEMENTS -->
|
||||||
<admin command="admin_announce" accessLevel="100" />
|
<admin command="admin_announce" accessLevel="100" />
|
||||||
@@ -43,6 +45,7 @@
|
|||||||
<admin command="admin_bbs" accessLevel="100" />
|
<admin command="admin_bbs" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN BUFFS -->
|
<!-- ADMIN BUFFS -->
|
||||||
|
<admin command="admin_buff" accessLevel="100" />
|
||||||
<admin command="admin_getbuffs" accessLevel="100" />
|
<admin command="admin_getbuffs" accessLevel="100" />
|
||||||
<admin command="admin_stopbuff" accessLevel="100" />
|
<admin command="admin_stopbuff" accessLevel="100" />
|
||||||
<admin command="admin_stopallbuffs" accessLevel="100" confirmDlg="true" />
|
<admin command="admin_stopallbuffs" accessLevel="100" confirmDlg="true" />
|
||||||
@@ -73,6 +76,9 @@
|
|||||||
<admin command="admin_clan_show_pending" accessLevel="100" />
|
<admin command="admin_clan_show_pending" accessLevel="100" />
|
||||||
<admin command="admin_clan_force_pending" accessLevel="100" confirmDlg="true" />
|
<admin command="admin_clan_force_pending" accessLevel="100" confirmDlg="true" />
|
||||||
|
|
||||||
|
<!-- ADMIN CLAN -->
|
||||||
|
<admin command="admin_clanhall" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN CREATE ITEM -->
|
<!-- ADMIN CREATE ITEM -->
|
||||||
<admin command="admin_itemcreate" accessLevel="100" />
|
<admin command="admin_itemcreate" accessLevel="100" />
|
||||||
<admin command="admin_create_item" accessLevel="100" />
|
<admin command="admin_create_item" accessLevel="100" />
|
||||||
@@ -104,14 +110,11 @@
|
|||||||
<admin command="admin_closeall" accessLevel="100" />
|
<admin command="admin_closeall" accessLevel="100" />
|
||||||
<admin command="admin_showdoors" accessLevel="100" />
|
<admin command="admin_showdoors" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN WALL CONTROL -->
|
|
||||||
<admin command="admin_showwalls" accessLevel="100" />
|
|
||||||
|
|
||||||
<!-- ADMIN EDIT CHAR -->
|
<!-- ADMIN EDIT CHAR -->
|
||||||
<admin command="admin_edit_character" accessLevel="100" />
|
<admin command="admin_edit_character" accessLevel="100" />
|
||||||
<admin command="admin_current_player" accessLevel="100" />
|
<admin command="admin_current_player" accessLevel="100" />
|
||||||
|
<admin command="admin_setreputation" accessLevel="100" />
|
||||||
<admin command="admin_nokarma" accessLevel="100" />
|
<admin command="admin_nokarma" accessLevel="100" />
|
||||||
<admin command="admin_setkarma" accessLevel="100" />
|
|
||||||
<admin command="admin_setfame" accessLevel="100" />
|
<admin command="admin_setfame" accessLevel="100" />
|
||||||
<admin command="admin_character_list" accessLevel="100" />
|
<admin command="admin_character_list" accessLevel="100" />
|
||||||
<admin command="admin_character_info" accessLevel="100" />
|
<admin command="admin_character_info" accessLevel="100" />
|
||||||
@@ -143,6 +146,8 @@
|
|||||||
<admin command="admin_set_hp" accessLevel="100" />
|
<admin command="admin_set_hp" accessLevel="100" />
|
||||||
<admin command="admin_set_mp" accessLevel="100" />
|
<admin command="admin_set_mp" accessLevel="100" />
|
||||||
<admin command="admin_set_cp" accessLevel="100" />
|
<admin command="admin_set_cp" accessLevel="100" />
|
||||||
|
<admin command="admin_setparam" accessLevel="100" />
|
||||||
|
<admin command="admin_unsetparam" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN EFFECTS -->
|
<!-- ADMIN EFFECTS -->
|
||||||
<admin command="admin_invis" accessLevel="100" />
|
<admin command="admin_invis" accessLevel="100" />
|
||||||
@@ -183,6 +188,7 @@
|
|||||||
<admin command="admin_atmosphere_menu" accessLevel="100" />
|
<admin command="admin_atmosphere_menu" accessLevel="100" />
|
||||||
<admin command="admin_set_displayeffect" accessLevel="100" />
|
<admin command="admin_set_displayeffect" accessLevel="100" />
|
||||||
<admin command="admin_set_displayeffect_menu" accessLevel="100" />
|
<admin command="admin_set_displayeffect_menu" accessLevel="100" />
|
||||||
|
<admin command="admin_playmovie" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN ELEMENT -->
|
<!-- ADMIN ELEMENT -->
|
||||||
<admin command="admin_setlh" accessLevel="100" />
|
<admin command="admin_setlh" accessLevel="100" />
|
||||||
@@ -302,20 +308,27 @@
|
|||||||
<admin command="admin_grandboss_minions" accessLevel="100" />
|
<admin command="admin_grandboss_minions" accessLevel="100" />
|
||||||
<admin command="admin_grandboss_abort" accessLevel="100" />
|
<admin command="admin_grandboss_abort" accessLevel="100" />
|
||||||
|
|
||||||
|
<!-- ADMIN CLAN HALL -->
|
||||||
|
<admin command="admin_clanhall" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN HEAL -->
|
<!-- ADMIN HEAL -->
|
||||||
<admin command="admin_heal" accessLevel="100" />
|
<admin command="admin_heal" accessLevel="100" />
|
||||||
|
|
||||||
|
<!-- ADMIN HELLBOUND -->
|
||||||
|
<admin command="admin_hellbound_setlevel" accessLevel="100" />
|
||||||
|
<admin command="admin_hellbound" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN HTML -->
|
<!-- ADMIN HTML -->
|
||||||
<admin command="admin_html" accessLevel="100" />
|
<admin command="admin_html" accessLevel="100" />
|
||||||
<admin command="admin_loadhtml" accessLevel="100" />
|
<admin command="admin_loadhtml" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN INSTANCE -->
|
<!-- ADMIN INSTANCE -->
|
||||||
<admin command="admin_setinstance" accessLevel="100" />
|
<admin command="admin_instance" accessLevel="100" />
|
||||||
<admin command="admin_ghoston" accessLevel="100" />
|
<admin command="admin_instances" accessLevel="100" />
|
||||||
<admin command="admin_ghostoff" accessLevel="100" />
|
<admin command="admin_instancelist" accessLevel="100" />
|
||||||
<admin command="admin_createinstance" accessLevel="100" />
|
<admin command="admin_instancecreate" accessLevel="100" />
|
||||||
<admin command="admin_destroyinstance" accessLevel="100" />
|
<admin command="admin_instanceteleport" accessLevel="100" />
|
||||||
<admin command="admin_listinstances" accessLevel="100" />
|
<admin command="admin_instancedestroy" accessLevel="100" confirmDlg="true" />
|
||||||
|
|
||||||
<!-- ADMIN INSTANCE ZONE -->
|
<!-- ADMIN INSTANCE ZONE -->
|
||||||
<admin command="admin_instancezone" accessLevel="100" />
|
<admin command="admin_instancezone" accessLevel="100" />
|
||||||
@@ -324,6 +337,8 @@
|
|||||||
<!-- ADMIN INVUL -->
|
<!-- ADMIN INVUL -->
|
||||||
<admin command="admin_invul" accessLevel="100" />
|
<admin command="admin_invul" accessLevel="100" />
|
||||||
<admin command="admin_setinvul" accessLevel="100" />
|
<admin command="admin_setinvul" accessLevel="100" />
|
||||||
|
<admin command="admin_undying" accessLevel="100" />
|
||||||
|
<admin command="admin_setundying" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN KICK -->
|
<!-- ADMIN KICK -->
|
||||||
<admin command="admin_kick" accessLevel="100" confirmDlg="true" />
|
<admin command="admin_kick" accessLevel="100" confirmDlg="true" />
|
||||||
@@ -419,9 +434,6 @@
|
|||||||
<admin command="admin_untransform" accessLevel="100" />
|
<admin command="admin_untransform" accessLevel="100" />
|
||||||
<admin command="admin_transform_menu" accessLevel="100" />
|
<admin command="admin_transform_menu" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN PC POINTS -->
|
|
||||||
<admin command="admin_pcbangpoints" accessLevel="100" />
|
|
||||||
|
|
||||||
<!-- ADMIN PRIME POINTS -->
|
<!-- ADMIN PRIME POINTS -->
|
||||||
<admin command="admin_primepoints" accessLevel="100" />
|
<admin command="admin_primepoints" accessLevel="100" />
|
||||||
|
|
||||||
@@ -437,6 +449,7 @@
|
|||||||
<admin command="admin_quest_reload" accessLevel="100" />
|
<admin command="admin_quest_reload" accessLevel="100" />
|
||||||
<admin command="admin_script_load" accessLevel="100" />
|
<admin command="admin_script_load" accessLevel="100" />
|
||||||
<admin command="admin_script_unload" accessLevel="100" />
|
<admin command="admin_script_unload" accessLevel="100" />
|
||||||
|
<admin command="admin_script_dir" accessLevel="100" />
|
||||||
<admin command="admin_show_quests" accessLevel="100" />
|
<admin command="admin_show_quests" accessLevel="100" />
|
||||||
<admin command="admin_quest_info" accessLevel="100" />
|
<admin command="admin_quest_info" accessLevel="100" />
|
||||||
|
|
||||||
@@ -456,10 +469,11 @@
|
|||||||
<admin command="admin_ride_bike" accessLevel="100" />
|
<admin command="admin_ride_bike" accessLevel="100" />
|
||||||
<admin command="admin_ride_wyvern" accessLevel="100" />
|
<admin command="admin_ride_wyvern" accessLevel="100" />
|
||||||
<admin command="admin_ride_strider" accessLevel="100" />
|
<admin command="admin_ride_strider" accessLevel="100" />
|
||||||
<admin command="admin_ride_guardian" accessLevel="100" />
|
<admin command="admin_unride_wyvern" accessLevel="100" />
|
||||||
<admin command="admin_ride_lion" accessLevel="100" />
|
<admin command="admin_unride_strider" accessLevel="100" />
|
||||||
<admin command="admin_ride_wolf" accessLevel="100" />
|
|
||||||
<admin command="admin_unride" 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 SHOP -->
|
||||||
<admin command="admin_buy" accessLevel="100" />
|
<admin command="admin_buy" accessLevel="100" />
|
||||||
@@ -474,14 +488,6 @@
|
|||||||
<admin command="admin_server_restart" accessLevel="100" confirmDlg="true" />
|
<admin command="admin_server_restart" accessLevel="100" confirmDlg="true" />
|
||||||
<admin command="admin_server_abort" accessLevel="100" />
|
<admin command="admin_server_abort" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN CLAN HALL -->
|
|
||||||
<admin command="admin_clanhall" accessLevel="100" />
|
|
||||||
<admin command="admin_clanhallset" accessLevel="100" />
|
|
||||||
<admin command="admin_clanhalldel" accessLevel="100" />
|
|
||||||
<admin command="admin_clanhallopendoors" accessLevel="100" />
|
|
||||||
<admin command="admin_clanhallclosedoors" accessLevel="100" />
|
|
||||||
<admin command="admin_clanhallteleportself" accessLevel="100" />
|
|
||||||
|
|
||||||
<!-- ADMIN CASTLE -->
|
<!-- ADMIN CASTLE -->
|
||||||
<admin command="admin_castlemanage" accessLevel="100" />
|
<admin command="admin_castlemanage" accessLevel="100" />
|
||||||
|
|
||||||
@@ -501,6 +507,8 @@
|
|||||||
<admin command="admin_remove_all_skills" accessLevel="100" />
|
<admin command="admin_remove_all_skills" accessLevel="100" />
|
||||||
<admin command="admin_add_clan_skill" accessLevel="100" />
|
<admin command="admin_add_clan_skill" accessLevel="100" />
|
||||||
<admin command="admin_setskill" accessLevel="100" />
|
<admin command="admin_setskill" accessLevel="100" />
|
||||||
|
<admin command="admin_cast" accessLevel="100" />
|
||||||
|
<admin command="admin_castnow" accessLevel="100" />
|
||||||
|
|
||||||
<!-- ADMIN SPAWN -->
|
<!-- ADMIN SPAWN -->
|
||||||
<admin command="admin_show_spawns" accessLevel="100" />
|
<admin command="admin_show_spawns" accessLevel="100" />
|
||||||
@@ -513,8 +521,6 @@
|
|||||||
<admin command="admin_npc_index" accessLevel="100" />
|
<admin command="admin_npc_index" accessLevel="100" />
|
||||||
<admin command="admin_spawn_once" accessLevel="100" />
|
<admin command="admin_spawn_once" accessLevel="100" />
|
||||||
<admin command="admin_show_npcs" accessLevel="100" />
|
<admin command="admin_show_npcs" accessLevel="100" />
|
||||||
<admin command="admin_spawnnight" accessLevel="100" />
|
|
||||||
<admin command="admin_spawnday" accessLevel="100" />
|
|
||||||
<admin command="admin_instance_spawns" accessLevel="100" />
|
<admin command="admin_instance_spawns" accessLevel="100" />
|
||||||
<admin command="admin_list_spawns" accessLevel="100" />
|
<admin command="admin_list_spawns" accessLevel="100" />
|
||||||
<admin command="admin_list_positions" accessLevel="100" />
|
<admin command="admin_list_positions" accessLevel="100" />
|
||||||
|
|||||||
Vendored
+28
-142
@@ -49,6 +49,11 @@ HpRegenMultiplier = 100
|
|||||||
MpRegenMultiplier = 100
|
MpRegenMultiplier = 100
|
||||||
CpRegenMultiplier = 100
|
CpRegenMultiplier = 100
|
||||||
|
|
||||||
|
# Decrease CP by 10 every normal hit a player do
|
||||||
|
# Default: False
|
||||||
|
AltGameTiredness = False
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Skills & Effects
|
# Skills & Effects
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -130,19 +135,6 @@ StoreSkillCooltime = True
|
|||||||
# Default: False
|
# Default: False
|
||||||
SubclassStoreSkillCooltime = False
|
SubclassStoreSkillCooltime = False
|
||||||
|
|
||||||
# These are alternative rules for shields.
|
|
||||||
# If True and they block:
|
|
||||||
# The damage is powerAtk-shieldDef,
|
|
||||||
# If False and they block:
|
|
||||||
# The damage is powerAtk / (shieldDef + powerDef)
|
|
||||||
# Default: False
|
|
||||||
AltShieldBlocks = False
|
|
||||||
|
|
||||||
# This is the percentage for perfect shield block rate.
|
|
||||||
# DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
|
|
||||||
# Default: 10
|
|
||||||
AltPerfectShieldBlockRate = 10
|
|
||||||
|
|
||||||
# This is the value ticks are multiplied with to result in interval per tick in milliseconds.
|
# This is the value ticks are multiplied with to result in interval per tick in milliseconds.
|
||||||
# Note: Editing this will not affect how much the over-time effects heals since heal scales with that value too.
|
# Note: Editing this will not affect how much the over-time effects heals since heal scales with that value too.
|
||||||
# Default: 666
|
# Default: 666
|
||||||
@@ -151,39 +143,6 @@ EffectTickRatio = 666
|
|||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Class, Sub-class and skill learning options
|
# Class, Sub-class and skill learning options
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Allow use of Event Managers for changing occupation without any quests.
|
|
||||||
# Npc ids 31756 and 31757. There already are two spawns at Talking Island.
|
|
||||||
# Note: Spawns are only visible when bellow configuration is enabled.
|
|
||||||
# Default: False
|
|
||||||
AllowClassMasters = False
|
|
||||||
|
|
||||||
# ConfigClassMaster=1;[57(100000)];[];2;[57(1000000)];[];3;[57(10000000)],[5575(1000000)];[6622(1)];4;[57(100000000)];[]
|
|
||||||
# 1st occupation change for 100.000 Adena (item id 57)
|
|
||||||
# 2nd occupation change for 1.000.0000 Adena (item id 57)
|
|
||||||
# 3rd occupation change for 10.000.0000 Adena (item id 57) and 1.000.000 Ancient Adena (item id 5575)
|
|
||||||
# on 3rd occupation change player will be rewarded with 1 Book of Giants (item id 6622)
|
|
||||||
# 4th occupation change for 100.000.0000 Adena (item id 57)
|
|
||||||
# ConfigClassMaster=1;[];[];2;[];[]
|
|
||||||
# Allow only first and second change.
|
|
||||||
# ConfigClassMaster=1;[];[];2;[];[];3;[];[];4;[];[]
|
|
||||||
# 1st, 2nd, 3rd, 4th occupation change for free, without rewards.
|
|
||||||
ConfigClassMaster = 1;[];[];2;[];[];3;[];[];4;[];[]
|
|
||||||
|
|
||||||
# Class Masters will allow changing to any occupation on any level inside class tree
|
|
||||||
# For example, Dwarven Fighter will be able to advance to:
|
|
||||||
# Artisan, Scavenger, Warsmith, Bounty Hunter, Maestro, Fortune Seeker.
|
|
||||||
# But Warsmith will be able to change only to Maestro.
|
|
||||||
# Default = False
|
|
||||||
AllowEntireTree = False
|
|
||||||
|
|
||||||
# When character reach levels 20,40,76,85 he will receive tutorial page
|
|
||||||
# with list of the all possible variants, and can select and immediately
|
|
||||||
# change to the new occupation, or decide to choose later (on next login).
|
|
||||||
# Can be used with or without classic Class Masters.
|
|
||||||
# Default = False
|
|
||||||
AlternateClassMaster = False
|
|
||||||
|
|
||||||
# Require life crystal needed to learn clan skills.
|
# Require life crystal needed to learn clan skills.
|
||||||
# Default: True
|
# Default: True
|
||||||
LifeCrystalNeeded = True
|
LifeCrystalNeeded = True
|
||||||
@@ -224,14 +183,6 @@ FeeDeleteSubClassSkills = 10000000
|
|||||||
# Default: 20000000
|
# Default: 20000000
|
||||||
FeeDeleteDualClassSkills = 20000000
|
FeeDeleteDualClassSkills = 20000000
|
||||||
|
|
||||||
# Need Seize your destiny quest, to awaken
|
|
||||||
# Default: true
|
|
||||||
NeedSeizeYourDestinyForAwaken = false
|
|
||||||
|
|
||||||
# Need Scroll of Afterlife item to awaken
|
|
||||||
# Default: true
|
|
||||||
NeedScrollOfAfterlifeForAwaken = false
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Summons configuration
|
# Summons configuration
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -262,37 +213,19 @@ EnableVitality = True
|
|||||||
# Default: 140000
|
# Default: 140000
|
||||||
StartingVitalityPoints = 140000
|
StartingVitalityPoints = 140000
|
||||||
|
|
||||||
# Day on which vitality of all players will be reseted
|
|
||||||
# Possible values:
|
|
||||||
# 1 - Sunday
|
|
||||||
# 2 - Monday
|
|
||||||
# 3 - Tuesday
|
|
||||||
# 4 - Wednesday
|
|
||||||
# 5 - Thursday
|
|
||||||
# 6 - Friday
|
|
||||||
# 7 - Saturday
|
|
||||||
# Default: 4
|
|
||||||
AltVitalityDateReset = 4
|
|
||||||
|
|
||||||
# Hour on which all vitality will be reseted
|
|
||||||
# Format: Hour:Minute:Second
|
|
||||||
# Default: 06:30:00
|
|
||||||
AltVitalityHourReset = 06:30:00
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Limits
|
# Limits
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Maximum Exp Bonus.
|
# Maximum Exp Bonus.
|
||||||
# from vitality + nevit's hunting bonus, and etc..
|
# from vitality + nevit's hunting bonus, and etc..
|
||||||
# Default: 3.5
|
# Default: 0 (Disabled)
|
||||||
MaxExpBonus = 3.5
|
MaxExpBonus = 0
|
||||||
|
|
||||||
# Maximum Sp Bonus.
|
# Maximum Sp Bonus.
|
||||||
# from vitality + nevit's hunting bonus, and etc..
|
# from vitality + nevit's hunting bonus, and etc..
|
||||||
# Default: 3.5
|
# Default: 0 (Disabled)
|
||||||
MaxSpBonus = 3.5
|
MaxSpBonus = 0
|
||||||
|
|
||||||
# Maximum character running speed.
|
# Maximum character running speed.
|
||||||
# Default: 300
|
# Default: 300
|
||||||
@@ -324,11 +257,10 @@ MaxEvasion = 250
|
|||||||
MinAbnormalStateSuccessRate = 10
|
MinAbnormalStateSuccessRate = 10
|
||||||
MaxAbnormalStateSuccessRate = 90
|
MaxAbnormalStateSuccessRate = 90
|
||||||
|
|
||||||
# Maximum Player Level
|
# Maximum amount of SP a character can posses.
|
||||||
# WARNING: Cannot exceed the maximum experince.xml level.
|
# Current retail limit is 50 billion, use -1 to set it to unlimited.
|
||||||
# Example: Set as 85 to force the maximum player level at 85.
|
# Default: 50000000000
|
||||||
# Retail: 107
|
MaxSp = 50000000000
|
||||||
MaximumPlayerLevel = 107
|
|
||||||
|
|
||||||
# Maximum number of allowed subclasses for every player.
|
# Maximum number of allowed subclasses for every player.
|
||||||
# Do not use more than 3!
|
# Do not use more than 3!
|
||||||
@@ -409,21 +341,11 @@ EnchantChanceElementCrystal = 30
|
|||||||
EnchantChanceElementJewel = 20
|
EnchantChanceElementJewel = 20
|
||||||
EnchantChanceElementEnergy = 10
|
EnchantChanceElementEnergy = 10
|
||||||
|
|
||||||
# This controls the chance of an change element stone chance.
|
|
||||||
# This chance is in %, so if you set this to 100%, enchants will always succeed.
|
|
||||||
# DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
|
|
||||||
ChangeChanceElement = 60
|
|
||||||
|
|
||||||
# List of non-enchantable items.
|
# List of non-enchantable items.
|
||||||
# Currently apprentice, travelers weapons and Pailaka items
|
# Currently apprentice, travelers weapons and Pailaka items
|
||||||
# Default: 7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,13293,13294,13296
|
# Default: 7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,13293,13294,13296
|
||||||
EnchantBlackList = 7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,13293,13294,13296
|
EnchantBlackList = 7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,13293,13294,13296
|
||||||
|
|
||||||
# If enabled, enchanting over the maximum enchant limit will not be possible; instead, a warning message will be sent to the player.
|
|
||||||
# You can set custom maxEnchant values at EnchantItemData.xml
|
|
||||||
# Default: True
|
|
||||||
DisableOverEnchanting = True
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Augmenting
|
# Augmenting
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -477,18 +399,6 @@ AugmentationBlackList = 6656,6657,6658,6659,6660,6661,6662,8191,10170,10314,1374
|
|||||||
# Default: False
|
# Default: False
|
||||||
AltAllowAugmentPvPItems = false
|
AltAllowAugmentPvPItems = false
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Compound
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# This controls the chance a stone to break when compounding to upper level.
|
|
||||||
# This chance is in %, so if you set this to 100%, enchants will always succeed.
|
|
||||||
# Second level works for First + First, Third level for Second + Second and so on.
|
|
||||||
# DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
|
|
||||||
SecondLevelUpgradeChance = 90
|
|
||||||
ThirdLevelUpgradeChance = 80
|
|
||||||
FourthLevelUpgradeChance = 70
|
|
||||||
FithLevelUpgradeChance = 60
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Karma
|
# Karma
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -501,10 +411,6 @@ AltKarmaPlayerCanBeKilledInPeaceZone = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
AltKarmaPlayerCanUseGK = False
|
AltKarmaPlayerCanUseGK = False
|
||||||
|
|
||||||
# Flagged player can use GateKeeper.
|
|
||||||
# Default: True
|
|
||||||
AltFlaggedPlayerCanUseGK = True
|
|
||||||
|
|
||||||
# Karma player can use escape and recall skills.
|
# Karma player can use escape and recall skills.
|
||||||
# Default: True
|
# Default: True
|
||||||
AltKarmaPlayerCanTeleport = True
|
AltKarmaPlayerCanTeleport = True
|
||||||
@@ -543,8 +449,8 @@ FortressZoneFameAquirePoints = 31
|
|||||||
CastleZoneFameTaskFrequency = 300
|
CastleZoneFameTaskFrequency = 300
|
||||||
|
|
||||||
# How much Fame acquired while in a Castle Siege Zone
|
# How much Fame acquired while in a Castle Siege Zone
|
||||||
# Default: 125
|
# Default: 1250
|
||||||
CastleZoneFameAquirePoints = 125
|
CastleZoneFameAquirePoints = 1250
|
||||||
|
|
||||||
# Dead players can receive fame.
|
# Dead players can receive fame.
|
||||||
# Default: True
|
# Default: True
|
||||||
@@ -599,24 +505,6 @@ StoreRecipeShopList = False
|
|||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Clan
|
# Clan
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Day on which all pending clan leader requests will be applied:
|
|
||||||
# Possible values:
|
|
||||||
# 1 - Sunday
|
|
||||||
# 2 - Monday
|
|
||||||
# 3 - Tuesday
|
|
||||||
# 4 - Wednesday
|
|
||||||
# 5 - Thursday
|
|
||||||
# 6 - Friday
|
|
||||||
# 7 - Saturday
|
|
||||||
# Default: 3
|
|
||||||
AltClanLeaderDateChange = 3
|
|
||||||
|
|
||||||
# Hour on which all pending data requests will be applied:
|
|
||||||
# Format: Hour:Minute:Second
|
|
||||||
# Default: 00:00:00
|
|
||||||
AltClanLeaderHourChange = 00:00:00
|
|
||||||
|
|
||||||
# When enabled all clan leader requests will be performed instantly.
|
# When enabled all clan leader requests will be performed instantly.
|
||||||
# Default: False
|
# Default: False
|
||||||
AltClanLeaderInstantActivation = False
|
AltClanLeaderInstantActivation = False
|
||||||
@@ -669,11 +557,20 @@ RemoveCastleCirclets = True
|
|||||||
# Default: 15
|
# Default: 15
|
||||||
AltClanMembersForWar = 15
|
AltClanMembersForWar = 15
|
||||||
|
|
||||||
|
# The the time that player must be online to be counted as online player and registered for clan bonus
|
||||||
|
# Default: 30mins
|
||||||
|
AltClanMembersTimeForBonus = 30mins
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Party
|
# Party
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
# Maximal count of players in one party.
|
||||||
|
# WARNING: More than 7 can cause client UI problems.
|
||||||
|
# Default: 7
|
||||||
|
AltPartyMaxMembers = 7
|
||||||
|
|
||||||
# CONFUSING(nothing to do with party) -> When you made damage to a mob
|
# CONFUSING(nothing to do with party) -> When you made damage to a mob
|
||||||
# and are inside this range, you will be considered as player to reward.
|
# and are inside this range, you will be considered as player to reward.
|
||||||
# Checks for party range to mob to calculate rewards(exp, items).
|
# Checks for party range to mob to calculate rewards(exp, items).
|
||||||
@@ -767,7 +664,7 @@ PlayerSpawnProtection = 600
|
|||||||
# of the item usage from items in this list.
|
# of the item usage from items in this list.
|
||||||
# Format: itemId,itemId,itemId,....
|
# Format: itemId,itemId,itemId,....
|
||||||
# Default: 0
|
# Default: 0
|
||||||
PlayerSpawnProtectionAllowedItems =
|
PlayerSpawnProtectionAllowedItems = 0
|
||||||
|
|
||||||
# Teleport spawn protection time. It will protect the player in the
|
# Teleport spawn protection time. It will protect the player in the
|
||||||
# teleport spawn for the given time. 0 to disable feature
|
# teleport spawn for the given time. 0 to disable feature
|
||||||
@@ -798,7 +695,7 @@ MaxPetitionsPending = 25
|
|||||||
|
|
||||||
# Free teleporting around the world.
|
# Free teleporting around the world.
|
||||||
# Default: False
|
# Default: False
|
||||||
FreeTeleporting = False
|
AltFreeTeleporting = False
|
||||||
|
|
||||||
# Allow character deletion after days set below. To disallow character deletion, set this equal to 0.
|
# Allow character deletion after days set below. To disallow character deletion, set this equal to 0.
|
||||||
# Default: 1
|
# Default: 1
|
||||||
@@ -847,19 +744,14 @@ PartyXpCutoffGaps = 0,9;10,14;15,99
|
|||||||
# Default: 100;30;0
|
# Default: 100;30;0
|
||||||
PartyXpCutoffGapPercent = 100;30;0
|
PartyXpCutoffGapPercent = 100;30;0
|
||||||
|
|
||||||
# Disable tutorial quests.
|
|
||||||
# Default: False
|
|
||||||
DisableTutorial = False
|
|
||||||
|
|
||||||
# Expertise penalty
|
# Expertise penalty
|
||||||
# If disabled, player will not receive penalty for equip higher grade items
|
# If disabled, player will not receive penalty for equip higher grade items
|
||||||
# Default: True
|
# Default: True
|
||||||
ExpertisePenalty = True
|
ExpertisePenalty = True
|
||||||
|
|
||||||
# Player can in client define his own key mapping and for save it must be stored server side.
|
# Player can in client define his own key mapping and for save it must be stored server side.
|
||||||
# Disabled until confirmed as working.
|
# Default: True
|
||||||
# Default: False
|
StoreCharUiSettings = True
|
||||||
StoreCharUiSettings = False
|
|
||||||
|
|
||||||
# Character name restriction
|
# Character name restriction
|
||||||
# Disallow characters to have a name which contains the words.
|
# Disallow characters to have a name which contains the words.
|
||||||
@@ -871,12 +763,6 @@ ForbiddenNames = annou,ammou,amnou,anmou,anou,amou
|
|||||||
# The exclude list is cleared each time the character goes into silence mode.
|
# The exclude list is cleared each time the character goes into silence mode.
|
||||||
SilenceModeExclude = False
|
SilenceModeExclude = False
|
||||||
|
|
||||||
# Enables alternative validation of triggering skills.
|
|
||||||
# When enabled pvp skills will not be casted on non flagged player.
|
|
||||||
# Sadly its non-retail
|
|
||||||
# Default: False
|
|
||||||
AltValidateTriggerSkills = False
|
|
||||||
|
|
||||||
# Show Goddess of Destruction video introduction for newly created character
|
# Show Goddess of Destruction video introduction for newly created character
|
||||||
# Default: True
|
# Default: True
|
||||||
GoDVideoIntro = True
|
GoDVideoIntro = True
|
||||||
|
|||||||
+31
@@ -0,0 +1,31 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/ClanReward.xsd">
|
||||||
|
<membersOnline>
|
||||||
|
<players size="10" level="1">
|
||||||
|
<skill id="23774" level="1" /> <!-- Clan Teamwork - Stage 1 -->
|
||||||
|
</players>
|
||||||
|
<players size="20" level="2">
|
||||||
|
<skill id="23775" level="1" /> <!-- Clan Teamwork - Stage 2 -->
|
||||||
|
</players>
|
||||||
|
<players size="30" level="3">
|
||||||
|
<skill id="23776" level="1" /> <!-- Clan Teamwork - Stage 3 -->
|
||||||
|
</players>
|
||||||
|
<players size="40" level="4">
|
||||||
|
<skill id="23777" level="1" /> <!-- Clan Teamwork - Stage 4 -->
|
||||||
|
</players>
|
||||||
|
</membersOnline>
|
||||||
|
<huntingBonus>
|
||||||
|
<hunting points="28800000" level="1">
|
||||||
|
<item id="27589" count="1" /> <!-- Supply Box - Standard -->
|
||||||
|
</hunting>
|
||||||
|
<hunting points="57600000" level="2">
|
||||||
|
<item id="27590" count="1" /> <!-- Supply Box - Mid-grade -->
|
||||||
|
</hunting>
|
||||||
|
<hunting points="86400000" level="3">
|
||||||
|
<item id="27591" count="1" /> <!-- Supply Box - High-grade -->
|
||||||
|
</hunting>
|
||||||
|
<hunting points="115200000" level="4">
|
||||||
|
<item id="27663" count="1" /> <!-- Supply Box - Top-grade -->
|
||||||
|
</hunting>
|
||||||
|
</huntingBonus>
|
||||||
|
</list>
|
||||||
+66
@@ -0,0 +1,66 @@
|
|||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/classMaster.xsd">
|
||||||
|
<classMaster classChangeEnabled="false" spawnClassMasters="false" showPopupWindow="false">
|
||||||
|
<classChangeOption name="Free">
|
||||||
|
<appliesTo>
|
||||||
|
<category>FIRST_CLASS_GROUP</category>
|
||||||
|
</appliesTo>
|
||||||
|
</classChangeOption>
|
||||||
|
<classChangeOption name="Free">
|
||||||
|
<appliesTo>
|
||||||
|
<category>SECOND_CLASS_GROUP</category>
|
||||||
|
</appliesTo>
|
||||||
|
</classChangeOption>
|
||||||
|
<classChangeOption name="Pay Adena">
|
||||||
|
<appliesTo>
|
||||||
|
<category>THIRD_CLASS_GROUP</category>
|
||||||
|
</appliesTo>
|
||||||
|
<conditions>
|
||||||
|
<item id="57" count="500000" /> <!-- 500,000 Adena for third class -->
|
||||||
|
</conditions>
|
||||||
|
</classChangeOption>
|
||||||
|
<classChangeOption name="Pay Ancient Adena">
|
||||||
|
<appliesTo>
|
||||||
|
<category>THIRD_CLASS_GROUP</category>
|
||||||
|
</appliesTo>
|
||||||
|
<conditions>
|
||||||
|
<item id="5575" count="50000" /> <!-- 50,000 Ancient Adena for third class -->
|
||||||
|
</conditions>
|
||||||
|
</classChangeOption>
|
||||||
|
<classChangeOption name="Pay Adena and Ancient Adena">
|
||||||
|
<appliesTo>
|
||||||
|
<category>FOURTH_CLASS_GROUP</category>
|
||||||
|
</appliesTo>
|
||||||
|
<rewards>
|
||||||
|
<item id="37044" count="1" chance="10" /> <!-- Immortal Scroll (Skill Enchantment, untradable) -->
|
||||||
|
</rewards>
|
||||||
|
<conditions>
|
||||||
|
<item id="57" count="3000000" /> <!-- 3 million Adena for fourth class -->
|
||||||
|
<item id="5575" count="300000" /> <!-- 300k Ancient Adena for fourth class -->
|
||||||
|
</conditions>
|
||||||
|
</classChangeOption>
|
||||||
|
<classChangeOption name="Pay more Adena for a chance to not pay Ancient Adena">
|
||||||
|
<appliesTo>
|
||||||
|
<category>FOURTH_CLASS_GROUP</category>
|
||||||
|
</appliesTo>
|
||||||
|
<rewards>
|
||||||
|
<item id="37044" count="1" chance="10" /> <!-- Immortal Scroll (Skill Enchantment, untradable) -->
|
||||||
|
</rewards>
|
||||||
|
<conditions>
|
||||||
|
<item id="57" count="6000000" /> <!-- 6 million Adena -->
|
||||||
|
<item id="5575" count="300000" chance="50" /> <!-- 50% chance to take your 300k Ancient Adena for third class -->
|
||||||
|
</conditions>
|
||||||
|
</classChangeOption>
|
||||||
|
<classChangeOption name="Pay Lots of Adena and Ancient Adena for a 100% reward.">
|
||||||
|
<appliesTo>
|
||||||
|
<category>FOURTH_CLASS_GROUP</category>
|
||||||
|
</appliesTo>
|
||||||
|
<rewards>
|
||||||
|
<item id="37044" count="1" chance="100" /> <!-- Immortal Scroll (Skill Enchantment, untradable) -->
|
||||||
|
</rewards>
|
||||||
|
<conditions>
|
||||||
|
<item id="57" count="10000000" /> <!-- 10 million adena -->
|
||||||
|
<item id="5575" count="1000000" /> <!-- 1 million Ancient Adena -->
|
||||||
|
</conditions>
|
||||||
|
</classChangeOption>
|
||||||
|
</classMaster>
|
||||||
|
</list>
|
||||||
Vendored
+21
-255
@@ -80,180 +80,6 @@ ChampionEnableVitality = False
|
|||||||
# Default = False
|
# Default = False
|
||||||
ChampionEnableInInstances = False
|
ChampionEnableInInstances = False
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Wedding System (by evill33t)
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# <u><b><font color="red">WARNING: this mod require custom NPC table support turned on !</font></b></u>
|
|
||||||
# CustomNpcTable = True in General.properties
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Wedding Manager ID: 50007
|
|
||||||
#
|
|
||||||
# First part - "Engagement"
|
|
||||||
# 1) Target the player that you want to make a couple with.
|
|
||||||
# 2) Use the voice command ".engage nameofyourpartner" then press enter.
|
|
||||||
# 3) If the target player has you on listed as a friend (ie. you are in each other's friends list) a popup will appear with an engagement request along with a system message that you want to be engaged with him/her.
|
|
||||||
# 4) If the target player accepts the engagement invitation, you will be engaged.
|
|
||||||
#
|
|
||||||
# Second part - "Marriage"
|
|
||||||
# 1) Once two players are engaged, they can speak to Andromeda, the Wedding Priest in the Hot Springs Guild House (Goddard Area).
|
|
||||||
# (You may need Formal Wear and Adena to pay wedding fees!)
|
|
||||||
# 2) Each player needs to speak to the NPC and make the request to be married.
|
|
||||||
# 3) Once done, fireworks will display and the two players will be married.
|
|
||||||
#
|
|
||||||
# Afterwards you can use the voice command ".gotolove nameofyourpartner" to teleport to your partner if you're married (there may also be a fee which can be specified below)
|
|
||||||
#
|
|
||||||
# If you want to cancel your Engagement/Marriage, use the voice command ".divorce nameofyourpartner".
|
|
||||||
#
|
|
||||||
# If you're married you have to pay a specified % of your adena to your partner.
|
|
||||||
#
|
|
||||||
# If a player attempts to become engaged to another player while married they may suffer a penalty if it's enabled below.
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Enable/Disable Wedding System
|
|
||||||
AllowWedding = False
|
|
||||||
|
|
||||||
# Amount of Adena required to get married
|
|
||||||
WeddingPrice = 250000000
|
|
||||||
|
|
||||||
# Enable/Disable punishing of players who attempt to be engaged to other players while married.
|
|
||||||
WeddingPunishInfidelity = True
|
|
||||||
|
|
||||||
# Enable/Disable teleport function for married couples.
|
|
||||||
WeddingTeleport = True
|
|
||||||
|
|
||||||
# Amount of Adena required to teleport to spouse.
|
|
||||||
WeddingTeleportPrice = 50000
|
|
||||||
|
|
||||||
# Time before character is teleported after using the skill.
|
|
||||||
WeddingTeleportDuration = 60
|
|
||||||
|
|
||||||
# Enable/Disable same sex marriages.
|
|
||||||
WeddingAllowSameSex = False
|
|
||||||
|
|
||||||
# Require players to wear formal wear to be married?
|
|
||||||
WeddingFormalWear = True
|
|
||||||
|
|
||||||
# Amount of Adena (%) a player must pay to the other to get divorced.
|
|
||||||
WeddingDivorceCosts = 20
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Team vs. Team Event Engine (by HorridoJoho)
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# <u><b><font color="red">WARNING: this mod require custom NPC table support turned on !</font></b></u>
|
|
||||||
# CustomNpcTable = True in General.properties
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Enable/Disable TvTEvent System
|
|
||||||
# Default: False
|
|
||||||
TvTEventEnabled = False
|
|
||||||
|
|
||||||
# TvT in instance
|
|
||||||
# Default: False
|
|
||||||
TvTEventInInstance = False
|
|
||||||
|
|
||||||
# Name of the instance file for TvT
|
|
||||||
# Default: Coliseum.xml
|
|
||||||
TvTEventInstanceFile = Coliseum.xml
|
|
||||||
|
|
||||||
# Times TvT will occur (24h format).
|
|
||||||
# Default: 9:00,15:00,21:00,3:00
|
|
||||||
TvTEventInterval = 9:00,15:00,21:00,3:00
|
|
||||||
|
|
||||||
# Registration timer from start of event (in minutes).
|
|
||||||
# Default: 30
|
|
||||||
TvTEventParticipationTime = 30
|
|
||||||
|
|
||||||
# Event running time (in minutes).
|
|
||||||
# Default: 20
|
|
||||||
TvTEventRunningTime = 20
|
|
||||||
|
|
||||||
# TvT Event NPC (create a custom npc of type L2TvTEventNpc).
|
|
||||||
# Default: 70010
|
|
||||||
TvTEventParticipationNpcId = 70010
|
|
||||||
|
|
||||||
# TvT Event Participation Fee (itemId, number). Fee is not returned.
|
|
||||||
# Example: 57,100000
|
|
||||||
# Default: 0,0
|
|
||||||
TvTEventParticipationFee = 0,0
|
|
||||||
|
|
||||||
# Location for TvTEvent NPC to spawn in form x,y,z[,heading]
|
|
||||||
# Default: 83425,148585,-3406
|
|
||||||
TvTEventParticipationNpcCoordinates = 83425,148585,-3406
|
|
||||||
|
|
||||||
# Minimum amount of players allowed in each team.
|
|
||||||
# Default: 1
|
|
||||||
TvTEventMinPlayersInTeams = 1
|
|
||||||
# Maximum amount of players allowed in each team.
|
|
||||||
# Default: 20
|
|
||||||
TvTEventMaxPlayersInTeams = 20
|
|
||||||
|
|
||||||
# Minimum level of players that may join the event.
|
|
||||||
# Default: 1
|
|
||||||
TvTEventMinPlayerLevel = 1
|
|
||||||
# Maximum level of players that may join the event.
|
|
||||||
# Default: 85
|
|
||||||
TvTEventMaxPlayerLevel = 85
|
|
||||||
|
|
||||||
# Respawn delay timer (in seconds).
|
|
||||||
# Default: 10
|
|
||||||
TvTEventRespawnTeleportDelay = 10
|
|
||||||
# Exit delay timer (in seconds).
|
|
||||||
# Default: 10
|
|
||||||
TvTEventStartLeaveTeleportDelay = 10
|
|
||||||
|
|
||||||
# First Team - Name, Start/Death x,y,z location.
|
|
||||||
TvTEventTeam1Name = Team1
|
|
||||||
TvTEventTeam1Coordinates = 148695,46725,-3414
|
|
||||||
|
|
||||||
# Second Team - Name, Start/Death x,y,z location.
|
|
||||||
TvTEventTeam2Name = Team2
|
|
||||||
TvTEventTeam2Coordinates = 149999,46728,-3414
|
|
||||||
|
|
||||||
# Reward for winning team.
|
|
||||||
# Example: TvTEventReward = itemId,amount;itemId,amount;itemId,amount
|
|
||||||
TvTEventReward = 57,100000
|
|
||||||
|
|
||||||
# TvTEvent Rules
|
|
||||||
TvTEventTargetTeamMembersAllowed = True
|
|
||||||
TvTEventScrollsAllowed = False
|
|
||||||
TvTEventPotionsAllowed = False
|
|
||||||
TvTEventSummonByItemAllowed = False
|
|
||||||
|
|
||||||
# Door ID's to open/close on start/end.
|
|
||||||
# Not supported in instance, use xml template for defining doors.
|
|
||||||
# Example: TvTDoorsToOpen = 1;2;3;4;5;6
|
|
||||||
TvTDoorsToOpen =
|
|
||||||
TvTDoorsToClose =
|
|
||||||
|
|
||||||
# Should both teams get reward if there's a tie?
|
|
||||||
TvTRewardTeamTie = False
|
|
||||||
|
|
||||||
# Participant's effects handling on teleport/death.
|
|
||||||
# Effects lasting through death never removed.
|
|
||||||
# 0 - always remove all effects.
|
|
||||||
# 1 - remove all effects only during port to event (noblesse blessing can be used)
|
|
||||||
# 2 - never remove any effect
|
|
||||||
# Default: 0
|
|
||||||
TvTEventEffectsRemoval = 0
|
|
||||||
|
|
||||||
# Fighter-class participants will be buffed with those buffs each respawn
|
|
||||||
# Format: skill1Id,skill1Level;skill2Id,skill2Level...
|
|
||||||
# Example: 1504,1;1501,1;1502,1;1499,1
|
|
||||||
TvTEventFighterBuffs =
|
|
||||||
|
|
||||||
# Mage-class participants will be buffed with those buffs each respawn
|
|
||||||
# Format: skill1Id,skill1Level;skill2Id,skill2Level...
|
|
||||||
# Example: 1504,1;1500,1;1501,1;1085,3
|
|
||||||
TvTEventMageBuffs =
|
|
||||||
|
|
||||||
# Maximum number of allowed participants per IP address (dualbox check)
|
|
||||||
# Default: 0 (no limits)
|
|
||||||
TvTEventMaxParticipantsPerIP = 0
|
|
||||||
|
|
||||||
# Voiced command (.tvt) working during TVT event to get information about event status
|
|
||||||
TvTAllowVoicedInfoCommand = false
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# L2J Banking System
|
# L2J Banking System
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -268,15 +94,6 @@ BankingGoldbarCount = 1
|
|||||||
BankingAdenaCount = 500000000
|
BankingAdenaCount = 500000000
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Warehouse Sorting
|
|
||||||
# Shows Withdraw Window sorted by ItemType (Armor/Weapon/Spellbook....)
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
EnableWarehouseSortingClan = False
|
|
||||||
EnableWarehouseSortingPrivate = False
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Offline trade/craft
|
# Offline trade/craft
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -516,46 +333,6 @@ CustomStartingLocY = 186527
|
|||||||
CustomStartingLocZ = -3625
|
CustomStartingLocZ = -3625
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Random Spawn System for Monsters
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# Enable random monster spawns.
|
|
||||||
# Default: True
|
|
||||||
EnableRandomMonsterSpawns = True
|
|
||||||
|
|
||||||
# Max range for X and Y coords.
|
|
||||||
# Default: 150
|
|
||||||
MaxSpawnMobRange = 150
|
|
||||||
|
|
||||||
# Kasha's Eye
|
|
||||||
# 18812,18813,18814
|
|
||||||
# Pagan Temple
|
|
||||||
# 22138
|
|
||||||
# Orbis Temple
|
|
||||||
# 22911,22912,22913,22914,22915,22916,22917,22918,22919,22925,22927
|
|
||||||
# Sel Mahums
|
|
||||||
# 18908,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788
|
|
||||||
# Four Sepulchers
|
|
||||||
# 18120,18132,18133,18137,18141,18145,18150,18151,18152,18153,18154,18155,18156,18157,18166,
|
|
||||||
# 18170,18171,18183,18184,18185,18186,18187,18191,18195,18196,18197,18198,18199,18212,18220,
|
|
||||||
# 18221,18222,18226,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,
|
|
||||||
# 18242,18243,18256,31452,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,
|
|
||||||
# 31479,31480,31481,31482,31483,31484,31485,31486,31487
|
|
||||||
# Atelia Fortress
|
|
||||||
# 23537,23588,23586,23587
|
|
||||||
MobsSpawnNotRandom = 18812,18813,18814,\
|
|
||||||
22138,\
|
|
||||||
22911,22912,22913,22914,22915,22916,22917,22918,22919,22925,22927,\
|
|
||||||
18908,22775,22776,22777,22778,22779,22780,22781,22782,22783,22784,22785,22786,22787,22788,\
|
|
||||||
18120,18132,18133,18137,18141,18145,18150,18151,18152,18153,18154,18155,18156,18157,18166,\
|
|
||||||
18170,18171,18183,18184,18185,18186,18187,18191,18195,18196,18197,18198,18199,18212,18220,\
|
|
||||||
18221,18222,18226,18230,18231,18232,18233,18234,18235,18236,18237,18238,18239,18240,18241,\
|
|
||||||
18242,18243,18256,31452,31468,31469,31470,31471,31472,31473,31474,31475,31476,31477,31478,\
|
|
||||||
31479,31480,31481,31482,31483,31484,31485,31486,31487,\
|
|
||||||
23537,23588,23586,23587,\
|
|
||||||
27536,27537,27538
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Minimum Range for Private Stores
|
# Minimum Range for Private Stores
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -662,10 +439,17 @@ EvilNameColor = 0000FF
|
|||||||
|
|
||||||
# Enable faction guards.
|
# Enable faction guards.
|
||||||
# The NPC template must have faction as clan.
|
# The NPC template must have faction as clan.
|
||||||
# Guard IDs 501(Good), 502(Evil).
|
|
||||||
# Default: True
|
# Default: True
|
||||||
EnableFactionGuards = True
|
EnableFactionGuards = True
|
||||||
|
|
||||||
|
# Good Guard NPC ID.
|
||||||
|
# Default: 501
|
||||||
|
GoodGuardNpcId = 501
|
||||||
|
|
||||||
|
# Evil Guard NPC ID.
|
||||||
|
# Default: 502
|
||||||
|
EvilGuardNpcId = 502
|
||||||
|
|
||||||
# Upon death, respawn at faction base.
|
# Upon death, respawn at faction base.
|
||||||
# Default: True
|
# Default: True
|
||||||
RespawnAtFactionBase = True
|
RespawnAtFactionBase = True
|
||||||
@@ -723,41 +507,23 @@ PremiumRateDropAmountByItemId = 57,2;6656,1;6657,1;6658,1;6659,1;6660,1;6661,1;6
|
|||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Player Commendation System (PC Bang)
|
# Sell Buffs configuration
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# PC BANG POINTS ID = -100
|
|
||||||
|
|
||||||
# PC Bang Enabled.
|
# Enable/Disable selling buffs
|
||||||
Enabled = False
|
SellBuffEnable = False
|
||||||
|
|
||||||
# Max points that player may have.
|
# Multipler for mana cost of buffs
|
||||||
# Limited by int limit.
|
MpCostMultipler = 1
|
||||||
MaxPcBangPoints = 200000
|
|
||||||
|
|
||||||
# PC Bang point rate.
|
# Payment for Sell Buff System, can be changed to custom server coin
|
||||||
# Acquisition formula equals (exp * 0.0001 * AcquisitionPointsRate)
|
PaymentID = 57
|
||||||
# e.g. with 1.0 it's 10000 exp = 1 PC Bang point
|
|
||||||
# 2.0 - 10000 exp = 2 PC Bang points
|
|
||||||
# 0.5 - 5000 exp = 1 PC Bang point
|
|
||||||
AcquisitionPointsRate = 1.0
|
|
||||||
|
|
||||||
# Use random points rewarding.
|
# Minimal price of every buff
|
||||||
# If enabled points will be random from points/2 to points.
|
MinimalPrice = 100000
|
||||||
AcquisitionPointsRandom = False
|
|
||||||
|
|
||||||
# Creates a chance to aquire double points.
|
# Maximal price of every buff
|
||||||
DoublingAcquisitionPoints = True
|
MaximalPrice = 100000000
|
||||||
|
|
||||||
# Double points chance.
|
# Maximum count of buffs in sell list
|
||||||
# Used when DoublingAcquisitionPoints is enabled.
|
MaxBuffs = 20
|
||||||
# Default 1 (%)
|
|
||||||
DoublingAcquisitionPointsChance = 1
|
|
||||||
|
|
||||||
# Reward low exp kills
|
|
||||||
# Acquire points if player gains exp and aquire formula equals 0.
|
|
||||||
RewardLowExpKills = True
|
|
||||||
|
|
||||||
# Chance for low exp kills
|
|
||||||
# Used when RewardLowExpKills is enabled.
|
|
||||||
# Default 50 (%)
|
|
||||||
RewardLowExpKillsChance = 50
|
|
||||||
|
|||||||
Vendored
+7
-90
@@ -16,15 +16,18 @@ SiegeHourList = 16,20
|
|||||||
# Taxes for castles
|
# Taxes for castles
|
||||||
# Tax in percent when is castle owned by npc's.
|
# Tax in percent when is castle owned by npc's.
|
||||||
# Default: 15
|
# Default: 15
|
||||||
TaxForNeutralSide = 15
|
BuyTaxForNeutralSide = 15
|
||||||
|
SellTaxForNeutralSide = 0
|
||||||
|
|
||||||
# Tax in percent when is castle owned by player's and castle is on light side.
|
# Tax in percent when is castle owned by player's and castle is on light side.
|
||||||
# Default: 0
|
# Default: 0
|
||||||
TaxForLightSide = 0
|
BuyTaxForLightSide = 0
|
||||||
|
SellTaxForLightSide = 0
|
||||||
|
|
||||||
# Tax in percent when is castle owned by player's and castle is on dark side.
|
# Tax in percent when is castle owned by player's and castle is on dark side.
|
||||||
# Default: 30
|
# Default: 30
|
||||||
TaxForDarkSide = 30
|
BuyTaxForDarkSide = 30
|
||||||
|
SellTaxForDarkSide = 20
|
||||||
|
|
||||||
# Teleport Function price
|
# Teleport Function price
|
||||||
# Price = 7 days
|
# Price = 7 days
|
||||||
@@ -77,88 +80,6 @@ TrapUpgradePriceLvl2 = 4000000
|
|||||||
TrapUpgradePriceLvl3 = 5000000
|
TrapUpgradePriceLvl3 = 5000000
|
||||||
TrapUpgradePriceLvl4 = 6000000
|
TrapUpgradePriceLvl4 = 6000000
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Clan Hall
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# Teleport Function price
|
|
||||||
# Price = 7 days
|
|
||||||
ClanHallTeleportFunctionFeeRatio = 604800000
|
|
||||||
ClanHallTeleportFunctionFeeLvl1 = 7000
|
|
||||||
ClanHallTeleportFunctionFeeLvl2 = 14000
|
|
||||||
|
|
||||||
# Support magic buff price
|
|
||||||
# Price = 1 day
|
|
||||||
ClanHallSupportFunctionFeeRatio = 86400000
|
|
||||||
ClanHallSupportFeeLvl1 = 2500
|
|
||||||
ClanHallSupportFeeLvl2 = 5000
|
|
||||||
ClanHallSupportFeeLvl3 = 7000
|
|
||||||
ClanHallSupportFeeLvl4 = 11000
|
|
||||||
ClanHallSupportFeeLvl5 = 21000
|
|
||||||
ClanHallSupportFeeLvl6 = 36000
|
|
||||||
ClanHallSupportFeeLvl7 = 37000
|
|
||||||
ClanHallSupportFeeLvl8 = 364000
|
|
||||||
|
|
||||||
# MP Regeneration price
|
|
||||||
# Price = 1 day
|
|
||||||
ClanHallMpRegenerationFunctionFeeRatio = 86400000
|
|
||||||
ClanHallMpRegenerationFeeLvl1 = 2000
|
|
||||||
ClanHallMpRegenerationFeeLvl2 = 3750
|
|
||||||
ClanHallMpRegenerationFeeLvl3 = 6500
|
|
||||||
ClanHallMpRegenerationFeeLvl4 = 13750
|
|
||||||
ClanHallMpRegenerationFeeLvl5 = 20000
|
|
||||||
|
|
||||||
# Hp Regeneration price
|
|
||||||
# Price = 1 day
|
|
||||||
ClanHallHpRegenerationFunctionFeeRatio = 86400000
|
|
||||||
ClanHallHpRegenerationFeeLvl1 = 700
|
|
||||||
ClanHallHpRegenerationFeeLvl2 = 800
|
|
||||||
ClanHallHpRegenerationFeeLvl3 = 1000
|
|
||||||
ClanHallHpRegenerationFeeLvl4 = 1166
|
|
||||||
ClanHallHpRegenerationFeeLvl5 = 1500
|
|
||||||
ClanHallHpRegenerationFeeLvl6 = 1750
|
|
||||||
ClanHallHpRegenerationFeeLvl7 = 2000
|
|
||||||
ClanHallHpRegenerationFeeLvl8 = 2250
|
|
||||||
ClanHallHpRegenerationFeeLvl9 = 2500
|
|
||||||
ClanHallHpRegenerationFeeLvl10 = 3250
|
|
||||||
ClanHallHpRegenerationFeeLvl11 = 3750
|
|
||||||
ClanHallHpRegenerationFeeLvl12 = 4250
|
|
||||||
ClanHallHpRegenerationFeeLvl13 = 5166
|
|
||||||
|
|
||||||
# Exp Regeneration price
|
|
||||||
# Price = 1 day
|
|
||||||
ClanHallExpRegenerationFunctionFeeRatio = 86400000
|
|
||||||
ClanHallExpRegenerationFeeLvl1 = 3000
|
|
||||||
ClanHallExpRegenerationFeeLvl2 = 6000
|
|
||||||
ClanHallExpRegenerationFeeLvl3 = 9000
|
|
||||||
ClanHallExpRegenerationFeeLvl4 = 15000
|
|
||||||
ClanHallExpRegenerationFeeLvl5 = 21000
|
|
||||||
ClanHallExpRegenerationFeeLvl6 = 23330
|
|
||||||
ClanHallExpRegenerationFeeLvl7 = 30000
|
|
||||||
|
|
||||||
# Creation item function
|
|
||||||
# Price = 1 day
|
|
||||||
ClanHallItemCreationFunctionFeeRatio = 86400000
|
|
||||||
ClanHallItemCreationFunctionFeeLvl1 = 30000
|
|
||||||
ClanHallItemCreationFunctionFeeLvl2 = 70000
|
|
||||||
ClanHallItemCreationFunctionFeeLvl3 = 140000
|
|
||||||
|
|
||||||
# Curtains Decoration
|
|
||||||
# Price = 7 days
|
|
||||||
ClanHallCurtainFunctionFeeRatio = 604800000
|
|
||||||
ClanHallCurtainFunctionFeeLvl1 = 2000
|
|
||||||
ClanHallCurtainFunctionFeeLvl2 = 2500
|
|
||||||
|
|
||||||
# Fixtures Decoration
|
|
||||||
# Price = 3 days
|
|
||||||
ClanHallFrontPlatformFunctionFeeRatio = 259200000
|
|
||||||
ClanHallFrontPlatformFunctionFeeLvl1 = 1300
|
|
||||||
ClanHallFrontPlatformFunctionFeeLvl2 = 4000
|
|
||||||
|
|
||||||
# If true Clan Hall buff cost 0 mp.
|
|
||||||
# Default: False
|
|
||||||
AltClanHallMpBuffFree = False
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Fortress
|
# Fortress
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -240,7 +161,7 @@ CompleteAcademyMinPoints = 190
|
|||||||
CompleteAcademyMaxPoints = 650
|
CompleteAcademyMaxPoints = 650
|
||||||
|
|
||||||
# Reputation score gained per killed ballista.
|
# Reputation score gained per killed ballista.
|
||||||
KillBallistaPoints = 30
|
KillBallistaPoints = 500
|
||||||
|
|
||||||
# Reputation score gained for one Blood Alliance.
|
# Reputation score gained for one Blood Alliance.
|
||||||
BloodAlliancePoints = 500
|
BloodAlliancePoints = 500
|
||||||
@@ -297,7 +218,3 @@ AllowRideWyvernAlways = False
|
|||||||
# Allow riding wyvern during Castle/Fort Siege
|
# Allow riding wyvern during Castle/Fort Siege
|
||||||
# Default: True
|
# Default: True
|
||||||
AllowRideWyvernDuringSiege = True
|
AllowRideWyvernDuringSiege = True
|
||||||
|
|
||||||
# Allow riding mounts (wyvern excluded) during Castle/Fort Siege
|
|
||||||
# Default: False
|
|
||||||
AllowRideMountsDuringSiege = False
|
|
||||||
-1
@@ -9,7 +9,6 @@
|
|||||||
# PunishmentTime - for how many minutes should the player(jail)/account(ban) be punished (0 = forever), valid only for PunishmentType 'jail' or 'ban'
|
# PunishmentTime - for how many minutes should the player(jail)/account(ban) be punished (0 = forever), valid only for PunishmentType 'jail' or 'ban'
|
||||||
|
|
||||||
# UseItem - item usage flooding
|
# UseItem - item usage flooding
|
||||||
# Item usage interval
|
|
||||||
# Disabled to match retail, if you want to enable this protection change the value to 4 for example.
|
# Disabled to match retail, if you want to enable this protection change the value to 4 for example.
|
||||||
# Default: 0
|
# Default: 0
|
||||||
FloodProtectorUseItemInterval = 0
|
FloodProtectorUseItemInterval = 0
|
||||||
|
|||||||
Vendored
+30
-135
@@ -9,9 +9,10 @@
|
|||||||
# Administrator
|
# Administrator
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# If this option is set to True every newly created character will have access level 127. This means that every character created will have Administrator Privileges.
|
# Default Access Level. For example if you set 100, everyone will have 100 access level.
|
||||||
# Default: False
|
# Default: 0
|
||||||
EverybodyHasAdminRights = False
|
DefaultAccessLevel = 0
|
||||||
|
|
||||||
|
|
||||||
# If True, only accounts with GM access can enter the server.
|
# If True, only accounts with GM access can enter the server.
|
||||||
# Default: False
|
# Default: False
|
||||||
@@ -38,7 +39,7 @@ GMStartupSilence = False
|
|||||||
|
|
||||||
# Auto list GMs in GM list (/gmlist) on login.
|
# Auto list GMs in GM list (/gmlist) on login.
|
||||||
# Default: False
|
# Default: False
|
||||||
GMStartupAutoList = True
|
GMStartupAutoList = False
|
||||||
|
|
||||||
# Auto set diet mode on to a GM on login (affects your weight penalty).
|
# Auto set diet mode on to a GM on login (affects your weight penalty).
|
||||||
# Default: False
|
# Default: False
|
||||||
@@ -54,7 +55,7 @@ GMSkillRestriction = True
|
|||||||
|
|
||||||
# Allow GMs to drop/trade non-tradable and quest(drop only) items
|
# Allow GMs to drop/trade non-tradable and quest(drop only) items
|
||||||
# Default: False
|
# Default: False
|
||||||
GMTradeRestrictedItems = True
|
GMTradeRestrictedItems = False
|
||||||
|
|
||||||
# Allow GMs to restart/exit while is fighting stance
|
# Allow GMs to restart/exit while is fighting stance
|
||||||
# Default: True
|
# Default: True
|
||||||
@@ -69,12 +70,12 @@ GMShowAnnouncerName = False
|
|||||||
GMShowCritAnnouncerName = False
|
GMShowCritAnnouncerName = False
|
||||||
|
|
||||||
# Give special skills for every GM
|
# Give special skills for every GM
|
||||||
# 7029,14779-14790,23249 (Master's Blessing)
|
# 7029,7041-7064,7088-7096,23238-23249 (Master's Blessing)
|
||||||
# Default: False
|
# Default: False
|
||||||
GMGiveSpecialSkills = False
|
GMGiveSpecialSkills = False
|
||||||
|
|
||||||
# Give special aura skills for every GM
|
# Give special aura skills for every GM
|
||||||
# 7029,14791-14802,23249 (Master's Blessing)
|
# 7029,23238-23249,23253-23296 (Master's Blessing)
|
||||||
# Default: False
|
# Default: False
|
||||||
GMGiveSpecialAuraSkills = False
|
GMGiveSpecialAuraSkills = False
|
||||||
|
|
||||||
@@ -170,61 +171,6 @@ DeadLockCheckInterval = 20
|
|||||||
RestartOnDeadlock = False
|
RestartOnDeadlock = False
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Client packet queue tuning
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# Queue size, do not set it too low !
|
|
||||||
# 0 - use value MaxReadPerPass + 2 (from mmo.properties)
|
|
||||||
# Default: 0
|
|
||||||
ClientPacketQueueSize = 80
|
|
||||||
|
|
||||||
# Maximum number of packets in burst.
|
|
||||||
# Execution will be aborted and thread released if more packets executed in raw.
|
|
||||||
# 0 - use value MaxReadPerPass + 1 (from mmo.properties)
|
|
||||||
# Default: 0
|
|
||||||
ClientPacketQueueMaxBurstSize = 70
|
|
||||||
|
|
||||||
# Maximum number of packets per second.
|
|
||||||
# Flood detector will be triggered if more packets received.
|
|
||||||
# After triggering all incoming packets will be dropped until flooding stopped.
|
|
||||||
# Default: 80
|
|
||||||
ClientPacketQueueMaxPacketsPerSecond = 160
|
|
||||||
|
|
||||||
# Average number of packets per second calculated during this interval.
|
|
||||||
# Using larger value decrease number of false kicks, but slower reaction to flood.
|
|
||||||
# Avoid using too low or too high values, recommended between 3 and 10.
|
|
||||||
# Default: 5
|
|
||||||
ClientPacketQueueMeasureInterval = 15
|
|
||||||
|
|
||||||
# Maximum average number of packets per second during measure interval.
|
|
||||||
# Flood detector will be triggered if more packets received.
|
|
||||||
# After triggering all incoming packets will be dropped until flooding stopped.
|
|
||||||
# Default: 40
|
|
||||||
ClientPacketQueueMaxAveragePacketsPerSecond = 120
|
|
||||||
|
|
||||||
# Maximum number of flood triggers per minute.
|
|
||||||
# Client will be kicked if more floods detected.
|
|
||||||
# Default: 2
|
|
||||||
ClientPacketQueueMaxFloodsPerMin = 5
|
|
||||||
|
|
||||||
# Maximum number of queue overflows per minute.
|
|
||||||
# After overflow all incoming packets from client are dropped until queue is flushed.
|
|
||||||
# Client will be kicked if more queue overflows detected.
|
|
||||||
# Default: 1
|
|
||||||
ClientPacketQueueMaxOverflowsPerMin = 10
|
|
||||||
|
|
||||||
# Maximum number of buffer underflows per minute.
|
|
||||||
# Client will be kicked if more underflow exceptions detected.
|
|
||||||
# Default: 1
|
|
||||||
ClientPacketQueueMaxUnderflowsPerMin = 10
|
|
||||||
|
|
||||||
# Maximum number of unknown packets per minute.
|
|
||||||
# Client will be kicked if more unknown packets received.
|
|
||||||
# Default: 5
|
|
||||||
ClientPacketQueueMaxUnknownPerMin = 5
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Optimization
|
# Optimization
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -257,13 +203,20 @@ ListOfProtectedItems = 0
|
|||||||
DatabaseCleanUp = True
|
DatabaseCleanUp = True
|
||||||
|
|
||||||
# This is the interval (in minutes), that the gameserver will update a players information such as location.
|
# This is the interval (in minutes), that the gameserver will update a players information such as location.
|
||||||
# The higher you set this number, there will be less character information saving so you will have less accessessing of the database and your hard drive(s).
|
# The higher you set this number, there will be less character information saving so you will have less accessing of the database and your hard drive(s).
|
||||||
# The lower you set this number, there will be more frequent character information saving so you will have more access to the database and your hard drive(s).
|
# The lower you set this number, there will be more frequent character information saving so you will have more access to the database and your hard drive(s).
|
||||||
# A value of 0 disables periodic saving.
|
# A value of 0 disables periodic saving.
|
||||||
# Independent of this setting the character is always saved after leaving the world.
|
# Independent of this setting the character is always saved after leaving the world.
|
||||||
# Default: 15
|
# Default: 15
|
||||||
CharacterDataStoreInterval = 15
|
CharacterDataStoreInterval = 15
|
||||||
|
|
||||||
|
# This is the interval (in minutes), that the game server will update a clan's variables information into the database.
|
||||||
|
# The higher you set this number, there will be less clan's variables information saving so you will have less accessing of the database and your hard drive(s).
|
||||||
|
# The lower you set this number, there will be more frequent clan's variables information saving so you will have more access to the database and your hard drive(s).
|
||||||
|
# A value of 0 disables periodic saving.
|
||||||
|
# Default: 15
|
||||||
|
ClanVariablesStoreInterval = 15
|
||||||
|
|
||||||
# This enables the server to only update items when saving the character.
|
# This enables the server to only update items when saving the character.
|
||||||
# Enabling this greatly reduces DB usage and improves performance.
|
# Enabling this greatly reduces DB usage and improves performance.
|
||||||
# WARNING: This option causes item loss during crashes.
|
# WARNING: This option causes item loss during crashes.
|
||||||
@@ -329,7 +282,7 @@ ForceInventoryUpdate = False
|
|||||||
# True = Load html's into cache only on first time html is requested.
|
# True = Load html's into cache only on first time html is requested.
|
||||||
# False = Load all html's into cache on server startup.
|
# False = Load all html's into cache on server startup.
|
||||||
# Default: True
|
# Default: True
|
||||||
LazyCache = False
|
LazyCache = True
|
||||||
|
|
||||||
# Cache all character names in to memory on server startup
|
# Cache all character names in to memory on server startup
|
||||||
# False - names are loaded from Db when they are requested
|
# False - names are loaded from Db when they are requested
|
||||||
@@ -351,17 +304,6 @@ MinMonsterAnimation = 5
|
|||||||
# Default: 20
|
# Default: 20
|
||||||
MaxMonsterAnimation = 20
|
MaxMonsterAnimation = 20
|
||||||
|
|
||||||
# Knownlist (the list of things a character sees) update method. Default is currently time based updating, which also makes it possible to use config options for guards to see moving monsters. Alternatively move based update can be used but guards cannot track mobs with that option but otherwise it should work well.
|
|
||||||
# Default: False
|
|
||||||
MoveBasedKnownlist = False
|
|
||||||
|
|
||||||
# Interval (in milliseconds) in which the knownlist does full updates.
|
|
||||||
# For move based updates its used for intermediate updates.
|
|
||||||
# WARNING!
|
|
||||||
# Useful interval is between 300 - 2000. Too small value may kill your CPU, too high value may not update knownlists properly. The default value is chosen experimentally.
|
|
||||||
# Default: 1250
|
|
||||||
KnownListUpdateInterval = 1250
|
|
||||||
|
|
||||||
# Grid options: Grids can turn themselves on and off. This also affects the loading and processing of all AI tasks and (in the future) geodata within this grid.
|
# Grid options: Grids can turn themselves on and off. This also affects the loading and processing of all AI tasks and (in the future) geodata within this grid.
|
||||||
# Turn on for a grid with a person in it is immediate, but it then turns on the 8 neighboring grids based on the specified number of seconds.
|
# Turn on for a grid with a person in it is immediate, but it then turns on the 8 neighboring grids based on the specified number of seconds.
|
||||||
# Turn off for a grid and neighbors occurs after the specified number of seconds have passed during which a grid has had no players in or in any of its neighbors.
|
# Turn off for a grid and neighbors occurs after the specified number of seconds have passed during which a grid has had no players in or in any of its neighbors.
|
||||||
@@ -386,16 +328,6 @@ GridNeighborTurnOffTime = 90
|
|||||||
EnableFallingDamage = True
|
EnableFallingDamage = True
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Wall Data
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# Use XML wall data for LoS checks.
|
|
||||||
# Does not require geodata to be enabled.
|
|
||||||
# Default: True
|
|
||||||
EnableWallData = True
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Features
|
# Features
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -418,8 +350,8 @@ GlobalChat = ON
|
|||||||
TradeChat = ON
|
TradeChat = ON
|
||||||
|
|
||||||
# Minimum level for chat, 0 = disable
|
# Minimum level for chat, 0 = disable
|
||||||
# Retail: 20
|
# Default: 20
|
||||||
MinimumChatLevel = 0
|
MinimumChatLevel = 20
|
||||||
|
|
||||||
# If you are experiencing problems with Warehouse transactions, feel free to disable them here.
|
# If you are experiencing problems with Warehouse transactions, feel free to disable them here.
|
||||||
# Default: True
|
# Default: True
|
||||||
@@ -457,27 +389,19 @@ WearPrice = 10
|
|||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Instances
|
# Instances
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Restores the player to their previous instance (ie. an instanced area/dungeon) on EnterWorld.
|
# Restores the player to their previous instance (ie. an instanced area/dungeon) on EnterWorld.
|
||||||
# Default: False
|
# Default: False
|
||||||
RestorePlayerInstance = True
|
RestorePlayerInstance = False
|
||||||
|
|
||||||
# Set whether summon skills can be used to summon players inside an instance.
|
|
||||||
# When enabled individual instances can have summoning disabled in instance xml's.
|
|
||||||
# DEFAULT NEEDS TO BE VERIFIED, MUST BE CHANGED HERE AND IN CONFIG.JAVA IF NOT CORRECT
|
|
||||||
# Default: False
|
|
||||||
AllowSummonInInstance = False
|
|
||||||
|
|
||||||
# When a player dies, is removed from instance after a fixed period of time.
|
# When a player dies, is removed from instance after a fixed period of time.
|
||||||
# Time in seconds.
|
# Time in minutes.
|
||||||
# Default: 60
|
# Default: 1
|
||||||
EjectDeadPlayerTime = 60
|
EjectDeadPlayerTime = 1
|
||||||
|
|
||||||
# When is instance finished, is set time to destruction currency instance.
|
# When is instance finished, is set time to destruction currency instance.
|
||||||
# Time in seconds.
|
# Time in minutes.
|
||||||
# Default: 300
|
# Default: 5
|
||||||
DefaultFinishTime = 300
|
DefaultFinishTime = 5
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Misc Settings
|
# Misc Settings
|
||||||
@@ -561,22 +485,18 @@ BanChatChannels = GENERAL;SHOUT;WORLD;TRADE;HERO_VOICE
|
|||||||
# World chat settings
|
# World chat settings
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# The minimum level to use this chat
|
# The minimum level to use this chat
|
||||||
# Default: 95
|
# Default: 94
|
||||||
WorldChatMinLevel = 95
|
WorldChatMinLevel = 94
|
||||||
|
|
||||||
# The amount of points player will have at his disposal every day
|
# The amount of points player will have at his disposal every day
|
||||||
# Default: 10
|
# Default: 3
|
||||||
WorldChatPointsPerDay = 10
|
WorldChatPointsPerDay = 3
|
||||||
|
|
||||||
# The delay player must wait before sending new world chat message
|
# The delay player must wait before sending new world chat message
|
||||||
# Note: Value is in seconds
|
# Note: Value is in seconds
|
||||||
# Default: 20sec
|
# Default: 20sec
|
||||||
WorldChatInterval = 20sec
|
WorldChatInterval = 20sec
|
||||||
|
|
||||||
# The time on which server will reset the points of all players
|
|
||||||
# Default: 06:30:00
|
|
||||||
WorldChatResetTime = 06:30:00
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Manor
|
# Manor
|
||||||
@@ -648,24 +568,6 @@ AltLottery3NumberRate = 0.2
|
|||||||
AltLottery2and1NumberPrize = 200
|
AltLottery2and1NumberPrize = 200
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Fishing Tournament
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
|
|
||||||
# Enable or disable the Fishing Tournament system
|
|
||||||
AltFishChampionshipEnabled = True
|
|
||||||
|
|
||||||
# Item Id used as reward
|
|
||||||
AltFishChampionshipRewardItemId = 57
|
|
||||||
|
|
||||||
# Item count used as reward (for the 5 first winners)
|
|
||||||
AltFishChampionshipReward1 = 800000
|
|
||||||
AltFishChampionshipReward2 = 500000
|
|
||||||
AltFishChampionshipReward3 = 300000
|
|
||||||
AltFishChampionshipReward4 = 200000
|
|
||||||
AltFishChampionshipReward5 = 100000
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Item Auction
|
# Item Auction
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -859,13 +761,6 @@ BlockCheckerMinTeamMembers = 2
|
|||||||
# balanced in the teleport to the arena
|
# balanced in the teleport to the arena
|
||||||
HBCEFairPlay = True
|
HBCEFairPlay = True
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Hellbound Settings
|
|
||||||
# ---------------------------------------------------------------------------
|
|
||||||
# Minimum player level to enter Hellbound.
|
|
||||||
# Default: 99
|
|
||||||
HellboundLevelLimit = 99
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Bot Report Button settings
|
# Bot Report Button settings
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|||||||
Vendored
+5
-5
@@ -9,9 +9,9 @@
|
|||||||
# Default: 0
|
# Default: 0
|
||||||
PathFinding = 0
|
PathFinding = 0
|
||||||
|
|
||||||
# Pathnode file directory
|
# Pathnode directory
|
||||||
# Default: pathnode
|
# Default: data/pathnode
|
||||||
PathnodePath = pathnode
|
PathnodeDirectory = data/pathnode
|
||||||
|
|
||||||
# Pathfinding array buffers configuration
|
# Pathfinding array buffers configuration
|
||||||
PathFindBuffers = 100x6;128x6;192x6;256x4;320x4;384x4;500x2
|
PathFindBuffers = 100x6;128x6;192x6;256x4;320x4;384x4;500x2
|
||||||
@@ -57,8 +57,8 @@ ForceGeoData = True
|
|||||||
# Default: -1
|
# Default: -1
|
||||||
CoordSynchronize = -1
|
CoordSynchronize = -1
|
||||||
|
|
||||||
# Geodata file directory
|
# Geodata files folder
|
||||||
GeoDataPath = geodata
|
GeoDataPath = ./data/geodata
|
||||||
|
|
||||||
# True: Try to load regions not specified below(won't disturb server startup when file does not exist)
|
# True: Try to load regions not specified below(won't disturb server startup when file does not exist)
|
||||||
# False: Don't load any regions other than the ones specified with True below
|
# False: Don't load any regions other than the ones specified with True below
|
||||||
|
|||||||
+40
-40
@@ -1,44 +1,44 @@
|
|||||||
<?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="../data/xsd/MentorCoins.xsd">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../data/xsd/MentorCoins.xsd">
|
||||||
<mentee level="10" coins="1" />
|
<mentee level="10" coins="2" />
|
||||||
<mentee level="20" coins="25" />
|
<mentee level="20" coins="25" />
|
||||||
<mentee level="30" coins="30" />
|
<mentee level="30" coins="45" />
|
||||||
<mentee level="40" coins="63" />
|
<mentee level="40" coins="109" />
|
||||||
<mentee level="50" coins="68" />
|
<mentee level="50" coins="175" />
|
||||||
<mentee level="51" coins="16" />
|
<mentee level="51" coins="179" />
|
||||||
<mentee level="52" coins="7" />
|
<mentee level="52" coins="199" />
|
||||||
<mentee level="53" coins="9" />
|
<mentee level="53" coins="221" />
|
||||||
<mentee level="54" coins="11" />
|
<mentee level="54" coins="243" />
|
||||||
<mentee level="55" coins="13" />
|
<mentee level="55" coins="266" />
|
||||||
<mentee level="56" coins="16" />
|
<mentee level="56" coins="290" />
|
||||||
<mentee level="57" coins="19" />
|
<mentee level="57" coins="315" />
|
||||||
<mentee level="58" coins="23" />
|
<mentee level="58" coins="341" />
|
||||||
<mentee level="59" coins="29" />
|
<mentee level="59" coins="367" />
|
||||||
<mentee level="60" coins="37" />
|
<mentee level="60" coins="395" />
|
||||||
<mentee level="61" coins="51" />
|
<mentee level="61" coins="424" />
|
||||||
<mentee level="62" coins="20" />
|
<mentee level="62" coins="432" />
|
||||||
<mentee level="63" coins="24" />
|
<mentee level="63" coins="461" />
|
||||||
<mentee level="64" coins="30" />
|
<mentee level="64" coins="445" />
|
||||||
<mentee level="65" coins="36" />
|
<mentee level="65" coins="473" />
|
||||||
<mentee level="66" coins="44" />
|
<mentee level="66" coins="488" />
|
||||||
<mentee level="67" coins="55" />
|
<mentee level="67" coins="516" />
|
||||||
<mentee level="68" coins="67" />
|
<mentee level="68" coins="544" />
|
||||||
<mentee level="69" coins="84" />
|
<mentee level="69" coins="573" />
|
||||||
<mentee level="70" coins="107" />
|
<mentee level="70" coins="602" />
|
||||||
<mentee level="71" coins="120" />
|
<mentee level="71" coins="561" />
|
||||||
<mentee level="72" coins="92" />
|
<mentee level="72" coins="589" />
|
||||||
<mentee level="73" coins="114" />
|
<mentee level="73" coins="618" />
|
||||||
<mentee level="74" coins="139" />
|
<mentee level="74" coins="647" />
|
||||||
<mentee level="75" coins="172" />
|
<mentee level="75" coins="676" />
|
||||||
<mentee level="76" coins="213" />
|
<mentee level="76" coins="689" />
|
||||||
<mentee level="77" coins="629" />
|
<mentee level="77" coins="488" />
|
||||||
<mentee level="78" coins="322" />
|
<mentee level="78" coins="514" />
|
||||||
<mentee level="79" coins="413" />
|
<mentee level="79" coins="542" />
|
||||||
<mentee level="80" coins="491" />
|
<mentee level="80" coins="576" />
|
||||||
<mentee level="81" coins="663" />
|
<mentee level="81" coins="726" />
|
||||||
<mentee level="82" coins="746" />
|
<mentee level="82" coins="759" />
|
||||||
<mentee level="83" coins="850" />
|
<mentee level="83" coins="793" />
|
||||||
<mentee level="84" coins="987" />
|
<mentee level="84" coins="829" />
|
||||||
<mentee level="85" coins="1149" />
|
<mentee level="85" coins="863" />
|
||||||
<mentee level="86" coins="2015" />
|
<mentee level="86" coins="1" />
|
||||||
</list>
|
</list>
|
||||||
|
|||||||
Vendored
+13
-21
@@ -53,14 +53,11 @@ EnableRandomEnchantEffect = False
|
|||||||
# Default: 78
|
# Default: 78
|
||||||
MinNPCLevelForDmgPenalty = 78
|
MinNPCLevelForDmgPenalty = 78
|
||||||
|
|
||||||
# The penalty in percent for -2 till -5 level differences
|
# The penalty in percent for -2 till -9 level differences
|
||||||
# default:
|
# Default: 0.8, 0.6, 0.5, 0.42, 0.36, 0.32, 0.28, 0.25
|
||||||
# normal - 0.7, 0.6, 0.6, 0.55
|
DmgPenaltyForLvLDifferences = 0.8, 0.6, 0.5, 0.42, 0.36, 0.32, 0.28, 0.25
|
||||||
# critical - 0.75, 0.65, 0.6, 0.58
|
CritDmgPenaltyForLvLDifferences = 0.8, 0.6, 0.5, 0.42, 0.36, 0.32, 0.28, 0.25
|
||||||
# skill - 0.8, 0.7, 0.65, 0.62
|
SkillDmgPenaltyForLvLDifferences = 0.8, 0.6, 0.5, 0.42, 0.36, 0.32, 0.28, 0.25
|
||||||
DmgPenaltyForLvLDifferences = 0.7, 0.6, 0.6, 0.55
|
|
||||||
CritDmgPenaltyForLvLDifferences = 0.75, 0.65, 0.6, 0.58
|
|
||||||
SkillDmgPenaltyForLvLDifferences = 0.8, 0.7, 0.65, 0.62
|
|
||||||
|
|
||||||
# The minimum NPC level for the Gracia Epilogue rule:
|
# The minimum NPC level for the Gracia Epilogue rule:
|
||||||
# "When a character's level is 3 or more levels lower than that of a monsters level the chance that the monster will be able to resist a magic spell will increase."
|
# "When a character's level is 3 or more levels lower than that of a monsters level the chance that the monster will be able to resist a magic spell will increase."
|
||||||
@@ -103,9 +100,6 @@ CorpseConsumeSkillAllowedTimeBeforeDecay = 2000
|
|||||||
# Default: False
|
# Default: False
|
||||||
GuardAttackAggroMob = False
|
GuardAttackAggroMob = False
|
||||||
|
|
||||||
# True - Allows guards to use return skill after combat.
|
|
||||||
# Default: False
|
|
||||||
EnableGuardReturn = False
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Pets
|
# Pets
|
||||||
@@ -116,11 +110,6 @@ EnableGuardReturn = False
|
|||||||
# Default: False
|
# Default: False
|
||||||
AllowWyvernUpgrader = False
|
AllowWyvernUpgrader = False
|
||||||
|
|
||||||
# Pets that can be rented.
|
|
||||||
# Example: 30827, 32471, 34486, 36547
|
|
||||||
# Default: 30827
|
|
||||||
ListPetRentNpc = 30827
|
|
||||||
|
|
||||||
# This will control the inventory space limit for pets (NOT WEIGHT LIMIT).
|
# This will control the inventory space limit for pets (NOT WEIGHT LIMIT).
|
||||||
# Default: 12
|
# Default: 12
|
||||||
MaximumSlotsForPet = 12
|
MaximumSlotsForPet = 12
|
||||||
@@ -184,11 +173,6 @@ RaidChaosTime = 10
|
|||||||
GrandChaosTime = 10
|
GrandChaosTime = 10
|
||||||
MinionChaosTime = 10
|
MinionChaosTime = 10
|
||||||
|
|
||||||
# It removes STR,CON... bonuses.
|
|
||||||
# With this enabled npcs will use the stats given directly from the xml.
|
|
||||||
# Default: True
|
|
||||||
IgnoreNpcStatFormulas = True
|
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Drops
|
# Drops
|
||||||
@@ -219,3 +203,11 @@ DropItemMaxLevelDifference = 10
|
|||||||
# Note: This value is scalling from 100 to the specified value for DropAdenaMinLevelDifference to DropAdenaMaxLevelDifference limits
|
# Note: This value is scalling from 100 to the specified value for DropAdenaMinLevelDifference to DropAdenaMaxLevelDifference limits
|
||||||
# Default: 10
|
# Default: 10
|
||||||
DropItemMinLevelGapChance = 10
|
DropItemMinLevelGapChance = 10
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Vitality
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Vitality decrease multiplier for mob after awakening
|
||||||
|
VitalityConsumeByMob=2250
|
||||||
|
# Vitality increase multiplier for raid and world boss after awakening
|
||||||
|
VitalityConsumeByBoss=1125
|
||||||
|
|||||||
Vendored
+12
-12
@@ -80,32 +80,32 @@ AltOlyNonClassedReward = 13722,40
|
|||||||
AltOlyTeamReward = 13722,85
|
AltOlyTeamReward = 13722,85
|
||||||
|
|
||||||
# ItemId used for exchanging to the points.
|
# ItemId used for exchanging to the points.
|
||||||
# Default: 13722
|
# Default: 45584
|
||||||
AltOlyCompRewItem = 13722
|
AltOlyCompRewItem = 45584
|
||||||
|
|
||||||
# The minimal matches you need to participate to receive point rewards
|
# The minimal matches you need to participate to receive point rewards
|
||||||
# Default: 15
|
# Default: 10
|
||||||
AltOlyMinMatchesForPoints = 15
|
AltOlyMinMatchesForPoints = 10
|
||||||
|
|
||||||
# Rate to exchange points to reward item.
|
# Rate to exchange points to reward item.
|
||||||
# Default: 1000
|
# Default: 1000
|
||||||
AltOlyGPPerPoint = 1000
|
AltOlyMarkPerPoint = 20
|
||||||
|
|
||||||
# Noblesse points awarded to Heroes.
|
# Noblesse points awarded to Heroes.
|
||||||
# Default: 200
|
# Default: 30
|
||||||
AltOlyHeroPoints = 200
|
AltOlyHeroPoints = 30
|
||||||
|
|
||||||
# Noblesse points awarded to Rank 1 members.
|
# Noblesse points awarded to Rank 1 members.
|
||||||
# Default: 100
|
# Default: 100
|
||||||
AltOlyRank1Points = 100
|
AltOlyRank1Points = 60
|
||||||
|
|
||||||
# Noblesse points awarded to Rank 2 members.
|
# Noblesse points awarded to Rank 2 members.
|
||||||
# Default: 75
|
# Default: 75
|
||||||
AltOlyRank2Points = 75
|
AltOlyRank2Points = 50
|
||||||
|
|
||||||
# Noblesse points awarded to Rank 3 members.
|
# Noblesse points awarded to Rank 3 members.
|
||||||
# Default: 55
|
# Default: 55
|
||||||
AltOlyRank3Points = 55
|
AltOlyRank3Points = 45
|
||||||
|
|
||||||
# Noblesse points awarded to Rank 4 members.
|
# Noblesse points awarded to Rank 4 members.
|
||||||
# Default: 40
|
# Default: 40
|
||||||
@@ -141,8 +141,8 @@ AltOlyEnchantLimit = -1
|
|||||||
AltOlyLogFights = False
|
AltOlyLogFights = False
|
||||||
|
|
||||||
# Time to wait before teleported to arena.
|
# Time to wait before teleported to arena.
|
||||||
# Default: 120
|
# Default: 60
|
||||||
AltOlyWaitTime = 120
|
AltOlyWaitTime = 60
|
||||||
|
|
||||||
# Divider for points in classed and non-classed games
|
# Divider for points in classed and non-classed games
|
||||||
# Default: 5, 5
|
# Default: 5, 5
|
||||||
|
|||||||
Vendored
+12
-4
@@ -31,8 +31,8 @@ MinimumPKRequiredToDrop = 6
|
|||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# This option will enable antifeed for pvp/pk/clanrep points.
|
# This option will enable antifeed for pvp/pk/clanrep points.
|
||||||
# Default: True
|
# Default: False
|
||||||
AntiFeedEnable = True
|
AntiFeedEnable = False
|
||||||
|
|
||||||
# If set to True, kills from dualbox will not increase pvp/pk points
|
# If set to True, kills from dualbox will not increase pvp/pk points
|
||||||
# and clan reputation will not be transferred.
|
# and clan reputation will not be transferred.
|
||||||
@@ -46,8 +46,8 @@ AntiFeedDisconnectedAsDualbox = True
|
|||||||
# If character died faster than timeout - pvp/pk points for killer will not increase
|
# If character died faster than timeout - pvp/pk points for killer will not increase
|
||||||
# and clan reputation will not be transferred.
|
# and clan reputation will not be transferred.
|
||||||
# Setting to 0 will disable this feature.
|
# Setting to 0 will disable this feature.
|
||||||
# Retail: 86400 seconds (1 day).
|
# Default: 120 seconds.
|
||||||
AntiFeedInterval = 86400
|
AntiFeedInterval = 120
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
@@ -65,3 +65,11 @@ PvPVsNormalTime = 120000
|
|||||||
# Length one stays in PvP mode after hitting a purple player (in ms)
|
# Length one stays in PvP mode after hitting a purple player (in ms)
|
||||||
# Default: 60000
|
# Default: 60000
|
||||||
PvPVsPvPTime = 60000
|
PvPVsPvPTime = 60000
|
||||||
|
|
||||||
|
# Max count of positive reputation
|
||||||
|
# Default: 500
|
||||||
|
MaxReputation = 500
|
||||||
|
|
||||||
|
# Reputation increase for kill one PK
|
||||||
|
# Default: 100
|
||||||
|
ReputationIncrease = 100
|
||||||
Vendored
+21
-2
@@ -50,6 +50,19 @@ RateSp = 1
|
|||||||
RatePartyXp = 1
|
RatePartyXp = 1
|
||||||
# Skill points multiplier (Party)
|
# Skill points multiplier (Party)
|
||||||
RatePartySp = 1
|
RatePartySp = 1
|
||||||
|
|
||||||
|
# Instance rates
|
||||||
|
# Those rates are used as absolute rate within instances, does not applies on top of RateXp for example!
|
||||||
|
# Default: -1 (Uses the rates above)
|
||||||
|
# Instance Experience multiplier
|
||||||
|
RateInstanceXp = -1
|
||||||
|
# Instance Skill points multiplier
|
||||||
|
RateInstanceSp = -1
|
||||||
|
# Instance Experience multiplier (Party)
|
||||||
|
RateInstancePartyXp = -1
|
||||||
|
# Instance Skill points multiplier (Party)
|
||||||
|
RateInstancePartySp = -1
|
||||||
|
|
||||||
RateDropManor = 1
|
RateDropManor = 1
|
||||||
# Karma decreasing rate
|
# Karma decreasing rate
|
||||||
# Note: -1 means RateXp so it means it will use retail rate for decreasing karma upon death or receiving exp by farming mobs.
|
# Note: -1 means RateXp so it means it will use retail rate for decreasing karma upon death or receiving exp by farming mobs.
|
||||||
@@ -58,6 +71,9 @@ RateKarmaLost = -1
|
|||||||
RateKarmaExpLost = 1
|
RateKarmaExpLost = 1
|
||||||
RateSiegeGuardsPrice = 1
|
RateSiegeGuardsPrice = 1
|
||||||
|
|
||||||
|
# Raidboss points multipler
|
||||||
|
RateRaidbossPointsReward = 1
|
||||||
|
|
||||||
# Modify the rate of reward of all extractable items and skills.
|
# Modify the rate of reward of all extractable items and skills.
|
||||||
# Default: 1.
|
# Default: 1.
|
||||||
RateExtractable = 1.
|
RateExtractable = 1.
|
||||||
@@ -103,11 +119,14 @@ RateQuestRewardMaterial = 1
|
|||||||
# Example with a server rate 15x and vitality = 2. => final server rate = 30 (15x2)!
|
# Example with a server rate 15x and vitality = 2. => final server rate = 30 (15x2)!
|
||||||
RateVitalityExpMultiplier = 2.
|
RateVitalityExpMultiplier = 2.
|
||||||
|
|
||||||
|
# Maximum vitality items allowed to be used for a week by a player.
|
||||||
|
# Default: 999
|
||||||
|
VitalityMaxItemsAllowed = 999
|
||||||
|
|
||||||
# These options are to be used if you want to increase the vitality gain/lost for each mob you kills
|
# These options are to be used if you want to increase the vitality gain/lost for each mob you kills
|
||||||
# Default values are 1.
|
# Default values are 1.
|
||||||
RateVitalityGain = 1.
|
RateVitalityGain = 1.
|
||||||
RateVitalityLost = 0.5
|
RateVitalityLost = 1.
|
||||||
|
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Player Drops (values are set in PERCENTS)
|
# Player Drops (values are set in PERCENTS)
|
||||||
|
|||||||
+39
@@ -0,0 +1,39 @@
|
|||||||
|
###############################################################################
|
||||||
|
# Properties retrived with System.getProperty(String) can be used as values
|
||||||
|
# by enclosing the property name with %. Eg.: %java.class.path%
|
||||||
|
#
|
||||||
|
# You can set a property for a scripting engine by language name.
|
||||||
|
#
|
||||||
|
# Examples:
|
||||||
|
# language.Java.source=1.8
|
||||||
|
###############################################################################
|
||||||
|
|
||||||
|
|
||||||
|
#######################################
|
||||||
|
# L2J_JavaEngine #####################
|
||||||
|
#######################################
|
||||||
|
|
||||||
|
# The prefered java compiler api to use.
|
||||||
|
# The value is a fully qualified name of a class which implements the javax.toold.JavaCompiler and has a zero argument constructor.
|
||||||
|
# When the prefered compiler is not set, the first found compiler is used.
|
||||||
|
# When the prefered compiler is not found, the last found compiler is used.
|
||||||
|
language.Java.preferedCompiler=com.sun.tools.javac.api.JavacTool
|
||||||
|
language.Java.preferedCompiler=org.eclipse.jdt.internal.compiler.tool.EclipseCompiler
|
||||||
|
|
||||||
|
# The parent class loader for isolated script class loaders.
|
||||||
|
# When this property is not specified, has an invalid value or is a class name which could not be found, the System classloader is used.
|
||||||
|
# Values: System, ThreadContext or a fully qualified java class name
|
||||||
|
language.Java.classloader=System
|
||||||
|
#language.Java.classloader=ThreadContext
|
||||||
|
|
||||||
|
# Source compatibility
|
||||||
|
language.Java.source=1.8
|
||||||
|
|
||||||
|
# The java sourcepath, when you have a different datapack root, you must change this too.
|
||||||
|
language.Java.sourcepath=data/scripts
|
||||||
|
|
||||||
|
# The java classpath
|
||||||
|
language.Java.cp=%java.class.path%
|
||||||
|
|
||||||
|
# The debug informations to generate for compiled class files
|
||||||
|
language.Java.g=source,lines,vars
|
||||||
Vendored
+4
-3
@@ -26,7 +26,7 @@ LoginPort = 9014
|
|||||||
# WARNING: <u><b><font color="red">Please don't change default IPs here if you don't know what are you doing!</font></b></u>
|
# WARNING: <u><b><font color="red">Please don't change default IPs here if you don't know what are you doing!</font></b></u>
|
||||||
# WARNING: <u><b><font color="red">External/Internal IPs are now inside "ipconfig.xml" file.</font></b></u>
|
# WARNING: <u><b><font color="red">External/Internal IPs are now inside "ipconfig.xml" file.</font></b></u>
|
||||||
# Default: * (0.0.0.0)
|
# Default: * (0.0.0.0)
|
||||||
GameserverHostname = *
|
GameserverHostname = 0.0.0.0
|
||||||
|
|
||||||
# Default: 7777
|
# Default: 7777
|
||||||
GameserverPort = 7777
|
GameserverPort = 7777
|
||||||
@@ -76,9 +76,10 @@ RequestServerID = 1
|
|||||||
AcceptAlternateID = True
|
AcceptAlternateID = True
|
||||||
|
|
||||||
# Datapack root directory.
|
# Datapack root directory.
|
||||||
|
# Defaults to current directory from which the server is started unless the below line is uncommented.
|
||||||
# WARNING: <u><b><font color="red">If the specified path is invalid, it will lead to multiple errors!</font></b></u>
|
# WARNING: <u><b><font color="red">If the specified path is invalid, it will lead to multiple errors!</font></b></u>
|
||||||
#Default: data\
|
#Default: .
|
||||||
DatapackRoot = data\
|
DatapackRoot = .
|
||||||
|
|
||||||
# Define how many players are allowed to play simultaneously on your server.
|
# Define how many players are allowed to play simultaneously on your server.
|
||||||
# Default: 2000
|
# Default: 2000
|
||||||
|
|||||||
Vendored
-9
@@ -63,7 +63,6 @@ GludioFlameTower2=-19329,108154,-2384,13004,70018,70020
|
|||||||
GludioControlTower1=-18325,112811,-2377,13002
|
GludioControlTower1=-18325,112811,-2377,13002
|
||||||
GludioControlTower2=-18048,107098,-2378,13002
|
GludioControlTower2=-18048,107098,-2378,13002
|
||||||
GludioControlTower3=-18113,108597,-2343,13002
|
GludioControlTower3=-18113,108597,-2343,13002
|
||||||
GludioMaxMercenaries = 100
|
|
||||||
|
|
||||||
# Giran
|
# Giran
|
||||||
GiranFlameTower1=118331,145055,-2627,13004,70025,70027
|
GiranFlameTower1=118331,145055,-2627,13004,70025,70027
|
||||||
@@ -71,7 +70,6 @@ GiranFlameTower2=117768,143880,-2451,13004,70026,70028
|
|||||||
GiranControlTower1=113115,144829,-2446,13002
|
GiranControlTower1=113115,144829,-2446,13002
|
||||||
GiranControlTower2=118828,145106,-2447,13002
|
GiranControlTower2=118828,145106,-2447,13002
|
||||||
GiranControlTower3=117329,145041,-2412,13002
|
GiranControlTower3=117329,145041,-2412,13002
|
||||||
GiranMaxMercenaries = 200
|
|
||||||
|
|
||||||
# Dion
|
# Dion
|
||||||
DionFlameTower1=22114,162159,-2754,13004,70021,70023
|
DionFlameTower1=22114,162159,-2754,13004,70021,70023
|
||||||
@@ -79,7 +77,6 @@ DionFlameTower2=23289,161596,-2578,13004,70022,70024
|
|||||||
DionControlTower1=22285,156939,-2571,13002
|
DionControlTower1=22285,156939,-2571,13002
|
||||||
DionControlTower2=22008,162652,-2572,13002
|
DionControlTower2=22008,162652,-2572,13002
|
||||||
DionControlTower3=22073,161153,-2537,13002
|
DionControlTower3=22073,161153,-2537,13002
|
||||||
DionMaxMercenaries = 150
|
|
||||||
|
|
||||||
# Oren
|
# Oren
|
||||||
OrenFlameTower1=84407,37150,-2354,13004,70029,70031
|
OrenFlameTower1=84407,37150,-2354,13004,70029,70031
|
||||||
@@ -87,7 +84,6 @@ OrenFlameTower2=83844,35975,-2178,13004,70030,70032
|
|||||||
OrenControlTower1=79193,36977,-2167,13002
|
OrenControlTower1=79193,36977,-2167,13002
|
||||||
OrenControlTower2=84906,37254,-2168,13002
|
OrenControlTower2=84906,37254,-2168,13002
|
||||||
OrenControlTower3=83407,37189,-2133,13002
|
OrenControlTower3=83407,37189,-2133,13002
|
||||||
OrenMaxMercenaries = 300
|
|
||||||
|
|
||||||
# Aden
|
# Aden
|
||||||
AdenFlameTower1=149976,1583,-450,13004,70008,70016,70007,70015,70006,70014,70005,70013
|
AdenFlameTower1=149976,1583,-450,13004,70008,70016,70007,70015,70006,70014,70005,70013
|
||||||
@@ -95,7 +91,6 @@ AdenFlameTower2=144955,1603,-450,13004,70004,70012,70003,70011,70002,70010,70001
|
|||||||
AdenControlTower1=148774,2351,-389,13002
|
AdenControlTower1=148774,2351,-389,13002
|
||||||
AdenControlTower2=147456,5724,158,13002
|
AdenControlTower2=147456,5724,158,13002
|
||||||
AdenControlTower3=146137,2352,-389,13002
|
AdenControlTower3=146137,2352,-389,13002
|
||||||
AdenMaxMercenaries = 400
|
|
||||||
|
|
||||||
# Innadril
|
# Innadril
|
||||||
InnadrilFlameTower1=116065,250938,-850,13004,70033,70035
|
InnadrilFlameTower1=116065,250938,-850,13004,70033,70035
|
||||||
@@ -103,7 +98,6 @@ InnadrilFlameTower2=117240,250375,-674,13004,70034,70036
|
|||||||
InnadrilControlTower1=116236,245718,-667,13002
|
InnadrilControlTower1=116236,245718,-667,13002
|
||||||
InnadrilControlTower2=115959,251431,-667,13002
|
InnadrilControlTower2=115959,251431,-667,13002
|
||||||
InnadrilControlTower3=116024,249932,-633,13002
|
InnadrilControlTower3=116024,249932,-633,13002
|
||||||
InnadrilMaxMercenaries = 400
|
|
||||||
|
|
||||||
# Goddard
|
# Goddard
|
||||||
GoddardFlameTower1=148144,-46992,-1609,13004,70037,70039
|
GoddardFlameTower1=148144,-46992,-1609,13004,70037,70039
|
||||||
@@ -111,7 +105,6 @@ GoddardFlameTower2=146784,-46992,-1609,13004,70038,70040
|
|||||||
GoddardControlTower1=144672,-48832,-1742,13002
|
GoddardControlTower1=144672,-48832,-1742,13002
|
||||||
GoddardControlTower2=150240,-48832,-1742,13002
|
GoddardControlTower2=150240,-48832,-1742,13002
|
||||||
GoddardControlTower3=147456,-49200,-1619,13002
|
GoddardControlTower3=147456,-49200,-1619,13002
|
||||||
GoddardMaxMercenaries = 400
|
|
||||||
|
|
||||||
# Rune
|
# Rune
|
||||||
RuneFlameTower1=12864,-47440,-1087,13004,70041,70043
|
RuneFlameTower1=12864,-47440,-1087,13004,70041,70043
|
||||||
@@ -119,7 +112,6 @@ RuneFlameTower2=12225,-50767,1248,13004,70042,70044
|
|||||||
RuneControlTower1=16565,-50318,-641,13002
|
RuneControlTower1=16565,-50318,-641,13002
|
||||||
RuneControlTower2=16559,-48000,-641,13002
|
RuneControlTower2=16559,-48000,-641,13002
|
||||||
RuneControlTower3=10775,-48481,83,13002
|
RuneControlTower3=10775,-48481,83,13002
|
||||||
RuneMaxMercenaries = 400
|
|
||||||
|
|
||||||
# Schuttgart
|
# Schuttgart
|
||||||
SchuttgartFlameTower1=76872,-151043,120,13004,70045,70047
|
SchuttgartFlameTower1=76872,-151043,120,13004,70045,70047
|
||||||
@@ -127,4 +119,3 @@ SchuttgartFlameTower2=78233,-151037,120,13004,70046,70048
|
|||||||
SchuttgartControlTower1=80334,-152898,-8,13002
|
SchuttgartControlTower1=80334,-152898,-8,13002
|
||||||
SchuttgartControlTower2=74775,-152928,-8,13002
|
SchuttgartControlTower2=74775,-152928,-8,13002
|
||||||
SchuttgartControlTower3=77547,-153246,112,13002
|
SchuttgartControlTower3=77547,-153246,112,13002
|
||||||
SchuttgartMaxMercenaries = 400
|
|
||||||
|
|||||||
Vendored
+9
-6
@@ -5,7 +5,6 @@
|
|||||||
# Warning:
|
# Warning:
|
||||||
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
# Please take extreme caution when changing anything. Also please understand what you are changing before you do so on a live server.
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
# Allows text based monitoring and administration of L2J GS
|
# Allows text based monitoring and administration of L2J GS
|
||||||
# by using a telnet client. Communication protocol is insecure
|
# by using a telnet client. Communication protocol is insecure
|
||||||
# and you should use SSL tunnels, VPN, etc. if you plan to connect
|
# and you should use SSL tunnels, VPN, etc. if you plan to connect
|
||||||
@@ -13,16 +12,20 @@
|
|||||||
# Default: False
|
# Default: False
|
||||||
EnableTelnet = False
|
EnableTelnet = False
|
||||||
|
|
||||||
|
# This is the hostname address on which telnet server will be listening.
|
||||||
|
# Note for all adapters use: *
|
||||||
|
# Default: 127.0.0.1
|
||||||
|
BindAddress = 127.0.0.1
|
||||||
|
|
||||||
# This is the port L2J should listen to for incoming telnet
|
# This is the port L2J should listen to for incoming telnet
|
||||||
# requests.
|
# requests.
|
||||||
# Default: 54321
|
# Default: 54321
|
||||||
StatusPort = 54321
|
Port = 54321
|
||||||
|
|
||||||
# If the following is not set, a random password is generated on server startup.
|
# If the following is not set, a random password is generated on server startup.
|
||||||
# Usage: StatusPW = somePass
|
Password = somepassword
|
||||||
StatusPW =
|
|
||||||
|
|
||||||
# This list can contain IPs or Hosts of clients you wish to allow. Hostnames must be resolvable to an IP.
|
# This list can contain IPs or Hosts of clients you wish to allow. Hostnames must be resolvable to an IP.
|
||||||
# Example: 0.0.0.0,host,0.0.0.1,host2,host3,host4,0.0.0.3
|
# Example: 0.0.0.0,host,0.0.0.1,host2,host3,host4,0.0.0.3
|
||||||
# Default: 127.0.0.1,localhost
|
# Default: 127.0.0.1,localhost,::1
|
||||||
ListOfHosts = 127.0.0.1,localhost
|
ListOfHosts = 127.0.0.1,localhost,::1
|
||||||
Vendored
+218
@@ -0,0 +1,218 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ActionData.xsd">
|
||||||
|
<action id="0" handler="SitStand" />
|
||||||
|
<action id="1" handler="RunWalk" />
|
||||||
|
<action id="10" handler="PrivateStore" option="1" /> <!-- Private Store Sell -->
|
||||||
|
<action id="12" handler="SocialAction" option="2" /> <!-- Greeting -->
|
||||||
|
<action id="13" handler="SocialAction" option="3" /> <!-- Victory -->
|
||||||
|
<action id="15" handler="PetHold" /> <!-- Change Movement Mode -->
|
||||||
|
<action id="14" handler="SocialAction" option="4" /> <!-- Advance -->
|
||||||
|
<action id="16" handler="PetAttack" /> <!-- Attack -->
|
||||||
|
<action id="17" handler="PetStop" /> <!-- Stop -->
|
||||||
|
<action id="19" handler="UnsummonPet" />
|
||||||
|
<action id="21" handler="ServitorHold" /> <!-- Change Movement Mode -->
|
||||||
|
<action id="22" handler="ServitorAttack" /> <!-- Attack -->
|
||||||
|
<action id="23" handler="ServitorStop" /> <!-- Stop -->
|
||||||
|
<action id="24" handler="SocialAction" option="6" /> <!-- Yes -->
|
||||||
|
<action id="25" handler="SocialAction" option="5" /> <!-- No -->
|
||||||
|
<action id="26" handler="SocialAction" option="7" /> <!-- Bow -->
|
||||||
|
<action id="28" handler="PrivateStore" option="3" /> <!-- Private Store Buy -->
|
||||||
|
<action id="29" handler="SocialAction" option="8" /> <!-- Unaware -->
|
||||||
|
<action id="30" handler="SocialAction" option="9" /> <!-- Social Waiting -->
|
||||||
|
<action id="31" handler="SocialAction" option="10" /> <!-- Laugh -->
|
||||||
|
<action id="32" handler="ServitorSkillUse" option="4230" /> <!-- Wild Hog Cannon - Wild Cannon -->
|
||||||
|
<action id="33" handler="SocialAction" option="11" /> <!-- Applaud -->
|
||||||
|
<action id="34" handler="SocialAction" option="12" /> <!-- Dance -->
|
||||||
|
<action id="35" handler="SocialAction" option="13" /> <!-- Sorrow -->
|
||||||
|
<action id="36" handler="ServitorSkillUse" option="4259" /> <!-- Soulless - Toxic Smoke -->
|
||||||
|
<action id="37" handler="PrivateStore" option="5" /> <!-- Dwarven Manufacture -->
|
||||||
|
<action id="38" handler="Ride" /> <!-- Mount/Dismount -->
|
||||||
|
<action id="39" handler="ServitorSkillUse" option="4138" /> <!-- Soulless - Parasite Burst -->
|
||||||
|
<action id="41" handler="ServitorSkillUse" option="4230" /> <!-- Wild Hog Cannon - Attack -->
|
||||||
|
<action id="42" handler="ServitorSkillUse" option="4378" /> <!-- Kai the Cat - Self Damage Shield -->
|
||||||
|
<action id="43" handler="ServitorSkillUse" option="4137" /> <!-- Unicorn Merrow - Hydro Screw -->
|
||||||
|
<action id="44" handler="ServitorSkillUse" option="4139" /> <!-- Big Boom - Boom Attack -->
|
||||||
|
<action id="45" handler="ServitorSkillUse" option="4025" /> <!-- Unicorn Boxer - Master Recharge -->
|
||||||
|
<action id="46" handler="ServitorSkillUse" option="4261" /> <!-- Mew the Cat - Mega Storm Strike -->
|
||||||
|
<action id="47" handler="ServitorSkillUse" option="4260" /> <!-- Silhouette - Steal Blood -->
|
||||||
|
<action id="48" handler="ServitorSkillUse" option="4068" /> <!-- Mechanic Golem - Mech. Cannon -->
|
||||||
|
<action id="52" handler="UnsummonServitor" />
|
||||||
|
<action id="53" handler="ServitorMove" /> <!-- Move to target -->
|
||||||
|
<action id="54" handler="PetMove" /> <!-- Move to target -->
|
||||||
|
<action id="61" handler="PrivateStore" option="8" /> <!-- Private Store Package Sell -->
|
||||||
|
<action id="62" handler="SocialAction" option="14" /> <!-- Charm -->
|
||||||
|
<action id="64" handler="TeleportBookmark" />
|
||||||
|
<action id="65" handler="BotReport" />
|
||||||
|
<action id="66" handler="SocialAction" option="15" /> <!-- Shyness -->
|
||||||
|
<action id="67" handler="AirshipAction" option="1" /> <!-- Steer -->
|
||||||
|
<action id="68" handler="AirshipAction" option="2" /> <!-- Cancel Control -->
|
||||||
|
<action id="69" handler="AirshipAction" option="3" /> <!-- Destination Map -->
|
||||||
|
<action id="70" handler="AirshipAction" option="4" /> <!-- Exit Airship -->
|
||||||
|
<action id="71" handler="SocialAction" option="16" /> <!-- Exchange Bows -->
|
||||||
|
<action id="72" handler="SocialAction" option="17" /> <!-- High Five -->
|
||||||
|
<action id="73" handler="SocialAction" option="18" /> <!-- Couple Dance -->
|
||||||
|
<action id="78" handler="TacticalSignUse" option="1" /> <!-- Token 1: Star -->
|
||||||
|
<action id="79" handler="TacticalSignUse" option="2" /> <!-- Token 2: Heart -->
|
||||||
|
<action id="80" handler="TacticalSignUse" option="3" /> <!-- Token 3: Moon -->
|
||||||
|
<action id="81" handler="TacticalSignUse" option="4" /> <!-- Token 4: Cross -->
|
||||||
|
<action id="82" handler="TacticalSignTarget" option="1" /> <!-- Token 1: Star -->
|
||||||
|
<action id="83" handler="TacticalSignTarget" option="2" /> <!-- Token 2: Heart -->
|
||||||
|
<action id="84" handler="TacticalSignTarget" option="3" /> <!-- Token 3: Moon -->
|
||||||
|
<action id="85" handler="TacticalSignTarget" option="4" /> <!-- Token 4: Cross -->
|
||||||
|
<action id="87" handler="SocialAction" option="28" /> <!-- Propose -->
|
||||||
|
<action id="88" handler="SocialAction" option="29" /> <!-- Provoke -->
|
||||||
|
<action id="89" handler="SocialAction" option="30" /> <!-- Beauty Shop -->
|
||||||
|
<action id="90" handler="InstanceZoneInfo" />
|
||||||
|
<action id="1000" handler="ServitorSkillUse" option="4079" /> <!-- Siege Golem - Siege Hammer -->
|
||||||
|
<action id="1003" handler="PetSkillUse" option="4710" /> <!-- Wind Hatchling/Strider - Wild Stun -->
|
||||||
|
<action id="1004" handler="PetSkillUse" option="4711" /> <!-- Wind Hatchling/Strider - Wild Defense -->
|
||||||
|
<action id="1005" handler="PetSkillUse" option="4712" /> <!-- Star Hatchling/Strider - Bright Burst -->
|
||||||
|
<action id="1006" handler="PetSkillUse" option="4713" /> <!-- Star Hatchling/Strider - Bright Heal -->
|
||||||
|
<action id="1007" handler="ServitorSkillUse" option="4699" /> <!-- Cat Queen - Blessing of Queen -->
|
||||||
|
<action id="1008" handler="ServitorSkillUse" option="4700" /> <!-- Cat Queen - Gift of Queen -->
|
||||||
|
<action id="1009" handler="ServitorSkillUse" option="4701" /> <!-- Cat Queen - Cure of Queen -->
|
||||||
|
<action id="1010" handler="ServitorSkillUse" option="4702" /> <!-- Unicorn Seraphim - Blessing of Seraphim -->
|
||||||
|
<action id="1011" handler="ServitorSkillUse" option="4703" /> <!-- Unicorn Seraphim - Gift of Seraphim -->
|
||||||
|
<action id="1012" handler="ServitorSkillUse" option="4704" /> <!-- Unicorn Seraphim - Cure of Seraphim -->
|
||||||
|
<action id="1013" handler="ServitorSkillUse" option="4705" /> <!-- Nightshade - Curse of Shade -->
|
||||||
|
<action id="1014" handler="ServitorSkillUse" option="4706" /> <!-- Nightshade - Mass Curse of Shade -->
|
||||||
|
<action id="1015" handler="ServitorSkillUse" option="4707" /> <!-- Nightshade - Shade Sacrifice -->
|
||||||
|
<action id="1016" handler="ServitorSkillUse" option="4709" /> <!-- Cursed Man - Cursed Blow -->
|
||||||
|
<action id="1017" handler="ServitorSkillUse" option="4708" /> <!-- Cursed Man - Cursed Strike/Stun -->
|
||||||
|
<action id="1031" handler="ServitorSkillUse" option="5135" /> <!-- Feline King - Slash -->
|
||||||
|
<action id="1032" handler="ServitorSkillUse" option="5136" /> <!-- Feline King - Spinning Slash -->
|
||||||
|
<action id="1033" handler="ServitorSkillUse" option="5137" /> <!-- Feline King - Grip of the Cat -->
|
||||||
|
<action id="1034" handler="ServitorSkillUse" option="5138" /> <!-- Magnus the Unicorn - Whiplash -->
|
||||||
|
<action id="1035" handler="ServitorSkillUse" option="5139" /> <!-- Magnus the Unicorn - Tridal Wave -->
|
||||||
|
<action id="1036" handler="ServitorSkillUse" option="5142" /> <!-- Spectral Lord - Corpse Kaboom -->
|
||||||
|
<action id="1037" handler="ServitorSkillUse" option="5141" /> <!-- Spectral Lord - Dicing Death -->
|
||||||
|
<action id="1038" handler="ServitorSkillUse" option="5140" /> <!-- Spectral Lord - Force Curse -->
|
||||||
|
<action id="1039" handler="ServitorSkillUse" option="5110" /> <!-- Swoop Cannon - Cannon Fodder -->
|
||||||
|
<action id="1040" handler="ServitorSkillUse" option="5111" /> <!-- Swoop Cannon - Big Bang -->
|
||||||
|
<action id="1041" handler="PetSkillUse" option="5442" /> <!-- Great Wolf - Bite Attack -->
|
||||||
|
<action id="1042" handler="PetSkillUse" option="5444" /> <!-- Great Wolf - Maul -->
|
||||||
|
<action id="1043" handler="PetSkillUse" option="5443" /> <!-- Great Wolf - Cry of the Wolf -->
|
||||||
|
<action id="1044" handler="PetSkillUse" option="5445" /> <!-- Great Wolf - Awakening -->
|
||||||
|
<action id="1045" handler="PetSkillUse" option="5584" /> <!-- Great Wolf - Howl -->
|
||||||
|
<action id="1046" handler="PetSkillUse" option="5585" /> <!-- Strider - Roar -->
|
||||||
|
<action id="1047" handler="ServitorSkillUse" option="5580" /> <!-- Divine Beast - Bite -->
|
||||||
|
<action id="1048" handler="ServitorSkillUse" option="5581" /> <!-- Divine Beast - Stun Attack -->
|
||||||
|
<action id="1049" handler="ServitorSkillUse" option="5582" /> <!-- Divine Beast - Fire Breath -->
|
||||||
|
<action id="1050" handler="ServitorSkillUse" option="5583" /> <!-- Divine Beast - Roar -->
|
||||||
|
<action id="1051" handler="ServitorSkillUse" option="5638" /> <!-- Feline Queen - Bless The Body -->
|
||||||
|
<action id="1052" handler="ServitorSkillUse" option="5639" /> <!-- Feline Queen - Bless The Soul -->
|
||||||
|
<action id="1053" handler="ServitorSkillUse" option="5640" /> <!-- Feline Queen - Haste -->
|
||||||
|
<action id="1054" handler="ServitorSkillUse" option="5643" /> <!-- Unicorn Seraphim - Acumen -->
|
||||||
|
<action id="1055" handler="ServitorSkillUse" option="5647" /> <!-- Unicorn Seraphim - Clarity -->
|
||||||
|
<action id="1056" handler="ServitorSkillUse" option="5648" /> <!-- Unicorn Seraphim - Empower -->
|
||||||
|
<action id="1057" handler="ServitorSkillUse" option="5646" /> <!-- Unicorn Seraphim - Wild Magic -->
|
||||||
|
<action id="1058" handler="ServitorSkillUse" option="5652" /> <!-- Nightshade - Death Whisper -->
|
||||||
|
<action id="1059" handler="ServitorSkillUse" option="5653" /> <!-- Nightshade - Focus -->
|
||||||
|
<action id="1060" handler="ServitorSkillUse" option="5654" /> <!-- Nightshade - Guidance -->
|
||||||
|
<action id="1061" handler="ServitorSkillUse" option="5745" /> <!-- Wild Beast Fighter, White Weasel - Death blow -->
|
||||||
|
<action id="1062" handler="ServitorSkillUse" option="5746" /> <!-- Wild Beast Fighter - Double attack -->
|
||||||
|
<action id="1063" handler="ServitorSkillUse" option="5747" /> <!-- Wild Beast Fighter - Spin attack -->
|
||||||
|
<action id="1064" handler="ServitorSkillUse" option="5748" /> <!-- Wild Beast Fighter - Meteor Shower -->
|
||||||
|
<action id="1065" handler="ServitorSkillUse" option="5753" /> <!-- Fox Shaman, Wild Beast Fighter, White Weasel, Fairy Princess - Awakening -->
|
||||||
|
<action id="1066" handler="ServitorSkillUse" option="5749" /> <!-- Fox Shaman, Spirit Shaman - Thunder Bolt -->
|
||||||
|
<action id="1067" handler="ServitorSkillUse" option="5750" /> <!-- Fox Shaman, Spirit Shaman - Flash -->
|
||||||
|
<action id="1068" handler="ServitorSkillUse" option="5751" /> <!-- Fox Shaman, Spirit Shaman - Lightning Wave -->
|
||||||
|
<action id="1069" handler="ServitorSkillUse" option="5752" /> <!-- Fox Shaman, Fairy Princess - Flare -->
|
||||||
|
<action id="1070" handler="ServitorSkillUse" option="5771" /> <!-- White Weasel, Fairy Princess, Improved Baby Buffalo, Improved Baby Kookaburra, Improved Baby Cougar, Spirit Shaman, Toy Knight, Turtle Ascetic - Buff control -->
|
||||||
|
<action id="1071" handler="ServitorSkillUse" option="5761" /> <!-- Tigress - Power Strike -->
|
||||||
|
<action id="1072" handler="ServitorSkillUse" option="6046" /> <!-- Toy Knight - Piercing attack -->
|
||||||
|
<action id="1073" handler="ServitorSkillUse" option="6047" /> <!-- Toy Knight - Whirlwind -->
|
||||||
|
<action id="1074" handler="ServitorSkillUse" option="6048" /> <!-- Toy Knight - Lance Smash -->
|
||||||
|
<action id="1075" handler="ServitorSkillUse" option="6049" /> <!-- Toy Knight - Battle Cry -->
|
||||||
|
<action id="1076" handler="ServitorSkillUse" option="6050" /> <!-- Turtle Ascetic - Power Smash -->
|
||||||
|
<action id="1077" handler="ServitorSkillUse" option="6051" /> <!-- Turtle Ascetic - Energy Burst -->
|
||||||
|
<action id="1078" handler="ServitorSkillUse" option="6052" /> <!-- Turtle Ascetic - Shockwave -->
|
||||||
|
<action id="1079" handler="ServitorSkillUse" option="6053" /> <!-- Turtle Ascetic - Howl -->
|
||||||
|
<action id="1080" handler="ServitorSkillUse" option="6041" /> <!-- Phoenix Rush -->
|
||||||
|
<action id="1081" handler="ServitorSkillUse" option="6042" /> <!-- Phoenix Cleanse -->
|
||||||
|
<action id="1082" handler="ServitorSkillUse" option="6043" /> <!-- Phoenix Flame Feather -->
|
||||||
|
<action id="1083" handler="ServitorSkillUse" option="6044" /> <!-- Phoenix Flame Beak -->
|
||||||
|
<action id="1084" handler="ServitorSkillUse" option="6054" /> <!-- Switch State -->
|
||||||
|
<action id="1086" handler="ServitorSkillUse" option="6094" /> <!-- Panther Cancel -->
|
||||||
|
<action id="1087" handler="ServitorSkillUse" option="6095" /> <!-- Panther Dark Claw -->
|
||||||
|
<action id="1088" handler="ServitorSkillUse" option="6096" /> <!-- Panther Fatal Claw -->
|
||||||
|
<action id="1089" handler="ServitorSkillUse" option="6199" /> <!-- Deinonychus - Tail Strike -->
|
||||||
|
<action id="1090" handler="ServitorSkillUse" option="6205" /> <!-- Guardian's Strider - Strider Bite -->
|
||||||
|
<action id="1091" handler="ServitorSkillUse" option="6206" /> <!-- Guardian's Strider - Strider Fear -->
|
||||||
|
<action id="1092" handler="ServitorSkillUse" option="6207" /> <!-- Guardian's Strider - Strider Dash -->
|
||||||
|
<action id="1093" handler="ServitorSkillUse" option="6618" /> <!-- Maguen - Maguen Strike -->
|
||||||
|
<action id="1094" handler="ServitorSkillUse" option="6681" /> <!-- Maguen - Maguen Wind Walk -->
|
||||||
|
<action id="1095" handler="ServitorSkillUse" option="6619" /> <!-- Elite Maguen - Maguen Power Strike -->
|
||||||
|
<action id="1096" handler="ServitorSkillUse" option="6682" /> <!-- Elite Maguen - Elite Maguen Wind Walk -->
|
||||||
|
<action id="1097" handler="ServitorSkillUse" option="6683" /> <!-- Maguen - Maguen Return -->
|
||||||
|
<action id="1098" handler="ServitorSkillUse" option="6684" /> <!-- Elite Maguen - Maguen Party Return -->
|
||||||
|
<action id="1099" handler="ServitorAttack" /> <!-- All Attack -->
|
||||||
|
<action id="1100" handler="ServitorMove" /> <!-- All Move to target -->
|
||||||
|
<action id="1101" handler="ServitorStop" /> <!-- All Stop -->
|
||||||
|
<action id="1102" handler="UnsummonServitor" />
|
||||||
|
<action id="1103" handler="ServitorMode" option="1" /> <!-- All Passive mode -->
|
||||||
|
<action id="1104" handler="ServitorMode" option="2" /> <!-- All Defending mode -->
|
||||||
|
<action id="1106" handler="ServitorSkillUse" option="11278" /> <!-- Cute Bear - Bear Claw -->
|
||||||
|
<action id="1107" handler="ServitorSkillUse" option="11279" /> <!-- Cute Bear - Bear Tumbling -->
|
||||||
|
<action id="1108" handler="ServitorSkillUse" option="11280" /> <!-- Saber Tooth Cougar- Cougar Bite -->
|
||||||
|
<action id="1109" handler="ServitorSkillUse" option="11281" /> <!-- Saber Tooth Cougar - Cougar Pounce -->
|
||||||
|
<action id="1110" handler="ServitorSkillUse" option="11282" /> <!-- Grim Reaper - Reaper Touch -->
|
||||||
|
<action id="1111" handler="ServitorSkillUse" option="11283" /> <!-- Grim Reaper - Reaper Power -->
|
||||||
|
<action id="1113" handler="ServitorSkillUse" option="10051" /> <!-- Golden Lion - Lion Roar -->
|
||||||
|
<action id="1114" handler="ServitorSkillUse" option="10052" /> <!-- Golden Lion - Lion Claw -->
|
||||||
|
<action id="1115" handler="ServitorSkillUse" option="10053" /> <!-- Golden Lion - Lion Dash -->
|
||||||
|
<action id="1116" handler="ServitorSkillUse" option="10054" /> <!-- Golden Lion - Lion Flame -->
|
||||||
|
<action id="1117" handler="ServitorSkillUse" option="10794" /> <!-- Thunder Hawk - Thunder Flight -->
|
||||||
|
<action id="1118" handler="ServitorSkillUse" option="10795" /> <!-- Thunder Hawk - Thunder Purity -->
|
||||||
|
<action id="1120" handler="ServitorSkillUse" option="10797" /> <!-- Thunder Hawk - Thunder Feather Blast -->
|
||||||
|
<action id="1121" handler="ServitorSkillUse" option="10798" /> <!-- Thunder Hawk - Thunder Sharp Claw -->
|
||||||
|
<action id="1122" handler="ServitorSkillUse" option="11806" /> <!-- Tree of Life - Blessing of Tree -->
|
||||||
|
<action id="1124" handler="ServitorSkillUse" option="11323" /> <!-- Wynn Kai the Cat - Feline Aggression -->
|
||||||
|
<action id="1125" handler="ServitorSkillUse" option="11324" /> <!-- Wynn Kai the Cat - Feline Stun -->
|
||||||
|
<action id="1126" handler="ServitorSkillUse" option="11325" /> <!-- Wynn Feline King - Feline Bite -->
|
||||||
|
<action id="1127" handler="ServitorSkillUse" option="11326" /> <!-- Wynn Feline King - Feline Pounce -->
|
||||||
|
<action id="1128" handler="ServitorSkillUse" option="11327" /> <!-- Wynn Feline Queen - Feline Touch -->
|
||||||
|
<action id="1129" handler="ServitorSkillUse" option="11328" /> <!-- Wynn Feline Queen - Feline Power -->
|
||||||
|
<action id="1130" handler="ServitorSkillUse" option="11332" /> <!-- Wynn Merrow - Unicorn's Aggression -->
|
||||||
|
<action id="1131" handler="ServitorSkillUse" option="11333" /> <!-- Wynn Merrow - Unicorn's Stun -->
|
||||||
|
<action id="1132" handler="ServitorSkillUse" option="11334" /> <!-- Wynn Magnus - Unicorn's Bite -->
|
||||||
|
<action id="1133" handler="ServitorSkillUse" option="11335" /> <!-- Wynn Magnus - Unicorn's Pounce -->
|
||||||
|
<action id="1134" handler="ServitorSkillUse" option="11336" /> <!-- Wynn Seraphim - Unicorn's Touch -->
|
||||||
|
<action id="1135" handler="ServitorSkillUse" option="11337" /> <!-- Wynn Seraphim - Unicorn's Power -->
|
||||||
|
<action id="1136" handler="ServitorSkillUse" option="11341" /> <!-- Wynn Nightshade - Phantom Aggression -->
|
||||||
|
<action id="1137" handler="ServitorSkillUse" option="11342" /> <!-- Wynn Nightshade - Phantom Stun -->
|
||||||
|
<action id="1138" handler="ServitorSkillUse" option="11343" /> <!-- Wynn Spectral Lord - Phantom Bite -->
|
||||||
|
<action id="1139" handler="ServitorSkillUse" option="11344" /> <!-- Wynn Spectral Lord - Phantom Pounce -->
|
||||||
|
<action id="1140" handler="ServitorSkillUse" option="11345" /> <!-- Wynn Soulless - Phantom Touch -->
|
||||||
|
<action id="1141" handler="ServitorSkillUse" option="11346" /> <!-- Wynn Soulless - Phantom Power -->
|
||||||
|
<action id="1142" handler="ServitorSkillUse" option="10087" /> <!-- Blood Panther - Panther Roar -->
|
||||||
|
<action id="1143" handler="ServitorSkillUse" option="10088" /> <!-- Blood Panther - Panther Rush -->
|
||||||
|
<action id="1144" handler="ServitorSkillUse" option="11375" /> <!-- Commando Cat - Commando Jumping Attack -->
|
||||||
|
<action id="1145" handler="ServitorSkillUse" option="11376" /> <!-- Commando Cat - Commando Double Slash -->
|
||||||
|
<action id="1146" handler="ServitorSkillUse" option="11378" /> <!-- Witch Cat - Elemental Slam -->
|
||||||
|
<action id="1147" handler="ServitorSkillUse" option="11377" /> <!-- Witch Cat - Witch Cat Power -->
|
||||||
|
<action id="1148" handler="ServitorSkillUse" option="11379" /> <!-- Unicorn Lancer - Lancer Rush -->
|
||||||
|
<action id="1149" handler="ServitorSkillUse" option="11380" /> <!-- Unicorn Lancer - Power Stamp -->
|
||||||
|
<action id="1150" handler="ServitorSkillUse" option="11382" /> <!-- Unicorn Cherub - Multiple Icicles -->
|
||||||
|
<action id="1151" handler="ServitorSkillUse" option="11381" /> <!-- Unicorn Cherub - Cherub Power -->
|
||||||
|
<action id="1152" handler="ServitorSkillUse" option="11383" /> <!-- Dark Crusader - Phantom Sword Attack -->
|
||||||
|
<action id="1153" handler="ServitorSkillUse" option="11384" /> <!-- Dark Crusader - Phantom Blow -->
|
||||||
|
<action id="1154" handler="ServitorSkillUse" option="11385" /> <!-- Banshee Queen - Phantom Spike -->
|
||||||
|
<action id="1155" handler="ServitorSkillUse" option="11386" /> <!-- Banshee Queen - Phantom Crash -->
|
||||||
|
<action id="5000" handler="ServitorSkillUse" option="23155" /> <!-- Baby Rudolph - Reindeer Scratch -->
|
||||||
|
<action id="5001" handler="ServitorSkillUse" option="23167" /> <!-- Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum - Rosy Seduction -->
|
||||||
|
<action id="5002" handler="ServitorSkillUse" option="23168" /> <!-- Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum - Critical Seduction -->
|
||||||
|
<action id="5003" handler="ServitorSkillUse" option="5749" /> <!-- Hyum, Lapham, Hyum, Lapham - Thunder Bolt -->
|
||||||
|
<action id="5004" handler="ServitorSkillUse" option="5750" /> <!-- Hyum, Lapham, Hyum, Lapham - Flash -->
|
||||||
|
<action id="5005" handler="ServitorSkillUse" option="5751" /> <!-- Hyum, Lapham, Hyum, Lapham - Lightning Wave -->
|
||||||
|
<action id="5006" handler="ServitorSkillUse" option="5771" /> <!-- Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum, Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum - Buff Control -->
|
||||||
|
<action id="5007" handler="ServitorSkillUse" option="6046" /> <!-- Deseloph, Lilias, Deseloph, Lilias - Piercing Attack -->
|
||||||
|
<action id="5008" handler="ServitorSkillUse" option="6047" /> <!-- Deseloph, Lilias, Deseloph, Lilias - Spin Attack -->
|
||||||
|
<action id="5009" handler="ServitorSkillUse" option="6048" /> <!-- Deseloph, Lilias, Deseloph, Lilias - Smash -->
|
||||||
|
<action id="5010" handler="ServitorSkillUse" option="6049" /> <!-- Deseloph, Lilias, Deseloph, Lilias - Ignite -->
|
||||||
|
<action id="5011" handler="ServitorSkillUse" option="6050" /> <!-- Rekang, Mafum, Rekang, Mafum - Power Smash -->
|
||||||
|
<action id="5012" handler="ServitorSkillUse" option="6051" /> <!-- Rekang, Mafum, Rekang, Mafum - Energy Burst -->
|
||||||
|
<action id="5013" handler="ServitorSkillUse" option="6052" /> <!-- Rekang, Mafum, Rekang, Mafum - Shockwave -->
|
||||||
|
<action id="5014" handler="ServitorSkillUse" option="6053" /> <!-- Rekang, Mafum, Rekang, Mafum - Ignite -->
|
||||||
|
<action id="5015" handler="ServitorSkillUse" option="6054" /> <!-- Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum, Deseloph, Hyum, Rekang, Lilias, Lapham, Mafum - Switch Stance -->
|
||||||
|
</list>
|
||||||
Vendored
+1221
File diff suppressed because it is too large
Load Diff
+14
-66
@@ -278,14 +278,14 @@
|
|||||||
<appearance_stone id="23715" targetType="ARMOR" type="FIXED" visualId="23711" bodyPart="feet" /> <!-- Metal Shoes Appearance Stone -->
|
<appearance_stone id="23715" targetType="ARMOR" type="FIXED" visualId="23711" bodyPart="feet" /> <!-- Metal Shoes Appearance Stone -->
|
||||||
|
|
||||||
<!-- Military Suit -->
|
<!-- Military Suit -->
|
||||||
<appearance_stone id="23503" targetType="ARMOR" type="FIXED" visualId="23453"> <!-- Military Top Appearance Stone -->
|
<appearance_stone id="23503" targetType="ARMOR" type="FIXED" visualId="23453" raceNot="ERTHEIA"> <!-- Military Top Appearance Stone -->
|
||||||
<bodyPart>chest</bodyPart>
|
<bodyPart>chest</bodyPart>
|
||||||
<bodyPart>fullarmor</bodyPart>
|
<bodyPart>fullarmor</bodyPart>
|
||||||
</appearance_stone>
|
</appearance_stone>
|
||||||
<appearance_stone id="23504" targetType="ARMOR" type="FIXED" visualId="23454" bodyPart="legs" /> <!-- Military Pants Appearance Stone -->
|
<appearance_stone id="23504" targetType="ARMOR" type="FIXED" visualId="23454" bodyPart="legs" raceNot="ERTHEIA" /> <!-- Military Pants Appearance Stone -->
|
||||||
<appearance_stone id="23505" targetType="ARMOR" type="FIXED" visualId="23455" bodyPart="gloves" /> <!-- Military Gloves Appearance Stone -->
|
<appearance_stone id="23505" targetType="ARMOR" type="FIXED" visualId="23455" bodyPart="gloves" raceNot="ERTHEIA" /> <!-- Military Gloves Appearance Stone -->
|
||||||
<appearance_stone id="23506" targetType="ARMOR" type="FIXED" visualId="23456" bodyPart="feet" /> <!-- Military Shoes Appearance Stone -->
|
<appearance_stone id="23506" targetType="ARMOR" type="FIXED" visualId="23456" bodyPart="feet" raceNot="ERTHEIA" /> <!-- Military Shoes Appearance Stone -->
|
||||||
<appearance_stone id="23507" targetType="ACCESSORY" type="FIXED" visualId="23457"> <!-- Military Hair Accessory Appearance Stone -->
|
<appearance_stone id="23507" targetType="ACCESSORY" type="FIXED" visualId="23457" raceNot="ERTHEIA"> <!-- Military Hair Accessory Appearance Stone -->
|
||||||
<bodyPart>hair</bodyPart>
|
<bodyPart>hair</bodyPart>
|
||||||
<bodyPart>hair2</bodyPart>
|
<bodyPart>hair2</bodyPart>
|
||||||
<bodyPart>hairall</bodyPart>
|
<bodyPart>hairall</bodyPart>
|
||||||
@@ -342,11 +342,11 @@
|
|||||||
<bodyPart>chest</bodyPart>
|
<bodyPart>chest</bodyPart>
|
||||||
<bodyPart>fullarmor</bodyPart>
|
<bodyPart>fullarmor</bodyPart>
|
||||||
</appearance_stone>
|
</appearance_stone>
|
||||||
<appearance_stone id="23234" targetType="ARMOR" type="FIXED" visualId="23173"> <!-- Alluring Swimsuit Appearance Stone -->
|
<appearance_stone id="23234" targetType="ARMOR" type="FIXED" visualId="23173" raceNot="ERTHEIA"> <!-- Alluring Swimsuit Appearance Stone -->
|
||||||
<bodyPart>chest</bodyPart>
|
<bodyPart>chest</bodyPart>
|
||||||
<bodyPart>fullarmor</bodyPart>
|
<bodyPart>fullarmor</bodyPart>
|
||||||
</appearance_stone>
|
</appearance_stone>
|
||||||
<appearance_stone id="23235" targetType="ARMOR" type="FIXED" visualId="23226"> <!-- Seductive Swimsuit Appearance Stone -->
|
<appearance_stone id="23235" targetType="ARMOR" type="FIXED" visualId="23226" raceNot="ERTHEIA"> <!-- Seductive Swimsuit Appearance Stone -->
|
||||||
<bodyPart>chest</bodyPart>
|
<bodyPart>chest</bodyPart>
|
||||||
<bodyPart>fullarmor</bodyPart>
|
<bodyPart>fullarmor</bodyPart>
|
||||||
</appearance_stone>
|
</appearance_stone>
|
||||||
@@ -374,7 +374,7 @@
|
|||||||
<appearance_stone id="22882" targetType="ACCESSORY" type="RESTORE" /> <!-- Hair Accessory Appearance Restoration Stone -->
|
<appearance_stone id="22882" targetType="ACCESSORY" type="RESTORE" /> <!-- Hair Accessory Appearance Restoration Stone -->
|
||||||
|
|
||||||
<!--Anakim Outfit -->
|
<!--Anakim Outfit -->
|
||||||
<appearance_stone id="23882" targetType="ARMOR" type="FIXED" visualId="23881">
|
<appearance_stone id="23882" targetType="ARMOR" type="FIXED" visualId="23881" raceNot="ERTHEIA">
|
||||||
<bodyPart>chest</bodyPart>
|
<bodyPart>chest</bodyPart>
|
||||||
<bodyPart>fullarmor</bodyPart>
|
<bodyPart>fullarmor</bodyPart>
|
||||||
</appearance_stone>
|
</appearance_stone>
|
||||||
@@ -385,6 +385,12 @@
|
|||||||
<bodyPart>fullarmor</bodyPart>
|
<bodyPart>fullarmor</bodyPart>
|
||||||
</appearance_stone>
|
</appearance_stone>
|
||||||
|
|
||||||
|
<!--White Assassion Suit -->
|
||||||
|
<appearance_stone id="46605" targetType="ARMOR" type="FIXED" visualId="46601">
|
||||||
|
<bodyPart>chest</bodyPart>
|
||||||
|
<bodyPart>fullarmor</bodyPart>
|
||||||
|
</appearance_stone>
|
||||||
|
|
||||||
<!--Vampire Suit -->
|
<!--Vampire Suit -->
|
||||||
<appearance_stone id="23888" targetType="ARMOR" type="FIXED" visualId="23883" raceNot="ERTHEIA">
|
<appearance_stone id="23888" targetType="ARMOR" type="FIXED" visualId="23883" raceNot="ERTHEIA">
|
||||||
<bodyPart>chest</bodyPart>
|
<bodyPart>chest</bodyPart>
|
||||||
@@ -399,64 +405,6 @@
|
|||||||
<bodyPart>hairall</bodyPart>
|
<bodyPart>hairall</bodyPart>
|
||||||
</appearance_stone>
|
</appearance_stone>
|
||||||
|
|
||||||
<!-- Tauti set -->
|
|
||||||
<appearance_stone id="46573" targetType="ARMOR" type="FIXED" visualId="46538" raceNot="ERTHEIA">
|
|
||||||
<bodyPart>chest</bodyPart>
|
|
||||||
<bodyPart>fullarmor</bodyPart>
|
|
||||||
</appearance_stone>
|
|
||||||
<appearance_stone id="46574" targetType="ARMOR" type="FIXED" visualId="46539" bodyPart="legs" raceNot="ERTHEIA" />
|
|
||||||
<appearance_stone id="46575" targetType="ARMOR" type="FIXED" visualId="46540" bodyPart="gloves" raceNot="ERTHEIA" />
|
|
||||||
<appearance_stone id="46576" targetType="ARMOR" type="FIXED" visualId="46541" bodyPart="feet" raceNot="ERTHEIA" />
|
|
||||||
|
|
||||||
<!-- Kelbim set -->
|
|
||||||
<appearance_stone id="46578" targetType="ARMOR" type="FIXED" visualId="46543">
|
|
||||||
<bodyPart>chest</bodyPart>
|
|
||||||
<bodyPart>fullarmor</bodyPart>
|
|
||||||
</appearance_stone>
|
|
||||||
<appearance_stone id="46579" targetType="ARMOR" type="FIXED" visualId="46544" bodyPart="legs" />
|
|
||||||
<appearance_stone id="46580" targetType="ARMOR" type="FIXED" visualId="46545" bodyPart="gloves" />
|
|
||||||
<appearance_stone id="46581" targetType="ARMOR" type="FIXED" visualId="46546" bodyPart="feet" />
|
|
||||||
|
|
||||||
<!-- Freya set -->
|
|
||||||
<appearance_stone id="46583" targetType="ARMOR" type="FIXED" visualId="46548">
|
|
||||||
<bodyPart>chest</bodyPart>
|
|
||||||
<bodyPart>fullarmor</bodyPart>
|
|
||||||
</appearance_stone>
|
|
||||||
<appearance_stone id="46584" targetType="ARMOR" type="FIXED" visualId="46549" bodyPart="legs" />
|
|
||||||
<appearance_stone id="46585" targetType="ARMOR" type="FIXED" visualId="46550" bodyPart="gloves" />
|
|
||||||
<appearance_stone id="46586" targetType="ARMOR" type="FIXED" visualId="46551" bodyPart="feet" />
|
|
||||||
|
|
||||||
<!-- Maid Costume -->
|
|
||||||
<appearance_stone id="23513" targetType="ARMOR" type="FIXED" visualId="23458"> <!-- Maid Appearance Stone -->
|
|
||||||
<bodyPart>chest</bodyPart>
|
|
||||||
<bodyPart>fullarmor</bodyPart>
|
|
||||||
</appearance_stone>
|
|
||||||
<appearance_stone id="23514" targetType="ACCESSORY" type="FIXED" visualId="23459"> <!-- Maid Hair Accessory Appearance Stone -->
|
|
||||||
<bodyPart>hair</bodyPart>
|
|
||||||
<bodyPart>hair2</bodyPart>
|
|
||||||
<bodyPart>hairall</bodyPart>
|
|
||||||
</appearance_stone>
|
|
||||||
|
|
||||||
|
|
||||||
<!-- Dark Knight Suit -->
|
|
||||||
<appearance_stone id="46270" targetType="ARMOR" type="FIXED" visualId="46260">
|
|
||||||
<bodyPart>chest</bodyPart>
|
|
||||||
<bodyPart>fullarmor</bodyPart>
|
|
||||||
</appearance_stone>
|
|
||||||
|
|
||||||
<!-- Santa Suit -->
|
|
||||||
<appearance_stone id="40330" targetType="ARMOR" type="FIXED" visualId="37534">
|
|
||||||
<bodyPart>chest</bodyPart>
|
|
||||||
<bodyPart>fullarmor</bodyPart>
|
|
||||||
</appearance_stone>
|
|
||||||
|
|
||||||
<!-- Santa Hat -->
|
|
||||||
<appearance_stone id="40310" targetType="ACCESSORY" type="FIXED" visualId="37535">
|
|
||||||
<bodyPart>hair</bodyPart>
|
|
||||||
<bodyPart>hair2</bodyPart>
|
|
||||||
<bodyPart>hairall</bodyPart>
|
|
||||||
</appearance_stone>
|
|
||||||
|
|
||||||
<!--Samurai Outfit -->
|
<!--Samurai Outfit -->
|
||||||
<appearance_stone id="23880" targetType="ARMOR" type="FIXED" visualId="23879">
|
<appearance_stone id="23880" targetType="ARMOR" type="FIXED" visualId="23879">
|
||||||
<bodyPart>chest</bodyPart>
|
<bodyPart>chest</bodyPart>
|
||||||
|
|||||||
+68
-12
@@ -67,10 +67,24 @@
|
|||||||
<id>134</id> <!-- Trickster -->
|
<id>134</id> <!-- Trickster -->
|
||||||
<id>135</id> <!-- Inspector -->
|
<id>135</id> <!-- Inspector -->
|
||||||
<id>136</id> <!-- Judicator -->
|
<id>136</id> <!-- Judicator -->
|
||||||
<id>182</id> <!-- Ertheia Fighter -->
|
<id>148</id> <!-- Sigel Phoenix Knight -->
|
||||||
<id>184</id> <!-- Marauder -->
|
<id>149</id> <!-- Sigel Hell Knight -->
|
||||||
<id>186</id> <!-- Ripper -->
|
<id>150</id> <!-- Sigel Eva's Templar -->
|
||||||
<id>188</id> <!-- Eviscerator -->
|
<id>151</id> <!-- Sigel Shillien Templar -->
|
||||||
|
<id>152</id> <!-- Tyrr Duelist -->
|
||||||
|
<id>153</id> <!-- Tyrr Dreadnought -->
|
||||||
|
<id>154</id> <!-- Tyrr Titan -->
|
||||||
|
<id>155</id> <!-- Tyrr Grand Khavatari -->
|
||||||
|
<id>156</id> <!-- Tyrr Maestro -->
|
||||||
|
<id>157</id> <!-- Tyrr Doombringer -->
|
||||||
|
<id>158</id> <!-- Othell Adventurer -->
|
||||||
|
<id>159</id> <!-- Othell Wind Rider -->
|
||||||
|
<id>160</id> <!-- Othell Ghost Hunter -->
|
||||||
|
<id>161</id> <!-- Othell Fortune Seeker -->
|
||||||
|
<id>162</id> <!-- Yul Sagittarius -->
|
||||||
|
<id>163</id> <!-- Yul Moonlight Sentinel -->
|
||||||
|
<id>164</id> <!-- Yul Ghost Sentinel -->
|
||||||
|
<id>165</id> <!-- Yul Trickster -->
|
||||||
</category>
|
</category>
|
||||||
<category name="MAGE_GROUP">
|
<category name="MAGE_GROUP">
|
||||||
<id>10</id> <!-- Human Mystic -->
|
<id>10</id> <!-- Human Mystic -->
|
||||||
@@ -110,10 +124,22 @@
|
|||||||
<id>112</id> <!-- Shillien Saint -->
|
<id>112</id> <!-- Shillien Saint -->
|
||||||
<id>115</id> <!-- Dominator -->
|
<id>115</id> <!-- Dominator -->
|
||||||
<id>116</id> <!-- Doom Cryer -->
|
<id>116</id> <!-- Doom Cryer -->
|
||||||
<id>183</id> <!-- Ertheia Wizard -->
|
<id>166</id> <!-- Feoh Archmage -->
|
||||||
<id>185</id> <!-- Cloud Breaker -->
|
<id>167</id> <!-- Feoh Soultaker -->
|
||||||
<id>187</id> <!-- Stratomancer Hound -->
|
<id>168</id> <!-- Feoh Mystic Muse -->
|
||||||
<id>189</id> <!-- Sayha's Seer -->
|
<id>169</id> <!-- Feoh Storm Screamer -->
|
||||||
|
<id>170</id> <!-- Feoh Soul Hound -->
|
||||||
|
<id>171</id> <!-- Iss Hierophant -->
|
||||||
|
<id>172</id> <!-- Iss Sword Muse -->
|
||||||
|
<id>173</id> <!-- Iss Spectral Dancer -->
|
||||||
|
<id>174</id> <!-- Iss Dominator -->
|
||||||
|
<id>175</id> <!-- Iss Doomcryer -->
|
||||||
|
<id>176</id> <!-- Wynn Arcana Lord -->
|
||||||
|
<id>177</id> <!-- Wynn Elemental Master -->
|
||||||
|
<id>178</id> <!-- Wynn Spectral Master -->
|
||||||
|
<id>179</id> <!-- Aeore Cardinal -->
|
||||||
|
<id>180</id> <!-- Aeore Eva's Saint -->
|
||||||
|
<id>181</id> <!-- Aeore Shillien Saint -->
|
||||||
</category>
|
</category>
|
||||||
<category name="WIZARD_GROUP">
|
<category name="WIZARD_GROUP">
|
||||||
<id>10</id> <!-- Human Mystic -->
|
<id>10</id> <!-- Human Mystic -->
|
||||||
@@ -142,7 +168,14 @@
|
|||||||
<id>52</id> <!-- Warcryer -->
|
<id>52</id> <!-- Warcryer -->
|
||||||
<id>115</id> <!-- Dominator -->
|
<id>115</id> <!-- Dominator -->
|
||||||
<id>116</id> <!-- Doom Cryer -->
|
<id>116</id> <!-- Doom Cryer -->
|
||||||
<id>183</id> <!-- Ertheia Wizard -->
|
<id>166</id> <!-- Feoh Archmage -->
|
||||||
|
<id>167</id> <!-- Feoh Soultaker -->
|
||||||
|
<id>168</id> <!-- Feoh Mystic Muse -->
|
||||||
|
<id>169</id> <!-- Feoh Storm Screamer -->
|
||||||
|
<id>170</id> <!-- Feoh Soul Hound -->
|
||||||
|
<id>176</id> <!-- Wynn Arcana Lord -->
|
||||||
|
<id>177</id> <!-- Wynn Elemental Master -->
|
||||||
|
<id>178</id> <!-- Wynn Spectral Master -->
|
||||||
</category>
|
</category>
|
||||||
<category name="CLERIC_GROUP">
|
<category name="CLERIC_GROUP">
|
||||||
<id>10</id> <!-- Human Mystic -->
|
<id>10</id> <!-- Human Mystic -->
|
||||||
@@ -158,6 +191,9 @@
|
|||||||
<id>97</id> <!-- Cardinal -->
|
<id>97</id> <!-- Cardinal -->
|
||||||
<id>98</id> <!-- Hierophant -->
|
<id>98</id> <!-- Hierophant -->
|
||||||
<id>105</id> <!-- Eva's Saint -->
|
<id>105</id> <!-- Eva's Saint -->
|
||||||
|
<id>179</id> <!-- Aeore Cardinal -->
|
||||||
|
<id>180</id> <!-- Aeore Eva's Saint -->
|
||||||
|
<id>181</id> <!-- Aeore Shillien Saint -->
|
||||||
</category>
|
</category>
|
||||||
<category name="ATTACKER_GROUP">
|
<category name="ATTACKER_GROUP">
|
||||||
<id>0</id> <!-- Human Fighter -->
|
<id>0</id> <!-- Human Fighter -->
|
||||||
@@ -205,6 +241,20 @@
|
|||||||
<id>133</id> <!-- Female Soul Hound -->
|
<id>133</id> <!-- Female Soul Hound -->
|
||||||
<id>134</id> <!-- Trickster -->
|
<id>134</id> <!-- Trickster -->
|
||||||
<id>136</id> <!-- Judicator -->
|
<id>136</id> <!-- Judicator -->
|
||||||
|
<id>152</id> <!-- Tyrr Duelist -->
|
||||||
|
<id>153</id> <!-- Tyrr Dreadnought -->
|
||||||
|
<id>154</id> <!-- Tyrr Titan -->
|
||||||
|
<id>155</id> <!-- Tyrr Grand Khavatari -->
|
||||||
|
<id>156</id> <!-- Tyrr Maestro -->
|
||||||
|
<id>157</id> <!-- Tyrr Doombringer -->
|
||||||
|
<id>158</id> <!-- Othell Adventurer -->
|
||||||
|
<id>159</id> <!-- Othell Wind Rider -->
|
||||||
|
<id>160</id> <!-- Othell Ghost Hunter -->
|
||||||
|
<id>161</id> <!-- Othell Fortune Seeker -->
|
||||||
|
<id>162</id> <!-- Yul Sagittarius -->
|
||||||
|
<id>163</id> <!-- Yul Moonlight Sentinel -->
|
||||||
|
<id>164</id> <!-- Yul Ghost Sentinel -->
|
||||||
|
<id>165</id> <!-- Yul Trickster -->
|
||||||
</category>
|
</category>
|
||||||
<category name="TANKER_GROUP">
|
<category name="TANKER_GROUP">
|
||||||
<id>4</id> <!-- Human Knight -->
|
<id>4</id> <!-- Human Knight -->
|
||||||
@@ -224,6 +274,10 @@
|
|||||||
<id>57</id> <!-- Warsmith -->
|
<id>57</id> <!-- Warsmith -->
|
||||||
<id>117</id> <!-- Fortune Seeker -->
|
<id>117</id> <!-- Fortune Seeker -->
|
||||||
<id>118</id> <!-- Maestro -->
|
<id>118</id> <!-- Maestro -->
|
||||||
|
<id>148</id> <!-- Sigel Phoenix Knight -->
|
||||||
|
<id>149</id> <!-- Sigel Hell Knight -->
|
||||||
|
<id>150</id> <!-- Sigel Eva's Templar -->
|
||||||
|
<id>151</id> <!-- Sigel Shillien Templar -->
|
||||||
</category>
|
</category>
|
||||||
<category name="FIRST_CLASS_GROUP">
|
<category name="FIRST_CLASS_GROUP">
|
||||||
<id>0</id> <!-- Human Fighter -->
|
<id>0</id> <!-- Human Fighter -->
|
||||||
@@ -299,6 +353,8 @@
|
|||||||
<id>129</id> <!-- Female Soul Breaker -->
|
<id>129</id> <!-- Female Soul Breaker -->
|
||||||
<id>130</id> <!-- Arbalester -->
|
<id>130</id> <!-- Arbalester -->
|
||||||
<id>135</id> <!-- Inspector -->
|
<id>135</id> <!-- Inspector -->
|
||||||
|
<id>184</id> <!-- Marauder -->
|
||||||
|
<id>185</id> <!-- Cloud Breaker -->
|
||||||
</category>
|
</category>
|
||||||
<category name="FOURTH_CLASS_GROUP">
|
<category name="FOURTH_CLASS_GROUP">
|
||||||
<id>88</id> <!-- Duelist -->
|
<id>88</id> <!-- Duelist -->
|
||||||
@@ -338,19 +394,21 @@
|
|||||||
<id>134</id> <!-- Trickster -->
|
<id>134</id> <!-- Trickster -->
|
||||||
<id>136</id> <!-- Judicator -->
|
<id>136</id> <!-- Judicator -->
|
||||||
<id>186</id> <!-- Ripper -->
|
<id>186</id> <!-- Ripper -->
|
||||||
<id>186</id> <!-- Stratomancer -->
|
<id>187</id> <!-- Stratomancer -->
|
||||||
</category>
|
</category>
|
||||||
<category name="BOUNTY_HUNTER_GROUP">
|
<category name="BOUNTY_HUNTER_GROUP">
|
||||||
<id>53</id> <!-- Dwarf Fighter -->
|
<id>53</id> <!-- Dwarf Fighter -->
|
||||||
<id>54</id> <!-- Scavenger -->
|
<id>54</id> <!-- Scavenger -->
|
||||||
<id>55</id> <!-- Bounty Hunter -->
|
<id>55</id> <!-- Bounty Hunter -->
|
||||||
<id>117</id> <!-- Fortune Seeker -->
|
<id>117</id> <!-- Fortune Seeker -->
|
||||||
|
<id>161</id> <!-- Othell Fortune Seeker -->
|
||||||
</category>
|
</category>
|
||||||
<category name="WARSMITH_GROUP">
|
<category name="WARSMITH_GROUP">
|
||||||
<id>53</id> <!-- Dwarf Fighter -->
|
<id>53</id> <!-- Dwarf Fighter -->
|
||||||
<id>56</id> <!-- Artisan -->
|
<id>56</id> <!-- Artisan -->
|
||||||
<id>57</id> <!-- Warsmith -->
|
<id>57</id> <!-- Warsmith -->
|
||||||
<id>118</id> <!-- Maestro -->
|
<id>118</id> <!-- Maestro -->
|
||||||
|
<id>156</id> <!-- Tyrr Maestro -->
|
||||||
</category>
|
</category>
|
||||||
<category name="SUMMON_NPC_GROUP">
|
<category name="SUMMON_NPC_GROUP">
|
||||||
<id>14001</id> <!-- Reanimated Man -->
|
<id>14001</id> <!-- Reanimated Man -->
|
||||||
@@ -1806,7 +1864,6 @@
|
|||||||
<id>129</id> <!-- Female Soul Breaker -->
|
<id>129</id> <!-- Female Soul Breaker -->
|
||||||
<id>130</id> <!-- Arbalester -->
|
<id>130</id> <!-- Arbalester -->
|
||||||
<id>135</id> <!-- Inspector -->
|
<id>135</id> <!-- Inspector -->
|
||||||
<id>182</id> <!-- Ertheia Fighter -->
|
|
||||||
</category>
|
</category>
|
||||||
<category name="BEGINNER_MAGE">
|
<category name="BEGINNER_MAGE">
|
||||||
<id>10</id> <!-- Human Mystic -->
|
<id>10</id> <!-- Human Mystic -->
|
||||||
@@ -1829,7 +1886,6 @@
|
|||||||
<id>41</id> <!-- Phantom Summoner -->
|
<id>41</id> <!-- Phantom Summoner -->
|
||||||
<id>42</id> <!-- Shillien Oracle -->
|
<id>42</id> <!-- Shillien Oracle -->
|
||||||
<id>43</id> <!-- Shillien Elder -->
|
<id>43</id> <!-- Shillien Elder -->
|
||||||
<id>183</id> <!-- Ertheia Wizard -->
|
|
||||||
</category>
|
</category>
|
||||||
<category name="KAMAEL_MALE_MAIN_OCCUPATION">
|
<category name="KAMAEL_MALE_MAIN_OCCUPATION">
|
||||||
<id>123</id> <!-- Male Kamael Soldier -->
|
<id>123</id> <!-- Male Kamael Soldier -->
|
||||||
|
|||||||
+5
-727
@@ -1,18 +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/CrystalizableItems.xsd">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/CrystalizableItems.xsd">
|
||||||
<!-- R Armors -->
|
|
||||||
<crystalizable_item id="19776"> <!-- Seraph Gloves - Recovery Type / Robe -->
|
<crystalizable_item id="19776"> <!-- Seraph Gloves - Recovery Type / Robe -->
|
||||||
<item id="17527" count="4" chance="76.65" /> <!-- Scroll: Enchant Armor (R-grade) -->
|
<item id="17527" count="4" chance="76.65" /> <!-- Scroll: Enchant Armor (R-grade) -->
|
||||||
<item id="19448" count="1" chance="6.39" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
|
<item id="19448" count="1" chance="6.39" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
|
||||||
<item id="36389" count="1" chance="53.23" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
|
<item id="36389" count="1" chance="53.23" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
|
||||||
<item id="36514" count="1" chance="7.67" /> <!-- Elcyum Crystal -->
|
<item id="36514" count="1" chance="7.67" /> <!-- Elcyum Crystal -->
|
||||||
</crystalizable_item>
|
</crystalizable_item>
|
||||||
<crystalizable_item id="19775"> <!-- Seraph Stockings - Recovery Type / Robe -->
|
|
||||||
<item id="17527" count="8" chance="95.82" /> <!-- Scroll: Enchant Armor (R-grade) -->
|
|
||||||
<item id="19448" count="1" chance="15.97" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
|
|
||||||
<item id="36389" count="2" chance="66.54" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
|
|
||||||
<item id="36514" count="1" chance="19.16" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="19777"> <!-- Seraph Shoes - Recovery Type / Robe -->
|
<crystalizable_item id="19777"> <!-- Seraph Shoes - Recovery Type / Robe -->
|
||||||
<item id="17527" count="4" chance="76.65" /> <!-- Scroll: Enchant Armor (R-grade) -->
|
<item id="17527" count="4" chance="76.65" /> <!-- Scroll: Enchant Armor (R-grade) -->
|
||||||
<item id="19448" count="1" chance="6.39" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
|
<item id="19448" count="1" chance="6.39" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
|
||||||
@@ -157,725 +150,10 @@
|
|||||||
<item id="36389" count="1" chance="4.94" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
|
<item id="36389" count="1" chance="4.94" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
|
||||||
<item id="36514" count="1" chance="0.71" /> <!-- Elcyum Crystal -->
|
<item id="36514" count="1" chance="0.71" /> <!-- Elcyum Crystal -->
|
||||||
</crystalizable_item>
|
</crystalizable_item>
|
||||||
<!-- Zodiac Agathions -->
|
<crystalizable_item id="19775"> <!-- Seraph Stockings - Recovery Type / Robe -->
|
||||||
<crystalizable_item id="23989"> <!-- Agathion - Virgo (Stage 1) -->
|
<item id="17527" count="8" chance="95.82" /> <!-- Scroll: Enchant Armor (R-grade) -->
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
<item id="19448" count="1" chance="15.97" /> <!-- Blessed Scroll: Enchant Armor (R-grade) -->
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
<item id="36389" count="2" chance="66.54" /> <!-- Giant's Scroll: Enchant Armor (R-grade) -->
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
<item id="36514" count="1" chance="19.16" /> <!-- Elcyum Crystal -->
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23990"> <!-- Agathion - Virgo (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23991"> <!-- Agathion - Virgo (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23992"> <!-- Agathion - Virgo (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23993"> <!-- Agathion - Virgo (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23994"> <!-- Agathion - Virgo (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23995"> <!-- Agathion - Virgo (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23996"> <!-- Agathion - Virgo (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23997"> <!-- Agathion - Virgo (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23998"> <!-- Agathion - Virgo (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="23999"> <!-- Agathion - Virgo (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24000"> <!-- Agathion - Virgo (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24001"> <!-- Agathion - Capricorn (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24002"> <!-- Agathion - Capricorn (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24003"> <!-- Agathion - Capricorn (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24004"> <!-- Agathion - Capricorn (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24005"> <!-- Agathion - Capricorn (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24006"> <!-- Agathion - Capricorn (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24007"> <!-- Agathion - Capricorn (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24008"> <!-- Agathion - Capricorn (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24009"> <!-- Agathion - Capricorn (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24010"> <!-- Agathion - Capricorn (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24011"> <!-- Agathion - Capricorn (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24012"> <!-- Agathion - Capricorn (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24013"> <!-- Agathion - Libra (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24014"> <!-- Agathion - Libra (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24015"> <!-- Agathion - Libra (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24016"> <!-- Agathion - Libra (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24017"> <!-- Agathion - Libra (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24018"> <!-- Agathion - Libra (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24019"> <!-- Agathion - Libra (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24020"> <!-- Agathion - Libra (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24021"> <!-- Agathion - Libra (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24022"> <!-- Agathion - Libra (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24023"> <!-- Agathion - Libra (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24024"> <!-- Agathion - Libra (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24025"> <!-- Agathion - Aries (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24026"> <!-- Agathion - Aries (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24027"> <!-- Agathion - Aries (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24028"> <!-- Agathion - Aries (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24029"> <!-- Agathion - Aries (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24030"> <!-- Agathion - Aries (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24031"> <!-- Agathion - Aries (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24032"> <!-- Agathion - Aries (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24033"> <!-- Agathion - Aries (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24034"> <!-- Agathion - Aries (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24035"> <!-- Agathion - Aries (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24036"> <!-- Agathion - Aries (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24037"> <!-- Agathion - Taurus (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24038"> <!-- Agathion - Taurus (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24039"> <!-- Agathion - Taurus (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24040"> <!-- Agathion - Taurus (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24041"> <!-- Agathion - Taurus (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24042"> <!-- Agathion - Taurus (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24043"> <!-- Agathion - Taurus (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24044"> <!-- Agathion - Taurus (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24045"> <!-- Agathion - Taurus (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24046"> <!-- Agathion - Taurus (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24047"> <!-- Agathion - Taurus (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24048"> <!-- Agathion - Taurus (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24049"> <!-- Agathion - Leo (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24050"> <!-- Agathion - Leo (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24051"> <!-- Agathion - Leo (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24052"> <!-- Agathion - Leo (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24053"> <!-- Agathion - Leo (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24054"> <!-- Agathion - Leo (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24055"> <!-- Agathion - Leo (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24056"> <!-- Agathion - Leo (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24057"> <!-- Agathion - Leo (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24058"> <!-- Agathion - Leo (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24059"> <!-- Agathion - Leo (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24060"> <!-- Agathion - Leo (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24061"> <!-- Agathion - Gemini (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24062"> <!-- Agathion - Gemini (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24063"> <!-- Agathion - Gemini (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24064"> <!-- Agathion - Gemini (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24065"> <!-- Agathion - Gemini (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24066"> <!-- Agathion - Gemini (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24067"> <!-- Agathion - Gemini (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24068"> <!-- Agathion - Gemini (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24069"> <!-- Agathion - Gemini (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24070"> <!-- Agathion - Gemini (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24071"> <!-- Agathion - Gemini (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24072"> <!-- Agathion - Gemini (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24073"> <!-- Agathion - Scorpio (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24074"> <!-- Agathion - Scorpio (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24075"> <!-- Agathion - Scorpio (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24076"> <!-- Agathion - Scorpio (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24077"> <!-- Agathion - Scorpio (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24078"> <!-- Agathion - Scorpio (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24079"> <!-- Agathion - Scorpio (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24080"> <!-- Agathion - Scorpio (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24081"> <!-- Agathion - Scorpio (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24082"> <!-- Agathion - Scorpio (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24083"> <!-- Agathion - Scorpio (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24084"> <!-- Agathion - Scorpio (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24085"> <!-- Agathion - Aquarius (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24086"> <!-- Agathion - Aquarius (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24087"> <!-- Agathion - Aquarius (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24088"> <!-- Agathion - Aquarius (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24089"> <!-- Agathion - Aquarius (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24090"> <!-- Agathion - Aquarius (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24091"> <!-- Agathion - Aquarius (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24092"> <!-- Agathion - Aquarius (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24093"> <!-- Agathion - Aquarius (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24094"> <!-- Agathion - Aquarius (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24095"> <!-- Agathion - Aquarius (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24096"> <!-- Agathion - Aquarius (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24097"> <!-- Agathion - Pisces (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24098"> <!-- Agathion - Pisces (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24099"> <!-- Agathion - Pisces (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24100"> <!-- Agathion - Pisces (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24101"> <!-- Agathion - Pisces (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24102"> <!-- Agathion - Pisces (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24103"> <!-- Agathion - Pisces (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24104"> <!-- Agathion - Pisces (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24105"> <!-- Agathion - Pisces (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24106"> <!-- Agathion - Pisces (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24107"> <!-- Agathion - Pisces (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24108"> <!-- Agathion - Pisces (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24109"> <!-- Agathion - Sagittarius (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24110"> <!-- Agathion - Sagittarius (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24111"> <!-- Agathion - Sagittarius (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24112"> <!-- Agathion - Sagittarius (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24113"> <!-- Agathion - Sagittarius (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24114"> <!-- Agathion - Sagittarius (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24115"> <!-- Agathion - Sagittarius (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24116"> <!-- Agathion - Sagittarius (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24117"> <!-- Agathion - Sagittarius (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24118"> <!-- Agathion - Sagittarius (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24119"> <!-- Agathion - Sagittarius (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24120"> <!-- Agathion - Sagittarius (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24121"> <!-- Agathion - Cancer (Stage 1) -->
|
|
||||||
<item id="24337" count="1" chance="19.47" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="8" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24122"> <!-- Agathion - Cancer (Stage 2) -->
|
|
||||||
<item id="24337" count="1" chance="29.20" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="15" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24123"> <!-- Agathion - Cancer (Stage 3) -->
|
|
||||||
<item id="24337" count="1" chance="38.87" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="23" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36513" count="10" chance="100.00" /> <!-- Elcyum Powder -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24124"> <!-- Agathion - Cancer (Stage 4) -->
|
|
||||||
<item id="24337" count="1" chance="41.66" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="31" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24125"> <!-- Agathion - Cancer (Stage 5) -->
|
|
||||||
<item id="24337" count="1" chance="50.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="21" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24126"> <!-- Agathion - Cancer (Stage 6) -->
|
|
||||||
<item id="24337" count="1" chance="58.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="30" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24127"> <!-- Agathion - Cancer (Stage 7) -->
|
|
||||||
<item id="24337" count="1" chance="66.69" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="40" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24128"> <!-- Agathion - Cancer (Stage 8) -->
|
|
||||||
<item id="24337" count="1" chance="75.03" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="46" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24129"> <!-- Agathion - Cancer (Stage 9) -->
|
|
||||||
<item id="24337" count="1" chance="83.37" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="52" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24130"> <!-- Agathion - Cancer (Stage 10) -->
|
|
||||||
<item id="24337" count="1" chance="91.70" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="57" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24131"> <!-- Agathion - Cancer (Stage 11) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="63" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
|
||||||
<crystalizable_item id="24132"> <!-- Agathion - Cancer (Stage 12) -->
|
|
||||||
<item id="24337" count="1" chance="100.00" /> <!-- Starlight Jar Pouch -->
|
|
||||||
<item id="19440" count="137" chance="100.00" /> <!-- Gemstone (R-grade) -->
|
|
||||||
<item id="36514" count="10" chance="100.00" /> <!-- Elcyum Crystal -->
|
|
||||||
</crystalizable_item>
|
</crystalizable_item>
|
||||||
</list>
|
</list>
|
||||||
-391
@@ -1,391 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/DailyMissions.xsd">
|
|
||||||
<mission id="1" clientId="26" type="LEVEL" level="4" classes="ALL">
|
|
||||||
<reward item="10650" count="5"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="2" clientId="28" type="LEVEL" level="6" classes="0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23">
|
|
||||||
<reward item="32226" count="10"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="3" clientId="28" type="LEVEL" level="6" classes="182,183,184,185,186,187,188,189">
|
|
||||||
<reward item="40195" count="10"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="4" clientId="31" type="LEVEL" level="9" classes="ALL">
|
|
||||||
<reward item="22193" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="5" clientId="34" type="LEVEL" level="12" classes="ALL">
|
|
||||||
<reward item="20922" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="6" clientId="37" type="LEVEL" level="15" classes="ALL">
|
|
||||||
<reward item="9577" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="7" clientId="57" type="LEVEL" level="35" classes="ALL">
|
|
||||||
<reward item="9578" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="8" clientId="63" type="LEVEL" level="41" classes="ALL">
|
|
||||||
<reward item="27565" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="9" clientId="64" type="LEVEL" level="42" classes="ALL">
|
|
||||||
<reward item="38606" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="10" clientId="65" type="LEVEL" level="43" classes="ALL">
|
|
||||||
<reward item="38602" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="11" clientId="66" type="LEVEL" level="44" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38603" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="12" clientId="66" type="LEVEL" level="44" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38611" count="1"/>
|
|
||||||
<reward item="38612" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="13" clientId="66" type="LEVEL" level="44" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38607" count="1"/>
|
|
||||||
<reward item="38608" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="14" clientId="67" type="LEVEL" level="45" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38605" count="1"/>
|
|
||||||
<reward item="9579" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="15" clientId="67" type="LEVEL" level="45" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38614" count="1"/>
|
|
||||||
<reward item="9579" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="16" clientId="67" type="LEVEL" level="45" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38609" count="1"/>
|
|
||||||
<reward item="9579" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="17" clientId="68" type="LEVEL" level="46" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38604" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="18" clientId="68" type="LEVEL" level="46" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38613" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="19" clientId="68" type="LEVEL" level="46" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38610" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="20" clientId="69" type="LEVEL" level="47" classes="ALL">
|
|
||||||
<reward item="38674" count="1"/>
|
|
||||||
<reward item="13894" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="21" clientId="70" type="LEVEL" level="48" classes="ALL">
|
|
||||||
<reward item="38676" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="22" clientId="71" type="LEVEL" level="49" classes="ALL">
|
|
||||||
<reward item="38675" count="1"/>
|
|
||||||
<reward item="9589" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="23" clientId="72" type="LEVEL" level="50" classes="ALL">
|
|
||||||
<reward item="38674" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="24" clientId="73" type="LEVEL" level="51" classes="ALL">
|
|
||||||
<reward item="38676" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="25" clientId="75" type="LEVEL" level="53" classes="ALL">
|
|
||||||
<reward item="27566" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="26" clientId="76" type="LEVEL" level="54" classes="ALL">
|
|
||||||
<reward item="38619" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="27" clientId="77" type="LEVEL" level="55" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38615" count="1"/>
|
|
||||||
<reward item="9580" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="28" clientId="77" type="LEVEL" level="55" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38615" count="1"/>
|
|
||||||
<reward item="9580" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="29" clientId="77" type="LEVEL" level="55" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38621" count="1"/>
|
|
||||||
<reward item="9580" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="30" clientId="78" type="LEVEL" level="56" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38618" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="31" clientId="78" type="LEVEL" level="56" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38625" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="32" clientId="78" type="LEVEL" level="56" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38620" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="33" clientId="79" type="LEVEL" level="57" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38616" count="1"/>
|
|
||||||
<reward item="13895" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="34" clientId="79" type="LEVEL" level="57" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38626" count="1"/>
|
|
||||||
<reward item="13895" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="35" clientId="79" type="LEVEL" level="57" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38622" count="1"/>
|
|
||||||
<reward item="13895" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="36" clientId="80" type="LEVEL" level="58" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38617" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="37" clientId="80" type="LEVEL" level="58" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38627" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="38" clientId="80" type="LEVEL" level="58" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38623" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="39" clientId="81" type="LEVEL" level="59" classes="ALL">
|
|
||||||
<reward item="38677" count="1"/>
|
|
||||||
<reward item="9590" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="40" clientId="82" type="LEVEL" level="60" classes="ALL">
|
|
||||||
<reward item="38679" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="41" clientId="83" type="LEVEL" level="61" classes="ALL">
|
|
||||||
<reward item="38678" count="1"/>
|
|
||||||
<reward item="38677" count="1"/>
|
|
||||||
<reward item="38679" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="42" clientId="84" type="LEVEL" level="62" classes="ALL">
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="43" clientId="85" type="LEVEL" level="63" classes="ALL">
|
|
||||||
<reward item="27567" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="44" clientId="86" type="LEVEL" level="64" classes="ALL">
|
|
||||||
<reward item="38632" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="45" clientId="87" type="LEVEL" level="65" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38629" count="1"/>
|
|
||||||
<reward item="9581" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="46" clientId="87" type="LEVEL" level="65" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38634" count="1"/>
|
|
||||||
<reward item="9581" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="47" clientId="87" type="LEVEL" level="65" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38634" count="1"/>
|
|
||||||
<reward item="9581" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="48" clientId="88" type="LEVEL" level="66" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38628" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="49" clientId="88" type="LEVEL" level="66" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38638" count="1"/>
|
|
||||||
<reward item="38639" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="50" clientId="88" type="LEVEL" level="66" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38633" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="51" clientId="89" type="LEVEL" level="67" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38630" count="1"/>
|
|
||||||
<reward item="13896" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="52" clientId="89" type="LEVEL" level="67" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38640" count="1"/>
|
|
||||||
<reward item="13896" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="53" clientId="89" type="LEVEL" level="67" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38635" count="1"/>
|
|
||||||
<reward item="13896" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="54" clientId="90" type="LEVEL" level="68" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38631" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="55" clientId="90" type="LEVEL" level="68" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38641" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="56" clientId="90" type="LEVEL" level="68" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38636" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="57" clientId="91" type="LEVEL" level="69" classes="ALL">
|
|
||||||
<reward item="38680" count="1"/>
|
|
||||||
<reward item="9591" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="58" clientId="92" type="LEVEL" level="70" classes="ALL">
|
|
||||||
<reward item="38682" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="59" clientId="93" type="LEVEL" level="71" classes="ALL">
|
|
||||||
<reward item="38681" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="60" clientId="94" type="LEVEL" level="72" classes="ALL">
|
|
||||||
<reward item="38680" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="61" clientId="95" type="LEVEL" level="73" classes="ALL">
|
|
||||||
<reward item="38682" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="62" clientId="96" type="LEVEL" level="74" classes="ALL">
|
|
||||||
<reward item="24351" count="1"/>
|
|
||||||
<reward item="24352" count="1"/>
|
|
||||||
<reward item="24353" count="1"/>
|
|
||||||
<reward item="24354" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="63" clientId="97" type="LEVEL" level="75" classes="ALL">
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="64" clientId="98" type="LEVEL" level="76" classes="ALL">
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="65" clientId="99" type="LEVEL" level="77" classes="ALL">
|
|
||||||
<reward item="27568" count="1"/>
|
|
||||||
<reward item="9582" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="66" clientId="100" type="LEVEL" level="78" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38647" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="67" clientId="100" type="LEVEL" level="78" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="68" clientId="100" type="LEVEL" level="78" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38652" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="69" clientId="101" type="LEVEL" level="79" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38646" count="1"/>
|
|
||||||
<reward item="38642" count="1"/>
|
|
||||||
<reward item="38643" count="1"/>
|
|
||||||
<reward item="13897" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="70" clientId="101" type="LEVEL" level="79" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38656" count="1"/>
|
|
||||||
<reward item="38653" count="1"/>
|
|
||||||
<reward item="13897" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="71" clientId="101" type="LEVEL" level="79" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38651" count="1"/>
|
|
||||||
<reward item="38648" count="1"/>
|
|
||||||
<reward item="13897" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="72" clientId="102" type="LEVEL" level="80" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38644" count="1"/>
|
|
||||||
<reward item="38645" count="1"/>
|
|
||||||
<reward item="9592" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="73" clientId="102" type="LEVEL" level="80" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38654" count="1"/>
|
|
||||||
<reward item="38655" count="1"/>
|
|
||||||
<reward item="9592" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="74" clientId="102" type="LEVEL" level="80" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38649" count="1"/>
|
|
||||||
<reward item="38650" count="1"/>
|
|
||||||
<reward item="9592" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="75" clientId="103" type="LEVEL" level="81" classes="ALL">
|
|
||||||
<reward item="27569" count="1"/>
|
|
||||||
<reward item="38684" count="1"/>
|
|
||||||
<reward item="38683" count="1"/>
|
|
||||||
<reward item="38685" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="76" clientId="104" type="LEVEL" level="82" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38662" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="77" clientId="104" type="LEVEL" level="82" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="78" clientId="104" type="LEVEL" level="82" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38668" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="79" clientId="105" type="LEVEL" level="83" classes="0,18,31,44,53,1,4,19,32,45,54,56,2,3,5,6,20,21,33,34,46,55,57,118,117,88,89,90,91,99,100,106,107,113,139,140,144">
|
|
||||||
<reward item="38659" count="1"/>
|
|
||||||
<reward item="38657" count="1"/>
|
|
||||||
<reward item="38658" count="1"/>
|
|
||||||
<reward item="38660" count="1"/>
|
|
||||||
<reward item="38661" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="80" clientId="105" type="LEVEL" level="83" classes="49,123,124,7,22,35,47,50,125,126,8,9,23,24,36,37,48,51,52,127,128,129,130,135,92,93,101,102,108,109,114,115,116,141,142,182,184,186,188">
|
|
||||||
<reward item="38671" count="1"/>
|
|
||||||
<reward item="38669" count="1"/>
|
|
||||||
<reward item="38670" count="1"/>
|
|
||||||
<reward item="38672" count="1"/>
|
|
||||||
<reward item="38673" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="81" clientId="105" type="LEVEL" level="83" classes="10,25,38,11,15,26,29,39,42,12,13,14,16,17,27,28,30,40,41,43,94,95,96,97,98,103,104,105,110,111,112,143,145,146,183,185,187,189">
|
|
||||||
<reward item="38665" count="1"/>
|
|
||||||
<reward item="38663" count="1"/>
|
|
||||||
<reward item="38664" count="1"/>
|
|
||||||
<reward item="38666" count="1"/>
|
|
||||||
<reward item="38667" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="82" clientId="106" type="LEVEL" level="84" classes="ALL">
|
|
||||||
<reward item="38687" count="1"/>
|
|
||||||
<reward item="38686" count="1"/>
|
|
||||||
<reward item="38688" count="1"/>
|
|
||||||
<reward item="35987" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="83" clientId="187" type="DUALCLASS" level="1" classes="ALL">
|
|
||||||
<reward item="35987" count="10"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="84" clientId="224" type="WEEKEND" level="1" classes="ALL">
|
|
||||||
<reward item="27593" count="4"/>
|
|
||||||
<reward item="27603" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="85" clientId="225" type="MONTHLY" level="1" classes="ALL">
|
|
||||||
<reward item="27593" count="15"/>
|
|
||||||
<reward item="27603" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="86" clientId="226" type="DAILYQUESTS" level="1" classes="ALL">
|
|
||||||
<reward item="27593" count="1"/>
|
|
||||||
<reward item="27603" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="87" clientId="227" type="OLYMPIAD" level="1" classes="ALL">
|
|
||||||
<reward item="27593" count="4"/>
|
|
||||||
<reward item="27603" count="3"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="88" clientId="228" type="SIEGE" level="1" classes="ALL">
|
|
||||||
<reward item="27593" count="50"/>
|
|
||||||
<reward item="27603" count="15"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="89" clientId="229" type="CHAOS" level="1" classes="ALL">
|
|
||||||
<reward item="27593" count="2"/>
|
|
||||||
<reward item="27603" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="90" clientId="230" type="DAILYDUNGEONS" level="1" classes="ALL">
|
|
||||||
<reward item="27593" count="1"/>
|
|
||||||
<reward item="27603" count="1"/>
|
|
||||||
</mission>
|
|
||||||
<mission id="91" clientId="231" type="FISH" level="1" classes="ALL">
|
|
||||||
<reward item="27593" count="1"/>
|
|
||||||
<reward item="27603" count="1"/>
|
|
||||||
</mission>
|
|
||||||
</list>
|
|
||||||
Vendored
+18286
File diff suppressed because it is too large
Load Diff
Vendored
-1438
File diff suppressed because it is too large
Load Diff
+49
-1020
File diff suppressed because it is too large
Load Diff
+39
-19
@@ -3,37 +3,60 @@
|
|||||||
<!-- General armor enchant group. -->
|
<!-- General armor enchant group. -->
|
||||||
<enchantRateGroup name="ARMOR_GROUP">
|
<enchantRateGroup name="ARMOR_GROUP">
|
||||||
<current enchant="0-2" chance="100" />
|
<current enchant="0-2" chance="100" />
|
||||||
<current enchant="3-15" chance="66.67" />
|
<current enchant="3" chance="66.67" />
|
||||||
<current enchant="16-19" chance="33" />
|
<current enchant="4" chance="33.34" />
|
||||||
<current enchant="20-29" chance="20" />
|
<current enchant="5" chance="25" />
|
||||||
<current enchant="30-65535" chance="0" />
|
<current enchant="6" chance="20" />
|
||||||
|
<current enchant="7" chance="16.67" />
|
||||||
|
<current enchant="8" chance="14.29" />
|
||||||
|
<current enchant="9" chance="12.5" />
|
||||||
|
<current enchant="10" chance="11.12" />
|
||||||
|
<current enchant="11" chance="10.0" />
|
||||||
|
<current enchant="12" chance="9.10" />
|
||||||
|
<current enchant="13" chance="8.34" />
|
||||||
|
<current enchant="14" chance="7.70" />
|
||||||
|
<current enchant="15" chance="7.15" />
|
||||||
|
<current enchant="16" chance="6.67" />
|
||||||
|
<current enchant="17" chance="6.25" />
|
||||||
|
<current enchant="18" chance="5.89" />
|
||||||
|
<current enchant="19" chance="5.56" />
|
||||||
|
<current enchant="20-127" chance="0" />
|
||||||
</enchantRateGroup>
|
</enchantRateGroup>
|
||||||
|
|
||||||
<!-- General full armor enchant group. -->
|
<!-- General full armor enchant group. -->
|
||||||
<enchantRateGroup name="FULL_ARMOR_GROUP">
|
<enchantRateGroup name="FULL_ARMOR_GROUP">
|
||||||
<current enchant="0-3" chance="100" />
|
<current enchant="0-3" chance="100" />
|
||||||
<current enchant="4-15" chance="66.67" />
|
<current enchant="4" chance="66.67" />
|
||||||
<current enchant="16-19" chance="33" />
|
<current enchant="5" chance="33.34" />
|
||||||
<current enchant="20-29" chance="20" />
|
<current enchant="6" chance="25" />
|
||||||
<current enchant="30-65535" chance="0" />
|
<current enchant="7" chance="20" />
|
||||||
|
<current enchant="8" chance="16.67" />
|
||||||
|
<current enchant="9" chance="14.29" />
|
||||||
|
<current enchant="10" chance="12.5" />
|
||||||
|
<current enchant="11" chance="11.12" />
|
||||||
|
<current enchant="12" chance="10.0" />
|
||||||
|
<current enchant="13" chance="9.10" />
|
||||||
|
<current enchant="14" chance="8.34" />
|
||||||
|
<current enchant="15" chance="7.70" />
|
||||||
|
<current enchant="16" chance="7.15" />
|
||||||
|
<current enchant="17" chance="6.67" />
|
||||||
|
<current enchant="18" chance="6.25" />
|
||||||
|
<current enchant="19" chance="5.89" />
|
||||||
|
<current enchant="20-127" chance="0" />
|
||||||
</enchantRateGroup>
|
</enchantRateGroup>
|
||||||
|
|
||||||
<!-- General fighter weapon enchant group. -->
|
<!-- General fighter weapon enchant group. -->
|
||||||
<enchantRateGroup name="FIGHTER_WEAPON_GROUP">
|
<enchantRateGroup name="FIGHTER_WEAPON_GROUP">
|
||||||
<current enchant="0-2" chance="100" />
|
<current enchant="0-2" chance="100" />
|
||||||
<current enchant="3-15" chance="66.67" />
|
<current enchant="3-14" chance="70" />
|
||||||
<current enchant="16-19" chance="33" />
|
<current enchant="15-127" chance="35" />
|
||||||
<current enchant="20-29" chance="20" />
|
|
||||||
<current enchant="30-65535" chance="0" />
|
|
||||||
</enchantRateGroup>
|
</enchantRateGroup>
|
||||||
|
|
||||||
<!-- General mage weapon enchant group. -->
|
<!-- General mage weapon enchant group. -->
|
||||||
<enchantRateGroup name="MAGE_WEAPON_GROUP">
|
<enchantRateGroup name="MAGE_WEAPON_GROUP">
|
||||||
<current enchant="0-2" chance="100" />
|
<current enchant="0-2" chance="100" />
|
||||||
<current enchant="3-15" chance="66.67" />
|
<current enchant="3-14" chance="50" /> <!-- TODO: confirm on ertheia they increased success rate "significantly" -->
|
||||||
<current enchant="16-19" chance="33" />
|
<current enchant="15-127" chance="30" /> <!-- TODO: confirm on ertheia they increased success rate "significantly" -->
|
||||||
<current enchant="20-29" chance="20" />
|
|
||||||
<current enchant="30-65535" chance="0" />
|
|
||||||
</enchantRateGroup>
|
</enchantRateGroup>
|
||||||
|
|
||||||
<!-- Default scrolls enchanting route line. -->
|
<!-- Default scrolls enchanting route line. -->
|
||||||
@@ -51,9 +74,6 @@
|
|||||||
<item slot="rfinger;lfinger" /> <!-- Right finger, Left finger: Rings -->
|
<item slot="rfinger;lfinger" /> <!-- Right finger, Left finger: Rings -->
|
||||||
<item slot="belt" /> <!-- Belt: Belts -->
|
<item slot="belt" /> <!-- Belt: Belts -->
|
||||||
<item slot="shirt" /> <!-- Shirt: Shirts -->
|
<item slot="shirt" /> <!-- Shirt: Shirts -->
|
||||||
<item slot="hair" /> <!-- Hair Accessories -->
|
|
||||||
<item slot="hair2" /> <!-- Hair Accessories -->
|
|
||||||
<item slot="hairall" /> <!-- Hair Accessories -->
|
|
||||||
</enchantRate>
|
</enchantRate>
|
||||||
<!-- Bind only full armor group to to full armor slot items. -->
|
<!-- Bind only full armor group to to full armor slot items. -->
|
||||||
<enchantRate group="FULL_ARMOR_GROUP">
|
<enchantRate group="FULL_ARMOR_GROUP">
|
||||||
|
|||||||
+2
-240
@@ -1113,7 +1113,7 @@
|
|||||||
<options level="49" option1="24853" />
|
<options level="49" option1="24853" />
|
||||||
<options level="50" option1="24854" />
|
<options level="50" option1="24854" />
|
||||||
</item>
|
</item>
|
||||||
<item id="21580"> <!-- Power Shirt -->
|
<item id="21580"> <!-- Olf's T-shirt -->
|
||||||
<options level="0" option1="24965" />
|
<options level="0" option1="24965" />
|
||||||
<options level="1" option1="24966" />
|
<options level="1" option1="24966" />
|
||||||
<options level="2" option1="24967" />
|
<options level="2" option1="24967" />
|
||||||
@@ -1126,98 +1126,7 @@
|
|||||||
<options level="9" option1="24974" option2="24980" option3="24983" />
|
<options level="9" option1="24974" option2="24980" option3="24983" />
|
||||||
<options level="10" option1="24984" option2="24985" option3="24983" />
|
<options level="10" option1="24984" option2="24985" option3="24983" />
|
||||||
</item>
|
</item>
|
||||||
<item id="37718"> <!-- Shiny Elemental Shirt -->
|
<item id="21706"> <!-- Olf's T-shirt (Event) -->
|
||||||
<options level="0" option1="30299" />
|
|
||||||
<options level="1" option1="30300" />
|
|
||||||
<options level="2" option1="30301" />
|
|
||||||
<options level="3" option1="30302" />
|
|
||||||
<options level="4" option1="30303" />
|
|
||||||
<options level="5" option1="30304" />
|
|
||||||
<options level="6" option1="30305" option2="30310" />
|
|
||||||
<options level="7" option1="30306" option2="30311" />
|
|
||||||
<options level="8" option1="30307" option2="30312" />
|
|
||||||
<options level="9" option1="30308" option2="30313" />
|
|
||||||
<options level="10" option1="30309" option2="30314" />
|
|
||||||
</item>
|
|
||||||
<item id="23240"> <!-- Pa'agrio Shirt -->
|
|
||||||
<options level="0" option1="30227" />
|
|
||||||
<options level="1" option1="30228" />
|
|
||||||
<options level="2" option1="30229" />
|
|
||||||
<options level="3" option1="30230" />
|
|
||||||
<options level="4" option1="30231" />
|
|
||||||
<options level="5" option1="30232" />
|
|
||||||
<options level="6" option1="30233" />
|
|
||||||
<options level="7" option1="30234" option2="30238" />
|
|
||||||
<options level="8" option1="30235" option2="30239" />
|
|
||||||
<options level="9" option1="30236" option2="30238" />
|
|
||||||
<options level="10" option1="30237" option2="30239" />
|
|
||||||
</item>
|
|
||||||
<item id="23301"> <!-- Sayha Shirt -->
|
|
||||||
<options level="0" option1="30227" />
|
|
||||||
<options level="1" option1="30228" />
|
|
||||||
<options level="2" option1="30229" />
|
|
||||||
<options level="3" option1="30230" />
|
|
||||||
<options level="4" option1="30231" />
|
|
||||||
<options level="5" option1="30232" />
|
|
||||||
<options level="6" option1="30233" />
|
|
||||||
<options level="7" option1="30234" option2="30240" option3="30240" />
|
|
||||||
<options level="8" option1="30235" option2="30240" option3="30240" />
|
|
||||||
<options level="9" option1="30236" option2="30241" option3="30241" />
|
|
||||||
<options level="10" option1="30237" option2="30241" option3="30241" />
|
|
||||||
</item>
|
|
||||||
<item id="23304"> <!-- Eva's Shirt -->
|
|
||||||
<options level="0" option1="30227" />
|
|
||||||
<options level="1" option1="30228" />
|
|
||||||
<options level="2" option1="30229" />
|
|
||||||
<options level="3" option1="30230" />
|
|
||||||
<options level="4" option1="30231" />
|
|
||||||
<options level="5" option1="30232" />
|
|
||||||
<options level="6" option1="30233" />
|
|
||||||
<options level="7" option1="30234" option2="30243" />
|
|
||||||
<options level="8" option1="30235" option2="30243" />
|
|
||||||
<options level="9" option1="30236" option2="30244" />
|
|
||||||
<options level="10" option1="30237" option2="30244" />
|
|
||||||
</item>
|
|
||||||
<item id="23307"> <!-- Maphr Shirt -->
|
|
||||||
<options level="0" option1="30227" />
|
|
||||||
<options level="1" option1="30228" />
|
|
||||||
<options level="2" option1="30229" />
|
|
||||||
<options level="3" option1="30230" />
|
|
||||||
<options level="4" option1="30231" />
|
|
||||||
<options level="5" option1="30232" />
|
|
||||||
<options level="6" option1="30233" />
|
|
||||||
<options level="7" option1="30234" option2="30245" />
|
|
||||||
<options level="8" option1="30235" option2="30245" />
|
|
||||||
<options level="9" option1="30236" option2="30246" />
|
|
||||||
<options level="10" option1="30237" option2="30246" />
|
|
||||||
</item>
|
|
||||||
<item id="46193"> <!-- Physycal Reflect Shirt -->
|
|
||||||
<options level="0" option1="32839" />
|
|
||||||
<options level="1" option1="32840" />
|
|
||||||
<options level="2" option1="32841" />
|
|
||||||
<options level="3" option1="32842" />
|
|
||||||
<options level="4" option1="32843" />
|
|
||||||
<options level="5" option1="32844" />
|
|
||||||
<options level="6" option1="32845" />
|
|
||||||
<options level="7" option1="32846" />
|
|
||||||
<options level="8" option1="32847" />
|
|
||||||
<options level="9" option1="32848" />
|
|
||||||
<options level="10" option1="32849" />
|
|
||||||
</item>
|
|
||||||
<item id="46194"> <!-- Magical Reflect Shirt -->
|
|
||||||
<options level="0" option1="32850" />
|
|
||||||
<options level="1" option1="32851" />
|
|
||||||
<options level="2" option1="32852" />
|
|
||||||
<options level="3" option1="32853" />
|
|
||||||
<options level="4" option1="32854" />
|
|
||||||
<options level="5" option1="32855" />
|
|
||||||
<options level="6" option1="32856" />
|
|
||||||
<options level="7" option1="32857" />
|
|
||||||
<options level="8" option1="32858" />
|
|
||||||
<options level="9" option1="32859" />
|
|
||||||
<options level="10" option1="32860" />
|
|
||||||
</item>
|
|
||||||
<item id="21706"> <!-- Power Shirt (Event) -->
|
|
||||||
<options level="0" option1="24965" />
|
<options level="0" option1="24965" />
|
||||||
<options level="1" option1="24966" />
|
<options level="1" option1="24966" />
|
||||||
<options level="2" option1="24967" />
|
<options level="2" option1="24967" />
|
||||||
@@ -1230,151 +1139,4 @@
|
|||||||
<options level="9" option1="24974" option2="24980" option3="24983" />
|
<options level="9" option1="24974" option2="24980" option3="24983" />
|
||||||
<options level="10" option1="24984" option2="24985" option3="24983" />
|
<options level="10" option1="24984" option2="24985" option3="24983" />
|
||||||
</item>
|
</item>
|
||||||
<item id="34717"> <!-- Refined Devil Horn -->
|
|
||||||
<options level="1" option1="30178" />
|
|
||||||
<options level="2" option1="30180" />
|
|
||||||
<options level="3" option1="30182" />
|
|
||||||
<options level="4" option1="30186" />
|
|
||||||
<options level="5" option1="30190" />
|
|
||||||
<options level="6" option1="30194" />
|
|
||||||
<options level="7" option1="30198" />
|
|
||||||
<options level="8" option1="30202" />
|
|
||||||
<options level="9" option1="30206" />
|
|
||||||
<options level="10" option1="30210" />
|
|
||||||
<options level="11" option1="30214" />
|
|
||||||
<options level="12" option1="30218" />
|
|
||||||
<options level="13" option1="30222" />
|
|
||||||
<options level="14" option1="30226" />
|
|
||||||
</item>
|
|
||||||
<!-- Shadow Weapons Option Data -->
|
|
||||||
<item id="46317"> <!-- Shadow Shaper -->
|
|
||||||
<options level="0" option1="32921" />
|
|
||||||
<options level="1" option1="32922" />
|
|
||||||
<options level="2" option1="32923" />
|
|
||||||
<options level="3" option1="32924" />
|
|
||||||
<options level="4" option1="32925" />
|
|
||||||
<options level="5" option1="32926" />
|
|
||||||
<options level="6" option1="32927" />
|
|
||||||
<options level="7" option1="32928" />
|
|
||||||
<options level="8" option1="32929" />
|
|
||||||
<options level="9" option1="32930" />
|
|
||||||
<options level="10" option1="32931" />
|
|
||||||
</item>
|
|
||||||
<item id="46318"> <!-- Shadow Cutter -->
|
|
||||||
<options level="0" option1="32873" />
|
|
||||||
<options level="1" option1="32874" />
|
|
||||||
<options level="2" option1="32875" />
|
|
||||||
<options level="3" option1="32876" />
|
|
||||||
<options level="4" option1="32877" />
|
|
||||||
<options level="5" option1="32878" />
|
|
||||||
<options level="6" option1="32879" />
|
|
||||||
<options level="7" option1="32880" />
|
|
||||||
<options level="8" option1="32881" />
|
|
||||||
<options level="9" option1="32882" />
|
|
||||||
<options level="10" option1="32883" />
|
|
||||||
</item>
|
|
||||||
<item id="46319"> <!-- Shadow Slasher -->
|
|
||||||
<options level="0" option1="32885" />
|
|
||||||
<options level="1" option1="32886" />
|
|
||||||
<options level="2" option1="32887" />
|
|
||||||
<options level="3" option1="32888" />
|
|
||||||
<options level="4" option1="32889" />
|
|
||||||
<options level="5" option1="32890" />
|
|
||||||
<options level="6" option1="32891" />
|
|
||||||
<options level="7" option1="32892" />
|
|
||||||
<options level="8" option1="32893" />
|
|
||||||
<options level="9" option1="32894" />
|
|
||||||
<options level="10" option1="32895" />
|
|
||||||
</item>
|
|
||||||
<item id="46320"> <!-- Shadow Fighter -->
|
|
||||||
<options level="0" option1="32897" />
|
|
||||||
<options level="1" option1="32898" />
|
|
||||||
<options level="2" option1="32899" />
|
|
||||||
<options level="3" option1="32900" />
|
|
||||||
<options level="4" option1="32901" />
|
|
||||||
<options level="5" option1="32902" />
|
|
||||||
<options level="6" option1="32903" />
|
|
||||||
<options level="7" option1="32904" />
|
|
||||||
<options level="8" option1="32905" />
|
|
||||||
<options level="9" option1="32906" />
|
|
||||||
<options level="10" option1="32907" />
|
|
||||||
</item>
|
|
||||||
<item id="46321"> <!-- Shadow Stormer -->
|
|
||||||
<options level="0" option1="32909" />
|
|
||||||
<options level="1" option1="32910" />
|
|
||||||
<options level="2" option1="32911" />
|
|
||||||
<options level="3" option1="32912" />
|
|
||||||
<options level="4" option1="32913" />
|
|
||||||
<options level="5" option1="32914" />
|
|
||||||
<options level="6" option1="32915" />
|
|
||||||
<options level="7" option1="32916" />
|
|
||||||
<options level="8" option1="32917" />
|
|
||||||
<options level="9" option1="32918" />
|
|
||||||
<options level="10" option1="32919" />
|
|
||||||
</item>
|
|
||||||
<item id="46322"> <!-- Shadow Thrower -->
|
|
||||||
<options level="0" option1="32933" />
|
|
||||||
<options level="1" option1="32934" />
|
|
||||||
<options level="2" option1="32935" />
|
|
||||||
<options level="3" option1="32936" />
|
|
||||||
<options level="4" option1="32937" />
|
|
||||||
<options level="5" option1="32938" />
|
|
||||||
<options level="6" option1="32939" />
|
|
||||||
<options level="7" option1="32940" />
|
|
||||||
<options level="8" option1="32941" />
|
|
||||||
<options level="9" option1="32942" />
|
|
||||||
<options level="10" option1="32943" />
|
|
||||||
</item>
|
|
||||||
<item id="46323"> <!-- Shadow Shooter -->
|
|
||||||
<options level="0" option1="32945" />
|
|
||||||
<options level="1" option1="32946" />
|
|
||||||
<options level="2" option1="32947" />
|
|
||||||
<options level="3" option1="32948" />
|
|
||||||
<options level="4" option1="32949" />
|
|
||||||
<options level="5" option1="32950" />
|
|
||||||
<options level="6" option1="32951" />
|
|
||||||
<options level="7" option1="32952" />
|
|
||||||
<options level="8" option1="32953" />
|
|
||||||
<options level="9" option1="32954" />
|
|
||||||
<options level="10" option1="32955" />
|
|
||||||
</item>
|
|
||||||
<item id="46324"> <!-- Shadow Buster -->
|
|
||||||
<options level="0" option1="32957" />
|
|
||||||
<options level="1" option1="32958" />
|
|
||||||
<options level="2" option1="32959" />
|
|
||||||
<options level="3" option1="32960" />
|
|
||||||
<options level="4" option1="32961" />
|
|
||||||
<options level="5" option1="32962" />
|
|
||||||
<options level="6" option1="32963" />
|
|
||||||
<options level="7" option1="32964" />
|
|
||||||
<options level="8" option1="32965" />
|
|
||||||
<options level="9" option1="32966" />
|
|
||||||
<options level="10" option1="32967" />
|
|
||||||
</item>
|
|
||||||
<item id="46325"> <!-- Shadow Retributer -->
|
|
||||||
<options level="0" option1="32969" />
|
|
||||||
<options level="1" option1="32970" />
|
|
||||||
<options level="2" option1="32971" />
|
|
||||||
<options level="3" option1="32972" />
|
|
||||||
<options level="4" option1="32973" />
|
|
||||||
<options level="5" option1="32974" />
|
|
||||||
<options level="6" option1="32975" />
|
|
||||||
<options level="7" option1="32976" />
|
|
||||||
<options level="8" option1="32977" />
|
|
||||||
<options level="9" option1="32978" />
|
|
||||||
<options level="10" option1="32979" />
|
|
||||||
</item>
|
|
||||||
<item id="46326"> <!-- Shadow Dualsword -->
|
|
||||||
<options level="0" option1="32861" />
|
|
||||||
<options level="1" option1="32862" />
|
|
||||||
<options level="2" option1="32863" />
|
|
||||||
<options level="3" option1="32864" />
|
|
||||||
<options level="4" option1="32865" />
|
|
||||||
<options level="5" option1="32866" />
|
|
||||||
<options level="6" option1="32867" />
|
|
||||||
<options level="7" option1="32868" />
|
|
||||||
<options level="8" option1="32869" />
|
|
||||||
<options level="9" option1="32870" />
|
|
||||||
<options level="10" option1="32871" />
|
|
||||||
</item>
|
|
||||||
</list>
|
</list>
|
||||||
+100
-192
@@ -2,210 +2,118 @@
|
|||||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/EnchantSkillGroups.xsd">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/EnchantSkillGroups.xsd">
|
||||||
<!-- 2nd Class Buffs Debuffs Toogle and Summons -->
|
<!-- 2nd Class Buffs Debuffs Toogle and Summons -->
|
||||||
<group id="1">
|
<group id="1">
|
||||||
<enchant level="1" adena="74250" sp="575980" chance76="82" chance77="92" chance78="97" chance79="97" chance80="97" chance81="97" chance82="97" chance83="97" chance84="97" chance85="97" chance86="99" chance87="99" chance88="99" chance89="99" chance90="99" chance91="99" chance92="99" chance93="99" chance94="99" chance95="99" chance96="99" chance97="99" chance98="99" chance99="99" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="1" adena="74250" sp="575980" chance76="82" chance77="92" chance78="97" chance79="97" chance80="97" chance81="97" chance82="97" chance83="97" chance84="97" chance85="97" />
|
||||||
<enchant level="2" adena="74250" sp="575980" chance76="80" chance77="90" chance78="95" chance79="95" chance80="95" chance81="95" chance82="95" chance83="95" chance84="95" chance85="95" chance86="97" chance87="97" chance88="97" chance89="97" chance90="97" chance91="97" chance92="97" chance93="97" chance94="97" chance95="98" chance96="98" chance97="98" chance98="98" chance99="98" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="2" adena="74250" sp="575980" chance76="80" chance77="90" chance78="95" chance79="95" chance80="95" chance81="95" chance82="95" chance83="95" chance84="95" chance85="95" />
|
||||||
<enchant level="3" adena="74250" sp="575980" chance76="78" chance77="88" chance78="93" chance79="93" chance80="93" chance81="93" chance82="93" chance83="93" chance84="93" chance85="93" chance86="95" chance87="95" chance88="95" chance89="95" chance90="95" chance91="95" chance92="95" chance93="95" chance94="95" chance95="96" chance96="96" chance97="96" chance98="96" chance99="96" chance100="97" chance101="97" chance102="97" chance103="97" chance104="97" chance105="97" chance106="97" chance107="97" />
|
<enchant level="3" adena="74250" sp="575980" chance76="78" chance77="88" chance78="93" chance79="93" chance80="93" chance81="93" chance82="93" chance83="93" chance84="93" chance85="93" />
|
||||||
<enchant level="4" adena="112050" sp="604535" chance76="52" chance77="76" chance78="86" chance79="91" chance80="91" chance81="91" chance82="91" chance83="91" chance84="91" chance85="91" chance86="93" chance87="93" chance88="93" chance89="93" chance90="93" chance91="93" chance92="93" chance93="93" chance94="93" chance95="94" chance96="94" chance97="94" chance98="94" chance99="94" chance100="95" chance101="95" chance102="95" chance103="95" chance104="95" chance105="95" chance106="95" chance107="95" />
|
<enchant level="4" adena="112050" sp="604535" chance76="52" chance77="76" chance78="86" chance79="91" chance80="91" chance81="91" chance82="91" chance83="91" chance84="91" chance85="91" />
|
||||||
<enchant level="5" adena="112050" sp="604535" chance76="50" chance77="74" chance78="84" chance79="89" chance80="89" chance81="89" chance82="89" chance83="89" chance84="89" chance85="89" chance86="91" chance87="91" chance88="91" chance89="91" chance90="91" chance91="91" chance92="91" chance93="91" chance94="91" chance95="92" chance96="92" chance97="92" chance98="92" chance99="92" chance100="93" chance101="93" chance102="93" chance103="93" chance104="93" chance105="93" chance106="93" chance107="93" />
|
<enchant level="5" adena="112050" sp="604535" chance76="50" chance77="74" chance78="84" chance79="89" chance80="89" chance81="89" chance82="89" chance83="89" chance84="89" chance85="89" />
|
||||||
<enchant level="6" adena="112050" sp="604535" chance76="48" chance77="72" chance78="82" chance79="87" chance80="87" chance81="87" chance82="87" chance83="87" chance84="87" chance85="87" chance86="89" chance87="89" chance88="89" chance89="89" chance90="89" chance91="89" chance92="89" chance93="89" chance94="89" chance95="90" chance96="90" chance97="90" chance98="90" chance99="90" chance100="91" chance101="91" chance102="91" chance103="91" chance104="91" chance105="91" chance106="91" chance107="91" />
|
<enchant level="6" adena="112050" sp="604535" chance76="48" chance77="72" chance78="82" chance79="87" chance80="87" chance81="87" chance82="87" chance83="87" chance84="87" chance85="87" />
|
||||||
<enchant level="7" adena="150300" sp="634020" chance76="36" chance77="46" chance78="70" chance79="80" chance80="85" chance81="85" chance82="85" chance83="85" chance84="85" chance85="85" chance86="87" chance87="87" chance88="87" chance89="87" chance90="87" chance91="87" chance92="87" chance93="87" chance94="87" chance95="88" chance96="88" chance97="88" chance98="88" chance99="88" chance100="89" chance101="89" chance102="89" chance103="89" chance104="89" chance105="89" chance106="89" chance107="89" />
|
<enchant level="7" adena="150300" sp="634020" chance76="36" chance77="46" chance78="70" chance79="80" chance80="85" chance81="85" chance82="85" chance83="85" chance84="85" chance85="85" />
|
||||||
<enchant level="8" adena="150300" sp="634020" chance76="34" chance77="44" chance78="68" chance79="78" chance80="83" chance81="83" chance82="83" chance83="83" chance84="83" chance85="83" chance86="85" chance87="85" chance88="85" chance89="85" chance90="85" chance91="85" chance92="85" chance93="85" chance94="85" chance95="86" chance96="86" chance97="86" chance98="86" chance99="86" chance100="87" chance101="87" chance102="87" chance103="87" chance104="87" chance105="87" chance106="87" chance107="87" />
|
<enchant level="8" adena="150300" sp="634020" chance76="34" chance77="44" chance78="68" chance79="78" chance80="83" chance81="83" chance82="83" chance83="83" chance84="83" chance85="83" />
|
||||||
<enchant level="9" adena="150300" sp="634020" chance76="32" chance77="42" chance78="66" chance79="76" chance80="81" chance81="81" chance82="81" chance83="81" chance84="81" chance85="81" chance86="83" chance87="83" chance88="83" chance89="83" chance90="83" chance91="83" chance92="83" chance93="83" chance94="83" chance95="84" chance96="84" chance97="84" chance98="84" chance99="84" chance100="85" chance101="85" chance102="85" chance103="85" chance104="85" chance105="85" chance106="85" chance107="85" />
|
<enchant level="9" adena="150300" sp="634020" chance76="32" chance77="42" chance78="66" chance79="76" chance80="81" chance81="81" chance82="81" chance83="81" chance84="81" chance85="81" />
|
||||||
<enchant level="10" adena="189000" sp="680020" chance76="20" chance77="30" chance78="40" chance79="64" chance80="74" chance81="79" chance82="79" chance83="79" chance84="79" chance85="79" chance86="81" chance87="81" chance88="81" chance89="81" chance90="81" chance91="81" chance92="81" chance93="81" chance94="81" chance95="82" chance96="82" chance97="82" chance98="82" chance99="82" chance100="83" chance101="83" chance102="83" chance103="83" chance104="83" chance105="83" chance106="83" chance107="83" />
|
<enchant level="10" adena="189000" sp="680020" chance76="20" chance77="30" chance78="40" chance79="64" chance80="74" chance81="79" chance82="79" chance83="79" chance84="79" chance85="79" />
|
||||||
<enchant level="11" adena="189000" sp="680020" chance76="18" chance77="28" chance78="38" chance79="62" chance80="72" chance81="77" chance82="77" chance83="77" chance84="77" chance85="77" chance86="79" chance87="79" chance88="79" chance89="79" chance90="79" chance91="79" chance92="79" chance93="79" chance94="79" chance95="80" chance96="80" chance97="80" chance98="80" chance99="80" chance100="81" chance101="81" chance102="81" chance103="81" chance104="81" chance105="81" chance106="81" chance107="81" />
|
<enchant level="11" adena="189000" sp="680020" chance76="18" chance77="28" chance78="38" chance79="62" chance80="72" chance81="77" chance82="77" chance83="77" chance84="77" chance85="77" />
|
||||||
<enchant level="12" adena="189000" sp="680020" chance76="16" chance77="26" chance78="36" chance79="60" chance80="70" chance81="75" chance82="75" chance83="75" chance84="75" chance85="75" chance86="77" chance87="77" chance88="77" chance89="77" chance90="77" chance91="77" chance92="77" chance93="77" chance94="77" chance95="78" chance96="78" chance97="78" chance98="78" chance99="78" chance100="79" chance101="79" chance102="79" chance103="79" chance104="79" chance105="79" chance106="79" chance107="79" />
|
<enchant level="12" adena="189000" sp="680020" chance76="16" chance77="26" chance78="36" chance79="60" chance80="70" chance81="75" chance82="75" chance83="75" chance84="75" chance85="75" />
|
||||||
<enchant level="13" adena="228150" sp="711890" chance76="4" chance77="14" chance78="24" chance79="34" chance80="58" chance81="68" chance82="73" chance83="73" chance84="73" chance85="73" chance86="75" chance87="75" chance88="75" chance89="75" chance90="75" chance91="75" chance92="75" chance93="75" chance94="75" chance95="76" chance96="76" chance97="76" chance98="76" chance99="76" chance100="77" chance101="77" chance102="77" chance103="77" chance104="77" chance105="77" chance106="77" chance107="77" />
|
<enchant level="13" adena="228150" sp="711890" chance76="4" chance77="14" chance78="24" chance79="34" chance80="58" chance81="68" chance82="73" chance83="73" chance84="73" chance85="73" />
|
||||||
<enchant level="14" adena="228150" sp="711890" chance76="2" chance77="12" chance78="22" chance79="32" chance80="56" chance81="66" chance82="71" chance83="71" chance84="71" chance85="71" chance86="73" chance87="73" chance88="73" chance89="73" chance90="73" chance91="73" chance92="73" chance93="73" chance94="73" chance95="74" chance96="74" chance97="74" chance98="74" chance99="74" chance100="75" chance101="75" chance102="75" chance103="75" chance104="75" chance105="75" chance106="75" chance107="75" />
|
<enchant level="14" adena="228150" sp="711890" chance76="2" chance77="12" chance78="22" chance79="32" chance80="56" chance81="66" chance82="71" chance83="71" chance84="71" chance85="71" />
|
||||||
<enchant level="15" adena="228150" sp="711890" chance76="1" chance77="10" chance78="20" chance79="30" chance80="54" chance81="64" chance82="69" chance83="69" chance84="69" chance85="69" chance86="71" chance87="71" chance88="71" chance89="71" chance90="71" chance91="71" chance92="71" chance93="71" chance94="71" chance95="72" chance96="72" chance97="72" chance98="72" chance99="72" chance100="73" chance101="73" chance102="73" chance103="73" chance104="73" chance105="73" chance106="73" chance107="73" />
|
<enchant level="15" adena="228150" sp="711890" chance76="1" chance77="10" chance78="20" chance79="30" chance80="54" chance81="64" chance82="69" chance83="69" chance84="69" chance85="69" />
|
||||||
<enchant level="16" adena="267750" sp="761540" chance76="1" chance77="1" chance78="8" chance79="18" chance80="28" chance81="52" chance82="62" chance83="67" chance84="67" chance85="67" chance86="69" chance87="69" chance88="69" chance89="69" chance90="69" chance91="69" chance92="69" chance93="69" chance94="69" chance95="70" chance96="70" chance97="70" chance98="70" chance99="70" chance100="71" chance101="71" chance102="71" chance103="71" chance104="71" chance105="71" chance106="71" chance107="71" />
|
<enchant level="16" adena="267750" sp="761540" chance76="1" chance77="1" chance78="8" chance79="18" chance80="28" chance81="52" chance82="62" chance83="67" chance84="67" chance85="67" />
|
||||||
<enchant level="17" adena="267750" sp="761540" chance76="1" chance77="1" chance78="6" chance79="16" chance80="26" chance81="50" chance82="60" chance83="65" chance84="65" chance85="65" chance86="67" chance87="67" chance88="67" chance89="67" chance90="67" chance91="67" chance92="67" chance93="67" chance94="67" chance95="68" chance96="68" chance97="68" chance98="68" chance99="68" chance100="69" chance101="69" chance102="69" chance103="69" chance104="69" chance105="69" chance106="69" chance107="69" />
|
<enchant level="17" adena="267750" sp="761540" chance76="1" chance77="1" chance78="6" chance79="16" chance80="26" chance81="50" chance82="60" chance83="65" chance84="65" chance85="65" />
|
||||||
<enchant level="18" adena="267750" sp="761540" chance76="1" chance77="1" chance78="4" chance79="14" chance80="24" chance81="48" chance82="58" chance83="63" chance84="63" chance85="63" chance86="65" chance87="65" chance88="65" chance89="65" chance90="65" chance91="65" chance92="65" chance93="65" chance94="65" chance95="66" chance96="66" chance97="66" chance98="66" chance99="66" chance100="67" chance101="67" chance102="67" chance103="67" chance104="67" chance105="67" chance106="67" chance107="67" />
|
<enchant level="18" adena="267750" sp="761540" chance76="1" chance77="1" chance78="4" chance79="14" chance80="24" chance81="48" chance82="58" chance83="63" chance84="63" chance85="63" />
|
||||||
<enchant level="19" adena="307800" sp="795890" chance76="1" chance77="1" chance78="1" chance79="2" chance80="12" chance81="22" chance82="46" chance83="56" chance84="61" chance85="61" chance86="63" chance87="63" chance88="63" chance89="63" chance90="63" chance91="63" chance92="63" chance93="63" chance94="63" chance95="64" chance96="64" chance97="64" chance98="64" chance99="64" chance100="65" chance101="65" chance102="65" chance103="65" chance104="65" chance105="65" chance106="65" chance107="65" />
|
<enchant level="19" adena="307800" sp="795890" chance76="1" chance77="1" chance78="1" chance79="2" chance80="12" chance81="22" chance82="46" chance83="56" chance84="61" chance85="61" />
|
||||||
<enchant level="20" adena="307800" sp="795890" chance76="1" chance77="1" chance78="1" chance79="1" chance80="10" chance81="20" chance82="44" chance83="54" chance84="59" chance85="59" chance86="61" chance87="61" chance88="61" chance89="61" chance90="61" chance91="61" chance92="61" chance93="61" chance94="61" chance95="62" chance96="62" chance97="62" chance98="62" chance99="62" chance100="63" chance101="63" chance102="63" chance103="63" chance104="63" chance105="63" chance106="63" chance107="63" />
|
<enchant level="20" adena="307800" sp="795890" chance76="1" chance77="1" chance78="1" chance79="1" chance80="10" chance81="20" chance82="44" chance83="54" chance84="59" chance85="59" />
|
||||||
<enchant level="21" adena="307800" sp="795890" chance76="1" chance77="1" chance78="1" chance79="1" chance80="8" chance81="18" chance82="42" chance83="52" chance84="57" chance85="57" chance86="59" chance87="59" chance88="59" chance89="59" chance90="59" chance91="59" chance92="59" chance93="59" chance94="59" chance95="60" chance96="60" chance97="60" chance98="60" chance99="60" chance100="61" chance101="61" chance102="61" chance103="61" chance104="61" chance105="61" chance106="61" chance107="61" />
|
<enchant level="21" adena="307800" sp="795890" chance76="1" chance77="1" chance78="1" chance79="1" chance80="8" chance81="18" chance82="42" chance83="52" chance84="57" chance85="57" />
|
||||||
<enchant level="22" adena="348300" sp="849330" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="6" chance82="16" chance83="40" chance84="50" chance85="55" chance86="57" chance87="57" chance88="57" chance89="57" chance90="57" chance91="57" chance92="57" chance93="57" chance94="57" chance95="58" chance96="58" chance97="58" chance98="58" chance99="58" chance100="59" chance101="59" chance102="59" chance103="59" chance104="59" chance105="59" chance106="59" chance107="59" />
|
<enchant level="22" adena="348300" sp="849330" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="6" chance82="16" chance83="40" chance84="50" chance85="55" />
|
||||||
<enchant level="23" adena="348300" sp="849330" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="4" chance82="14" chance83="38" chance84="48" chance85="53" chance86="55" chance87="55" chance88="55" chance89="55" chance90="55" chance91="55" chance92="55" chance93="55" chance94="55" chance95="56" chance96="56" chance97="56" chance98="56" chance99="56" chance100="57" chance101="57" chance102="57" chance103="57" chance104="57" chance105="57" chance106="57" chance107="57" />
|
<enchant level="23" adena="348300" sp="849330" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="4" chance82="14" chance83="38" chance84="48" chance85="53" />
|
||||||
<enchant level="24" adena="348300" sp="849330" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="2" chance82="12" chance83="36" chance84="46" chance85="46" chance86="51" chance87="51" chance88="51" chance89="51" chance90="51" chance91="51" chance92="51" chance93="51" chance94="51" chance95="52" chance96="52" chance97="52" chance98="52" chance99="52" chance100="53" chance101="53" chance102="53" chance103="53" chance104="53" chance105="53" chance106="53" chance107="53" />
|
<enchant level="24" adena="348300" sp="849330" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="2" chance82="12" chance83="36" chance84="46" chance85="46" />
|
||||||
<enchant level="25" adena="389250" sp="886255" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="10" chance84="34" chance85="44" chance86="49" chance87="49" chance88="49" chance89="49" chance90="49" chance91="49" chance92="49" chance93="49" chance94="49" chance95="50" chance96="50" chance97="50" chance98="50" chance99="50" chance100="51" chance101="51" chance102="51" chance103="51" chance104="51" chance105="51" chance106="51" chance107="51" />
|
<enchant level="25" adena="389250" sp="886255" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="10" chance84="34" chance85="44" />
|
||||||
<enchant level="26" adena="389250" sp="886255" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="8" chance84="32" chance85="42" chance86="47" chance87="47" chance88="47" chance89="47" chance90="47" chance91="47" chance92="47" chance93="47" chance94="47" chance95="48" chance96="48" chance97="48" chance98="48" chance99="48" chance100="49" chance101="49" chance102="49" chance103="49" chance104="49" chance105="49" chance106="49" chance107="49" />
|
<enchant level="26" adena="389250" sp="886255" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="8" chance84="32" chance85="42" />
|
||||||
<enchant level="27" adena="389250" sp="886255" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="6" chance84="30" chance85="40" chance86="45" chance87="45" chance88="45" chance89="45" chance90="45" chance91="45" chance92="45" chance93="45" chance94="45" chance95="46" chance96="46" chance97="46" chance98="46" chance99="46" chance100="47" chance101="47" chance102="47" chance103="47" chance104="47" chance105="47" chance106="47" chance107="47" />
|
<enchant level="27" adena="389250" sp="886255" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="6" chance84="30" chance85="40" />
|
||||||
<enchant level="28" adena="430650" sp="943620" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="4" chance85="28" chance86="31" chance87="31" chance88="31" chance89="31" chance90="31" chance91="31" chance92="31" chance93="31" chance94="31" chance95="32" chance96="32" chance97="32" chance98="32" chance99="32" chance100="33" chance101="33" chance102="33" chance103="33" chance104="33" chance105="33" chance106="33" chance107="33" />
|
<enchant level="28" adena="430650" sp="943620" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="4" chance85="28" />
|
||||||
<enchant level="29" adena="430650" sp="943620" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="2" chance85="26" chance86="29" chance87="29" chance88="29" chance89="29" chance90="29" chance91="29" chance92="29" chance93="29" chance94="29" chance95="30" chance96="30" chance97="30" chance98="30" chance99="30" chance100="31" chance101="31" chance102="31" chance103="31" chance104="31" chance105="31" chance106="31" chance107="31" />
|
<enchant level="29" adena="430650" sp="943620" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="2" chance85="26" />
|
||||||
<enchant level="30" adena="430650" sp="943620" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="24" chance86="27" chance87="27" chance88="27" chance89="27" chance90="27" chance91="27" chance92="27" chance93="27" chance94="27" chance95="28" chance96="28" chance97="28" chance98="28" chance99="28" chance100="29" chance101="29" chance102="29" chance103="29" chance104="29" chance105="29" chance106="29" chance107="29" />
|
<enchant level="30" adena="430650" sp="943620" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="24" />
|
||||||
</group>
|
</group>
|
||||||
<!-- 2nd Class Cubic and Attack Type Skills -->
|
<!-- 2nd Class Cubic and Attack Type Skills -->
|
||||||
<group id="2">
|
<group id="2">
|
||||||
<enchant level="1" adena="133650" sp="1036764" chance76="82" chance77="92" chance78="97" chance79="97" chance80="97" chance81="97" chance82="97" chance83="97" chance84="97" chance85="97" chance86="99" chance87="99" chance88="99" chance89="99" chance90="99" chance91="99" chance92="99" chance93="99" chance94="99" chance95="99" chance96="99" chance97="99" chance98="99" chance99="99" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="1" adena="133650" sp="1036764" chance76="82" chance77="92" chance78="97" chance79="97" chance80="97" chance81="97" chance82="97" chance83="97" chance84="97" chance85="97" />
|
||||||
<enchant level="2" adena="133650" sp="1036764" chance76="80" chance77="90" chance78="95" chance79="95" chance80="95" chance81="95" chance82="95" chance83="95" chance84="95" chance85="95" chance86="97" chance87="97" chance88="97" chance89="97" chance90="97" chance91="97" chance92="97" chance93="97" chance94="97" chance95="98" chance96="98" chance97="98" chance98="98" chance99="98" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="2" adena="133650" sp="1036764" chance76="80" chance77="90" chance78="95" chance79="95" chance80="95" chance81="95" chance82="95" chance83="95" chance84="95" chance85="95" />
|
||||||
<enchant level="3" adena="133650" sp="1036764" chance76="78" chance77="88" chance78="93" chance79="93" chance80="93" chance81="93" chance82="93" chance83="93" chance84="93" chance85="93" chance86="95" chance87="95" chance88="95" chance89="95" chance90="95" chance91="95" chance92="95" chance93="95" chance94="95" chance95="96" chance96="96" chance97="96" chance98="96" chance99="96" chance100="97" chance101="97" chance102="97" chance103="97" chance104="97" chance105="97" chance106="97" chance107="97" />
|
<enchant level="3" adena="133650" sp="1036764" chance76="78" chance77="88" chance78="93" chance79="93" chance80="93" chance81="93" chance82="93" chance83="93" chance84="93" chance85="93" />
|
||||||
<enchant level="4" adena="201690" sp="1088163" chance76="52" chance77="76" chance78="86" chance79="91" chance80="91" chance81="91" chance82="91" chance83="91" chance84="91" chance85="91" chance86="93" chance87="93" chance88="93" chance89="93" chance90="93" chance91="93" chance92="93" chance93="93" chance94="93" chance95="94" chance96="94" chance97="94" chance98="94" chance99="94" chance100="95" chance101="95" chance102="95" chance103="95" chance104="95" chance105="95" chance106="95" chance107="95" />
|
<enchant level="4" adena="201690" sp="1088163" chance76="52" chance77="76" chance78="86" chance79="91" chance80="91" chance81="91" chance82="91" chance83="91" chance84="91" chance85="91" />
|
||||||
<enchant level="5" adena="201690" sp="1088163" chance76="50" chance77="74" chance78="84" chance79="89" chance80="89" chance81="89" chance82="89" chance83="89" chance84="89" chance85="89" chance86="91" chance87="91" chance88="91" chance89="91" chance90="91" chance91="91" chance92="91" chance93="91" chance94="91" chance95="92" chance96="92" chance97="92" chance98="92" chance99="92" chance100="93" chance101="93" chance102="93" chance103="93" chance104="93" chance105="93" chance106="93" chance107="93" />
|
<enchant level="5" adena="201690" sp="1088163" chance76="50" chance77="74" chance78="84" chance79="89" chance80="89" chance81="89" chance82="89" chance83="89" chance84="89" chance85="89" />
|
||||||
<enchant level="6" adena="201690" sp="1088163" chance76="48" chance77="72" chance78="82" chance79="87" chance80="87" chance81="87" chance82="87" chance83="87" chance84="87" chance85="87" chance86="89" chance87="89" chance88="89" chance89="89" chance90="89" chance91="89" chance92="89" chance93="89" chance94="89" chance95="90" chance96="90" chance97="90" chance98="90" chance99="90" chance100="91" chance101="91" chance102="91" chance103="91" chance104="91" chance105="91" chance106="91" chance107="91" />
|
<enchant level="6" adena="201690" sp="1088163" chance76="48" chance77="72" chance78="82" chance79="87" chance80="87" chance81="87" chance82="87" chance83="87" chance84="87" chance85="87" />
|
||||||
<enchant level="7" adena="270540" sp="1141236" chance76="36" chance77="46" chance78="70" chance79="80" chance80="85" chance81="85" chance82="85" chance83="85" chance84="85" chance85="85" chance86="87" chance87="87" chance88="87" chance89="87" chance90="87" chance91="87" chance92="87" chance93="87" chance94="87" chance95="88" chance96="88" chance97="88" chance98="88" chance99="88" chance100="89" chance101="89" chance102="89" chance103="89" chance104="89" chance105="89" chance106="89" chance107="89" />
|
<enchant level="7" adena="270540" sp="1141236" chance76="36" chance77="46" chance78="70" chance79="80" chance80="85" chance81="85" chance82="85" chance83="85" chance84="85" chance85="85" />
|
||||||
<enchant level="8" adena="270540" sp="1141236" chance76="34" chance77="44" chance78="68" chance79="78" chance80="83" chance81="83" chance82="83" chance83="83" chance84="83" chance85="83" chance86="85" chance87="85" chance88="85" chance89="85" chance90="85" chance91="85" chance92="85" chance93="85" chance94="85" chance95="86" chance96="86" chance97="86" chance98="86" chance99="86" chance100="87" chance101="87" chance102="87" chance103="87" chance104="87" chance105="87" chance106="87" chance107="87" />
|
<enchant level="8" adena="270540" sp="1141236" chance76="34" chance77="44" chance78="68" chance79="78" chance80="83" chance81="83" chance82="83" chance83="83" chance84="83" chance85="83" />
|
||||||
<enchant level="9" adena="270540" sp="1141236" chance76="32" chance77="42" chance78="66" chance79="76" chance80="81" chance81="81" chance82="81" chance83="81" chance84="81" chance85="81" chance86="83" chance87="83" chance88="83" chance89="83" chance90="83" chance91="83" chance92="83" chance93="83" chance94="83" chance95="84" chance96="84" chance97="84" chance98="84" chance99="84" chance100="85" chance101="85" chance102="85" chance103="85" chance104="85" chance105="85" chance106="85" chance107="85" />
|
<enchant level="9" adena="270540" sp="1141236" chance76="32" chance77="42" chance78="66" chance79="76" chance80="81" chance81="81" chance82="81" chance83="81" chance84="81" chance85="81" />
|
||||||
<enchant level="10" adena="340200" sp="1224036" chance76="20" chance77="30" chance78="40" chance79="64" chance80="74" chance81="79" chance82="79" chance83="79" chance84="79" chance85="79" chance86="81" chance87="81" chance88="81" chance89="81" chance90="81" chance91="81" chance92="81" chance93="81" chance94="81" chance95="82" chance96="82" chance97="82" chance98="82" chance99="82" chance100="83" chance101="83" chance102="83" chance103="83" chance104="83" chance105="83" chance106="83" chance107="83" />
|
<enchant level="10" adena="340200" sp="1224036" chance76="20" chance77="30" chance78="40" chance79="64" chance80="74" chance81="79" chance82="79" chance83="79" chance84="79" chance85="79" />
|
||||||
<enchant level="11" adena="340200" sp="1224036" chance76="18" chance77="28" chance78="38" chance79="62" chance80="72" chance81="77" chance82="77" chance83="77" chance84="77" chance85="77" chance86="79" chance87="79" chance88="79" chance89="79" chance90="79" chance91="79" chance92="79" chance93="79" chance94="79" chance95="80" chance96="80" chance97="80" chance98="80" chance99="80" chance100="81" chance101="81" chance102="81" chance103="81" chance104="81" chance105="81" chance106="81" chance107="81" />
|
<enchant level="11" adena="340200" sp="1224036" chance76="18" chance77="28" chance78="38" chance79="62" chance80="72" chance81="77" chance82="77" chance83="77" chance84="77" chance85="77" />
|
||||||
<enchant level="12" adena="340200" sp="1224036" chance76="16" chance77="26" chance78="36" chance79="60" chance80="70" chance81="75" chance82="75" chance83="75" chance84="75" chance85="75" chance86="77" chance87="77" chance88="77" chance89="77" chance90="77" chance91="77" chance92="77" chance93="77" chance94="77" chance95="78" chance96="78" chance97="78" chance98="78" chance99="78" chance100="79" chance101="79" chance102="79" chance103="79" chance104="79" chance105="79" chance106="79" chance107="79" />
|
<enchant level="12" adena="340200" sp="1224036" chance76="16" chance77="26" chance78="36" chance79="60" chance80="70" chance81="75" chance82="75" chance83="75" chance84="75" chance85="75" />
|
||||||
<enchant level="13" adena="410670" sp="1281402" chance76="4" chance77="14" chance78="24" chance79="34" chance80="58" chance81="68" chance82="73" chance83="73" chance84="73" chance85="73" chance86="75" chance87="75" chance88="75" chance89="75" chance90="75" chance91="75" chance92="75" chance93="75" chance94="75" chance95="76" chance96="76" chance97="76" chance98="76" chance99="76" chance100="77" chance101="77" chance102="77" chance103="77" chance104="77" chance105="77" chance106="77" chance107="77" />
|
<enchant level="13" adena="410670" sp="1281402" chance76="4" chance77="14" chance78="24" chance79="34" chance80="58" chance81="68" chance82="73" chance83="73" chance84="73" chance85="73" />
|
||||||
<enchant level="14" adena="410670" sp="1281402" chance76="2" chance77="12" chance78="22" chance79="32" chance80="56" chance81="66" chance82="71" chance83="71" chance84="71" chance85="71" chance86="73" chance87="73" chance88="73" chance89="73" chance90="73" chance91="73" chance92="73" chance93="73" chance94="73" chance95="74" chance96="74" chance97="74" chance98="74" chance99="74" chance100="75" chance101="75" chance102="75" chance103="75" chance104="75" chance105="75" chance106="75" chance107="75" />
|
<enchant level="14" adena="410670" sp="1281402" chance76="2" chance77="12" chance78="22" chance79="32" chance80="56" chance81="66" chance82="71" chance83="71" chance84="71" chance85="71" />
|
||||||
<enchant level="15" adena="410670" sp="1281402" chance76="1" chance77="10" chance78="20" chance79="30" chance80="54" chance81="64" chance82="69" chance83="69" chance84="69" chance85="69" chance86="71" chance87="71" chance88="71" chance89="71" chance90="71" chance91="71" chance92="71" chance93="71" chance94="71" chance95="72" chance96="72" chance97="72" chance98="72" chance99="72" chance100="73" chance101="73" chance102="73" chance103="73" chance104="73" chance105="73" chance106="73" chance107="73" />
|
<enchant level="15" adena="410670" sp="1281402" chance76="1" chance77="10" chance78="20" chance79="30" chance80="54" chance81="64" chance82="69" chance83="69" chance84="69" chance85="69" />
|
||||||
<enchant level="16" adena="481950" sp="1370772" chance76="1" chance77="1" chance78="8" chance79="18" chance80="28" chance81="52" chance82="62" chance83="67" chance84="67" chance85="67" chance86="69" chance87="69" chance88="69" chance89="69" chance90="69" chance91="69" chance92="69" chance93="69" chance94="69" chance95="70" chance96="70" chance97="70" chance98="70" chance99="70" chance100="71" chance101="71" chance102="71" chance103="71" chance104="71" chance105="71" chance106="71" chance107="71" />
|
<enchant level="16" adena="481950" sp="1370772" chance76="1" chance77="1" chance78="8" chance79="18" chance80="28" chance81="52" chance82="62" chance83="67" chance84="67" chance85="67" />
|
||||||
<enchant level="17" adena="481950" sp="1370772" chance76="1" chance77="1" chance78="6" chance79="16" chance80="26" chance81="50" chance82="60" chance83="65" chance84="65" chance85="65" chance86="67" chance87="67" chance88="67" chance89="67" chance90="67" chance91="67" chance92="67" chance93="67" chance94="67" chance95="68" chance96="68" chance97="68" chance98="68" chance99="68" chance100="69" chance101="69" chance102="69" chance103="69" chance104="69" chance105="69" chance106="69" chance107="69" />
|
<enchant level="17" adena="481950" sp="1370772" chance76="1" chance77="1" chance78="6" chance79="16" chance80="26" chance81="50" chance82="60" chance83="65" chance84="65" chance85="65" />
|
||||||
<enchant level="18" adena="481950" sp="1370772" chance76="1" chance77="1" chance78="4" chance79="14" chance80="24" chance81="48" chance82="58" chance83="63" chance84="63" chance85="63" chance86="65" chance87="65" chance88="65" chance89="65" chance90="65" chance91="65" chance92="65" chance93="65" chance94="65" chance95="66" chance96="66" chance97="66" chance98="66" chance99="66" chance100="67" chance101="67" chance102="67" chance103="67" chance104="67" chance105="67" chance106="67" chance107="67" />
|
<enchant level="18" adena="481950" sp="1370772" chance76="1" chance77="1" chance78="4" chance79="14" chance80="24" chance81="48" chance82="58" chance83="63" chance84="63" chance85="63" />
|
||||||
<enchant level="19" adena="554040" sp="1432602" chance76="1" chance77="1" chance78="1" chance79="2" chance80="12" chance81="22" chance82="46" chance83="56" chance84="61" chance85="61" chance86="63" chance87="63" chance88="63" chance89="63" chance90="63" chance91="63" chance92="63" chance93="63" chance94="63" chance95="64" chance96="64" chance97="64" chance98="64" chance99="64" chance100="65" chance101="65" chance102="65" chance103="65" chance104="65" chance105="65" chance106="65" chance107="65" />
|
<enchant level="19" adena="554040" sp="1432602" chance76="1" chance77="1" chance78="1" chance79="2" chance80="12" chance81="22" chance82="46" chance83="56" chance84="61" chance85="61" />
|
||||||
<enchant level="20" adena="554040" sp="1432602" chance76="1" chance77="1" chance78="1" chance79="1" chance80="10" chance81="20" chance82="44" chance83="54" chance84="59" chance85="59" chance86="61" chance87="61" chance88="61" chance89="61" chance90="61" chance91="61" chance92="61" chance93="61" chance94="61" chance95="62" chance96="62" chance97="62" chance98="62" chance99="62" chance100="63" chance101="63" chance102="63" chance103="63" chance104="63" chance105="63" chance106="63" chance107="63" />
|
<enchant level="20" adena="554040" sp="1432602" chance76="1" chance77="1" chance78="1" chance79="1" chance80="10" chance81="20" chance82="44" chance83="54" chance84="59" chance85="59" />
|
||||||
<enchant level="21" adena="554040" sp="1432602" chance76="1" chance77="1" chance78="1" chance79="1" chance80="8" chance81="18" chance82="42" chance83="52" chance84="57" chance85="57" chance86="59" chance87="59" chance88="59" chance89="59" chance90="59" chance91="59" chance92="59" chance93="59" chance94="59" chance95="60" chance96="60" chance97="60" chance98="60" chance99="60" chance100="61" chance101="61" chance102="61" chance103="61" chance104="61" chance105="61" chance106="61" chance107="61" />
|
<enchant level="21" adena="554040" sp="1432602" chance76="1" chance77="1" chance78="1" chance79="1" chance80="8" chance81="18" chance82="42" chance83="52" chance84="57" chance85="57" />
|
||||||
<enchant level="22" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="6" chance82="16" chance83="40" chance84="50" chance85="55" chance86="57" chance87="57" chance88="57" chance89="57" chance90="57" chance91="57" chance92="57" chance93="57" chance94="57" chance95="58" chance96="58" chance97="58" chance98="58" chance99="58" chance100="59" chance101="59" chance102="59" chance103="59" chance104="59" chance105="59" chance106="59" chance107="59" />
|
<enchant level="22" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="6" chance82="16" chance83="40" chance84="50" chance85="55" />
|
||||||
<enchant level="23" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="4" chance82="14" chance83="38" chance84="48" chance85="53" chance86="55" chance87="55" chance88="55" chance89="55" chance90="55" chance91="55" chance92="55" chance93="55" chance94="55" chance95="56" chance96="56" chance97="56" chance98="56" chance99="56" chance100="57" chance101="57" chance102="57" chance103="57" chance104="57" chance105="57" chance106="57" chance107="57" />
|
<enchant level="23" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="4" chance82="14" chance83="38" chance84="48" chance85="53" />
|
||||||
<enchant level="24" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="2" chance82="12" chance83="36" chance84="46" chance85="46" chance86="51" chance87="51" chance88="51" chance89="51" chance90="51" chance91="51" chance92="51" chance93="51" chance94="51" chance95="52" chance96="52" chance97="52" chance98="52" chance99="52" chance100="53" chance101="53" chance102="53" chance103="53" chance104="53" chance105="53" chance106="53" chance107="53" />
|
<enchant level="24" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="2" chance82="12" chance83="36" chance84="46" chance85="46" />
|
||||||
<enchant level="25" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="10" chance84="34" chance85="44" chance86="49" chance87="49" chance88="49" chance89="49" chance90="49" chance91="49" chance92="49" chance93="49" chance94="49" chance95="50" chance96="50" chance97="50" chance98="50" chance99="50" chance100="51" chance101="51" chance102="51" chance103="51" chance104="51" chance105="51" chance106="51" chance107="51" />
|
<enchant level="25" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="10" chance84="34" chance85="44" />
|
||||||
<enchant level="26" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="8" chance84="32" chance85="42" chance86="47" chance87="47" chance88="47" chance89="47" chance90="47" chance91="47" chance92="47" chance93="47" chance94="47" chance95="48" chance96="48" chance97="48" chance98="48" chance99="48" chance100="49" chance101="49" chance102="49" chance103="49" chance104="49" chance105="49" chance106="49" chance107="49" />
|
<enchant level="26" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="8" chance84="32" chance85="42" />
|
||||||
<enchant level="27" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="6" chance84="30" chance85="40" chance86="45" chance87="45" chance88="45" chance89="45" chance90="45" chance91="45" chance92="45" chance93="45" chance94="45" chance95="46" chance96="46" chance97="46" chance98="46" chance99="46" chance100="47" chance101="47" chance102="47" chance103="47" chance104="47" chance105="47" chance106="47" chance107="47" />
|
<enchant level="27" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="6" chance84="30" chance85="40" />
|
||||||
<enchant level="28" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="4" chance85="28" chance86="31" chance87="31" chance88="31" chance89="31" chance90="31" chance91="31" chance92="31" chance93="31" chance94="31" chance95="32" chance96="32" chance97="32" chance98="32" chance99="32" chance100="33" chance101="33" chance102="33" chance103="33" chance104="33" chance105="33" chance106="33" chance107="33" />
|
<enchant level="28" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="4" chance85="28" />
|
||||||
<enchant level="29" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="2" chance85="26" chance86="29" chance87="29" chance88="29" chance89="29" chance90="29" chance91="29" chance92="29" chance93="29" chance94="29" chance95="30" chance96="30" chance97="30" chance98="30" chance99="30" chance100="31" chance101="31" chance102="31" chance103="31" chance104="31" chance105="31" chance106="31" chance107="31" />
|
<enchant level="29" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="2" chance85="26" />
|
||||||
<enchant level="30" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="24" chance86="27" chance87="27" chance88="27" chance89="27" chance90="27" chance91="27" chance92="27" chance93="27" chance94="27" chance95="28" chance96="28" chance97="28" chance98="28" chance99="28" chance100="29" chance101="29" chance102="29" chance103="29" chance104="29" chance105="29" chance106="29" chance107="29" />
|
<enchant level="30" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="24" />
|
||||||
</group>
|
</group>
|
||||||
<!-- 3rd Class Buffs, Debuffs, Toggles -->
|
<!-- 3rd Class Buffs, Debuffs, Toggles -->
|
||||||
<group id="5">
|
<group id="5">
|
||||||
<enchant level="1" adena="481950" sp="1370772" chance76="18" chance77="28" chance78="38" chance79="48" chance80="58" chance81="82" chance82="92" chance83="97" chance84="97" chance85="97" chance86="99" chance87="99" chance88="99" chance89="99" chance90="99" chance91="99" chance92="99" chance93="99" chance94="99" chance95="99" chance96="99" chance97="99" chance98="99" chance99="99" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="1" adena="481950" sp="1370772" chance76="18" chance77="28" chance78="38" chance79="48" chance80="58" chance81="82" chance82="92" chance83="97" chance84="97" chance85="97" />
|
||||||
<enchant level="2" adena="481950" sp="1370772" chance76="16" chance77="26" chance78="36" chance79="46" chance80="56" chance81="80" chance82="90" chance83="95" chance84="95" chance85="95" chance86="97" chance87="97" chance88="97" chance89="97" chance90="97" chance91="97" chance92="97" chance93="97" chance94="97" chance95="98" chance96="98" chance97="98" chance98="98" chance99="98" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="2" adena="481950" sp="1370772" chance76="16" chance77="26" chance78="36" chance79="46" chance80="56" chance81="80" chance82="90" chance83="95" chance84="95" chance85="95" />
|
||||||
<enchant level="3" adena="481950" sp="1370772" chance76="14" chance77="24" chance78="34" chance79="44" chance80="54" chance81="78" chance82="88" chance83="93" chance84="93" chance85="93" chance86="95" chance87="95" chance88="95" chance89="95" chance90="95" chance91="95" chance92="95" chance93="95" chance94="95" chance95="96" chance96="96" chance97="96" chance98="96" chance99="96" chance100="97" chance101="97" chance102="97" chance103="97" chance104="97" chance105="97" chance106="97" chance107="97" />
|
<enchant level="3" adena="481950" sp="1370772" chance76="14" chance77="24" chance78="34" chance79="44" chance80="54" chance81="78" chance82="88" chance83="93" chance84="93" chance85="93" />
|
||||||
<enchant level="4" adena="554040" sp="1432602" chance76="2" chance77="12" chance78="22" chance79="32" chance80="42" chance81="52" chance82="76" chance83="86" chance84="91" chance85="91" chance86="93" chance87="93" chance88="93" chance89="93" chance90="93" chance91="93" chance92="93" chance93="93" chance94="93" chance95="94" chance96="94" chance97="94" chance98="94" chance99="94" chance100="95" chance101="95" chance102="95" chance103="95" chance104="95" chance105="95" chance106="95" chance107="95" />
|
<enchant level="4" adena="554040" sp="1432602" chance76="2" chance77="12" chance78="22" chance79="32" chance80="42" chance81="52" chance82="76" chance83="86" chance84="91" chance85="91" />
|
||||||
<enchant level="5" adena="554040" sp="1432602" chance76="1" chance77="10" chance78="20" chance79="30" chance80="40" chance81="50" chance82="74" chance83="84" chance84="89" chance85="89" chance86="91" chance87="91" chance88="91" chance89="91" chance90="91" chance91="91" chance92="91" chance93="91" chance94="91" chance95="92" chance96="92" chance97="92" chance98="92" chance99="92" chance100="93" chance101="93" chance102="93" chance103="93" chance104="93" chance105="93" chance106="93" chance107="93" />
|
<enchant level="5" adena="554040" sp="1432602" chance76="1" chance77="10" chance78="20" chance79="30" chance80="40" chance81="50" chance82="74" chance83="84" chance84="89" chance85="89" />
|
||||||
<enchant level="6" adena="554040" sp="1432602" chance76="1" chance77="8" chance78="18" chance79="28" chance80="38" chance81="48" chance82="72" chance83="82" chance84="87" chance85="87" chance86="89" chance87="89" chance88="89" chance89="89" chance90="89" chance91="89" chance92="89" chance93="89" chance94="89" chance95="90" chance96="90" chance97="90" chance98="90" chance99="90" chance100="91" chance101="91" chance102="91" chance103="91" chance104="91" chance105="91" chance106="91" chance107="91" />
|
<enchant level="6" adena="554040" sp="1432602" chance76="1" chance77="8" chance78="18" chance79="28" chance80="38" chance81="48" chance82="72" chance83="82" chance84="87" chance85="87" />
|
||||||
<enchant level="7" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="6" chance79="16" chance80="26" chance81="36" chance82="46" chance83="70" chance84="80" chance85="85" chance86="87" chance87="87" chance88="87" chance89="87" chance90="87" chance91="87" chance92="87" chance93="87" chance94="87" chance95="88" chance96="88" chance97="88" chance98="88" chance99="88" chance100="89" chance101="89" chance102="89" chance103="89" chance104="89" chance105="89" chance106="89" chance107="89" />
|
<enchant level="7" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="6" chance79="16" chance80="26" chance81="36" chance82="46" chance83="70" chance84="80" chance85="85" />
|
||||||
<enchant level="8" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="4" chance79="14" chance80="24" chance81="34" chance82="44" chance83="68" chance84="78" chance85="83" chance86="85" chance87="85" chance88="85" chance89="85" chance90="85" chance91="85" chance92="85" chance93="85" chance94="85" chance95="86" chance96="86" chance97="86" chance98="86" chance99="86" chance100="87" chance101="87" chance102="87" chance103="87" chance104="87" chance105="87" chance106="87" chance107="87" />
|
<enchant level="8" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="4" chance79="14" chance80="24" chance81="34" chance82="44" chance83="68" chance84="78" chance85="83" />
|
||||||
<enchant level="9" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="2" chance79="12" chance80="22" chance81="32" chance82="42" chance83="66" chance84="76" chance85="81" chance86="83" chance87="83" chance88="83" chance89="83" chance90="83" chance91="83" chance92="83" chance93="83" chance94="83" chance95="84" chance96="84" chance97="84" chance98="84" chance99="84" chance100="85" chance101="85" chance102="85" chance103="85" chance104="85" chance105="85" chance106="85" chance107="85" />
|
<enchant level="9" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="2" chance79="12" chance80="22" chance81="32" chance82="42" chance83="66" chance84="76" chance85="81" />
|
||||||
<enchant level="10" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="10" chance81="20" chance82="30" chance83="40" chance84="64" chance85="74" chance86="77" chance87="77" chance88="77" chance89="77" chance90="77" chance91="77" chance92="77" chance93="77" chance94="77" chance95="78" chance96="78" chance97="78" chance98="78" chance99="78" chance100="79" chance101="79" chance102="79" chance103="79" chance104="79" chance105="79" chance106="79" chance107="79" />
|
<enchant level="10" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="10" chance81="20" chance82="30" chance83="40" chance84="64" chance85="74" />
|
||||||
<enchant level="11" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="8" chance81="18" chance82="28" chance83="38" chance84="62" chance85="72" chance86="75" chance87="75" chance88="75" chance89="75" chance90="75" chance91="75" chance92="75" chance93="75" chance94="75" chance95="76" chance96="76" chance97="76" chance98="76" chance99="76" chance100="77" chance101="77" chance102="77" chance103="77" chance104="77" chance105="77" chance106="77" chance107="77" />
|
<enchant level="11" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="8" chance81="18" chance82="28" chance83="38" chance84="62" chance85="72" />
|
||||||
<enchant level="12" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="6" chance81="16" chance82="26" chance83="36" chance84="60" chance85="70" chance86="73" chance87="73" chance88="73" chance89="73" chance90="73" chance91="73" chance92="73" chance93="73" chance94="73" chance95="74" chance96="74" chance97="74" chance98="74" chance99="74" chance100="75" chance101="75" chance102="75" chance103="75" chance104="75" chance105="75" chance106="75" chance107="75" />
|
<enchant level="12" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="6" chance81="16" chance82="26" chance83="36" chance84="60" chance85="70" />
|
||||||
<enchant level="13" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="4" chance82="14" chance83="24" chance84="34" chance85="58" chance86="61" chance87="61" chance88="61" chance89="61" chance90="61" chance91="61" chance92="61" chance93="61" chance94="61" chance95="62" chance96="62" chance97="62" chance98="62" chance99="62" chance100="63" chance101="63" chance102="63" chance103="63" chance104="63" chance105="63" chance106="63" chance107="63" />
|
<enchant level="13" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="4" chance82="14" chance83="24" chance84="34" chance85="58" />
|
||||||
<enchant level="14" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="2" chance82="12" chance83="22" chance84="32" chance85="56" chance86="59" chance87="59" chance88="59" chance89="59" chance90="59" chance91="59" chance92="59" chance93="59" chance94="59" chance95="60" chance96="60" chance97="60" chance98="60" chance99="60" chance100="61" chance101="61" chance102="61" chance103="61" chance104="61" chance105="61" chance106="61" chance107="61" />
|
<enchant level="14" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="2" chance82="12" chance83="22" chance84="32" chance85="56" />
|
||||||
<enchant level="15" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="10" chance83="20" chance84="30" chance85="54" chance86="57" chance87="57" chance88="57" chance89="57" chance90="57" chance91="57" chance92="57" chance93="57" chance94="57" chance95="58" chance96="58" chance97="58" chance98="58" chance99="58" chance100="59" chance101="59" chance102="59" chance103="59" chance104="59" chance105="59" chance106="59" chance107="59" />
|
<enchant level="15" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="10" chance83="20" chance84="30" chance85="54" />
|
||||||
<!--
|
|
||||||
<enchant level="16" adena="850500" sp="1838565" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="8" chance84="18" chance85="28" chance86="52" chance87="62" chance88="67" chance89="67" chance90="67" chance91="69" chance92="69" chance93="69" chance94="69" chance95="69" chance96="69" chance97="69" chance98="69" chance99="69" chance100="70" chance101="70" chance102="70" chance103="70" chance104="70" chance105="71" chance106="71" chance107="71" />
|
|
||||||
<enchant level="17" adena="850500" sp="1838565" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="6" chance84="16" chance85="26" chance86="50" chance87="60" chance88="65" chance89="65" chance90="65" chance91="67" chance92="67" chance93="67" chance94="67" chance95="67" chance96="67" chance97="67" chance98="67" chance99="67" chance100="68" chance101="68" chance102="68" chance103="68" chance104="68" chance105="69" chance106="69" chance107="69" />
|
|
||||||
<enchant level="18" adena="850500" sp="1838565" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="4" chance84="14" chance85="24" chance86="48" chance87="58" chance88="63" chance89="63" chance90="63" chance91="65" chance92="65" chance93="65" chance94="65" chance95="65" chance96="65" chance97="65" chance98="65" chance99="65" chance100="66" chance101="66" chance102="66" chance103="66" chance104="66" chance105="67" chance106="67" chance107="67" />
|
|
||||||
<enchant level="19" adena="926640" sp="2020406" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="2" chance85="12" chance86="22" chance87="46" chance88="56" chance89="61" chance90="61" chance91="63" chance92="63" chance93="63" chance94="63" chance95="63" chance96="63" chance97="63" chance98="63" chance99="63" chance100="64" chance101="64" chance102="64" chance103="64" chance104="64" chance105="65" chance106="65" chance107="65" />
|
|
||||||
<enchant level="20" adena="926640" sp="2020406" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="10" chance86="20" chance87="44" chance88="54" chance89="59" chance90="59" chance91="61" chance92="61" chance93="61" chance94="61" chance95="61" chance96="61" chance97="61" chance98="61" chance99="61" chance100="62" chance101="62" chance102="62" chance103="62" chance104="62" chance105="63" chance106="63" chance107="63" />
|
|
||||||
<enchant level="21" adena="926640" sp="2020406" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="8" chance86="18" chance87="42" chance88="52" chance89="57" chance90="57" chance91="59" chance92="59" chance93="59" chance94="59" chance95="59" chance96="59" chance97="59" chance98="59" chance99="59" chance100="60" chance101="60" chance102="60" chance103="60" chance104="60" chance105="61" chance106="61" chance107="61" />
|
|
||||||
<enchant level="22" adena="1003590" sp="2249039" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="6" chance87="16" chance88="40" chance89="50" chance90="55" chance91="57" chance92="57" chance93="57" chance94="57" chance95="57" chance96="57" chance97="57" chance98="57" chance99="57" chance100="58" chance101="58" chance102="58" chance103="58" chance104="58" chance105="59" chance106="59" chance107="59" />
|
|
||||||
<enchant level="23" adena="1003590" sp="2249039" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="4" chance87="14" chance88="38" chance89="48" chance90="53" chance91="55" chance92="55" chance93="55" chance94="55" chance95="55" chance96="55" chance97="55" chance98="55" chance99="55" chance100="56" chance101="56" chance102="56" chance103="56" chance104="56" chance105="57" chance106="57" chance107="57" />
|
|
||||||
<enchant level="24" adena="1003590" sp="2249039" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="2" chance87="12" chance88="36" chance89="46" chance90="46" chance91="51" chance92="51" chance93="51" chance94="51" chance95="51" chance96="51" chance97="51" chance98="51" chance99="51" chance100="52" chance101="52" chance102="52" chance103="52" chance104="52" chance105="53" chance106="53" chance107="53" />
|
|
||||||
<enchant level="25" adena="1081350" sp="2529464" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="10" chance89="34" chance90="44" chance91="49" chance92="49" chance93="49" chance94="49" chance95="49" chance96="49" chance97="49" chance98="49" chance99="49" chance100="50" chance101="50" chance102="50" chance103="50" chance104="50" chance105="51" chance106="51" chance107="51" />
|
|
||||||
<enchant level="26" adena="1081350" sp="2529464" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="8" chance89="32" chance90="42" chance91="47" chance92="47" chance93="47" chance94="47" chance95="47" chance96="47" chance97="47" chance98="47" chance99="47" chance100="48" chance101="48" chance102="48" chance103="48" chance104="48" chance105="49" chance106="49" chance107="49" />
|
|
||||||
<enchant level="27" adena="1081350" sp="2529464" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="6" chance89="30" chance90="40" chance91="45" chance92="45" chance93="45" chance94="45" chance95="45" chance96="45" chance97="45" chance98="45" chance99="45" chance100="46" chance101="46" chance102="46" chance103="46" chance104="46" chance105="47" chance106="47" chance107="47" />
|
|
||||||
<enchant level="28" adena="1159920" sp="2866681" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="1" chance89="4" chance90="28" chance91="31" chance92="31" chance93="31" chance94="31" chance95="31" chance96="31" chance97="31" chance98="31" chance99="31" chance100="32" chance101="32" chance102="32" chance103="32" chance104="32" chance105="33" chance106="33" chance107="33" />
|
|
||||||
<enchant level="29" adena="1159920" sp="2866681" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="1" chance89="2" chance90="26" chance91="29" chance92="29" chance93="29" chance94="29" chance95="29" chance96="29" chance97="29" chance98="29" chance99="29" chance100="30" chance101="30" chance102="30" chance103="30" chance104="30" chance105="31" chance106="31" chance107="31" />
|
|
||||||
<enchant level="30" adena="1159920" sp="2866681" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="24" chance91="27" chance92="27" chance93="27" chance94="27" chance95="27" chance96="27" chance97="27" chance98="27" chance99="27" chance100="28" chance101="28" chance102="28" chance103="28" chance104="28" chance105="29" chance106="29" chance107="29" />
|
|
||||||
-->
|
|
||||||
</group>
|
</group>
|
||||||
<!-- 3rd Class Attack Type skills -->
|
<!-- 3rd Class Attack Type skills -->
|
||||||
<group id="6">
|
<group id="6">
|
||||||
<enchant level="1" adena="481950" sp="1370772" chance76="18" chance77="28" chance78="38" chance79="48" chance80="58" chance81="82" chance82="92" chance83="97" chance84="97" chance85="97" chance86="99" chance87="99" chance88="99" chance89="99" chance90="99" chance91="99" chance92="99" chance93="99" chance94="99" chance95="99" chance96="99" chance97="99" chance98="99" chance99="99" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="1" adena="481950" sp="1370772" chance76="18" chance77="28" chance78="38" chance79="48" chance80="58" chance81="82" chance82="92" chance83="97" chance84="97" chance85="97" />
|
||||||
<enchant level="2" adena="481950" sp="1370772" chance76="16" chance77="26" chance78="36" chance79="46" chance80="56" chance81="80" chance82="90" chance83="95" chance84="95" chance85="95" chance86="97" chance87="97" chance88="97" chance89="97" chance90="97" chance91="97" chance92="97" chance93="97" chance94="97" chance95="98" chance96="98" chance97="98" chance98="98" chance99="98" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="2" adena="481950" sp="1370772" chance76="16" chance77="26" chance78="36" chance79="46" chance80="56" chance81="80" chance82="90" chance83="95" chance84="95" chance85="95" />
|
||||||
<enchant level="3" adena="481950" sp="1370772" chance76="14" chance77="24" chance78="34" chance79="44" chance80="54" chance81="78" chance82="88" chance83="93" chance84="93" chance85="93" chance86="95" chance87="95" chance88="95" chance89="95" chance90="95" chance91="95" chance92="95" chance93="95" chance94="95" chance95="96" chance96="96" chance97="96" chance98="96" chance99="96" chance100="97" chance101="97" chance102="97" chance103="97" chance104="97" chance105="97" chance106="97" chance107="97" />
|
<enchant level="3" adena="481950" sp="1370772" chance76="14" chance77="24" chance78="34" chance79="44" chance80="54" chance81="78" chance82="88" chance83="93" chance84="93" chance85="93" />
|
||||||
<enchant level="4" adena="554040" sp="1432602" chance76="2" chance77="12" chance78="22" chance79="32" chance80="42" chance81="52" chance82="76" chance83="86" chance84="91" chance85="91" chance86="93" chance87="93" chance88="93" chance89="93" chance90="93" chance91="93" chance92="93" chance93="93" chance94="93" chance95="94" chance96="94" chance97="94" chance98="94" chance99="94" chance100="95" chance101="95" chance102="95" chance103="95" chance104="95" chance105="95" chance106="95" chance107="95" />
|
<enchant level="4" adena="554040" sp="1432602" chance76="2" chance77="12" chance78="22" chance79="32" chance80="42" chance81="52" chance82="76" chance83="86" chance84="91" chance85="91" />
|
||||||
<enchant level="5" adena="554040" sp="1432602" chance76="1" chance77="10" chance78="20" chance79="30" chance80="40" chance81="50" chance82="74" chance83="84" chance84="89" chance85="89" chance86="91" chance87="91" chance88="91" chance89="91" chance90="91" chance91="91" chance92="91" chance93="91" chance94="91" chance95="92" chance96="92" chance97="92" chance98="92" chance99="92" chance100="93" chance101="93" chance102="93" chance103="93" chance104="93" chance105="93" chance106="93" chance107="93" />
|
<enchant level="5" adena="554040" sp="1432602" chance76="1" chance77="10" chance78="20" chance79="30" chance80="40" chance81="50" chance82="74" chance83="84" chance84="89" chance85="89" />
|
||||||
<enchant level="6" adena="554040" sp="1432602" chance76="1" chance77="8" chance78="18" chance79="28" chance80="38" chance81="48" chance82="72" chance83="82" chance84="87" chance85="87" chance86="89" chance87="89" chance88="89" chance89="89" chance90="89" chance91="89" chance92="89" chance93="89" chance94="89" chance95="90" chance96="90" chance97="90" chance98="90" chance99="90" chance100="91" chance101="91" chance102="91" chance103="91" chance104="91" chance105="91" chance106="91" chance107="91" />
|
<enchant level="6" adena="554040" sp="1432602" chance76="1" chance77="8" chance78="18" chance79="28" chance80="38" chance81="48" chance82="72" chance83="82" chance84="87" chance85="87" />
|
||||||
<enchant level="7" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="6" chance79="16" chance80="26" chance81="36" chance82="46" chance83="70" chance84="80" chance85="85" chance86="87" chance87="87" chance88="87" chance89="87" chance90="87" chance91="87" chance92="87" chance93="87" chance94="87" chance95="88" chance96="88" chance97="88" chance98="88" chance99="88" chance100="89" chance101="89" chance102="89" chance103="89" chance104="89" chance105="89" chance106="89" chance107="89" />
|
<enchant level="7" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="6" chance79="16" chance80="26" chance81="36" chance82="46" chance83="70" chance84="80" chance85="85" />
|
||||||
<enchant level="8" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="4" chance79="14" chance80="24" chance81="34" chance82="44" chance83="68" chance84="78" chance85="83" chance86="85" chance87="85" chance88="85" chance89="85" chance90="85" chance91="85" chance92="85" chance93="85" chance94="85" chance95="86" chance96="86" chance97="86" chance98="86" chance99="86" chance100="87" chance101="87" chance102="87" chance103="87" chance104="87" chance105="87" chance106="87" chance107="87" />
|
<enchant level="8" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="4" chance79="14" chance80="24" chance81="34" chance82="44" chance83="68" chance84="78" chance85="83" />
|
||||||
<enchant level="9" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="2" chance79="12" chance80="22" chance81="32" chance82="42" chance83="66" chance84="76" chance85="81" chance86="83" chance87="83" chance88="83" chance89="83" chance90="83" chance91="83" chance92="83" chance93="83" chance94="83" chance95="84" chance96="84" chance97="84" chance98="84" chance99="84" chance100="85" chance101="85" chance102="85" chance103="85" chance104="85" chance105="85" chance106="85" chance107="85" />
|
<enchant level="9" adena="626940" sp="1528794" chance76="1" chance77="1" chance78="2" chance79="12" chance80="22" chance81="32" chance82="42" chance83="66" chance84="76" chance85="81" />
|
||||||
<enchant level="10" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="10" chance81="20" chance82="30" chance83="40" chance84="64" chance85="74" chance86="77" chance87="77" chance88="77" chance89="77" chance90="77" chance91="77" chance92="77" chance93="77" chance94="77" chance95="78" chance96="78" chance97="78" chance98="78" chance99="78" chance100="79" chance101="79" chance102="79" chance103="79" chance104="79" chance105="79" chance106="79" chance107="79" />
|
<enchant level="10" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="10" chance81="20" chance82="30" chance83="40" chance84="64" chance85="74" />
|
||||||
<enchant level="11" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="8" chance81="18" chance82="28" chance83="38" chance84="62" chance85="72" chance86="75" chance87="75" chance88="75" chance89="75" chance90="75" chance91="75" chance92="75" chance93="75" chance94="75" chance95="76" chance96="76" chance97="76" chance98="76" chance99="76" chance100="77" chance101="77" chance102="77" chance103="77" chance104="77" chance105="77" chance106="77" chance107="77" />
|
<enchant level="11" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="8" chance81="18" chance82="28" chance83="38" chance84="62" chance85="72" />
|
||||||
<enchant level="12" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="6" chance81="16" chance82="26" chance83="36" chance84="60" chance85="70" chance86="73" chance87="73" chance88="73" chance89="73" chance90="73" chance91="73" chance92="73" chance93="73" chance94="73" chance95="74" chance96="74" chance97="74" chance98="74" chance99="74" chance100="75" chance101="75" chance102="75" chance103="75" chance104="75" chance105="75" chance106="75" chance107="75" />
|
<enchant level="12" adena="700650" sp="1595259" chance76="1" chance77="1" chance78="1" chance79="1" chance80="6" chance81="16" chance82="26" chance83="36" chance84="60" chance85="70" />
|
||||||
<enchant level="13" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="4" chance82="14" chance83="24" chance84="34" chance85="58" chance86="61" chance87="61" chance88="61" chance89="61" chance90="61" chance91="61" chance92="61" chance93="61" chance94="61" chance95="62" chance96="62" chance97="62" chance98="62" chance99="62" chance100="63" chance101="63" chance102="63" chance103="63" chance104="63" chance105="63" chance106="63" chance107="63" />
|
<enchant level="13" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="4" chance82="14" chance83="24" chance84="34" chance85="58" />
|
||||||
<enchant level="14" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="2" chance82="12" chance83="22" chance84="32" chance85="56" chance86="59" chance87="59" chance88="59" chance89="59" chance90="59" chance91="59" chance92="59" chance93="59" chance94="59" chance95="60" chance96="60" chance97="60" chance98="60" chance99="60" chance100="61" chance101="61" chance102="61" chance103="61" chance104="61" chance105="61" chance106="61" chance107="61" />
|
<enchant level="14" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="2" chance82="12" chance83="22" chance84="32" chance85="56" />
|
||||||
<enchant level="15" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="10" chance83="20" chance84="30" chance85="54" chance86="57" chance87="57" chance88="57" chance89="57" chance90="57" chance91="57" chance92="57" chance93="57" chance94="57" chance95="58" chance96="58" chance97="58" chance98="58" chance99="58" chance100="59" chance101="59" chance102="59" chance103="59" chance104="59" chance105="59" chance106="59" chance107="59" />
|
<enchant level="15" adena="775170" sp="1698516" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="10" chance83="20" chance84="30" chance85="54" />
|
||||||
<!--
|
|
||||||
<enchant level="16" adena="850500" sp="1838565" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="8" chance84="18" chance85="28" chance86="52" chance87="62" chance88="67" chance89="67" chance90="67" chance91="69" chance92="69" chance93="69" chance94="69" chance95="69" chance96="69" chance97="69" chance98="69" chance99="69" chance100="70" chance101="70" chance102="70" chance103="70" chance104="70" chance105="71" chance106="71" chance107="71" />
|
|
||||||
<enchant level="17" adena="850500" sp="1838565" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="6" chance84="16" chance85="26" chance86="50" chance87="60" chance88="65" chance89="65" chance90="65" chance91="67" chance92="67" chance93="67" chance94="67" chance95="67" chance96="67" chance97="67" chance98="67" chance99="67" chance100="68" chance101="68" chance102="68" chance103="68" chance104="68" chance105="69" chance106="69" chance107="69" />
|
|
||||||
<enchant level="18" adena="850500" sp="1838565" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="4" chance84="14" chance85="24" chance86="48" chance87="58" chance88="63" chance89="63" chance90="63" chance91="65" chance92="65" chance93="65" chance94="65" chance95="65" chance96="65" chance97="65" chance98="65" chance99="65" chance100="66" chance101="66" chance102="66" chance103="66" chance104="66" chance105="67" chance106="67" chance107="67" />
|
|
||||||
<enchant level="19" adena="926640" sp="2020406" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="2" chance85="12" chance86="22" chance87="46" chance88="56" chance89="61" chance90="61" chance91="63" chance92="63" chance93="63" chance94="63" chance95="63" chance96="63" chance97="63" chance98="63" chance99="63" chance100="64" chance101="64" chance102="64" chance103="64" chance104="64" chance105="65" chance106="65" chance107="65" />
|
|
||||||
<enchant level="20" adena="926640" sp="2020406" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="10" chance86="20" chance87="44" chance88="54" chance89="59" chance90="59" chance91="61" chance92="61" chance93="61" chance94="61" chance95="61" chance96="61" chance97="61" chance98="61" chance99="61" chance100="62" chance101="62" chance102="62" chance103="62" chance104="62" chance105="63" chance106="63" chance107="63" />
|
|
||||||
<enchant level="21" adena="926640" sp="2020406" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="8" chance86="18" chance87="42" chance88="52" chance89="57" chance90="57" chance91="59" chance92="59" chance93="59" chance94="59" chance95="59" chance96="59" chance97="59" chance98="59" chance99="59" chance100="60" chance101="60" chance102="60" chance103="60" chance104="60" chance105="61" chance106="61" chance107="61" />
|
|
||||||
<enchant level="22" adena="1003590" sp="2249039" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="6" chance87="16" chance88="40" chance89="50" chance90="55" chance91="57" chance92="57" chance93="57" chance94="57" chance95="57" chance96="57" chance97="57" chance98="57" chance99="57" chance100="58" chance101="58" chance102="58" chance103="58" chance104="58" chance105="59" chance106="59" chance107="59" />
|
|
||||||
<enchant level="23" adena="1003590" sp="2249039" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="4" chance87="14" chance88="38" chance89="48" chance90="53" chance91="55" chance92="55" chance93="55" chance94="55" chance95="55" chance96="55" chance97="55" chance98="55" chance99="55" chance100="56" chance101="56" chance102="56" chance103="56" chance104="56" chance105="57" chance106="57" chance107="57" />
|
|
||||||
<enchant level="24" adena="1003590" sp="2249039" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="2" chance87="12" chance88="36" chance89="46" chance90="46" chance91="51" chance92="51" chance93="51" chance94="51" chance95="51" chance96="51" chance97="51" chance98="51" chance99="51" chance100="52" chance101="52" chance102="52" chance103="52" chance104="52" chance105="53" chance106="53" chance107="53" />
|
|
||||||
<enchant level="25" adena="1081350" sp="2529464" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="10" chance89="34" chance90="44" chance91="49" chance92="49" chance93="49" chance94="49" chance95="49" chance96="49" chance97="49" chance98="49" chance99="49" chance100="50" chance101="50" chance102="50" chance103="50" chance104="50" chance105="51" chance106="51" chance107="51" />
|
|
||||||
<enchant level="26" adena="1081350" sp="2529464" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="8" chance89="32" chance90="42" chance91="47" chance92="47" chance93="47" chance94="47" chance95="47" chance96="47" chance97="47" chance98="47" chance99="47" chance100="48" chance101="48" chance102="48" chance103="48" chance104="48" chance105="49" chance106="49" chance107="49" />
|
|
||||||
<enchant level="27" adena="1081350" sp="2529464" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="6" chance89="30" chance90="40" chance91="45" chance92="45" chance93="45" chance94="45" chance95="45" chance96="45" chance97="45" chance98="45" chance99="45" chance100="46" chance101="46" chance102="46" chance103="46" chance104="46" chance105="47" chance106="47" chance107="47" />
|
|
||||||
<enchant level="28" adena="1159920" sp="2866681" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="1" chance89="4" chance90="28" chance91="31" chance92="31" chance93="31" chance94="31" chance95="31" chance96="31" chance97="31" chance98="31" chance99="31" chance100="32" chance101="32" chance102="32" chance103="32" chance104="32" chance105="33" chance106="33" chance107="33" />
|
|
||||||
<enchant level="29" adena="1159920" sp="2866681" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="1" chance89="2" chance90="26" chance91="29" chance92="29" chance93="29" chance94="29" chance95="29" chance96="29" chance97="29" chance98="29" chance99="29" chance100="30" chance101="30" chance102="30" chance103="30" chance104="30" chance105="31" chance106="31" chance107="31" />
|
|
||||||
<enchant level="30" adena="1159920" sp="2866681" chance76="1" chance77="1" chance78="1" chance79="1" chance80="1" chance81="1" chance82="1" chance83="1" chance84="1" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="24" chance91="27" chance92="27" chance93="27" chance94="27" chance95="27" chance96="27" chance97="27" chance98="27" chance99="27" chance100="28" chance101="28" chance102="28" chance103="28" chance104="28" chance105="29" chance106="29" chance107="29" />
|
|
||||||
-->
|
|
||||||
</group>
|
</group>
|
||||||
<!-- 4rd Class skills GOD -->
|
<!-- 4rd Class skills GOD -->
|
||||||
<group id="10">
|
<group id="10">
|
||||||
<!-- normal="30297" oblivion="30300" discipline="30299" mastery="30298" -->
|
<!-- normal="30297" oblivion="30300" discipline="30299" mastery="30298" -->
|
||||||
<enchant level="1" adena="1332450" sp="2091345" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="85" chance86="86" chance87="87" chance88="88" chance89="89" chance90="90" chance91="91" chance92="92" chance93="93" chance94="94" chance95="95" chance96="96" chance97="97" chance98="98" chance99="99" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="1" adena="1332450" sp="2091345" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="85" chance86="86" chance87="87" chance88="88" chance89="89" chance90="90" chance91="91" chance92="92" chance93="93" chance94="94" chance95="95" chance96="96" chance97="97" chance98="98" chance99="99" />
|
||||||
<enchant level="2" adena="3997349" sp="6274037" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="80" chance86="81" chance87="82" chance88="83" chance89="84" chance90="85" chance91="86" chance92="87" chance93="88" chance94="89" chance95="90" chance96="91" chance97="92" chance98="93" chance99="94" chance100="95" chance101="96" chance102="97" chance103="98" chance104="99" chance105="99" chance106="99" chance107="99" />
|
<enchant level="2" adena="3997349" sp="6274037" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="80" chance86="81" chance87="82" chance88="83" chance89="84" chance90="85" chance91="86" chance92="87" chance93="88" chance94="89" chance95="90" chance96="91" chance97="92" chance98="93" chance99="94" />
|
||||||
<enchant level="3" adena="6662250" sp="10456729" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="75" chance86="76" chance87="77" chance88="78" chance89="79" chance90="80" chance91="81" chance92="82" chance93="83" chance94="84" chance95="85" chance96="86" chance97="87" chance98="88" chance99="89" chance100="90" chance101="91" chance102="92" chance103="93" chance104="94" chance105="95" chance106="96" chance107="97" />
|
<enchant level="3" adena="6662250" sp="10456729" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="75" chance86="76" chance87="77" chance88="78" chance89="79" chance90="80" chance91="81" chance92="82" chance93="83" chance94="84" chance95="85" chance96="86" chance97="87" chance98="88" chance99="89" />
|
||||||
<enchant level="4" adena="9327150" sp="14639421" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="70" chance86="71" chance87="72" chance88="73" chance89="74" chance90="75" chance91="76" chance92="77" chance93="78" chance94="79" chance95="80" chance96="81" chance97="82" chance98="83" chance99="84" chance100="85" chance101="86" chance102="87" chance103="88" chance104="89" chance105="90" chance106="91" chance107="92" />
|
<enchant level="4" adena="9327150" sp="14639421" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="70" chance86="71" chance87="72" chance88="73" chance89="74" chance90="75" chance91="76" chance92="77" chance93="78" chance94="79" chance95="80" chance96="81" chance97="82" chance98="83" chance99="84" />
|
||||||
<enchant level="5" adena="11992050" sp="18822133" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="65" chance86="66" chance87="67" chance88="68" chance89="69" chance90="70" chance91="71" chance92="72" chance93="73" chance94="74" chance95="75" chance96="76" chance97="77" chance98="78" chance99="79" chance100="80" chance101="81" chance102="82" chance103="83" chance104="84" chance105="85" chance106="86" chance107="87" />
|
<enchant level="5" adena="11992050" sp="18822133" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="65" chance86="66" chance87="67" chance88="68" chance89="69" chance90="70" chance91="71" chance92="72" chance93="73" chance94="74" chance95="75" chance96="76" chance97="77" chance98="78" chance99="79" />
|
||||||
<enchant level="6" adena="14656950" sp="23004804" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="60" chance86="61" chance87="62" chance88="63" chance89="64" chance90="65" chance91="66" chance92="67" chance93="68" chance94="69" chance95="70" chance96="71" chance97="72" chance98="73" chance99="74" chance100="75" chance101="76" chance102="77" chance103="78" chance104="79" chance105="80" chance106="81" chance107="82" />
|
<enchant level="6" adena="14656950" sp="23004804" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="60" chance86="61" chance87="62" chance88="63" chance89="64" chance90="65" chance91="66" chance92="67" chance93="68" chance94="69" chance95="70" chance96="71" chance97="72" chance98="73" chance99="74" />
|
||||||
<enchant level="7" adena="17321850" sp="27187496" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="55" chance86="56" chance87="57" chance88="58" chance89="59" chance90="60" chance91="61" chance92="62" chance93="63" chance94="64" chance95="65" chance96="66" chance97="67" chance98="68" chance99="69" chance100="70" chance101="71" chance102="72" chance103="73" chance104="74" chance105="75" chance106="81" chance107="77" />
|
<enchant level="7" adena="17321850" sp="27187496" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="30" chance86="56" chance87="57" chance88="58" chance89="59" chance90="60" chance91="61" chance92="62" chance93="63" chance94="64" chance95="65" chance96="66" chance97="67" chance98="68" chance99="69" />
|
||||||
<enchant level="8" adena="19986750" sp="31370188" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="50" chance86="51" chance87="52" chance88="53" chance89="54" chance90="55" chance91="56" chance92="57" chance93="58" chance94="59" chance95="60" chance96="61" chance97="62" chance98="63" chance99="64" chance100="65" chance101="66" chance102="67" chance103="68" chance104="69" chance105="70" chance106="81" chance107="72" />
|
<enchant level="8" adena="19986750" sp="31370188" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="25" chance86="26" chance87="52" chance88="53" chance89="54" chance90="55" chance91="56" chance92="57" chance93="58" chance94="59" chance95="60" chance96="61" chance97="62" chance98="63" chance99="64" />
|
||||||
<enchant level="9" adena="22651650" sp="35552880" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="45" chance86="46" chance87="47" chance88="48" chance89="49" chance90="50" chance91="51" chance92="52" chance93="53" chance94="54" chance95="55" chance96="56" chance97="57" chance98="58" chance99="59" chance100="60" chance101="61" chance102="62" chance103="63" chance104="64" chance105="65" chance106="81" chance107="67" />
|
<enchant level="9" adena="22651650" sp="35552880" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="20" chance86="21" chance87="22" chance88="48" chance89="49" chance90="50" chance91="51" chance92="52" chance93="53" chance94="54" chance95="55" chance96="56" chance97="57" chance98="58" chance99="59" />
|
||||||
<enchant level="10" adena="25316550" sp="39735572" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="40" chance86="41" chance87="42" chance88="43" chance89="44" chance90="45" chance91="46" chance92="47" chance93="48" chance94="49" chance95="50" chance96="51" chance97="52" chance98="53" chance99="54" chance100="55" chance101="56" chance102="57" chance103="58" chance104="59" chance105="60" chance106="81" chance107="62" />
|
<enchant level="10" adena="25316550" sp="39735572" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="15" chance86="16" chance87="17" chance88="18" chance89="44" chance90="45" chance91="46" chance92="47" chance93="48" chance94="49" chance95="50" chance96="51" chance97="52" chance98="53" chance99="54" />
|
||||||
<!--
|
|
||||||
<enchant level="11" adena="27981450" sp="43918264" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="36" chance86="37" chance87="38" chance88="39" chance89="40" chance90="41" chance91="42" chance92="43" chance93="44" chance94="45" chance95="46" chance96="47" chance97="48" chance98="49" chance99="50" chance100="51" chance101="52" chance102="53" chance103="54" chance104="55" chance105="56" chance106="81" chance107="58" />
|
|
||||||
<enchant level="12" adena="30646350" sp="48100956" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="32" chance86="33" chance87="34" chance88="35" chance89="36" chance90="37" chance91="38" chance92="39" chance93="40" chance94="41" chance95="42" chance96="43" chance97="44" chance98="45" chance99="46" chance100="47" chance101="48" chance102="49" chance103="50" chance104="51" chance105="52" chance106="81" chance107="54" />
|
|
||||||
<enchant level="13" adena="33311250" sp="52283648" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="28" chance86="29" chance87="30" chance88="31" chance89="32" chance90="33" chance91="34" chance92="35" chance93="36" chance94="37" chance95="38" chance96="39" chance97="40" chance98="41" chance99="42" chance100="43" chance101="44" chance102="45" chance103="46" chance104="47" chance105="48" chance106="81" chance107="50" />
|
|
||||||
<enchant level="14" adena="35976150" sp="56466340" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="24" chance86="25" chance87="26" chance88="27" chance89="28" chance90="29" chance91="30" chance92="31" chance93="32" chance94="33" chance95="34" chance96="35" chance97="36" chance98="37" chance99="38" chance100="39" chance101="40" chance102="41" chance103="42" chance104="43" chance105="44" chance106="81" chance107="46" />
|
|
||||||
<enchant level="15" adena="38641050" sp="60649032" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="20" chance86="21" chance87="22" chance88="23" chance89="24" chance90="25" chance91="26" chance92="27" chance93="28" chance94="29" chance95="30" chance96="31" chance97="32" chance98="33" chance99="34" chance100="35" chance101="36" chance102="37" chance103="38" chance104="39" chance105="40" chance106="81" chance107="42" />
|
|
||||||
<enchant level="16" adena="41305950" sp="64831724" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="17" chance86="18" chance87="19" chance88="20" chance89="21" chance90="22" chance91="23" chance92="24" chance93="25" chance94="26" chance95="27" chance96="28" chance97="29" chance98="30" chance99="31" chance100="32" chance101="33" chance102="34" chance103="35" chance104="36" chance105="37" chance106="81" chance107="39" />
|
|
||||||
<enchant level="17" adena="43970850" sp="69014416" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="14" chance86="15" chance87="16" chance88="17" chance89="18" chance90="19" chance91="20" chance92="21" chance93="22" chance94="23" chance95="24" chance96="25" chance97="26" chance98="27" chance99="28" chance100="29" chance101="30" chance102="31" chance103="32" chance104="33" chance105="34" chance106="81" chance107="36" />
|
|
||||||
<enchant level="18" adena="46635750" sp="73197108" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="11" chance86="12" chance87="13" chance88="14" chance89="15" chance90="16" chance91="17" chance92="18" chance93="19" chance94="20" chance95="21" chance96="22" chance97="23" chance98="24" chance99="25" chance100="26" chance101="27" chance102="28" chance103="29" chance104="30" chance105="31" chance106="81" chance107="33" />
|
|
||||||
<enchant level="19" adena="49300650" sp="77379800" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="8" chance86="9" chance87="10" chance88="11" chance89="12" chance90="13" chance91="14" chance92="15" chance93="16" chance94="17" chance95="18" chance96="19" chance97="20" chance98="21" chance99="22" chance100="23" chance101="24" chance102="25" chance103="26" chance104="27" chance105="28" chance106="81" chance107="30" />
|
|
||||||
<enchant level="20" adena="51965550" sp="81562492" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="5" chance86="6" chance87="7" chance88="8" chance89="9" chance90="10" chance91="11" chance92="12" chance93="13" chance94="14" chance95="15" chance96="16" chance97="17" chance98="18" chance99="19" chance100="20" chance101="21" chance102="22" chance103="23" chance104="24" chance105="25" chance106="81" chance107="27" />
|
|
||||||
<enchant level="21" adena="54630450" sp="85745184" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="3" chance86="4" chance87="5" chance88="6" chance89="7" chance90="8" chance91="9" chance92="10" chance93="11" chance94="12" chance95="13" chance96="14" chance97="15" chance98="16" chance99="17" chance100="18" chance101="19" chance102="20" chance103="21" chance104="22" chance105="23" chance106="81" chance107="25" />
|
|
||||||
<enchant level="22" adena="57295350" sp="89927876" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="2" chance87="3" chance88="4" chance89="5" chance90="6" chance91="7" chance92="8" chance93="9" chance94="10" chance95="11" chance96="12" chance97="13" chance98="14" chance99="15" chance100="16" chance101="17" chance102="18" chance103="19" chance104="20" chance105="21" chance106="81" chance107="23" />
|
|
||||||
<enchant level="23" adena="59960250" sp="94110568" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="2" chance89="3" chance90="4" chance91="5" chance92="6" chance93="7" chance94="8" chance95="9" chance96="10" chance97="11" chance98="12" chance99="13" chance100="14" chance101="15" chance102="16" chance103="17" chance104="18" chance105="19" chance106="81" chance107="21" />
|
|
||||||
<enchant level="24" adena="62625150" sp="98293260" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="2" chance91="3" chance92="4" chance93="5" chance94="6" chance95="7" chance96="8" chance97="9" chance98="10" chance99="11" chance100="12" chance101="13" chance102="14" chance103="15" chance104="16" chance105="17" chance106="81" chance107="19" />
|
|
||||||
<enchant level="25" adena="65290050" sp="102475952" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="2" chance93="3" chance94="4" chance95="5" chance96="6" chance97="7" chance98="8" chance99="9" chance100="10" chance101="11" chance102="12" chance103="13" chance104="14" chance105="15" chance106="81" chance107="17" />
|
|
||||||
<enchant level="26" adena="67954950" sp="106658644" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="2" chance94="3" chance95="4" chance96="5" chance97="6" chance98="7" chance99="8" chance100="9" chance101="10" chance102="11" chance103="12" chance104="13" chance105="14" chance106="81" chance107="16" />
|
|
||||||
<enchant level="27" adena="70619850" sp="110841336" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="1" chance94="2" chance95="3" chance96="4" chance97="5" chance98="6" chance99="7" chance100="8" chance101="9" chance102="10" chance103="11" chance104="12" chance105="13" chance106="81" chance107="15" />
|
|
||||||
<enchant level="28" adena="73284750" sp="115024028" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="1" chance94="1" chance95="2" chance96="3" chance97="4" chance98="5" chance99="6" chance100="7" chance101="8" chance102="9" chance103="10" chance104="11" chance105="12" chance106="81" chance107="14" />
|
|
||||||
<enchant level="29" adena="75949650" sp="119206720" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="1" chance94="1" chance95="1" chance96="2" chance97="3" chance98="4" chance99="5" chance100="6" chance101="7" chance102="8" chance103="9" chance104="10" chance105="11" chance106="81" chance107="13" />
|
|
||||||
<enchant level="30" adena="78614550" sp="123389412" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="1" chance94="1" chance95="1" chance96="1" chance97="2" chance98="3" chance99="4" chance100="5" chance101="6" chance102="7" chance103="8" chance104="9" chance105="10" chance106="81" chance107="12" />
|
|
||||||
-->
|
|
||||||
</group>
|
|
||||||
<!-- 4rd Class skills GOD +20-->
|
|
||||||
<group id="11">
|
|
||||||
<!-- normal="30297" oblivion="30300" discipline="30299" mastery="30298" -->
|
|
||||||
<enchant level="1" adena="1332450" sp="2091345" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="85" chance86="86" chance87="87" chance88="88" chance89="89" chance90="90" chance91="91" chance92="92" chance93="93" chance94="94" chance95="95" chance96="96" chance97="97" chance98="98" chance99="99" chance100="99" chance101="99" chance102="99" chance103="99" chance104="99" chance105="99" chance106="99" chance107="99" />
|
|
||||||
<enchant level="2" adena="3997349" sp="6274037" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="80" chance86="81" chance87="82" chance88="83" chance89="84" chance90="85" chance91="86" chance92="87" chance93="88" chance94="89" chance95="90" chance96="91" chance97="92" chance98="93" chance99="94" chance100="95" chance101="96" chance102="97" chance103="98" chance104="99" chance105="99" chance106="99" chance107="99" />
|
|
||||||
<enchant level="3" adena="6662250" sp="10456729" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="75" chance86="76" chance87="77" chance88="78" chance89="79" chance90="80" chance91="81" chance92="82" chance93="83" chance94="84" chance95="85" chance96="86" chance97="87" chance98="88" chance99="89" chance100="90" chance101="91" chance102="92" chance103="93" chance104="94" chance105="95" chance106="96" chance107="97" />
|
|
||||||
<enchant level="4" adena="9327150" sp="14639421" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="70" chance86="71" chance87="72" chance88="73" chance89="74" chance90="75" chance91="76" chance92="77" chance93="78" chance94="79" chance95="80" chance96="81" chance97="82" chance98="83" chance99="84" chance100="85" chance101="86" chance102="87" chance103="88" chance104="89" chance105="90" chance106="91" chance107="92" />
|
|
||||||
<enchant level="5" adena="11992050" sp="18822133" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="65" chance86="66" chance87="67" chance88="68" chance89="69" chance90="70" chance91="71" chance92="72" chance93="73" chance94="74" chance95="75" chance96="76" chance97="77" chance98="78" chance99="79" chance100="80" chance101="81" chance102="82" chance103="83" chance104="84" chance105="85" chance106="86" chance107="87" />
|
|
||||||
<enchant level="6" adena="14656950" sp="23004804" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="60" chance86="61" chance87="62" chance88="63" chance89="64" chance90="65" chance91="66" chance92="67" chance93="68" chance94="69" chance95="70" chance96="71" chance97="72" chance98="73" chance99="74" chance100="75" chance101="76" chance102="77" chance103="78" chance104="79" chance105="80" chance106="81" chance107="82" />
|
|
||||||
<enchant level="7" adena="17321850" sp="27187496" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="55" chance86="56" chance87="57" chance88="58" chance89="59" chance90="60" chance91="61" chance92="62" chance93="63" chance94="64" chance95="65" chance96="66" chance97="67" chance98="68" chance99="69" chance100="70" chance101="71" chance102="72" chance103="73" chance104="74" chance105="75" chance106="81" chance107="77" />
|
|
||||||
<enchant level="8" adena="19986750" sp="31370188" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="50" chance86="51" chance87="52" chance88="53" chance89="54" chance90="55" chance91="56" chance92="57" chance93="58" chance94="59" chance95="60" chance96="61" chance97="62" chance98="63" chance99="64" chance100="65" chance101="66" chance102="67" chance103="68" chance104="69" chance105="70" chance106="81" chance107="72" />
|
|
||||||
<enchant level="9" adena="22651650" sp="35552880" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="45" chance86="46" chance87="47" chance88="48" chance89="49" chance90="50" chance91="51" chance92="52" chance93="53" chance94="54" chance95="55" chance96="56" chance97="57" chance98="58" chance99="59" chance100="60" chance101="61" chance102="62" chance103="63" chance104="64" chance105="65" chance106="81" chance107="67" />
|
|
||||||
<enchant level="10" adena="25316550" sp="39735572" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="40" chance86="41" chance87="42" chance88="43" chance89="44" chance90="45" chance91="46" chance92="47" chance93="48" chance94="49" chance95="50" chance96="51" chance97="52" chance98="53" chance99="54" chance100="55" chance101="56" chance102="57" chance103="58" chance104="59" chance105="60" chance106="81" chance107="62" />
|
|
||||||
<enchant level="11" adena="27981450" sp="43918264" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="36" chance86="37" chance87="38" chance88="39" chance89="40" chance90="41" chance91="42" chance92="43" chance93="44" chance94="45" chance95="46" chance96="47" chance97="48" chance98="49" chance99="50" chance100="51" chance101="52" chance102="53" chance103="54" chance104="55" chance105="56" chance106="81" chance107="58" />
|
|
||||||
<enchant level="12" adena="30646350" sp="48100956" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="32" chance86="33" chance87="34" chance88="35" chance89="36" chance90="37" chance91="38" chance92="39" chance93="40" chance94="41" chance95="42" chance96="43" chance97="44" chance98="45" chance99="46" chance100="47" chance101="48" chance102="49" chance103="50" chance104="51" chance105="52" chance106="81" chance107="54" />
|
|
||||||
<enchant level="13" adena="33311250" sp="52283648" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="28" chance86="29" chance87="30" chance88="31" chance89="32" chance90="33" chance91="34" chance92="35" chance93="36" chance94="37" chance95="38" chance96="39" chance97="40" chance98="41" chance99="42" chance100="43" chance101="44" chance102="45" chance103="46" chance104="47" chance105="48" chance106="81" chance107="50" />
|
|
||||||
<enchant level="14" adena="35976150" sp="56466340" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="24" chance86="25" chance87="26" chance88="27" chance89="28" chance90="29" chance91="30" chance92="31" chance93="32" chance94="33" chance95="34" chance96="35" chance97="36" chance98="37" chance99="38" chance100="39" chance101="40" chance102="41" chance103="42" chance104="43" chance105="44" chance106="81" chance107="46" />
|
|
||||||
<enchant level="15" adena="38641050" sp="60649032" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="20" chance86="21" chance87="22" chance88="23" chance89="24" chance90="25" chance91="26" chance92="27" chance93="28" chance94="29" chance95="30" chance96="31" chance97="32" chance98="33" chance99="34" chance100="35" chance101="36" chance102="37" chance103="38" chance104="39" chance105="40" chance106="81" chance107="42" />
|
|
||||||
<enchant level="16" adena="41305950" sp="64831724" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="17" chance86="18" chance87="19" chance88="20" chance89="21" chance90="22" chance91="23" chance92="24" chance93="25" chance94="26" chance95="27" chance96="28" chance97="29" chance98="30" chance99="31" chance100="32" chance101="33" chance102="34" chance103="35" chance104="36" chance105="37" chance106="81" chance107="39" />
|
|
||||||
<enchant level="17" adena="43970850" sp="69014416" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="14" chance86="15" chance87="16" chance88="17" chance89="18" chance90="19" chance91="20" chance92="21" chance93="22" chance94="23" chance95="24" chance96="25" chance97="26" chance98="27" chance99="28" chance100="29" chance101="30" chance102="31" chance103="32" chance104="33" chance105="34" chance106="81" chance107="36" />
|
|
||||||
<enchant level="18" adena="46635750" sp="73197108" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="11" chance86="12" chance87="13" chance88="14" chance89="15" chance90="16" chance91="17" chance92="18" chance93="19" chance94="20" chance95="21" chance96="22" chance97="23" chance98="24" chance99="25" chance100="26" chance101="27" chance102="28" chance103="29" chance104="30" chance105="31" chance106="81" chance107="33" />
|
|
||||||
<enchant level="19" adena="49300650" sp="77379800" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="8" chance86="9" chance87="10" chance88="11" chance89="12" chance90="13" chance91="14" chance92="15" chance93="16" chance94="17" chance95="18" chance96="19" chance97="20" chance98="21" chance99="22" chance100="23" chance101="24" chance102="25" chance103="26" chance104="27" chance105="28" chance106="81" chance107="30" />
|
|
||||||
<enchant level="20" adena="51965550" sp="81562492" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="5" chance86="6" chance87="7" chance88="8" chance89="9" chance90="10" chance91="11" chance92="12" chance93="13" chance94="14" chance95="15" chance96="16" chance97="17" chance98="18" chance99="19" chance100="20" chance101="21" chance102="22" chance103="23" chance104="24" chance105="25" chance106="81" chance107="27" />
|
|
||||||
<!--
|
|
||||||
<enchant level="21" adena="54630450" sp="85745184" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="3" chance86="4" chance87="5" chance88="6" chance89="7" chance90="8" chance91="9" chance92="10" chance93="11" chance94="12" chance95="13" chance96="14" chance97="15" chance98="16" chance99="17" chance100="18" chance101="19" chance102="20" chance103="21" chance104="22" chance105="23" chance106="81" chance107="25" />
|
|
||||||
<enchant level="22" adena="57295350" sp="89927876" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="2" chance87="3" chance88="4" chance89="5" chance90="6" chance91="7" chance92="8" chance93="9" chance94="10" chance95="11" chance96="12" chance97="13" chance98="14" chance99="15" chance100="16" chance101="17" chance102="18" chance103="19" chance104="20" chance105="21" chance106="81" chance107="23" />
|
|
||||||
<enchant level="23" adena="59960250" sp="94110568" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="2" chance89="3" chance90="4" chance91="5" chance92="6" chance93="7" chance94="8" chance95="9" chance96="10" chance97="11" chance98="12" chance99="13" chance100="14" chance101="15" chance102="16" chance103="17" chance104="18" chance105="19" chance106="81" chance107="21" />
|
|
||||||
<enchant level="24" adena="62625150" sp="98293260" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="2" chance91="3" chance92="4" chance93="5" chance94="6" chance95="7" chance96="8" chance97="9" chance98="10" chance99="11" chance100="12" chance101="13" chance102="14" chance103="15" chance104="16" chance105="17" chance106="81" chance107="19" />
|
|
||||||
<enchant level="25" adena="65290050" sp="102475952" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="2" chance93="3" chance94="4" chance95="5" chance96="6" chance97="7" chance98="8" chance99="9" chance100="10" chance101="11" chance102="12" chance103="13" chance104="14" chance105="15" chance106="81" chance107="17" />
|
|
||||||
<enchant level="26" adena="67954950" sp="106658644" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="2" chance94="3" chance95="4" chance96="5" chance97="6" chance98="7" chance99="8" chance100="9" chance101="10" chance102="11" chance103="12" chance104="13" chance105="14" chance106="81" chance107="16" />
|
|
||||||
<enchant level="27" adena="70619850" sp="110841336" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="1" chance94="2" chance95="3" chance96="4" chance97="5" chance98="6" chance99="7" chance100="8" chance101="9" chance102="10" chance103="11" chance104="12" chance105="13" chance106="81" chance107="15" />
|
|
||||||
<enchant level="28" adena="73284750" sp="115024028" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="1" chance94="1" chance95="2" chance96="3" chance97="4" chance98="5" chance99="6" chance100="7" chance101="8" chance102="9" chance103="10" chance104="11" chance105="12" chance106="81" chance107="14" />
|
|
||||||
<enchant level="29" adena="75949650" sp="119206720" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="1" chance94="1" chance95="1" chance96="2" chance97="3" chance98="4" chance99="5" chance100="6" chance101="7" chance102="8" chance103="9" chance104="10" chance105="11" chance106="81" chance107="13" />
|
|
||||||
<enchant level="30" adena="78614550" sp="123389412" chance76="0" chance77="0" chance78="0" chance79="0" chance80="0" chance81="0" chance82="0" chance83="0" chance84="0" chance85="1" chance86="1" chance87="1" chance88="1" chance89="1" chance90="1" chance91="1" chance92="1" chance93="1" chance94="1" chance95="1" chance96="1" chance97="2" chance98="3" chance99="4" chance100="5" chance101="6" chance102="7" chance103="8" chance104="9" chance105="10" chance106="81" chance107="12" />
|
|
||||||
-->
|
|
||||||
</group>
|
</group>
|
||||||
</list>
|
</list>
|
||||||
Vendored
+24
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ExtendDrop.xsd">
|
||||||
|
<drop id="1">
|
||||||
|
<items>
|
||||||
|
<item id="35562" count="1" maxCount="2" chance="1.0" additionalChance="0.5" /> <!-- Energy of destruction -->
|
||||||
|
</items>
|
||||||
|
<conditions>
|
||||||
|
<condition name="PlayerLevel">
|
||||||
|
<minLevel>85</minLevel>
|
||||||
|
<maxLevel>105</maxLevel>
|
||||||
|
</condition>
|
||||||
|
<condition name="CategoryType">
|
||||||
|
<category>
|
||||||
|
<item>FOURTH_CLASS_GROUP</item>
|
||||||
|
<item>AWAKEN_GROUP</item> <!-- FIFTH_CLASS_GROUP (Supposed to be old awaken class) / SIXTH_CLASS_GROUP (Supposed to be post diversity class) -->
|
||||||
|
</category>
|
||||||
|
</condition>
|
||||||
|
</conditions>
|
||||||
|
<systemMessages>
|
||||||
|
<systemMessage amount="1" id="3791" /> <!-- You have obtained the first Energy of Destruction. You can obtain up to 2 of these a day, and can begin obtaining them again at 6:30am every day. -->
|
||||||
|
<systemMessage amount="2" id="3792" /> <!-- You have obtained the second Energy of Destruction. You can obtain up to 2 of these a day, and can begin obtaining them again at 6:30am every day. -->
|
||||||
|
</systemMessages>
|
||||||
|
</drop>
|
||||||
|
</list>
|
||||||
Vendored
+38
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./xsd/Fishing.xsd">
|
||||||
|
<playerLevel min="85" />
|
||||||
|
<baitDistance min="90" max="250" />
|
||||||
|
<fishingTime min="45000" max="45000" />
|
||||||
|
<fishingTimeWait min="15000" max="15000" />
|
||||||
|
<expRate min="650" max="700" />
|
||||||
|
<spRate min="40" max="45" />
|
||||||
|
<baits>
|
||||||
|
<bait level="1" itemId="45495" chance="64"> <!-- Normal Bait -->
|
||||||
|
<catch itemId="45473" /> <!-- Fresh Blue Mackerel -->
|
||||||
|
<catch itemId="45474" /> <!-- Fresh Minnow -->
|
||||||
|
<catch itemId="45475" /> <!-- Fresh Flatcatch -->
|
||||||
|
<catch itemId="45476" /> <!-- Fresh Mandarin catch -->
|
||||||
|
<catch itemId="45477" /> <!-- Fresh Rockcatch -->
|
||||||
|
<catch itemId="45478" /> <!-- Fresh Goldcatch -->
|
||||||
|
<catch itemId="45479" /> <!-- Fresh Salmon -->
|
||||||
|
<catch itemId="45480" /> <!-- Fresh Eel -->
|
||||||
|
<catch itemId="45486" /> <!-- Wooden Treasure Chest -->
|
||||||
|
</bait>
|
||||||
|
<bait level="2" itemId="45496" chance="64"> <!-- Special Bait -->
|
||||||
|
<catch itemId="45481" /> <!-- Fresh Marlin -->
|
||||||
|
<catch itemId="45482" /> <!-- Fresh Catcatch -->
|
||||||
|
<catch itemId="45483" /> <!-- Fresh Tuna -->
|
||||||
|
<catch itemId="45484" /> <!-- Fresh Carp -->
|
||||||
|
<catch itemId="45485" /> <!-- Fresh Whale -->
|
||||||
|
<catch itemId="45487" /> <!-- Silver Treasure Chest -->
|
||||||
|
<catch itemId="45488" /> <!-- Golden Treasure Chest -->
|
||||||
|
</bait>
|
||||||
|
<bait level="3" itemId="46084" chance="30"> <!-- Player Commendation Special Bait -->
|
||||||
|
<catch itemId="46085" /> <!-- Treasure Map Piece - 1 -->
|
||||||
|
<catch itemId="46086" /> <!-- Treasure Map Piece - 2 -->
|
||||||
|
<catch itemId="46087" /> <!-- Treasure Map Piece - 3 -->
|
||||||
|
<catch itemId="46088" /> <!-- Treasure Map Piece - 4 -->
|
||||||
|
<catch itemId="46089" /> <!-- Treasure Map Piece - 5 -->
|
||||||
|
</bait>
|
||||||
|
</baits>
|
||||||
|
</list>
|
||||||
+6
-6
@@ -128,14 +128,14 @@
|
|||||||
<instance id="126" name="Seed of Destruction (Dragonkin Crusher)" />
|
<instance id="126" name="Seed of Destruction (Dragonkin Crusher)" />
|
||||||
<instance id="127" name="Delusion Chamber (Eastern Seal)" />
|
<instance id="127" name="Delusion Chamber (Eastern Seal)" />
|
||||||
<instance id="128" name="Delusion Chamber (Western Seal)" />
|
<instance id="128" name="Delusion Chamber (Western Seal)" />
|
||||||
<instance id="129" name="Delusion Chamber (Eastern Seal)" />
|
<instance id="129" name="Delusion Chamber (Southern Seal)" />
|
||||||
<instance id="130" name="Delusion Chamber (Northern Seal)" />
|
<instance id="130" name="Delusion Chamber (Northern Seal)" />
|
||||||
<instance id="131" name="Delusion Chamber (Great Seal)" />
|
<instance id="131" name="Delusion Chamber (Great Seal)" />
|
||||||
<instance id="132" name="Delusion Chamber (Tower of Seal)" />
|
<instance id="132" name="Delusion Chamber (Tower of Seal)" />
|
||||||
<instance id="133" name="Cavern of the Pirate Captain (Daydream)" />
|
<instance id="133" name="Cavern of the Pirate Captain (Daydream)" />
|
||||||
<instance id="134" name="Kamaloka (Labyrinth of the Abyss)" />
|
<instance id="134" name="Kamaloka (Labyrinth of the Abyss)" />
|
||||||
<instance id="135" name="Cavern of the Pirate Captain (Distant Daydream)" />
|
<instance id="135" name="Cavern of the Pirate Captain (Distant Daydream)" />
|
||||||
<instance id="136" name="Last Emperial Tomb" />
|
<instance id="136" name="Last Imperial Tomb" />
|
||||||
<instance id="137" name="Ice Queen's Castle" />
|
<instance id="137" name="Ice Queen's Castle" />
|
||||||
<instance id="138" name="Mithril Mine" />
|
<instance id="138" name="Mithril Mine" />
|
||||||
<instance id="139" name="Ice Queen's Castle" />
|
<instance id="139" name="Ice Queen's Castle" />
|
||||||
@@ -162,9 +162,9 @@
|
|||||||
<instance id="160" name="Teredor Warzone" />
|
<instance id="160" name="Teredor Warzone" />
|
||||||
<instance id="161" name="Kimerian" />
|
<instance id="161" name="Kimerian" />
|
||||||
<instance id="162" name="Kimerian (Epic)" />
|
<instance id="162" name="Kimerian (Epic)" />
|
||||||
<instance id="163" name="Emerald Square" />
|
<instance id="163" name="Crystal Caverns" />
|
||||||
<instance id="164" name="Steam Corridor" />
|
<instance id="164" name="Crystal Caverns" />
|
||||||
<instance id="165" name="Coral Garden" />
|
<instance id="165" name="Crystal Caverns" />
|
||||||
<instance id="166" name="Baylor Warzone" />
|
<instance id="166" name="Baylor Warzone" />
|
||||||
<instance id="167" name="Balok Warzone" />
|
<instance id="167" name="Balok Warzone" />
|
||||||
<instance id="168" name="Coral Garden Hall" />
|
<instance id="168" name="Coral Garden Hall" />
|
||||||
@@ -176,7 +176,7 @@
|
|||||||
<instance id="174" name="Lachik Dwelling Warzone (Epic)" />
|
<instance id="174" name="Lachik Dwelling Warzone (Epic)" />
|
||||||
<instance id="175" name="Lachik Dwelling Warzone (Epic)" />
|
<instance id="175" name="Lachik Dwelling Warzone (Epic)" />
|
||||||
<instance id="176" name="Underground Military Compound" />
|
<instance id="176" name="Underground Military Compound" />
|
||||||
<instance id="177" name="Underground Military Compound" />
|
<instance id="177" name="Closed Underground Compound" />
|
||||||
<instance id="178" name="Labyrinth of Belis" />
|
<instance id="178" name="Labyrinth of Belis" />
|
||||||
<instance id="179" name="Fortuna" />
|
<instance id="179" name="Fortuna" />
|
||||||
<instance id="180" name="Octavis Warzone" />
|
<instance id="180" name="Octavis Warzone" />
|
||||||
|
|||||||
+134
-314
@@ -2,336 +2,156 @@
|
|||||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ItemAuctions.xsd">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ItemAuctions.xsd">
|
||||||
<!-- Documentation: -->
|
<!-- 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"> -->
|
<!-- <instance id="NPC ID of the auctioneer" day_of_week="1 - Monday, 7 - Sunday" hour_of_day="0-23" minute_of_hour="0-59"> -->
|
||||||
<!-- <item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="100000000" auctionLenght="300 (in minutes)"> -->
|
<!-- <item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="100000" auctionLenght="300 (in minutes)"> -->
|
||||||
<!-- <extra enchant_level="15" augmentation_id="you can take it from item_attributes table" augmentation_skill_id="3241" augmentation_skill_lvl="10" /> -->
|
<!-- <extra enchant_level="15" augmentation_id="you can take it from item_attributes table" augmentation_skill_id="3241" augmentation_skill_lvl="10" /> -->
|
||||||
<!-- </item> -->
|
<!-- </item> -->
|
||||||
<!-- </instance> -->
|
<!-- </instance> -->
|
||||||
<!-- instead of day_of_week you can use interval between auction in days -->
|
<!-- 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"> -->
|
<!-- <instance id="NPC ID of the auctioneer" interval="1" hour_of_day="0-23" minute_of_hour="0-59"> -->
|
||||||
<!-- <item auctionItemId="1" itemId="10485" itemCount="1" auctionInitBid="100000000" auctionLenght="300" /> -->
|
<!-- <item auctionItemId="1" itemId="10485" itemCount="1" auctionInitBid="100000" auctionLenght="300" /> -->
|
||||||
<!-- </instance> -->
|
<!-- </instance> -->
|
||||||
<instance id="32320" day_of_week="5" hour_of_day="17">
|
<instance id="32320" day_of_week="5" hour_of_day="17">
|
||||||
<!-- Legendary Accessories -->
|
<!-- Yellow Soul Crystal (R99-grade) -->
|
||||||
<!-- Baium Ring -->
|
<item auctionItemId="1" itemId="18560" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="1" itemId="6658" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Teal Soul Crystal (R99-grade) -->
|
||||||
<!-- Earth Wyrm Heart Ring -->
|
<item auctionItemId="2" itemId="18561" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="2" itemId="17623" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Purple Soul Crystal (R99-grade) -->
|
||||||
<!-- Queen Ant's Ring -->
|
<item auctionItemId="3" itemId="18562" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="3" itemId="6660" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Transformation Sealbook: Anakim -->
|
||||||
<!-- Tauti's Ring -->
|
<item auctionItemId="4" itemId="10296" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="4" itemId="35570" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Reinforced Baium's Ring -->
|
||||||
<!-- Ring of Core -->
|
<item auctionItemId="5" itemId="22173" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="5" itemId="6662" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Reinforced Blessed Zaken's Earring -->
|
||||||
<!-- Valakas' Necklace -->
|
<item auctionItemId="6" itemId="22174" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="6" itemId="6657" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Transformation Sealbook: Anakim -->
|
||||||
<!-- Freya's Necklace -->
|
<item auctionItemId="7" itemId="22175" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="7" itemId="16025" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient STR Dye -->
|
||||||
<!-- Antharas' Earring -->
|
<item auctionItemId="8" itemId="17003" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="8" itemId="6656" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient DEX Dye -->
|
||||||
<!-- Zaken's Earring -->
|
<item auctionItemId="9" itemId="17004" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="9" itemId="6659" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient CON Dye -->
|
||||||
<!-- Orfen's Earring -->
|
<item auctionItemId="10" itemId="17005" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="10" itemId="6661" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient INT Dye -->
|
||||||
<!-- Improved legendary Accessories -->
|
<item auctionItemId="11" itemId="17006" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Antharas' Earring -->
|
<!-- Lv. 5 Ancient WIT Dye -->
|
||||||
<item auctionItemId="11" itemId="19463" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="12" itemId="17007" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Valakas' Necklace -->
|
<!-- Lv. 5 Ancient MEN Dye -->
|
||||||
<item auctionItemId="12" itemId="19464" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="13" itemId="17008" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Freya's Necklace -->
|
<!-- Lv. 5 Legendary STR Dye -->
|
||||||
<item auctionItemId="13" itemId="16026" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="14" itemId="17009" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Baium's Soul Ring -->
|
<!-- Lv. 5 Legendary DEX Dye -->
|
||||||
<item auctionItemId="14" itemId="37521" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="15" itemId="17010" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Queen Ant's Soul Ring -->
|
<!-- Lv. 5 Legendary CON Dye -->
|
||||||
<item auctionItemId="15" itemId="36254" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="16" itemId="17011" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Lilith's Soul Necklace -->
|
<!-- Lv. 5 Legendary INT Dye -->
|
||||||
<item auctionItemId="16" itemId="36257" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="17" itemId="17012" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Frintezza's Soul Necklace -->
|
<!-- Lv. 5 Legendary WIT Dye -->
|
||||||
<item auctionItemId="17" itemId="37522" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="18" itemId="17013" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Orfen's Soul Earring -->
|
<!-- Lv. 5 Legendary MEN Dye -->
|
||||||
<item auctionItemId="18" itemId="36255" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="19" itemId="17014" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Items for improvement legendary accessories -->
|
|
||||||
<!-- Bottle of Antharas' Soul -->
|
<!-- Bottle of Antharas' Soul -->
|
||||||
<item auctionItemId="19" itemId="19465" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="20" itemId="19465" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Baium's Soul -->
|
|
||||||
<item auctionItemId="20" itemId="37520" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Bottle of Valakas' Soul -->
|
<!-- Bottle of Valakas' Soul -->
|
||||||
<item auctionItemId="21" itemId="19466" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="21" itemId="19466" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Queen Ant's Soul -->
|
<!-- Kaliel's Energy -->
|
||||||
<item auctionItemId="22" itemId="36252" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="22" itemId="36186" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Orfen's Soul -->
|
<!-- Tauti's Fragment -->
|
||||||
<item auctionItemId="23" itemId="36253" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="23" itemId="35667" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Freya's Soul -->
|
|
||||||
<item auctionItemId="24" itemId="16027" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Bottle of Frintezza's Soul -->
|
|
||||||
<item auctionItemId="25" itemId="37519" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Weapons -->
|
|
||||||
<!-- Shadow Thrower -->
|
|
||||||
<item auctionItemId="26" itemId="46332" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Stormer -->
|
|
||||||
<item auctionItemId="27" itemId="46331" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Retributer -->
|
|
||||||
<item auctionItemId="28" itemId="46335" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Fighter -->
|
|
||||||
<item auctionItemId="29" itemId="46330" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Shaper -->
|
|
||||||
<item auctionItemId="30" itemId="46327" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Dualsword -->
|
|
||||||
<item auctionItemId="31" itemId="46336" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Buster -->
|
|
||||||
<item auctionItemId="32" itemId="46334" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Cutter -->
|
|
||||||
<item auctionItemId="33" itemId="46328" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Shooter -->
|
|
||||||
<item auctionItemId="34" itemId="46333" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Slasher -->
|
|
||||||
<item auctionItemId="35" itemId="46329" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Weapons -->
|
|
||||||
<!-- Kelbim Crossbow -->
|
|
||||||
<item auctionItemId="36" itemId="46063" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Dagger -->
|
|
||||||
<item auctionItemId="37" itemId="46060" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Bow -->
|
|
||||||
<item auctionItemId="38" itemId="46062" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Dual Dagger -->
|
|
||||||
<item auctionItemId="39" itemId="46061" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talismans -->
|
|
||||||
<!-- Venir's Talisman lvl 16 -->
|
|
||||||
<item auctionItemId="40" itemId="39649" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talisman - Insanity -->
|
|
||||||
<item auctionItemId="41" itemId="39572" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talisman - Seven Signs -->
|
|
||||||
<item auctionItemId="42" itemId="37717" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Scrolls -->
|
|
||||||
<!-- Destruction Scroll: Enchant Armor R-grade -->
|
|
||||||
<item auctionItemId="43" itemId="33479" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Destruction Scroll: Enchant Weapon R-grade -->
|
|
||||||
<item auctionItemId="44" itemId="33478" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Other -->
|
|
||||||
<!-- Chest Bloody Helios +7 -->
|
|
||||||
<item auctionItemId="45" itemId="27538" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest Two Precious Stones -->
|
|
||||||
<item auctionItemId="46" itemId="27539" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Shining Einhasad -->
|
|
||||||
<item auctionItemId="47" itemId="27535" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Reflections Attacks -->
|
|
||||||
<item auctionItemId="48" itemId="27536" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Magic Reflections -->
|
|
||||||
<item auctionItemId="49" itemId="27537" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
</instance>
|
</instance>
|
||||||
<instance id="32321" day_of_week="1" hour_of_day="17">
|
<instance id="32321" day_of_week="1" hour_of_day="17">
|
||||||
<!-- Legendary Accessories -->
|
<!-- Yellow Soul Crystal (R99-grade) -->
|
||||||
<!-- Baium Ring -->
|
<item auctionItemId="1" itemId="18560" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="1" itemId="6658" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Teal Soul Crystal (R99-grade) -->
|
||||||
<!-- Earth Wyrm Heart Ring -->
|
<item auctionItemId="2" itemId="18561" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="2" itemId="17623" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Purple Soul Crystal (R99-grade) -->
|
||||||
<!-- Queen Ant's Ring -->
|
<item auctionItemId="3" itemId="18562" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="3" itemId="6660" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Transformation Sealbook: Anakim -->
|
||||||
<!-- Tauti's Ring -->
|
<item auctionItemId="4" itemId="10296" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="4" itemId="35570" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Reinforced Baium's Ring -->
|
||||||
<!-- Ring of Core -->
|
<item auctionItemId="5" itemId="22173" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="5" itemId="6662" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Reinforced Blessed Zaken's Earring -->
|
||||||
<!-- Valakas' Necklace -->
|
<item auctionItemId="6" itemId="22174" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="6" itemId="6657" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Transformation Sealbook: Anakim -->
|
||||||
<!-- Freya's Necklace -->
|
<item auctionItemId="7" itemId="22175" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="7" itemId="16025" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient STR Dye -->
|
||||||
<!-- Antharas' Earring -->
|
<item auctionItemId="8" itemId="17003" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="8" itemId="6656" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient DEX Dye -->
|
||||||
<!-- Zaken's Earring -->
|
<item auctionItemId="9" itemId="17004" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="9" itemId="6659" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient CON Dye -->
|
||||||
<!-- Orfen's Earring -->
|
<item auctionItemId="10" itemId="17005" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="10" itemId="6661" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient INT Dye -->
|
||||||
<!-- Improved legendary Accessories -->
|
<item auctionItemId="11" itemId="17006" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Antharas' Earring -->
|
<!-- Lv. 5 Ancient WIT Dye -->
|
||||||
<item auctionItemId="11" itemId="19463" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="12" itemId="17007" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Valakas' Necklace -->
|
<!-- Lv. 5 Ancient MEN Dye -->
|
||||||
<item auctionItemId="12" itemId="19464" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="13" itemId="17008" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Freya's Necklace -->
|
<!-- Lv. 5 Legendary STR Dye -->
|
||||||
<item auctionItemId="13" itemId="16026" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="14" itemId="17009" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Baium's Soul Ring -->
|
<!-- Lv. 5 Legendary DEX Dye -->
|
||||||
<item auctionItemId="14" itemId="37521" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="15" itemId="17010" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Queen Ant's Soul Ring -->
|
<!-- Lv. 5 Legendary CON Dye -->
|
||||||
<item auctionItemId="15" itemId="36254" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="16" itemId="17011" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Lilith's Soul Necklace -->
|
<!-- Lv. 5 Legendary INT Dye -->
|
||||||
<item auctionItemId="16" itemId="36257" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="17" itemId="17012" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Frintezza's Soul Necklace -->
|
<!-- Lv. 5 Legendary WIT Dye -->
|
||||||
<item auctionItemId="17" itemId="37522" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="18" itemId="17013" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Orfen's Soul Earring -->
|
<!-- Lv. 5 Legendary MEN Dye -->
|
||||||
<item auctionItemId="18" itemId="36255" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="19" itemId="17014" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Items for improvement legendary accessories -->
|
|
||||||
<!-- Bottle of Antharas' Soul -->
|
<!-- Bottle of Antharas' Soul -->
|
||||||
<item auctionItemId="19" itemId="19465" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="20" itemId="19465" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Baium's Soul -->
|
|
||||||
<item auctionItemId="20" itemId="37520" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Bottle of Valakas' Soul -->
|
<!-- Bottle of Valakas' Soul -->
|
||||||
<item auctionItemId="21" itemId="19466" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="21" itemId="19466" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Queen Ant's Soul -->
|
<!-- Kaliel's Energy -->
|
||||||
<item auctionItemId="22" itemId="36252" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="22" itemId="36186" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Orfen's Soul -->
|
<!-- Tauti's Fragment -->
|
||||||
<item auctionItemId="23" itemId="36253" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="23" itemId="35667" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Freya's Soul -->
|
|
||||||
<item auctionItemId="24" itemId="16027" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Bottle of Frintezza's Soul -->
|
|
||||||
<item auctionItemId="25" itemId="37519" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Weapons -->
|
|
||||||
<!-- Shadow Thrower -->
|
|
||||||
<item auctionItemId="26" itemId="46332" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Stormer -->
|
|
||||||
<item auctionItemId="27" itemId="46331" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Retributer -->
|
|
||||||
<item auctionItemId="28" itemId="46335" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Fighter -->
|
|
||||||
<item auctionItemId="29" itemId="46330" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Shaper -->
|
|
||||||
<item auctionItemId="30" itemId="46327" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Dualsword -->
|
|
||||||
<item auctionItemId="31" itemId="46336" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Buster -->
|
|
||||||
<item auctionItemId="32" itemId="46334" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Cutter -->
|
|
||||||
<item auctionItemId="33" itemId="46328" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Shooter -->
|
|
||||||
<item auctionItemId="34" itemId="46333" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Slasher -->
|
|
||||||
<item auctionItemId="35" itemId="46329" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Weapons -->
|
|
||||||
<!-- Kelbim Crossbow -->
|
|
||||||
<item auctionItemId="36" itemId="46063" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Dagger -->
|
|
||||||
<item auctionItemId="37" itemId="46060" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Bow -->
|
|
||||||
<item auctionItemId="38" itemId="46062" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Dual Dagger -->
|
|
||||||
<item auctionItemId="39" itemId="46061" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talismans -->
|
|
||||||
<!-- Venir's Talisman lvl 16 -->
|
|
||||||
<item auctionItemId="40" itemId="39649" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talisman - Insanity -->
|
|
||||||
<item auctionItemId="41" itemId="39572" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talisman - Seven Signs -->
|
|
||||||
<item auctionItemId="42" itemId="37717" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Scrolls -->
|
|
||||||
<!-- Destruction Scroll: Enchant Armor R-grade -->
|
|
||||||
<item auctionItemId="43" itemId="33479" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Destruction Scroll: Enchant Weapon R-grade -->
|
|
||||||
<item auctionItemId="44" itemId="33478" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Other -->
|
|
||||||
<!-- Chest Bloody Helios +7 -->
|
|
||||||
<item auctionItemId="45" itemId="27538" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest Two Precious Stones -->
|
|
||||||
<item auctionItemId="46" itemId="27539" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Shining Einhasad -->
|
|
||||||
<item auctionItemId="47" itemId="27535" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Reflections Attacks -->
|
|
||||||
<item auctionItemId="48" itemId="27536" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Magic Reflections -->
|
|
||||||
<item auctionItemId="49" itemId="27537" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
</instance>
|
</instance>
|
||||||
<instance id="32322" day_of_week="3" hour_of_day="17">
|
<instance id="32322" day_of_week="3" hour_of_day="17">
|
||||||
<!-- Legendary Accessories -->
|
<!-- Yellow Soul Crystal (R99-grade) -->
|
||||||
<!-- Baium Ring -->
|
<item auctionItemId="1" itemId="18560" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="1" itemId="6658" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Teal Soul Crystal (R99-grade) -->
|
||||||
<!-- Earth Wyrm Heart Ring -->
|
<item auctionItemId="2" itemId="18561" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="2" itemId="17623" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Purple Soul Crystal (R99-grade) -->
|
||||||
<!-- Queen Ant's Ring -->
|
<item auctionItemId="3" itemId="18562" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="3" itemId="6660" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Transformation Sealbook: Anakim -->
|
||||||
<!-- Tauti's Ring -->
|
<item auctionItemId="4" itemId="10296" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="4" itemId="35570" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Reinforced Baium's Ring -->
|
||||||
<!-- Ring of Core -->
|
<item auctionItemId="5" itemId="22173" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="5" itemId="6662" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Reinforced Blessed Zaken's Earring -->
|
||||||
<!-- Valakas' Necklace -->
|
<item auctionItemId="6" itemId="22174" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="6" itemId="6657" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Transformation Sealbook: Anakim -->
|
||||||
<!-- Freya's Necklace -->
|
<item auctionItemId="7" itemId="22175" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="7" itemId="16025" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient STR Dye -->
|
||||||
<!-- Antharas' Earring -->
|
<item auctionItemId="8" itemId="17003" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="8" itemId="6656" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient DEX Dye -->
|
||||||
<!-- Zaken's Earring -->
|
<item auctionItemId="9" itemId="17004" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="9" itemId="6659" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient CON Dye -->
|
||||||
<!-- Orfen's Earring -->
|
<item auctionItemId="10" itemId="17005" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<item auctionItemId="10" itemId="6661" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<!-- Lv. 5 Ancient INT Dye -->
|
||||||
<!-- Improved legendary Accessories -->
|
<item auctionItemId="11" itemId="17006" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Antharas' Earring -->
|
<!-- Lv. 5 Ancient WIT Dye -->
|
||||||
<item auctionItemId="11" itemId="19463" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="12" itemId="17007" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Valakas' Necklace -->
|
<!-- Lv. 5 Ancient MEN Dye -->
|
||||||
<item auctionItemId="12" itemId="19464" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="13" itemId="17008" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Blessed Freya's Necklace -->
|
<!-- Lv. 5 Legendary STR Dye -->
|
||||||
<item auctionItemId="13" itemId="16026" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="14" itemId="17009" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Baium's Soul Ring -->
|
<!-- Lv. 5 Legendary DEX Dye -->
|
||||||
<item auctionItemId="14" itemId="37521" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="15" itemId="17010" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Queen Ant's Soul Ring -->
|
<!-- Lv. 5 Legendary CON Dye -->
|
||||||
<item auctionItemId="15" itemId="36254" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="16" itemId="17011" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Lilith's Soul Necklace -->
|
<!-- Lv. 5 Legendary INT Dye -->
|
||||||
<item auctionItemId="16" itemId="36257" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="17" itemId="17012" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Frintezza's Soul Necklace -->
|
<!-- Lv. 5 Legendary WIT Dye -->
|
||||||
<item auctionItemId="17" itemId="37522" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="18" itemId="17013" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Orfen's Soul Earring -->
|
<!-- Lv. 5 Legendary MEN Dye -->
|
||||||
<item auctionItemId="18" itemId="36255" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="19" itemId="17014" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Items for improvement legendary accessories -->
|
|
||||||
<!-- Bottle of Antharas' Soul -->
|
<!-- Bottle of Antharas' Soul -->
|
||||||
<item auctionItemId="19" itemId="19465" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="20" itemId="19465" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Baium's Soul -->
|
|
||||||
<item auctionItemId="20" itemId="37520" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Bottle of Valakas' Soul -->
|
<!-- Bottle of Valakas' Soul -->
|
||||||
<item auctionItemId="21" itemId="19466" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="21" itemId="19466" itemCount="1" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Queen Ant's Soul -->
|
<!-- Kaliel's Energy -->
|
||||||
<item auctionItemId="22" itemId="36252" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="22" itemId="36186" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Orfen's Soul -->
|
<!-- Tauti's Fragment -->
|
||||||
<item auctionItemId="23" itemId="36253" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
<item auctionItemId="23" itemId="35667" itemCount="10" auctionInitBid="100000" auctionLenght="300" />
|
||||||
<!-- Bottle of Freya's Soul -->
|
|
||||||
<item auctionItemId="24" itemId="16027" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Bottle of Frintezza's Soul -->
|
|
||||||
<item auctionItemId="25" itemId="37519" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Weapons -->
|
|
||||||
<!-- Shadow Thrower -->
|
|
||||||
<item auctionItemId="26" itemId="46332" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Stormer -->
|
|
||||||
<item auctionItemId="27" itemId="46331" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Retributer -->
|
|
||||||
<item auctionItemId="28" itemId="46335" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Fighter -->
|
|
||||||
<item auctionItemId="29" itemId="46330" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Shaper -->
|
|
||||||
<item auctionItemId="30" itemId="46327" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Dualsword -->
|
|
||||||
<item auctionItemId="31" itemId="46336" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Buster -->
|
|
||||||
<item auctionItemId="32" itemId="46334" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Cutter -->
|
|
||||||
<item auctionItemId="33" itemId="46328" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Shooter -->
|
|
||||||
<item auctionItemId="34" itemId="46333" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Shadow Slasher -->
|
|
||||||
<item auctionItemId="35" itemId="46329" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Weapons -->
|
|
||||||
<!-- Kelbim Crossbow -->
|
|
||||||
<item auctionItemId="36" itemId="46063" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Dagger -->
|
|
||||||
<item auctionItemId="37" itemId="46060" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Bow -->
|
|
||||||
<item auctionItemId="38" itemId="46062" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Kelbim Dual Dagger -->
|
|
||||||
<item auctionItemId="39" itemId="46061" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talismans -->
|
|
||||||
<!-- Venir's Talisman lvl 16 -->
|
|
||||||
<item auctionItemId="40" itemId="39649" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talisman - Insanity -->
|
|
||||||
<item auctionItemId="41" itemId="39572" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Talisman - Seven Signs -->
|
|
||||||
<item auctionItemId="42" itemId="37717" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Scrolls -->
|
|
||||||
<!-- Destruction Scroll: Enchant Armor R-grade -->
|
|
||||||
<item auctionItemId="43" itemId="33479" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Destruction Scroll: Enchant Weapon R-grade -->
|
|
||||||
<item auctionItemId="44" itemId="33478" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Other -->
|
|
||||||
<!-- Chest Bloody Helios +7 -->
|
|
||||||
<item auctionItemId="45" itemId="27538" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest Two Precious Stones -->
|
|
||||||
<item auctionItemId="46" itemId="27539" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Shining Einhasad -->
|
|
||||||
<item auctionItemId="47" itemId="27535" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Reflections Attacks -->
|
|
||||||
<item auctionItemId="48" itemId="27536" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
<!-- Chest t-shirts Magic Reflections -->
|
|
||||||
<item auctionItemId="49" itemId="27537" itemCount="1" auctionInitBid="100000000" auctionLenght="300" />
|
|
||||||
</instance>
|
</instance>
|
||||||
</list>
|
</list>
|
||||||
Vendored
-587
@@ -1,587 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/JumpTrack.xsd">
|
|
||||||
<!-- <FlyToLocation ToX="-111994" ToY="257250" ToZ="-1392" Type="2" /> -->
|
|
||||||
<track trackId="12" zone="Talking Island Village -> Essar to Gila ruins" ToX="-111994" ToY="257250" ToZ="-1392">
|
|
||||||
<way id="0"><jumpLoc next="1" x="-112860" y="256154" z="-1232" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-113337" y="255468" z="-1064" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-113486" y="254176" z="-1200" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-114259" y="252583" z="-1536" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-114192" y="249690" z="-1768" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="-114910" y="248363" z="-1896" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-117316" y="246637" z="-2312" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="-116685" y="245179" z="-1944" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-116402" y="243260" z="-1440" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-116609" y="241530" z="-2568" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-117165" y="239769" z="-2736" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-116650" y="238339" z="-2472" /></way>
|
|
||||||
<way id="12"><jumpLoc next="-1" x="-115737" y="236295" z="-3088" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="205888" ToY="80560" ToZ="1928" Type="2" /> -->
|
|
||||||
<track trackId="14" zone="Ancient capital of Ya Erkang -> Deep in the boreal forest / Timmy Nell embrace" ToX="205888" ToY="80560" ToZ="1928">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="205564" y="80480" z="404" />
|
|
||||||
<jumpLoc next="1" x="205324" y="77300" z="872" />
|
|
||||||
<jumpLoc next="5" x="207240" y="80900" z="608" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="203776" y="74224" z="832" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="205088" y="73600" z="1228" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="204828" y="71336" z="1312" /></way>
|
|
||||||
<way id="4"><jumpLoc next="-1" x="205536" y="71256" z="996" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="208432" y="80028" z="592" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="211104" y="80768" z="-112" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="212288" y="79124" z="496" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="213100" y="80004" z="1612" /></way>
|
|
||||||
<way id="9"><jumpLoc next="-1" x="213968" y="81232" z="816" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="211824" ToY="82800" ToZ="1456" Type="2" /> -->
|
|
||||||
<track trackId="15" zone="Ancient Yaer Kang (right) -> Deep Southern Forest / Timmy Nell embrace" ToX="211824" ToY="82800" ToZ="1456">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="211952" y="82592" z="136" />
|
|
||||||
<jumpLoc next="1" x="213152" y="84496" z="980" />
|
|
||||||
<jumpLoc next="9" x="213604" y="81868" z="1836" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="214112" y="85312" z="1440" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="214896" y="86480" z="1640" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="217584" y="87984" z="1332" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="219680" y="88000" z="1328" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="220976" y="88368" z="1088" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="222336" y="88288" z="1064" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="222448" y="88424" z="1584" /></way>
|
|
||||||
<way id="8"><jumpLoc next="-1" x="222064" y="88944" z="812" /></way>
|
|
||||||
<way id="9"><jumpLoc next="-1" x="214032" y="81304" z="824" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="213512" ToY="80556" ToZ="1524" Type="2" /> -->
|
|
||||||
<track trackId="16" zone="Leprechaun colonies (left) -> Ancient Yaer Kang (left)" ToX="213512" ToY="80556" ToZ="1524">
|
|
||||||
<way id="0"><jumpLoc next="1" x="211088" y="81056" z="112" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="209216" y="80240" z="-112" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="208512" y="79952" z="592" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="206336" y="80432" z="1604" /></way>
|
|
||||||
<way id="4"><jumpLoc next="-1" x="205264" y="80420" z="416" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="214576" ToY="81936" ToZ="1960" Type="2" /> -->
|
|
||||||
<track trackId="17" zone="Leprechaun colonies (right) -> Ancient Yaer Kang (right)" ToX="214576" ToY="81936" ToZ="1960">
|
|
||||||
<way id="0"><jumpLoc next="1" x="213120" y="84432" z="944" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="212548" y="83588" z="544" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="211968" y="82880" z="960" /></way>
|
|
||||||
<way id="3"><jumpLoc next="-1" x="212096" y="82528" z="144" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="207189" ToY="110330" ToZ="-1147" Type="2" /> -->
|
|
||||||
<track trackId="18" zone="Creation Garden (on) -> " ToX="207189" ToY="110330" ToZ="-1147">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="23" x="207786" y="109675" z="-1102" />
|
|
||||||
<jumpLoc next="25" x="206864" y="111818" z="-1263" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="7" x="209457" y="108552" z="-1056" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="205028" y="114828" z="-1292" /></way>
|
|
||||||
<way id="3">
|
|
||||||
<jumpLoc next="4" x="206386" y="114871" z="-1242" />
|
|
||||||
<jumpLoc next="5" x="205124" y="116584" z="-1037" />
|
|
||||||
</way>
|
|
||||||
<way id="4"><jumpLoc next="26" x="208298" y="115264" z="-1684" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="205948" y="118978" z="-1224" /></way>
|
|
||||||
<way id="6"><jumpLoc next="-1" x="205912" y="119379" z="-1673" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="211246" y="108653" z="-886" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="212654" y="108160" z="-1149" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="214113" y="108549" z="-1048" /></way>
|
|
||||||
<way id="10">
|
|
||||||
<jumpLoc next="11" x="215489" y="107803" z="-1001" />
|
|
||||||
<jumpLoc next="13" x="214095" y="109218" z="-638" />
|
|
||||||
</way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="217554" y="107266" z="-796" /></way>
|
|
||||||
<way id="12"><jumpLoc next="-1" x="217768" y="107458" z="-1673" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="213567" y="110362" z="-1055" /></way>
|
|
||||||
<way id="14"><jumpLoc next="24" x="214033" y="111348" z="-1253" /></way>
|
|
||||||
<way id="15"><jumpLoc next="16" x="216195" y="114178" z="-1162" /></way>
|
|
||||||
<way id="16"><jumpLoc next="17" x="217493" y="115253" z="-895" /></way>
|
|
||||||
<way id="17"><jumpLoc next="-1" x="217662" y="115261" z="-1274" /></way>
|
|
||||||
<way id="18">
|
|
||||||
<jumpLoc next="-1" x="209608" y="115641" z="-1679" />
|
|
||||||
<jumpLoc next="19" x="210657" y="116738" z="-956" />
|
|
||||||
</way>
|
|
||||||
<way id="19"><jumpLoc next="20" x="211883" y="117085" z="-682" /></way>
|
|
||||||
<way id="20"><jumpLoc next="21" x="212718" y="117794" z="-1158" /></way>
|
|
||||||
<way id="21"><jumpLoc next="22" x="213693" y="119065" z="-897" /></way>
|
|
||||||
<way id="22"><jumpLoc next="-1" x="213696" y="119227" z="-1274" /></way>
|
|
||||||
<way id="23"><jumpLoc next="1" x="208453" y="109434" z="-848" /></way>
|
|
||||||
<way id="24">
|
|
||||||
<jumpLoc next="-1" x="214096" y="111164" z="-1679" />
|
|
||||||
<jumpLoc next="15" x="214991" y="112448" z="-938" />
|
|
||||||
</way>
|
|
||||||
<way id="25"><jumpLoc next="2" x="206071" y="113246" z="-1128" /></way>
|
|
||||||
<way id="26"><jumpLoc next="18" x="209494" y="115818" z="-1220" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="219719" ToY="119344" ToZ="-1075" Type="2" /> -->
|
|
||||||
<track trackId="19" zone="Creation Garden (next) -> " ToX="219719" ToY="119344" ToZ="-1075">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="1" x="217793" y="119365" z="-1412" />
|
|
||||||
<jumpLoc next="4" x="219721" y="117432" z="-1191" />
|
|
||||||
</way>
|
|
||||||
<way id="1">
|
|
||||||
<jumpLoc next="-1" x="217791" y="119065" z="-1764" />
|
|
||||||
<jumpLoc next="2" x="215886" y="119357" z="-1071" />
|
|
||||||
</way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="213693" y="119065" z="-897" /></way>
|
|
||||||
<way id="3"><jumpLoc next="-1" x="213692" y="118426" z="-1026" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="218586" y="116649" z="-909" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="218072" y="115261" z="-1341" /></way>
|
|
||||||
<way id="6">
|
|
||||||
<jumpLoc next="7" x="218950" y="115019" z="-715" />
|
|
||||||
<jumpLoc next="11" x="215865" y="114365" z="-342" />
|
|
||||||
</way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="219675" y="114155" z="-819" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="220943" y="113582" z="-1202" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="221926" y="111849" z="-1236" /></way>
|
|
||||||
<way id="10"><jumpLoc next="-1" x="221489" y="111141" z="-1680" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="215148" y="113648" z="-490" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="214493" y="112627" z="-40" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="211524" y="111880" z="-1136" /></way>
|
|
||||||
<way id="14"><jumpLoc next="15" x="209650" y="112165" z="-1474" /></way>
|
|
||||||
<way id="15"><jumpLoc next="16" x="207541" y="112487" z="-1807" /></way>
|
|
||||||
<way id="16"><jumpLoc next="-1" x="207825" y="112263" z="-2060" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-114646" ToY="226867" ToZ="-2860" Type="2" /> -->
|
|
||||||
<track trackId="20" zone="Tomb of souls -> Talking Island Village" ToX="-114646" ToY="226867" ToZ="-2860">
|
|
||||||
<way id="0"><jumpLoc next="1" x="-115382" y="228370" z="-2688" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-115677" y="230311" z="-3592" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-115470" y="232174" z="-3120" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-115605" y="234757" z="-2824" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-114147" y="236166" z="-2912" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="-112827" y="237548" z="-2776" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-112374" y="237981" z="-2664" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="-111860" y="239665" z="-2920" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-110831" y="241012" z="-2744" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-110581" y="242703" z="-2408" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-110901" y="243271" z="-2008" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-110839" y="244080" z="-1560" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="-111069" y="245466" z="-1880" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="-111952" y="247788" z="-1984" /></way>
|
|
||||||
<way id="14"><jumpLoc next="15" x="-112756" y="249137" z="-1784" /></way>
|
|
||||||
<way id="15"><jumpLoc next="16" x="-113540" y="253377" z="-1208" /></way>
|
|
||||||
<way id="16"><jumpLoc next="17" x="-113501" y="254172" z="-1200" /></way>
|
|
||||||
<way id="17"><jumpLoc next="18" x="-113124" y="255947" z="-1136" /></way>
|
|
||||||
<way id="18"><jumpLoc next="-1" x="-112093" y="256836" z="-1440" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-15591" ToY="30748" ToZ="-3600" Type="2" /> -->
|
|
||||||
<track trackId="21" zone="Dark Elf Forest -> Blood Swamp / Monster altar" ToX="-15591" ToY="30748" ToZ="-3600">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="-15778" y="30638" z="-3616" />
|
|
||||||
<jumpLoc next="1" x="-15076" y="32311" z="-3560" />
|
|
||||||
<jumpLoc next="7" x="-14368" y="25609" z="-3592" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-14569" y="33547" z="-3504" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-13977" y="36452" z="-1251" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-15379" y="38120" z="-3648" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-14032" y="41275" z="-3704" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="-14602" y="43737" z="-3584" /></way>
|
|
||||||
<way id="6"><jumpLoc next="-1" x="-14602" y="43737" z="-3584" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="-15510" y="23868" z="-3712" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-16195" y="22424" z="-3696" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-13982" y="22124" z="-3616" /></way>
|
|
||||||
<way id="10"><jumpLoc next="-1" x="-13982" y="22124" z="-3616" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-150678" ToY="252758" ToZ="-1369" Type="2" /> -->
|
|
||||||
<track trackId="22" zone="Old Lu Dingfei empty boat dock -> Kese DeGeneres League Joint Base" ToX="-150678" ToY="252758" ToZ="-1369">
|
|
||||||
<way id="0"><jumpLoc next="1" x="-152694" y="253517" z="-825" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-155227" y="253348" z="-1305" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-156214" y="255930" z="-761" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-158959" y="254966" z="-477" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-160496" y="256829" z="-990" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="-163173" y="255571" z="-301" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-166964" y="258460" z="170" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="-168406" y="255825" z="714" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-167861" y="253295" z="1770" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-170385" y="251797" z="778" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-172266" y="252408" z="1269" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-170225" y="249979" z="2408" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="-173368" y="249680" z="2198" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="-172144" y="245589" z="2397" /></way>
|
|
||||||
<way id="14"><jumpLoc next="15" x="-175238" y="242801" z="2031" /></way>
|
|
||||||
<way id="15"><jumpLoc next="16" x="-178198" y="243477" z="1162" /></way>
|
|
||||||
<way id="16"><jumpLoc next="17" x="-180790" y="243953" z="2666" /></way>
|
|
||||||
<way id="17"><jumpLoc next="18" x="-182344" y="242399" z="2122" /></way>
|
|
||||||
<way id="18"><jumpLoc next="19" x="-184413" y="243376" z="3114" /></way>
|
|
||||||
<way id="19"><jumpLoc next="-1" x="-186243" y="243560" z="2608" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-184413" ToY="243376" ToZ="3114" Type="2" /> -->
|
|
||||||
<track trackId="23" zone="Kese DeGeneres League Joint Base -> Old Lu Dingfei empty boat dock" ToX="-184413" ToY="243376" ToZ="3114">
|
|
||||||
<way id="0"><jumpLoc next="1" x="-182344" y="242399" z="2122" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-180790" y="243953" z="2666" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-178198" y="243477" z="1162" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-175238" y="242801" z="2031" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-172144" y="245589" z="2397" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="-173368" y="249680" z="2198" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-170225" y="249979" z="2408" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="-172266" y="252408" z="1269" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-170385" y="251797" z="778" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-167861" y="253295" z="1770" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-168406" y="255825" z="714" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-166964" y="258460" z="170" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="-163173" y="255571" z="-301" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="-160496" y="256829" z="-990" /></way>
|
|
||||||
<way id="14"><jumpLoc next="15" x="-158959" y="254966" z="-477" /></way>
|
|
||||||
<way id="15"><jumpLoc next="16" x="-156214" y="255930" z="-761" /></way>
|
|
||||||
<way id="16"><jumpLoc next="17" x="-155227" y="253348" z="-1305" /></way>
|
|
||||||
<way id="17"><jumpLoc next="18" x="-152694" y="253517" z="-825" /></way>
|
|
||||||
<way id="18"><jumpLoc next="19" x="-150678" y="252758" z="-1369" /></way>
|
|
||||||
<way id="19"><jumpLoc next="-1" x="-149482" y="253328" z="-120" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="46888" ToY="154499" ToZ="-1928" Type="2" /> -->
|
|
||||||
<track trackId="24" zone="Execution ground floor (south) -> Torture chamber upper (south)" ToX="46888" ToY="154499" ToZ="-1928">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="46891" y="154392" z="-1928" />
|
|
||||||
<jumpLoc next="1" x="46455" y="156097" z="-864" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="45213" y="157407" z="-864" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="44882" y="156814" z="-1048" /></way>
|
|
||||||
<way id="3"><jumpLoc next="-1" x="44882" y="156814" z="-1048" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="45092" ToY="154679" ToZ="-1072" Type="2" /> -->
|
|
||||||
<track trackId="25" zone="Execution ground upper (South) -> Execution ground floor (south)" ToX="45092" ToY="154679" ToZ="-1072">
|
|
||||||
<way id="0"><jumpLoc next="1" x="45531" y="154481" z="-864" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="43293" y="153730" z="-1520" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="43679" y="152511" z="-1936" /></way>
|
|
||||||
<way id="3"><jumpLoc next="-1" x="43679" y="152511" z="-1936" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="44379" ToY="142183" ToZ="-2552" Type="2" /> -->
|
|
||||||
<track trackId="26" zone="Execution ground floor (north) -> Execution ground level (North)" ToX="44379" ToY="142183" ToZ="-2552">
|
|
||||||
<way id="0"><jumpLoc next="1" x="41350" y="142449" z="-2288" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="40307" y="139914" z="-1928" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="40816" y="138463" z="-1232" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="41264" y="139373" z="-1280" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="43048" y="138903" z="-1280" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="42845" y="139463" z="-1464" /></way>
|
|
||||||
<way id="6"><jumpLoc next="-1" x="42845" y="139463" z="-1464" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="15415" ToY="143182" ToZ="-2688" Type="2" /> -->
|
|
||||||
<track trackId="27" zone="Dean towns -> Jiluo De fortress Simon / North Gate" ToX="14655" ToY="143185" ToZ="-2600">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="14905" y="143251" z="-2665" />
|
|
||||||
<jumpLoc next="1" x="16113" y="142617" z="-2336" />
|
|
||||||
<jumpLoc next="8" x="19583" y="144840" z="-2672" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="19629" y="143349" z="-2728" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="24557" y="142920" z="-2848" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="26465" y="143645" z="-2592" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="27431" y="144696" z="-2664" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="29360" y="146178" z="-2288" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="33206" y="144729" z="-3408" /></way>
|
|
||||||
<way id="7"><jumpLoc next="-1" x="33206" y="144729" z="-3408" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="20292" y="143878" z="-2776" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="20877" y="144338" z="-2632" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="21374" y="143669" z="-2936" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="22302" y="139026" z="-3376" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="23489" y="136897" z="-3192" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="26637" y="137534" z="-3192" /></way>
|
|
||||||
<way id="14"><jumpLoc next="15" x="27631" y="134332" z="-2568" /></way>
|
|
||||||
<way id="15"><jumpLoc next="16" x="28642" y="133682" z="-2616" /></way>
|
|
||||||
<way id="16"><jumpLoc next="17" x="30860" y="134905" z="-3088" /></way>
|
|
||||||
<way id="17"><jumpLoc next="18" x="31406" y="133822" z="-3080" /></way>
|
|
||||||
<way id="18"><jumpLoc next="19" x="31546" y="133000" z="-3112" /></way>
|
|
||||||
<way id="19"><jumpLoc next="20" x="32056" y="133043" z="-2936" /></way>
|
|
||||||
<way id="20"><jumpLoc next="21" x="34572" y="132706" z="-2904" /></way>
|
|
||||||
<way id="21"><jumpLoc next="22" x="37324" y="131962" z="-2912" /></way>
|
|
||||||
<way id="22"><jumpLoc next="23" x="40739" y="129898" z="-2912" /></way>
|
|
||||||
<way id="23"><jumpLoc next="24" x="46737" y="132039" z="-3224" /></way>
|
|
||||||
<way id="24"><jumpLoc next="25" x="50467" y="133963" z="-1952" /></way>
|
|
||||||
<way id="25"><jumpLoc next="26" x="54118" y="135247" z="-1376" /></way>
|
|
||||||
<way id="26"><jumpLoc next="27" x="54477" y="138044" z="-2536" /></way>
|
|
||||||
<way id="27"><jumpLoc next="-1" x="54477" y="138044" z="-2536" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="146365" ToY="19678" ToZ="-1952" Type="2" /> -->
|
|
||||||
<track trackId="28" zone="Aden town north -> Aden Town West" ToX="146365" ToY="19678" ToZ="-1952">
|
|
||||||
<way id="0"><jumpLoc next="1" x="145855" y="20160" z="-1197" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="147434" y="23748" z="-568" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="147455" y="25104" z="-568" /></way>
|
|
||||||
<way id="3">
|
|
||||||
<jumpLoc next="4" x="146063" y="27140" z="-1552" />
|
|
||||||
<jumpLoc next="7" x="148859" y="27169" z="-1552" />
|
|
||||||
</way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="143409" y="25560" z="-1392" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="140277" y="25564" z="-2240" /></way>
|
|
||||||
<way id="6"><jumpLoc next="-1" x="140277" y="25564" z="-2240" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="151492" y="26898" z="-1248" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="152799" y="25529" z="-2144" /></way>
|
|
||||||
<way id="9"><jumpLoc next="-1" x="152799" y="25529" z="-2144" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="153235" ToY="24565" ToZ="-2104" Type="2" /> -->
|
|
||||||
<track trackId="29" zone="Aden town Oriental -> Aden Town West" ToX="153235" ToY="24565" ToZ="-2104">
|
|
||||||
<way id="0"><jumpLoc next="1" x="151215" y="23809" z="-1256" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="149513" y="24697" z="-1320" /></way>
|
|
||||||
<way id="2">
|
|
||||||
<jumpLoc next="3" x="147930" y="26384" z="-1288" />
|
|
||||||
<jumpLoc next="8" x="148110" y="23755" z="-568" />
|
|
||||||
</way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="146986" y="26402" z="-1288" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="145708" y="25394" z="-1512" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="143266" y="25584" z="-1392" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="142081" y="24439" z="-2240" /></way>
|
|
||||||
<way id="7"><jumpLoc next="-1" x="142081" y="24439" z="-2240" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="148510" y="20262" z="-1200" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="149000" y="16754" z="-1528" /></way>
|
|
||||||
<way id="10"><jumpLoc next="-1" x="149000" y="16754" z="-1528" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="140400" ToY="25200" ToZ="-2208" Type="2" /> -->
|
|
||||||
<track trackId="30" zone="Aden Town West -> Aden town Orient" ToX="140400" ToY="25200" ToZ="-2208">
|
|
||||||
<way id="0"><jumpLoc next="1" x="143390" y="25209" z="-1512" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="146043" y="26667" z="-1552" /></way>
|
|
||||||
<way id="2">
|
|
||||||
<jumpLoc next="3" x="148853" y="27622" z="-1088" />
|
|
||||||
<jumpLoc next="6" x="146327" y="24394" z="-2008" />
|
|
||||||
</way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="151261" y="26957" z="-1240" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="153312" y="24995" z="-2112" /></way>
|
|
||||||
<way id="5"><jumpLoc next="-1" x="153312" y="24995" z="-2112" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="145825" y="22984" z="-1384" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="146174" y="20168" z="-1200" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="145943" y="16913" z="-1568" /></way>
|
|
||||||
<way id="9"><jumpLoc next="-1" x="145943" y="16913" z="-1568" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="28015" ToY="-49177" ToZ="-1280" Type="2" /> -->
|
|
||||||
<track trackId="31" zone="Lu because outside the city -> Lu because of the city on the 1st district" ToX="28015" ToY="-49177" ToZ="-1280">
|
|
||||||
<way id="0"><jumpLoc next="1" x="27814" y="-49529" z="-1152" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="26936" y="-51106" z="-1080" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="23112" y="-50806" z="-1560" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="22582" y="-50670" z="-1256" /></way>
|
|
||||||
<way id="4">
|
|
||||||
<jumpLoc next="5" x="22551" y="-49385" z="-1104" />
|
|
||||||
<jumpLoc next="6" x="22096" y="-49760" z="-1296" />
|
|
||||||
</way>
|
|
||||||
<way id="5"><jumpLoc next="-1" x="22096" y="-49760" z="-1296" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="22096" y="-48413" z="-1296" /></way>
|
|
||||||
<way id="7"><jumpLoc next="-1" x="22096" y="-48413" z="-1296" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="22263" ToY="-50416" ToZ="-1296" Type="2" /> -->
|
|
||||||
<track trackId="32" zone="Lu because of the city -> Lu outside the city because No. 1 region" ToX="22263" ToY="-50416" ToZ="-1296">
|
|
||||||
<way id="0"><jumpLoc next="1" x="22562" y="-50147" z="-1256" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="22228" y="-50718" z="-904" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="24093" y="-49345" z="-1128" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="26957" y="-49328" z="-1112" /></way>
|
|
||||||
<way id="4">
|
|
||||||
<jumpLoc next="5" x="27314" y="-51562" z="-1352" />
|
|
||||||
<jumpLoc next="6" x="28697" y="-48710" z="-1352" />
|
|
||||||
</way>
|
|
||||||
<way id="5"><jumpLoc next="-1" x="27314" y="-51562" z="-1352" /></way>
|
|
||||||
<way id="6"><jumpLoc next="-1" x="28697" y="-48710" z="-1352" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="40741" ToY="-52143" ToZ="-832" Type="2" /> -->
|
|
||||||
<track trackId="33" zone="Lu because towns -> Lu outside the city because of the 1st district" ToX="40741" ToY="-52143" ToZ="-832">
|
|
||||||
<way id="0"><jumpLoc next="1" x="39753" y="-52598" z="-800" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="37910" y="-52776" z="-976" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="35820" y="-51690" z="-1056" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="34411" y="-53193" z="-1208" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="33209" y="-50683" z="-392" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="31584" y="-50164" z="-608" /></way>
|
|
||||||
<way id="6">
|
|
||||||
<jumpLoc next="7" x="28992" y="-48644" z="-1336" />
|
|
||||||
<jumpLoc next="8" x="27762" y="-50166" z="-1304" />
|
|
||||||
</way>
|
|
||||||
<way id="7"><jumpLoc next="-1" x="28992" y="-48644" z="-1336" /></way>
|
|
||||||
<way id="8"><jumpLoc next="-1" x="27762" y="-50166" z="-1304" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="83964" ToY="147720" ToZ="-3400" Type="2" /> -->
|
|
||||||
<track trackId="34" zone="Rocks towns -> Jiluo De fortress Eastgate / North Gate" ToX="83964" ToY="147720" ToZ="-3400">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="83951" y="147548" z="-3400" />
|
|
||||||
<jumpLoc next="1" x="81756" y="148447" z="-3136" />
|
|
||||||
<jumpLoc next="10" x="82884" y="146666" z="-2936" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="80668" y="148470" z="-2952" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="78580" y="148107" z="-2448" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="75786" y="150098" z="-2976" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="73158" y="151248" z="-2400" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="74529" y="154253" z="-2272" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="69588" y="153160" z="-2096" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="61029" y="156010" z="-1776" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="59874" y="154371" z="-2640" /></way>
|
|
||||||
<way id="9"><jumpLoc next="-1" x="59874" y="154371" z="-2640" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="82054" y="145324" z="-2384" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="79742" y="145440" z="-2880" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="77639" y="143755" z="-3376" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="75335" y="142661" z="-3608" /></way>
|
|
||||||
<way id="14"><jumpLoc next="15" x="73213" y="141394" z="-3528" /></way>
|
|
||||||
<way id="15"><jumpLoc next="16" x="71292" y="141068" z="-3120" /></way>
|
|
||||||
<way id="16"><jumpLoc next="17" x="66851" y="138289" z="-2520" /></way>
|
|
||||||
<way id="17"><jumpLoc next="18" x="60557" y="131728" z="-1616" /></way>
|
|
||||||
<way id="18"><jumpLoc next="19" x="54395" y="137376" z="-2592" /></way>
|
|
||||||
<way id="19"><jumpLoc next="-1" x="54395" y="137376" z="-2592" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="49080" ToY="142612" ToZ="-3656" Type="2" /> -->
|
|
||||||
<track trackId="35" zone="Execution ground floor (north) -> Execution ground floor (north)" ToX="49080" ToY="142612" ToZ="-3656">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="48953" y="142850" z="-3680" />
|
|
||||||
<jumpLoc next="1" x="48767" y="139432" z="-2048" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="49425" y="140227" z="-2920" /></way>
|
|
||||||
<way id="2"><jumpLoc next="-1" x="49425" y="140227" z="-2920" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="50803" ToY="152847" ToZ="-3544" Type="2" /> -->
|
|
||||||
<track trackId="36" zone="Execution ground floor (south) -> Execution ground floor (south)" ToX="50803" ToY="152847" ToZ="-3544">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="50498" y="152819" z="-3568" />
|
|
||||||
<jumpLoc next="1" x="51559" y="155203" z="-1840" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="50051" y="155608" z="-2744" /></way>
|
|
||||||
<way id="2"><jumpLoc next="-1" x="50051" y="155608" z="-2744" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-74601" ToY="53172" ToZ="-3689" Type="2" /> -->
|
|
||||||
<track trackId="37" zone="Harbor Island souls -> 2nd base / 3rd base" ToX="-74601" ToY="53172" ToZ="-3689">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="-74569" y="53397" z="-3680" />
|
|
||||||
<jumpLoc next="1" x="-79081" y="53684" z="-2361" />
|
|
||||||
<jumpLoc next="6" x="-74332" y="51980" z="-2985" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-85716" y="52123" z="-1496" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-89465" y="51188" z="-2105" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-92585" y="52596" z="-1529" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-94777" y="52484" z="-1609" /></way>
|
|
||||||
<way id="5"><jumpLoc next="-1" x="-94874" y="51974" z="-2024" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-74701" y="50543" z="-3285" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="-73919" y="47882" z="-2677" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-73580" y="46015" z="-2677" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-75310" y="43052" z="-1670" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-82173" y="40927" z="-1917" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-84946" y="39482" z="-1353" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="-84989" y="37659" z="-1853" /></way>
|
|
||||||
<way id="13"><jumpLoc next="-1" x="-86079" y="37178" z="-2048" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-86059" ToY="37025" ToZ="-2053" Type="2" /> -->
|
|
||||||
<track trackId="38" zone="3rd base -> souls Island Harbor / 2nd base" ToX="-86059" ToY="37025" ToZ="-2053">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="-86075" y="36737" z="-2053" />
|
|
||||||
<jumpLoc next="1" x="-84946" y="39482" z="-1353" />
|
|
||||||
<jumpLoc next="8" x="-87890" y="40798" z="-1581" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-82173" y="40927" z="-1917" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-75310" y="43052" z="-1670" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-73580" y="46015" z="-2677" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-73919" y="47882" z="-2677" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="-74701" y="50543" z="-3285" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-74332" y="51980" z="-2985" /></way>
|
|
||||||
<way id="7"><jumpLoc next="-1" x="-74569" y="53397" z="-3680" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-89644" y="42483" z="-1124" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-89643" y="47813" z="-1189" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-91354" y="48907" z="-1165" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-93768" y="52185" z="-1309" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="-95291" y="51610" z="-1642" /></way>
|
|
||||||
<way id="13"><jumpLoc next="-1" x="-94802" y="51981" z="-2024" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-95049" ToY="52004" ToZ="-2025" Type="2" /> -->
|
|
||||||
<track trackId="39" zone="Second base -> souls Island Port / 3rd base" ToX="-95049" ToY="52004" ToZ="-2025">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="-1" x="-95273" y="52196" z="-2025" />
|
|
||||||
<jumpLoc next="1" x="-92585" y="52596" z="-1529" />
|
|
||||||
<jumpLoc next="6" x="-96003" y="48814" z="-1024" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-89465" y="51188" z="-2105" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-85716" y="52123" z="-1496" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-79081" y="53684" z="-2361" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-75129" y="53060" z="-3289" /></way>
|
|
||||||
<way id="5"><jumpLoc next="-1" x="-74720" y="53302" z="-3680" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-93820" y="49460" z="-1456" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="-93115" y="48057" z="-1320" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-92117" y="45035" z="-1457" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-89329" y="42534" z="-1104" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-87890" y="40798" z="-1581" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-86589" y="37047" z="-1689" /></way>
|
|
||||||
<way id="12"><jumpLoc next="-1" x="-86079" y="37178" z="-2048" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-90543" ToY="45418" ToZ="-2640" Type="2" /> -->
|
|
||||||
<track trackId="40" zone="Nornil's Cave -> Kamael Village" ToX="-90543" ToY="45418" ToZ="-2640">
|
|
||||||
<way id="0"><jumpLoc next="1" x="-92115" y="45043" z="-1449" /></way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-95692" y="46620" z="-1180" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-100557" y="45170" z="-338" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-102453" y="45504" z="108" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-107755" y="46119" z="-480" /></way>
|
|
||||||
<way id="5"><jumpLoc next="6" x="-110482" y="48160" z="-87" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-114240" y="51312" z="1616" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="-116400" y="48016" z="688" /></way>
|
|
||||||
<way id="8"><jumpLoc next="-1" x="-116957" y="46724" z="363" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="20384" ToY="-129596" ToZ="-1720" Type="2" /> -->
|
|
||||||
<track trackId="41" zone="Raider's Crossroads -> Rightward Outpost / Leftward Outpost" ToX="20544" ToY="-129705" ToZ="-1726">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="1" x="21503" y="-132446" z="-1291" />
|
|
||||||
<jumpLoc next="6" x="15572" y="-133816" z="-1248" />
|
|
||||||
<jumpLoc next="-1" x="20528" y="-129562" z="-1728" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="22125" y="-135468" z="299" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="21033" y="-138123" z="-80" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="21000" y="-141109" z="334" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="20211" y="-143912" z="458" /></way>
|
|
||||||
<way id="5"><jumpLoc next="-1" x="17827" y="-145369" z="-601" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="13111" y="-134227" z="-345" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="11211" y="-135335" z="-279" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="8482" y="-137258" z="-712" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="7102" y="-139278" z="226" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="5878" y="-141731" z="-99" /></way>
|
|
||||||
<way id="11"><jumpLoc next="-1" x="6268" y="-143087" z="-598" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="15264" ToY="-120144" ToZ="-1112" Type="2" /> -->
|
|
||||||
<track trackId="42" zone="Gainak Village -> Raider's Crossroads / Land of Chaos" ToX="15036" ToY="-120142" ToZ="-1114">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="1" x="17944" y="-121144" z="-36" />
|
|
||||||
<jumpLoc next="6" x="10161" y="-118838" z="-671" />
|
|
||||||
<jumpLoc next="-1" x="15264" y="-120144" z="-1112" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="20096" y="-122968" z="-88" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="20736" y="-126328" z="-452" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="21964" y="-129124" z="-764" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="21138" y="-130316" z="-784" /></way>
|
|
||||||
<way id="5"><jumpLoc next="-1" x="20384" y="-129596" z="-1720" /></way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="6158" y="-117357" z="-767" /></way>
|
|
||||||
<way id="7"><jumpLoc next="8" x="1297" y="-119818" z="1674" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-2333" y="-120098" z="-1781" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-9817" y="-115840" z="-1704" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-11212" y="-117121" z="-2049" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-14434" y="-113000" z="-2780" /></way>
|
|
||||||
<way id="12"><jumpLoc next="13" x="-22979" y="-111601" z="-2500" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="-26288" y="-106295" z="-1713" /></way>
|
|
||||||
<way id="14"><jumpLoc next="-1" x="-26818" y="-107737" z="-1968" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-26818" ToY="-107737" ToZ="-1968" Type="2" /> -->
|
|
||||||
<track trackId="43" zone="Land of Chaos -> Leftward Outpost / Rightward Outpost" ToX="-26688" ToY="-107677" ToZ="-1980">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="1" x="-30099" y="-124846" z="-1184" />
|
|
||||||
<jumpLoc next="2" x="-11223" y="-117210" z="2053" />
|
|
||||||
<jumpLoc next="-1" x="-26818" y="-107737" z="-1968" />
|
|
||||||
</way>
|
|
||||||
<way id="1">
|
|
||||||
<jumpLoc next="3" x="-18988" y="-116596" z="889" />
|
|
||||||
<jumpLoc next="-1" x="-30932" y="-124751" z="-1882" />
|
|
||||||
</way>
|
|
||||||
<way id="2">
|
|
||||||
<jumpLoc next="3" x="-18988" y="-116596" z="889" />
|
|
||||||
<jumpLoc next="-1" x="-11182" y="-117453" z="-3131" />
|
|
||||||
</way>
|
|
||||||
<way id="3"><jumpLoc next="-1" x="-18068" y="-111964" z="-3768" /></way>
|
|
||||||
</track>
|
|
||||||
<!-- <FlyToLocation ToX="-25342" ToY="254452" ToZ="-2192" Type="2" /> -->
|
|
||||||
<track trackId="44" zone="Beleth's Magic Circle / Desert Quarry" ToX="-25342" ToY="254455" ToZ="-2201">
|
|
||||||
<way id="0">
|
|
||||||
<jumpLoc next="1" x="-25889" y="253399" z="-1664" />
|
|
||||||
<jumpLoc next="13" x="-24676" y="256516" z="-1616" />
|
|
||||||
<jumpLoc next="-1" x="-25342" y="254452" z="-2192" />
|
|
||||||
</way>
|
|
||||||
<way id="1"><jumpLoc next="2" x="-24198" y="250635" z="-2888" /></way>
|
|
||||||
<way id="2"><jumpLoc next="3" x="-23957" y="248986" z="-2728" /></way>
|
|
||||||
<way id="3"><jumpLoc next="4" x="-22615" y="247526" z="-2456" /></way>
|
|
||||||
<way id="4"><jumpLoc next="5" x="-21101" y="246229" z="-1544" /></way>
|
|
||||||
<way id="5">
|
|
||||||
<jumpLoc next="6" x="-22572" y="244798" z="-1984" />
|
|
||||||
<jumpLoc next="8" x="-19367" y="245501" z="-728" />
|
|
||||||
</way>
|
|
||||||
<way id="6"><jumpLoc next="7" x="-21624" y="242909" z="-3144" /></way>
|
|
||||||
<way id="7"><jumpLoc next="-1" x="-21624" y="242909" z="-3144" /></way>
|
|
||||||
<way id="8"><jumpLoc next="9" x="-16448" y="244901" z="224" /></way>
|
|
||||||
<way id="9"><jumpLoc next="10" x="-13784" y="245750" z="1944" /></way>
|
|
||||||
<way id="10"><jumpLoc next="11" x="-9962" y="244105" z="328" /></way>
|
|
||||||
<way id="11"><jumpLoc next="12" x="-8417" y="241208" z="-887" /></way>
|
|
||||||
<way id="12"><jumpLoc next="-1" x="-9209" y="241301" z="-1936" /></way>
|
|
||||||
<way id="13"><jumpLoc next="14" x="-23472" y="255040" z="-2388" /></way>
|
|
||||||
<way id="14"><jumpLoc next="15" x="-19786" y="253847" z="-2824" /></way>
|
|
||||||
<way id="15"><jumpLoc next="16" x="-18344" y="254697" z="-2736" /></way>
|
|
||||||
<way id="16"><jumpLoc next="17" x="-16171" y="253571" z="-2928" /></way>
|
|
||||||
<way id="17"><jumpLoc next="18" x="-15214" y="252636" z="-3432" /></way>
|
|
||||||
<way id="18"><jumpLoc next="-1" x="-15214" y="252636" z="-3432" /></way>
|
|
||||||
</track>
|
|
||||||
</list>
|
|
||||||
+1
-1
@@ -11,7 +11,7 @@
|
|||||||
<merchantPriceConfig defaultPriceConfig="18" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/MerchantPriceConfig.xsd">
|
<merchantPriceConfig defaultPriceConfig="18" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/MerchantPriceConfig.xsd">
|
||||||
<priceConfig id="0" name="Giran Town" baseTax="10" castleId="3" zoneId="11020" />
|
<priceConfig id="0" name="Giran Town" baseTax="10" castleId="3" zoneId="11020" />
|
||||||
<priceConfig id="1" name="DE Village" baseTax="15" castleId="4" zoneId="11021" />
|
<priceConfig id="1" name="DE Village" baseTax="15" castleId="4" zoneId="11021" />
|
||||||
<priceConfig id="2" name="Talking Island" baseTax="20" castleId="1" zoneId="11022" />
|
<priceConfig id="2" name="Talking Island" baseTax="15" castleId="1" zoneId="11022" />
|
||||||
<priceConfig id="3" name="Elven Village" baseTax="15" castleId="4" zoneId="11023" />
|
<priceConfig id="3" name="Elven Village" baseTax="15" castleId="4" zoneId="11023" />
|
||||||
<priceConfig id="4" name="Orc Village" baseTax="15" castleId="9" zoneId="11024" />
|
<priceConfig id="4" name="Orc Village" baseTax="15" castleId="9" zoneId="11024" />
|
||||||
<priceConfig id="5" name="Gludin Village" baseTax="20" castleId="1" zoneId="11025" />
|
<priceConfig id="5" name="Gludin Village" baseTax="20" castleId="1" zoneId="11025" />
|
||||||
|
|||||||
Vendored
-15
@@ -2626,19 +2626,4 @@
|
|||||||
<minion id="29011" count="4" respawnTime="360" /> <!-- Susceptor -->
|
<minion id="29011" count="4" respawnTime="360" /> <!-- Susceptor -->
|
||||||
<minion id="29007" count="10" respawnTime="360" /> <!-- Death Knight -->
|
<minion id="29007" count="10" respawnTime="360" /> <!-- Death Knight -->
|
||||||
</npc>
|
</npc>
|
||||||
<npc id="26094"> <!-- Sola -->
|
|
||||||
<minion id="26095" count="2" respawnTime="60" /> <!-- Knife Maid -->
|
|
||||||
</npc>
|
|
||||||
<npc id="26096"> <!-- Ariarc -->
|
|
||||||
<minion id="26097" count="2" respawnTime="60" /> <!-- Angel of Punishment -->
|
|
||||||
<minion id="26098" count="2" respawnTime="60" /> <!-- Angel of Death -->
|
|
||||||
</npc>
|
|
||||||
<npc id="26099"> <!-- Sirra -->
|
|
||||||
<minion id="26100" count="3" respawnTime="60" /> <!-- Sirra's Knight -->
|
|
||||||
<minion id="26101" count="1" respawnTime="60" /> <!-- Sirra's Ice Golem -->
|
|
||||||
</npc>
|
|
||||||
<npc id="26102"> <!-- Dark Rider -->
|
|
||||||
<minion id="26103" count="2" respawnTime="60" /> <!-- Berserk Dragon Warrior -->
|
|
||||||
<minion id="26104" count="2" respawnTime="60" /> <!-- Berserk Dragon Wizard -->
|
|
||||||
</npc>
|
|
||||||
</list>
|
</list>
|
||||||
+2685
File diff suppressed because it is too large
Load Diff
Vendored
+354
-397
@@ -1,48 +1,23 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/PrimeShop.xsd">
|
<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/PrimeShop.xsd">
|
||||||
<!-- Fortune Telling Event Items -->
|
<item id="1010030" cat="2" paymentType="0" price="8" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<!--
|
|
||||||
<item id="1011633" cat="4" paymentType="0" price="1" panelType="1" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="76" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23768" count="1" />
|
|
||||||
</item>
|
|
||||||
<item id="1011632" cat="4" paymentType="1" price="35000000" panelType="1" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="76" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23767" count="1" />
|
|
||||||
</item>
|
|
||||||
-->
|
|
||||||
|
|
||||||
<item id="1010030" cat="2" paymentType="0" price="8" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="20332" count="5000" /> <!-- Beast Soulshot-->
|
<item itemId="20332" count="5000" /> <!-- Beast Soulshot-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010031" cat="2" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="20334" count="5000" /> <!-- Blessed Beast Spiritshot-->
|
|
||||||
</item>
|
|
||||||
<item id="1010235" cat="6" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010235" cat="6" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22744" count="1" /> <!-- Vitality Suspending Potion Pack-->
|
<item itemId="22744" count="1" /> <!-- Vitality Suspending Potion Pack-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010394" cat="6" paymentType="0" price="60" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010394" cat="6" paymentType="0" price="60" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22979" count="1" /> <!-- SP Rune 50% Pack (1-hour)-->
|
<item itemId="22979" count="1" /> <!-- SP Rune 50% Pack (1-hour)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010520" cat="5" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23393" count="1" /> <!-- Brilliant Talisman Pack-->
|
|
||||||
</item>
|
|
||||||
<item id="1010609" cat="6" paymentType="0" price="60" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010609" cat="6" paymentType="0" price="60" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23295" count="1" /> <!-- Drop Rate Rune 200% Pack (1-hour)-->
|
<item itemId="23295" count="1" /> <!-- Drop Rate Rune 200% Pack (1-hour)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010848" cat="2" paymentType="0" price="23" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010857" cat="2" paymentType="0" price="39" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22500" count="1" /> <!-- My Teleport Scroll 10-unit Pack-->
|
|
||||||
</item>
|
|
||||||
<item id="1010857" cat="2" paymentType="0" price="39" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22932" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 85 Solo-->
|
<item itemId="22932" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 85 Solo-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010891" cat="2" paymentType="0" price="39" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010891" cat="2" paymentType="0" price="39" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21210" count="3" /> <!-- MP Recovery Potion-->
|
<item itemId="21210" count="3" /> <!-- MP Recovery Potion-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010895" cat="2" paymentType="0" price="39" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="36270" count="1" /> <!-- Entrance Pass: Teredor-->
|
|
||||||
</item>
|
|
||||||
<item id="1010929" cat="2" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22576" count="1" /> <!-- Mysterious Soulshot Large Pack (S-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1010972" cat="6" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010972" cat="6" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21212" count="1" /> <!-- Vitality Recovering Potion-->
|
<item itemId="21212" count="1" /> <!-- Vitality Recovering Potion-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
@@ -51,7 +26,7 @@
|
|||||||
<item itemId="22980" count="1" /> <!-- XP Rune I (Lv. 1-85) 100% Pack (1-hour)-->
|
<item itemId="22980" count="1" /> <!-- XP Rune I (Lv. 1-85) 100% Pack (1-hour)-->
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010974" cat="6" paymentType="0" price="160" panelType="0" recommended="4" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010974" cat="6" paymentType="0" price="160" panelType="4" recommended="4" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22966" count="1" /> <!-- Vitality Maintaining Potion (1-hour)-->
|
<item itemId="22966" count="1" /> <!-- Vitality Maintaining Potion (1-hour)-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -63,7 +38,7 @@
|
|||||||
<item itemId="17206" count="1" /> <!-- XP Buff 50% (1-hour)-->
|
<item itemId="17206" count="1" /> <!-- XP Buff 50% (1-hour)-->
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010977" cat="6" paymentType="0" price="290" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010977" cat="6" paymentType="0" price="290" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="17211" count="1" /> <!-- XP Buff 50% (4-hour)-->
|
<item itemId="17211" count="1" /> <!-- XP Buff 50% (4-hour)-->
|
||||||
<item itemId="23805" count="4" /> <!-- Hero Coin-->
|
<item itemId="23805" count="4" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -91,19 +66,11 @@
|
|||||||
<item itemId="23287" count="1" /> <!-- SP Rune 200% Pack (1-hour)-->
|
<item itemId="23287" count="1" /> <!-- SP Rune 200% Pack (1-hour)-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010984" cat="6" paymentType="0" price="1920" panelType="0" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010984" cat="6" paymentType="0" price="1920" panelType="4" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23288" count="1" /> <!-- SP Rune 200% Pack (7-day)-->
|
<item itemId="23288" count="1" /> <!-- SP Rune 200% Pack (7-day)-->
|
||||||
<item itemId="23805" count="26" /> <!-- Hero Coin-->
|
<item itemId="23805" count="26" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010985" cat="6" paymentType="0" price="100" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010987" cat="6" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22906" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (1-hour)-->
|
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1010986" cat="6" paymentType="0" price="1120" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="20553" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (7-day)-->
|
|
||||||
<item itemId="23805" count="15" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1010987" cat="6" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23277" count="1" /> <!-- XP Rune III (Lv. 1-99) 100% Pack (1-hour)-->
|
<item itemId="23277" count="1" /> <!-- XP Rune III (Lv. 1-99) 100% Pack (1-hour)-->
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -115,7 +82,7 @@
|
|||||||
<item itemId="23280" count="1" /> <!-- XP Rune III (Lv. 1-99) 200% Pack (1-hour)-->
|
<item itemId="23280" count="1" /> <!-- XP Rune III (Lv. 1-99) 200% Pack (1-hour)-->
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010990" cat="6" paymentType="0" price="4480" panelType="0" recommended="4" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010990" cat="6" paymentType="0" price="4480" panelType="4" recommended="4" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23281" count="1" /> <!-- XP Rune III (Lv. 1-99) 200% Pack (7-day)-->
|
<item itemId="23281" count="1" /> <!-- XP Rune III (Lv. 1-99) 200% Pack (7-day)-->
|
||||||
<item itemId="23805" count="67" /> <!-- Hero Coin-->
|
<item itemId="23805" count="67" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -139,7 +106,7 @@
|
|||||||
<item itemId="23805" count="21" /> <!-- Hero Coin-->
|
<item itemId="23805" count="21" /> <!-- Hero Coin-->
|
||||||
<item itemId="35977" count="1" /> <!-- XP Rune II (Lv. 1-95) 100% Pack (7-day) - Event-->
|
<item itemId="35977" count="1" /> <!-- XP Rune II (Lv. 1-95) 100% Pack (7-day) - Event-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010996" cat="6" paymentType="0" price="599" panelType="0" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010996" cat="6" paymentType="0" price="599" panelType="4" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22774" count="1" /> <!-- Drop Rate Rune 200% Pack (7-day)-->
|
<item itemId="22774" count="1" /> <!-- Drop Rate Rune 200% Pack (7-day)-->
|
||||||
<item itemId="23805" count="8" /> <!-- Hero Coin-->
|
<item itemId="23805" count="8" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -151,7 +118,7 @@
|
|||||||
<item itemId="23134" count="1" /> <!-- Name Change Ticket-->
|
<item itemId="23134" count="1" /> <!-- Name Change Ticket-->
|
||||||
<item itemId="23805" count="33" /> <!-- Hero Coin-->
|
<item itemId="23805" count="33" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1010999" cat="4" paymentType="0" price="2400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1010999" cat="4" paymentType="0" price="2400" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="33" /> <!-- Hero Coin-->
|
<item itemId="23805" count="33" /> <!-- Hero Coin-->
|
||||||
<item itemId="23814" count="1" /> <!-- Chaos Essence Pack - 30-day-->
|
<item itemId="23814" count="1" /> <!-- Chaos Essence Pack - 30-day-->
|
||||||
</item>
|
</item>
|
||||||
@@ -159,43 +126,19 @@
|
|||||||
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
||||||
<item itemId="23815" count="1" /> <!-- Chaos Essence Pack (Dual Class) - 30-day-->
|
<item itemId="23815" count="1" /> <!-- Chaos Essence Pack (Dual Class) - 30-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011001" cat="4" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="13750" count="3" /> <!-- Warrior's Quick Healing Potion-->
|
|
||||||
<item itemId="20553" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (7-day)-->
|
|
||||||
<item itemId="21037" count="10" /> <!-- Warrior's Quick CP Potion-->
|
|
||||||
<item itemId="22768" count="1" /> <!-- Drop Rate Rune 50% Pack (7-day)-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="34082" count="1" /> <!-- Heavenly Cocktail-->
|
|
||||||
</item>
|
|
||||||
<item id="1011002" cat="4" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="13750" count="9" /> <!-- Warrior's Quick Healing Potion-->
|
|
||||||
<item itemId="21037" count="30" /> <!-- Warrior's Quick CP Potion-->
|
|
||||||
<item itemId="23276" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (30-day)-->
|
|
||||||
<item itemId="23296" count="1" /> <!-- Drop Rate Rune 50% Pack (30-day)-->
|
|
||||||
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="34082" count="3" /> <!-- Heavenly Cocktail-->
|
|
||||||
</item>
|
|
||||||
<item id="1011003" cat="4" paymentType="0" price="3600" panelType="0" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="13750" count="37" /> <!-- Warrior's Quick Healing Potion-->
|
|
||||||
<item itemId="21037" count="90" /> <!-- Warrior's Quick CP Potion-->
|
|
||||||
<item itemId="23279" count="1" /> <!-- XP Rune III (Lv. 1-99) 100% Pack (30-day)-->
|
|
||||||
<item itemId="23297" count="1" /> <!-- Drop Rate Rune 100% Pack (30-day)-->
|
|
||||||
<item itemId="23805" count="54" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="34082" count="9" /> <!-- Heavenly Cocktail-->
|
|
||||||
</item>
|
|
||||||
<item id="1011004" cat="3" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011004" cat="3" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21584" count="1" /> <!-- Festival's Cloak - Pitch Black Pack-->
|
<item itemId="21584" count="1" /> <!-- Festival's Cloak - Pitch Black Pack-->
|
||||||
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011005" cat="3" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011005" cat="3" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21589" count="1" /> <!-- Festival's Cloak - Pearl White Pack-->
|
<item itemId="21589" count="1" /> <!-- Festival's Cloak - Pearl White Pack-->
|
||||||
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011006" cat="3" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011006" cat="3" paymentType="0" price="80" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21421" count="1" /> <!-- Color Title Pack-->
|
<item itemId="21421" count="1" /> <!-- Color Title Pack-->
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011007" cat="3" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011007" cat="3" paymentType="0" price="80" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
<item itemId="36308" count="1" /> <!-- Beauty Shop Ticket-->
|
<item itemId="36308" count="1" /> <!-- Beauty Shop Ticket-->
|
||||||
</item>
|
</item>
|
||||||
@@ -229,15 +172,7 @@
|
|||||||
<item itemId="23514" count="1" /> <!-- Maid Hair Accessory Appearance Stone-->
|
<item itemId="23514" count="1" /> <!-- Maid Hair Accessory Appearance Stone-->
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011015" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011022" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21167" count="1" /> <!-- Agathion - Zaken's Spirit Swords Pack-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011021" cat="3" paymentType="0" price="799" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="21413" count="1" /> <!-- Mount - Jet Bike Pack-->
|
|
||||||
<item itemId="23805" count="10" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011022" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22402" count="1" /> <!-- Weapon Appearance Stone (R-grade)-->
|
<item itemId="22402" count="1" /> <!-- Weapon Appearance Stone (R-grade)-->
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -261,67 +196,19 @@
|
|||||||
<item itemId="22709" count="1" /> <!-- Blessed Hair Accessory Appearance Stone-->
|
<item itemId="22709" count="1" /> <!-- Blessed Hair Accessory Appearance Stone-->
|
||||||
<item itemId="23805" count="4" /> <!-- Hero Coin-->
|
<item itemId="23805" count="4" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011043" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011044" cat="3" paymentType="0" price="799" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23482" count="1" /> <!-- Top Hat-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011044" cat="3" paymentType="0" price="799" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23530" count="1" /> <!-- Automatic Appearance Stone: Emerald Weapon-->
|
<item itemId="23530" count="1" /> <!-- Automatic Appearance Stone: Emerald Weapon-->
|
||||||
<item itemId="23805" count="10" /> <!-- Hero Coin-->
|
<item itemId="23805" count="10" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011045" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011069" cat="5" paymentType="0" price="320" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21126" count="1" /> <!-- Warrior's Helmet-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011046" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="20022" count="1" /> <!-- Ruthless Tribe Mask-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011058" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="9886" count="1" /> <!-- Wizard Hat - Big Head-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011059" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="13498" count="1" /> <!-- Refined Wizard Hat-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011062" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="37661" count="1" /> <!-- Refined Romantic Chapeau: Blue-->
|
|
||||||
</item>
|
|
||||||
<item id="1011063" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="37662" count="1" /> <!-- Refined Romantic Chapeau: Gold-->
|
|
||||||
</item>
|
|
||||||
<item id="1011064" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="37663" count="1" /> <!-- Refined Romantic Chapeau: Green-->
|
|
||||||
</item>
|
|
||||||
<item id="1011065" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="37664" count="1" /> <!-- Refined Romantic Chapeau: Red-->
|
|
||||||
</item>
|
|
||||||
<item id="1011066" cat="3" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="37665" count="1" /> <!-- Refined Romantic Chapeau: Yellow-->
|
|
||||||
</item>
|
|
||||||
<item id="1011067" cat="5" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="33855" count="1" /> <!-- Lucky Enchant Stone: Weapon (R-grade) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011068" cat="5" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="33861" count="1" /> <!-- Lucky Enchant Stone: Armor (R-grade) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011069" cat="5" paymentType="0" price="320" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="4" /> <!-- Hero Coin-->
|
<item itemId="23805" count="4" /> <!-- Hero Coin-->
|
||||||
<item itemId="36008" count="1" /> <!-- High-grade Lucky Enchant Stone: Weapon (R-grade)-->
|
<item itemId="36008" count="1" /> <!-- High-grade Lucky Enchant Stone: Weapon (R-grade)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011070" cat="5" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011070" cat="5" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
<item itemId="36009" count="1" /> <!-- High-grade Lucky Enchant Stone: Armor (R-grade)-->
|
<item itemId="36009" count="1" /> <!-- High-grade Lucky Enchant Stone: Armor (R-grade)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011071" cat="5" paymentType="0" price="120" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011071" cat="5" paymentType="0" price="120" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23399" count="1" /> <!-- Blessed Scroll: Enchant Armor Pack-->
|
<item itemId="23399" count="1" /> <!-- Blessed Scroll: Enchant Armor Pack-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -333,17 +220,17 @@
|
|||||||
<item itemId="23385" count="1" /> <!-- Life Stone: Adenian Underwear-->
|
<item itemId="23385" count="1" /> <!-- Life Stone: Adenian Underwear-->
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011074" cat="5" paymentType="0" price="1599" panelType="0" recommended="4" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011074" cat="5" paymentType="0" price="1599" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="22" /> <!-- Hero Coin-->
|
<item itemId="23805" count="22" /> <!-- Hero Coin-->
|
||||||
<item itemId="35562" count="25" /> <!-- Energy of Destruction-->
|
<item itemId="35562" count="25" /> <!-- Energy of Destruction-->
|
||||||
<item itemId="35563" count="30" /> <!-- Giant's Energy-->
|
<item itemId="35563" count="30" /> <!-- Giant's Energy-->
|
||||||
<item itemId="37622" count="1" /> <!-- Kaliel's Energy Box - Western Winds-->
|
<item itemId="37622" count="1" /> <!-- Kaliel's Energy Box - Western Winds-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011075" cat="5" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011075" cat="5" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
<item itemId="35562" count="2" /> <!-- Energy of Destruction-->
|
<item itemId="35562" count="2" /> <!-- Energy of Destruction-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011076" cat="5" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011076" cat="5" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21580" count="1" /> <!-- Power Shirt-->
|
<item itemId="21580" count="1" /> <!-- Power Shirt-->
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -363,7 +250,7 @@
|
|||||||
<item itemId="23805" count="8" /> <!-- Hero Coin-->
|
<item itemId="23805" count="8" /> <!-- Hero Coin-->
|
||||||
<item itemId="38757" count="1" /> <!-- Blessed High-grade Lucky Enchant Stone: Weapon (R-grade)-->
|
<item itemId="38757" count="1" /> <!-- Blessed High-grade Lucky Enchant Stone: Weapon (R-grade)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011081" cat="5" paymentType="0" price="319" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011081" cat="5" paymentType="0" price="319" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="4" /> <!-- Hero Coin-->
|
<item itemId="23805" count="4" /> <!-- Hero Coin-->
|
||||||
<item itemId="38758" count="1" /> <!-- Blessed High-grade Lucky Enchant Stone: Armor (R-grade)-->
|
<item itemId="38758" count="1" /> <!-- Blessed High-grade Lucky Enchant Stone: Armor (R-grade)-->
|
||||||
</item>
|
</item>
|
||||||
@@ -371,30 +258,6 @@
|
|||||||
<item itemId="14065" count="1" /> <!-- Superior Minion Coupon - 5-hour-->
|
<item itemId="14065" count="1" /> <!-- Superior Minion Coupon - 5-hour-->
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011083" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22312" count="1" /> <!-- Top-grade Magic Pin Cloth Belt-->
|
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011084" cat="2" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22313" count="1" /> <!-- Top-grade Magic Pouch Cloth Belt-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011085" cat="2" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22900" count="1" /> <!-- Expand Inventory Lv. 1-->
|
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011086" cat="2" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22901" count="1" /> <!-- Expand Inventory Lv. 2-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011087" cat="2" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22902" count="1" /> <!-- Spellbook: Expand Warehouse Lv. 1-->
|
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011088" cat="2" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22903" count="1" /> <!-- Spellbook: Expand Warehouse Lv. 2-->
|
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011089" cat="2" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011089" cat="2" paymentType="0" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22542" count="1" /> <!-- Improved Mithril Bracelet Pack-->
|
<item itemId="22542" count="1" /> <!-- Improved Mithril Bracelet Pack-->
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
||||||
@@ -403,11 +266,11 @@
|
|||||||
<item itemId="22888" count="5000" /> <!-- Mysterious Soulshot (R-grade)-->
|
<item itemId="22888" count="5000" /> <!-- Mysterious Soulshot (R-grade)-->
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011091" cat="2" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011091" cat="2" paymentType="0" price="160" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22889" count="5000" /> <!-- Mysterious Blessed Spiritshot (R-grade)-->
|
<item itemId="22889" count="5000" /> <!-- Mysterious Blessed Spiritshot (R-grade)-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011092" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011092" cat="2" paymentType="0" price="240" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23232" count="1" /> <!-- Traces of Ancient Kartia's Labyrinth-->
|
<item itemId="23232" count="1" /> <!-- Traces of Ancient Kartia's Labyrinth-->
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -417,37 +280,29 @@
|
|||||||
</item>
|
</item>
|
||||||
<item id="1011094" cat="2" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011094" cat="2" paymentType="0" price="399" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
<item itemId="35757" count="1" /> <!-- Scroll: Reputation (Top-grade) - Event-->
|
<item itemId="35757" count="1" /> <!-- Scroll: Reputation (Top-grade)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011095" cat="2" paymentType="0" price="159" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011095" cat="2" paymentType="0" price="159" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="20914" count="1" /> <!-- Enhanced Rose Spirit Coupon (5-hour)-->
|
<item itemId="20914" count="1" /> <!-- Enhanced Rose Spirit Coupon (5-hour)-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011096" cat="2" paymentType="0" price="560" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011096" cat="2" paymentType="0" price="560" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="20904" count="250" /> <!-- Rose Essence-->
|
<item itemId="20904" count="250" /> <!-- Rose Essence-->
|
||||||
<item itemId="23805" count="7" /> <!-- Hero Coin-->
|
<item itemId="23805" count="7" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011097" cat="2" paymentType="0" price="159" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22499" count="1" /> <!-- My Teleport Book Pack-->
|
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011098" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22504" count="1" /> <!-- My Teleport Flag 10-unit Pack-->
|
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011099" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011099" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21237" count="3" /> <!-- Super Healthy Juice Pack (HP)-->
|
<item itemId="21237" count="3" /> <!-- Super Healthy Juice Pack (HP)-->
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011100" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011100" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21241" count="3" /> <!-- Super Healthy Juice Pack (CP)-->
|
<item itemId="21241" count="3" /> <!-- Super Healthy Juice Pack (CP)-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011101" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011101" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22933" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 90 Solo-->
|
<item itemId="22933" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 90 Solo-->
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011102" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011102" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22934" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 95 Solo-->
|
<item itemId="22934" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 95 Solo-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
@@ -459,15 +314,11 @@
|
|||||||
<item itemId="22936" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 90 Party-->
|
<item itemId="22936" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 90 Party-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011106" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011107" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="21037" count="100" /> <!-- Warrior's Quick CP Potion-->
|
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011107" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
<item itemId="36275" count="1" /> <!-- Entrance Pass: Istina (Normal)-->
|
<item itemId="36275" count="1" /> <!-- Entrance Pass: Istina (Normal)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011108" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011108" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
<item itemId="36273" count="1" /> <!-- Entrance Pass: Fortuna-->
|
<item itemId="36273" count="1" /> <!-- Entrance Pass: Fortuna-->
|
||||||
</item>
|
</item>
|
||||||
@@ -475,27 +326,19 @@
|
|||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
<item itemId="36274" count="1" /> <!-- Entrance Pass: Nornil's Garden-->
|
<item itemId="36274" count="1" /> <!-- Entrance Pass: Nornil's Garden-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011110" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011110" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
<item itemId="36272" count="1" /> <!-- Entrance Pass: Spezion (Epic)-->
|
<item itemId="36272" count="1" /> <!-- Entrance Pass: Spezion (Epic)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011111" cat="2" paymentType="0" price="79" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="36271" count="1" /> <!-- Entrance Pass: Spezion (Normal)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011112" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011112" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
<item itemId="36276" count="1" /> <!-- Entrance Pass: Octavis (Normal)-->
|
<item itemId="36276" count="1" /> <!-- Entrance Pass: Octavis (Normal)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011113" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011113" cat="2" paymentType="0" price="119" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
<item itemId="36277" count="1" /> <!-- Entrance Pass: Baylor-->
|
<item itemId="36277" count="1" /> <!-- Entrance Pass: Baylor-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011115" cat="2" paymentType="0" price="239" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011116" cat="2" paymentType="0" price="239" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
|
||||||
<item itemId="38159" count="1" /> <!-- Entrance Pass: Fantasy Fishing Dock (1-hour)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011116" cat="2" paymentType="0" price="239" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
||||||
<item itemId="37867" count="1" /> <!-- Valiant Scroll-->
|
<item itemId="37867" count="1" /> <!-- Valiant Scroll-->
|
||||||
</item>
|
</item>
|
||||||
@@ -511,235 +354,349 @@
|
|||||||
<item itemId="23805" count="55" /> <!-- Hero Coin-->
|
<item itemId="23805" count="55" /> <!-- Hero Coin-->
|
||||||
<item itemId="38574" count="1" /> <!-- Apparition Stone (Lv. 98)-->
|
<item itemId="38574" count="1" /> <!-- Apparition Stone (Lv. 98)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011120" cat="7" paymentType="2" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="1538" count="1" /> <!-- Blessed Scroll of Escape-->
|
|
||||||
</item>
|
|
||||||
<item id="1011121" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22204" count="1" /> <!-- Attribute Stone Pack - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011122" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="37612" count="2" /> <!-- Ingredient Box - Western Winds-->
|
|
||||||
</item>
|
|
||||||
<item id="1011123" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22888" count="2500" /> <!-- Mysterious Soulshot (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011124" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22889" count="1000" /> <!-- Mysterious Blessed Spiritshot (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011125" cat="7" paymentType="2" price="3" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="37607" count="1" /> <!-- Treasure Chest - Western Winds-->
|
|
||||||
</item>
|
|
||||||
<item id="1011126" cat="7" paymentType="2" price="4" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="37671" count="2" /> <!-- Heavenly Recovery Potion-->
|
|
||||||
</item>
|
|
||||||
<item id="1011128" cat="7" paymentType="2" price="5" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="3936" count="1" /> <!-- Blessed Scroll of Resurrection-->
|
|
||||||
</item>
|
|
||||||
<item id="1011131" cat="7" paymentType="2" price="8" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="21619" count="10" /> <!-- Rune of Feather Pack (24-hour)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011132" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="37660" count="1" /> <!-- Magmeld's Instrument-->
|
|
||||||
</item>
|
|
||||||
<item id="1011133" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="36002" count="1" /> <!-- Heavenly CP Cookie-->
|
|
||||||
</item>
|
|
||||||
<item id="1011134" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="34082" count="1" /> <!-- Heavenly Cocktail-->
|
|
||||||
</item>
|
|
||||||
<item id="1011136" cat="7" paymentType="2" price="20" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
|
||||||
<item itemId="37622" count="1" /> <!-- Kaliel's Energy Box - Western Winds-->
|
|
||||||
</item>
|
|
||||||
<item id="1011138" cat="7" paymentType="2" price="30" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="35563" count="1" /> <!-- Giant's Energy-->
|
|
||||||
</item>
|
|
||||||
<item id="1011139" cat="7" paymentType="2" price="30" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="35562" count="1" /> <!-- Energy of Destruction-->
|
|
||||||
</item>
|
|
||||||
<item id="1011140" cat="7" paymentType="2" price="50" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="35742" count="1" /> <!-- Scroll: Reputation (Low-grade) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011141" cat="7" paymentType="2" price="50" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="35741" count="1" /> <!-- Scroll: PK (Low-grade) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011142" cat="7" paymentType="2" price="75" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="36979" count="1" /> <!-- Life Stone: Hair Accessory-->
|
|
||||||
</item>
|
|
||||||
<item id="1011143" cat="7" paymentType="2" price="100" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
|
||||||
<item itemId="37609" count="1" /> <!-- Pendant Pack - Western Winds-->
|
|
||||||
</item>
|
|
||||||
<item id="1011144" cat="7" paymentType="2" price="125" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="36155" count="1" /> <!-- Enhanced Kaliel's Attribute Stone Pack-->
|
|
||||||
</item>
|
|
||||||
<item id="1011145" cat="7" paymentType="2" price="125" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="35749" count="1" /> <!-- Weapon Attribute Change Crystal (R-grade) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011146" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="36978" count="1" /> <!-- Scroll: Enchant Hair Accessory-->
|
|
||||||
</item>
|
|
||||||
<item id="1011147" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="38583" count="1" /> <!-- Emperor's Dessert Set (Defense Type)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011148" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="38582" count="1" /> <!-- Emperor's Dessert Set (Magic Type)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011149" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="38581" count="1" /> <!-- Emperor's Dessert Set (Attack Type)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011151" cat="7" paymentType="2" price="175" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="20948" count="1" /> <!-- Agathion - Phoenix Pack (7-day) - Nirvana Rebirth-->
|
|
||||||
</item>
|
|
||||||
<item id="1011152" cat="7" paymentType="2" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="37613" count="1" /> <!-- Hero's Treasure Chest - Western Winds-->
|
|
||||||
</item>
|
|
||||||
<item id="1011153" cat="7" paymentType="2" price="250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="20588" count="1" /> <!-- Agathion - Weaver Pack (24-hour) - Power of the Golden Calf-->
|
|
||||||
<item itemId="20597" count="3" /> <!-- Girl's Soulstone-->
|
|
||||||
</item>
|
|
||||||
<item id="1011154" cat="7" paymentType="2" price="250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="20597" count="3" /> <!-- Girl's Soulstone-->
|
|
||||||
<item itemId="20619" count="1" /> <!-- Agathion - Weaver Pack (24-hour) - Flute Sound-->
|
|
||||||
</item>
|
|
||||||
<item id="1011156" cat="7" paymentType="2" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23774" count="1" /> <!-- Improved Lucky Enchant Stone: Weapon (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011159" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22202" count="1" /> <!-- Weapon Pack (S80-grade) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011160" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="34953" count="1" /> <!-- Lv. 5 Giant Dye Pack - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011161" cat="7" paymentType="2" price="750" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23786" count="1" /> <!-- Lesser Giant's Lucky Enchant Stone: Armor (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011162" cat="7" paymentType="2" price="750" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="35569" count="1" /> <!-- Bloody Eternal Enhancement Stone-->
|
|
||||||
</item>
|
|
||||||
<item id="1011163" cat="7" paymentType="2" price="1000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="34955" count="1" /> <!-- Lv. 5 Ancient Dye Pack - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011164" cat="7" paymentType="2" price="1250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="36156" count="1" /> <!-- Enhanced Kaliel's Attribute Crystal Pack-->
|
|
||||||
</item>
|
|
||||||
<item id="1011167" cat="7" paymentType="2" price="1500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22188" count="1" /> <!-- Birthday Vitality Potion-->
|
|
||||||
</item>
|
|
||||||
<item id="1011170" cat="7" paymentType="2" price="2500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="23785" count="1" /> <!-- Lesser Giant's Lucky Enchant Stone: Weapon (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011171" cat="7" paymentType="2" price="3000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
|
||||||
<item itemId="39345" count="1" /> <!-- Amaranthine Weapon Pack-->
|
|
||||||
</item>
|
|
||||||
<item id="1011173" cat="7" paymentType="2" price="10000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="34775" count="1" /> <!-- Scroll of Blessing (R2-grade) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011174" cat="7" paymentType="2" price="10000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="35568" count="1" /> <!-- Bloody Amaranthine Enhancement Stone-->
|
|
||||||
</item>
|
|
||||||
<item id="1011185" cat="7" paymentType="2" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
|
||||||
<item itemId="35664" count="2" /> <!-- Scroll: 10,000 Individual Fame-->
|
|
||||||
</item>
|
|
||||||
<item id="1011186" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
|
||||||
<item itemId="30275" count="1" /> <!-- Scroll: 1,000,000 SP-->
|
|
||||||
</item>
|
|
||||||
<item id="1011187" cat="7" paymentType="2" price="15" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="18563" count="1" /> <!-- Life Stone (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011188" cat="7" paymentType="2" price="25" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22205" count="1" /> <!-- Attribute Crystal Pack - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011189" cat="7" paymentType="2" price="50" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="10649" count="1" /> <!-- Feather of Blessing-->
|
|
||||||
</item>
|
|
||||||
<item id="1011190" cat="7" paymentType="2" price="200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
|
||||||
<item itemId="36405" count="1" /> <!-- Rare Accessory Pack (Expiratory) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011191" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
|
||||||
<item itemId="37566" count="1" /> <!-- Blessed Lucky Enchant Stone: Weapon (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011192" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="39341" count="1" /> <!-- Elegia Armor Pack-->
|
|
||||||
</item>
|
|
||||||
<item id="1011193" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="37567" count="1" /> <!-- Blessed Lucky Enchant Stone: Armor (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011194" cat="7" paymentType="2" price="1000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
|
||||||
<item itemId="22427" count="1" /> <!-- Divine Scroll: Enchant Weapon (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011195" cat="7" paymentType="2" price="2000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="37566" count="1" /> <!-- Blessed Lucky Enchant Stone: Weapon (R-grade)-->
|
|
||||||
</item>
|
|
||||||
<item id="1011196" cat="7" paymentType="2" price="1750" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="34774" count="1" /> <!-- Scroll of Blessing (R1-grade) - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011197" cat="7" paymentType="2" price="5000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="37666" count="1" /> <!-- Rare Accessory Pack-->
|
|
||||||
</item>
|
|
||||||
<item id="1011198" cat="7" paymentType="2" price="6500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="35567" count="1" /> <!-- Dark Eternal Enhancement Stone-->
|
|
||||||
</item>
|
|
||||||
<item id="1011207" cat="7" paymentType="2" price="1500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="34954" count="1" /> <!-- Lv. 5 Legendary Dye Pack - Event-->
|
|
||||||
</item>
|
|
||||||
<item id="1011208" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
|
||||||
<item itemId="22577" count="1" /> <!-- Mysterious Blessed Spiritshot Large Pack (S-grade)-->
|
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
|
||||||
</item>
|
|
||||||
<item id="1011209" cat="2" paymentType="0" price="199" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011209" cat="2" paymentType="0" price="199" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22937" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 95 Party-->
|
<item itemId="22937" count="1" /> <!-- Entrance Pass: Kartia's Labyrinth Lv. 95 Party-->
|
||||||
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011211" cat="7" paymentType="2" price="8" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011219" cat="2" paymentType="0" price="799" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="38105" count="200" /> <!-- Superior CP Potion-->
|
<item itemId="23805" count="11" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="34751" count="1" /> <!-- Agathion - XP Bottle Pack (10-hour)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011249" cat="7" paymentType="2" price="100500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011220" cat="2" paymentType="0" price="1199" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="36147" count="1" /> <!-- Dark Amaranthine Weapon Pack-->
|
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="34752" count="1" /> <!-- Agathion - XP Bottle Pack (20-hour)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011250" cat="7" paymentType="2" price="87500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011221" cat="2" paymentType="0" price="1599" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="37717" count="1" /> <!-- Talisman - Seven Signs-->
|
<item itemId="23805" count="22" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="34753" count="1" /> <!-- Agathion - XP Bottle Pack (30-hour)-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011251" cat="7" paymentType="2" price="71750" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011287" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="35564" count="1" /> <!-- Ruler's Authority-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23846" count="1" /> <!-- Mysterious Slaughter Dye - Damage Reflect Resistance, Received Damage Decrease, 1-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011252" cat="7" paymentType="2" price="45000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011288" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="35649" count="1" /> <!-- Sealed Talisman - Longing-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23845" count="1" /> <!-- Mysterious Hunt Dye - P. Def., Speed, 1-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011253" cat="7" paymentType="2" price="45000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011289" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="36146" count="1" /> <!-- Bloody Amaranthine Weapon Pack-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23830" count="1" /> <!-- Mysterious Kamael Dye - Battle Instinct, Dark Silence, Soul Protection, 7-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011254" cat="7" paymentType="2" price="30000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011290" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="34777" count="1" /> <!-- Scroll of Blessing (R99-grade) - Event-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23829" count="1" /> <!-- Mysterious Dwarf Dye - Dexterity, Blessing of Earth, Endurance, 7-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011255" cat="7" paymentType="2" price="24000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011291" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23860" count="1" /> <!-- Raid Boss' Soul Pack-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23828" count="1" /> <!-- Mysterious Orc Dye - Blessing of Fire, Energetic, Savage, 7-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011256" cat="7" paymentType="2" price="20250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011292" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="37623" count="1" /> <!-- Soul Bottle Pack - Western Winds-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23827" count="1" /> <!-- Mysterious Dark Elf Dye - Sharpness, Blessing of Wind, Disparition, 7-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011257" cat="7" paymentType="2" price="17875" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011293" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="35566" count="1" /> <!-- Dark Amaranthine Enhancement Stone-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23826" count="1" /> <!-- Mysterious Elf Dye - Blessing of Water, Delicacy, Prevision, 7-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011258" cat="7" paymentType="2" price="12500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011294" cat="2" paymentType="0" price="240" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="34776" count="1" /> <!-- Scroll of Blessing (R95-grade) - Event-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23825" count="1" /> <!-- Mysterious Human Dye - Aim, Mental, Unbind, 7-day-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011315" cat="6" paymentType="0" price="160" panelType="3" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011315" cat="6" paymentType="0" price="160" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23728" count="1" /> <!-- Erupting Vitality XP Potion-->
|
<item itemId="23728" count="1" /> <!-- Erupting Vitality XP Potion-->
|
||||||
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011334" cat="2" paymentType="0" price="80" panelType="3" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011331" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="36396" count="3" /> <!-- Energy Drink Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011334" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
<item itemId="23985" count="1" /> <!-- Extra Pass: Ancient Kartia's Labyrinth-->
|
<item itemId="23985" count="1" /> <!-- Extra Pass: Ancient Kartia's Labyrinth-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011341" cat="4" paymentType="0" price="320" panelType="1" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011343" cat="4" paymentType="0" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="40" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="22883" count="1" /> <!-- Scroll: Replenish Vitality-->
|
<item itemId="22578" count="1" /> <!-- Weapon Pack (C-grade) (30-day)-->
|
||||||
<item itemId="22966" count="1" /> <!-- Vitality Maintaining Potion (1-hour)-->
|
<item itemId="22583" count="1" /> <!-- Armor Pack (C-grade) (30-day)-->
|
||||||
<item itemId="23728" count="1" /> <!-- Erupting Vitality XP Potion-->
|
<item itemId="22618" count="1" /> <!-- Jewelry Pack (C-grade)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011344" cat="4" paymentType="0" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="52" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="22579" count="1" /> <!-- Weapon Pack (B-grade) (30-day)-->
|
||||||
|
<item itemId="22584" count="1" /> <!-- Armor Pack (B-grade) (30-day)-->
|
||||||
|
<item itemId="22617" count="1" /> <!-- Jewelry Pack (B-grade)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011345" cat="4" paymentType="0" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="61" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="22580" count="1" /> <!-- Weapon Pack (A-grade) (30-day)-->
|
||||||
|
<item itemId="22585" count="1" /> <!-- Armor Pack (A-grade) (30-day)-->
|
||||||
|
<item itemId="22616" count="1" /> <!-- Jewelry Pack (A-grade)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011346" cat="4" paymentType="0" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="76" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="22571" count="1" /> <!-- Agathion Pack (7-day)-->
|
||||||
|
<item itemId="22581" count="1" /> <!-- Weapon Pack (S-grade) (90-day)-->
|
||||||
|
<item itemId="22586" count="1" /> <!-- Armor Pack (S-grade) (90-day)-->
|
||||||
|
<item itemId="22619" count="1" /> <!-- Dynasty Accessory of Fortune Pack (S-grade)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011347" cat="4" paymentType="0" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="80" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="21375" count="1" /> <!-- Mount - Darkmane Pacer Pack (30-day)-->
|
||||||
|
<item itemId="23127" count="1" /> <!-- Armor Pack (S80-grade) (90-day)-->
|
||||||
|
<item itemId="23128" count="1" /> <!-- Weapon Pack (S80-grade) (90-day)-->
|
||||||
|
<item itemId="23129" count="1" /> <!-- Accessory Pack (S80-grade) (90-day)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011348" cat="2" paymentType="0" price="120" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="2" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="40056" count="1" /> <!-- Mysterious Wind Scroll-->
|
||||||
|
</item>
|
||||||
|
<item id="1011366" cat="3" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23878" count="1" /> <!-- Samurai Hair Accessory Appearance Stone-->
|
||||||
|
<item itemId="23880" count="1" /> <!-- Samurai Outfit Appearance Stone-->
|
||||||
|
</item>
|
||||||
|
<item id="1011367" cat="3" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23531" count="1" /> <!-- Automatic Appearance Stone: Japanese Weapon-->
|
||||||
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
</item>
|
</item>
|
||||||
<item id="1011342" cat="4" paymentType="0" price="2000" panelType="1" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
<item id="1011370" cat="4" paymentType="1" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
||||||
<item itemId="22885" count="2" /> <!-- Scroll: Replenish Vitality (Top-grade)-->
|
<item itemId="26223" count="1" /> <!-- Steel Support Box-->
|
||||||
<item itemId="22966" count="5" /> <!-- Vitality Maintaining Potion (1-hour)-->
|
</item>
|
||||||
<item itemId="23728" count="5" /> <!-- Erupting Vitality XP Potion-->
|
<item id="1011373" cat="4" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
<item itemId="23805" count="30" /> <!-- Hero Coin-->
|
<item itemId="20553" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (7-day)-->
|
||||||
|
<item itemId="21092" count="1" /> <!-- SP Rune 50% Pack (7-day)-->
|
||||||
|
<item itemId="22768" count="1" /> <!-- Drop Rate Rune 50% Pack (7-day)-->
|
||||||
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="37659" count="4" /> <!-- Mysterious Healthy Juice (HP/CP)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011374" cat="4" paymentType="0" price="1200" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23276" count="1" /> <!-- XP Rune III (Lv. 1-99) 50% Pack (30-day)-->
|
||||||
|
<item itemId="23283" count="1" /> <!-- SP Rune 50% Pack (30-day)-->
|
||||||
|
<item itemId="23296" count="1" /> <!-- Drop Rate Rune 50% Pack (30-day)-->
|
||||||
|
<item itemId="23805" count="17" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="37659" count="12" /> <!-- Mysterious Healthy Juice (HP/CP)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011375" cat="4" paymentType="0" price="3600" panelType="4" recommended="2" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23279" count="1" /> <!-- XP Rune III (Lv. 1-99) 100% Pack (30-day)-->
|
||||||
|
<item itemId="23286" count="1" /> <!-- SP Rune 100% Pack (30-day)-->
|
||||||
|
<item itemId="23297" count="1" /> <!-- Drop Rate Rune 100% Pack (30-day)-->
|
||||||
|
<item itemId="23805" count="54" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="37659" count="36" /> <!-- Mysterious Healthy Juice (HP/CP)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011388" cat="6" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="38097" count="1" /> <!-- Emperor's Rune Pack (2-hour)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011389" cat="6" paymentType="0" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="37563" count="1" /> <!-- Emperor's Growth Scroll-->
|
||||||
|
</item>
|
||||||
|
<item id="1011390" cat="4" paymentType="0" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="40" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="22248" count="1" /> <!-- Mysterious Soulshot Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011391" cat="4" paymentType="0" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="40" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="22253" count="1" /> <!-- Mysterious Blessed Spiritshot Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011400" cat="7" paymentType="2" price="1" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="1538" count="5" /> <!-- Blessed Scroll of Escape-->
|
||||||
|
</item>
|
||||||
|
<item id="1011401" cat="7" paymentType="2" price="2" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35562" count="1" /> <!-- Energy of Destruction-->
|
||||||
|
</item>
|
||||||
|
<item id="1011402" cat="7" paymentType="2" price="3" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="37671" count="3" /> <!-- Heavenly Recovery Potion-->
|
||||||
|
</item>
|
||||||
|
<item id="1011403" cat="7" paymentType="2" price="4" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="3936" count="2" /> <!-- Blessed Scroll of Resurrection-->
|
||||||
|
</item>
|
||||||
|
<item id="1011404" cat="7" paymentType="2" price="5" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
||||||
|
<item itemId="30275" count="1" /> <!-- Scroll: 1,000,000 SP-->
|
||||||
|
</item>
|
||||||
|
<item id="1011405" cat="7" paymentType="2" price="8" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="37660" count="1" /> <!-- Magmeld's Instrument-->
|
||||||
|
</item>
|
||||||
|
<item id="1011406" cat="7" paymentType="2" price="10" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35563" count="1" /> <!-- Giant's Energy-->
|
||||||
|
</item>
|
||||||
|
<item id="1011407" cat="7" paymentType="2" price="15" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
||||||
|
<item itemId="37622" count="1" /> <!-- Kaliel's Energy Box - Western Winds-->
|
||||||
|
</item>
|
||||||
|
<item id="1011408" cat="7" paymentType="2" price="20" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="36978" count="1" /> <!-- Scroll: Enchant Hair Accessory-->
|
||||||
|
</item>
|
||||||
|
<item id="1011409" cat="7" paymentType="2" price="25" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23897" count="1" /> <!-- Soul Bottle Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011410" cat="7" paymentType="2" price="30" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35749" count="1" /> <!-- Weapon Attribute Change Crystal (R-grade) - Event-->
|
||||||
|
</item>
|
||||||
|
<item id="1011411" cat="7" paymentType="2" price="35" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="40198" count="1" /> <!-- Disassembly Recipe Pouch: Armor-->
|
||||||
|
</item>
|
||||||
|
<item id="1011412" cat="7" paymentType="2" price="40" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="39337" count="1" /> <!-- Twilight Armor Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011413" cat="7" paymentType="2" price="45" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
||||||
|
<item itemId="35666" count="1" /> <!-- Scroll: 100,000 Individual Fame-->
|
||||||
|
</item>
|
||||||
|
<item id="1011414" cat="7" paymentType="2" price="50" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="39738" count="1" /> <!-- Rune Stone-->
|
||||||
|
</item>
|
||||||
|
<item id="1011415" cat="7" paymentType="2" price="65" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="40199" count="1" /> <!-- Disassembly Recipe Pouch: Weapon-->
|
||||||
|
</item>
|
||||||
|
<item id="1011416" cat="7" paymentType="2" price="75" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="39341" count="1" /> <!-- Elegia Armor Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011417" cat="7" paymentType="2" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="34774" count="1" /> <!-- Scroll of Blessing (R1-grade) - Event-->
|
||||||
|
</item>
|
||||||
|
<item id="1011418" cat="7" paymentType="2" price="90" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="25790" count="2" /> <!-- Ancient Hero's Weapon Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011419" cat="7" paymentType="2" price="100" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="36515" count="1" /> <!-- Elcyum-->
|
||||||
|
</item>
|
||||||
|
<item id="1011420" cat="7" paymentType="2" price="110" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="39361" count="1" /> <!-- Apocalypse Weapon Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011421" cat="7" paymentType="2" price="120" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35569" count="1" /> <!-- Bloody Eternal Enhancement Stone-->
|
||||||
|
</item>
|
||||||
|
<item id="1011422" cat="7" paymentType="2" price="135" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="39331" count="1" /> <!-- Seraph Armor Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011425" cat="7" paymentType="2" price="225" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="39353" count="1" /> <!-- Specter Weapon Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011426" cat="7" paymentType="2" price="250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="10296" count="1" /> <!-- Transformation Sealbook: Anakim-->
|
||||||
|
</item>
|
||||||
|
<item id="1011427" cat="7" paymentType="2" price="300" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="39325" count="1" /> <!-- Eternal Armor Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011428" cat="7" paymentType="2" price="350" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35567" count="1" /> <!-- Dark Eternal Enhancement Stone-->
|
||||||
|
</item>
|
||||||
|
<item id="1011429" cat="7" paymentType="2" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="1" >
|
||||||
|
<item itemId="39345" count="1" /> <!-- Amaranthine Weapon Pack-->
|
||||||
|
</item>
|
||||||
|
<item id="1011430" cat="7" paymentType="2" price="500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="34775" count="1" /> <!-- Scroll of Blessing (R2-grade) - Event-->
|
||||||
|
</item>
|
||||||
|
<item id="1011431" cat="7" paymentType="2" price="1000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="-1" availableCount="5" >
|
||||||
|
<item itemId="22430" count="1" /> <!-- Heavenly Scroll: Enchant Armor (R-grade)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011432" cat="7" paymentType="2" price="1250" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35667" count="1" /> <!-- Tauti's Fragment-->
|
||||||
|
</item>
|
||||||
|
<item id="1011433" cat="7" paymentType="2" price="2500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="37623" count="1" /> <!-- Soul Bottle Pack - Western Winds-->
|
||||||
|
</item>
|
||||||
|
<item id="1011434" cat="7" paymentType="2" price="3000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="34776" count="1" /> <!-- Scroll of Blessing (R95-grade) - Event-->
|
||||||
|
</item>
|
||||||
|
<item id="1011435" cat="7" paymentType="2" price="5000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35568" count="1" /> <!-- Bloody Amaranthine Enhancement Stone-->
|
||||||
|
</item>
|
||||||
|
<item id="1011436" cat="7" paymentType="2" price="6000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="37714" count="1" /> <!-- Talisman - Lilith-->
|
||||||
|
</item>
|
||||||
|
<item id="1011437" cat="7" paymentType="2" price="10000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35649" count="1" /> <!-- Sealed Talisman - Longing-->
|
||||||
|
</item>
|
||||||
|
<item id="1011438" cat="7" paymentType="2" price="12500" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="37715" count="1" /> <!-- Talisman - Anakim-->
|
||||||
|
</item>
|
||||||
|
<item id="1011439" cat="7" paymentType="2" price="15000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35566" count="1" /> <!-- Dark Amaranthine Enhancement Stone-->
|
||||||
|
</item>
|
||||||
|
<item id="1011440" cat="7" paymentType="2" price="20000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="37716" count="1" /> <!-- Seven Signs' Energy-->
|
||||||
|
</item>
|
||||||
|
<item id="1011441" cat="7" paymentType="2" price="25000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="34777" count="1" /> <!-- Scroll of Blessing (R99-grade) - Event-->
|
||||||
|
</item>
|
||||||
|
<item id="1011442" cat="7" paymentType="2" price="30000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="35564" count="1" /> <!-- Ruler's Authority-->
|
||||||
|
</item>
|
||||||
|
<item id="1011443" cat="7" paymentType="2" price="40000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="19464" count="1" /> <!-- Blessed Valakas' Necklace-->
|
||||||
|
</item>
|
||||||
|
<item id="1011444" cat="7" paymentType="2" price="50000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="19463" count="1" /> <!-- Blessed Antharas' Earring-->
|
||||||
|
</item>
|
||||||
|
<item id="1011445" cat="7" paymentType="2" price="100000" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="36946" count="1" /> <!-- Lindvior's Earring-->
|
||||||
|
</item>
|
||||||
|
<item id="1011446" cat="2" paymentType="0" price="80" panelType="0" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="10649" count="1" /> <!-- Feather of Blessing-->
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
</item>
|
||||||
|
<item id="1011447" cat="2" paymentType="0" price="80" panelType="0" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="38581" count="1" /> <!-- Emperor's Dessert Set (Attack Type)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011448" cat="2" paymentType="0" price="80" panelType="0" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="38582" count="1" /> <!-- Emperor's Dessert Set (Magic Type)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011449" cat="2" paymentType="0" price="80" panelType="0" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="38583" count="1" /> <!-- Emperor's Dessert Set (Defense Type)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011450" cat="2" paymentType="0" price="80" panelType="0" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="36013" count="1" /> <!-- Heavenly CP Cookie - Event-->
|
||||||
|
</item>
|
||||||
|
<item id="1011451" cat="2" paymentType="0" price="80" panelType="0" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23909" count="1" /> <!-- Mysterious World Boss Defense Dye - P. Def., M. Def., 7-day-->
|
||||||
|
</item>
|
||||||
|
<item id="1011456" cat="7" paymentType="2" price="150" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="34954" count="1" /> <!-- Lv. 5 Legendary Dye Pack - Event-->
|
||||||
|
</item>
|
||||||
|
<item id="1011457" cat="2" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="0" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="22902" count="1" /> <!-- Spellbook: Expand Warehouse Lv. 1-->
|
||||||
|
<item itemId="22903" count="1" /> <!-- Spellbook: Expand Warehouse Lv. 2-->
|
||||||
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
</item>
|
||||||
|
<item id="1011458" cat="2" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="0" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="22900" count="1" /> <!-- Expand Inventory Lv. 1-->
|
||||||
|
<item itemId="22901" count="1" /> <!-- Expand Inventory Lv. 2-->
|
||||||
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
</item>
|
||||||
|
<item id="1011459" cat="2" paymentType="0" price="80" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="13015" count="1" /> <!-- My Teleport Book-->
|
||||||
|
<item itemId="20025" count="50" /> <!-- My Teleport Scroll-->
|
||||||
|
<item itemId="20033" count="50" /> <!-- My Teleport Flag-->
|
||||||
|
<item itemId="23805" count="1" /> <!-- Hero Coin-->
|
||||||
|
</item>
|
||||||
|
<item id="1011460" cat="6" paymentType="0" price="400" panelType="0" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="37903" count="1" /> <!-- SP Rune Pack (Top-grade) (7-day)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011462" cat="6" paymentType="0" price="60" panelType="4" recommended="0" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="38099" count="1" /> <!-- Leona's Scroll: Buffs-->
|
||||||
|
</item>
|
||||||
|
<item id="1011468" cat="5" paymentType="0" price="5760" panelType="2" recommended="5" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="10" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="86" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="35562" count="100" /> <!-- Energy of Destruction-->
|
||||||
|
<item itemId="35563" count="120" /> <!-- Giant's Energy-->
|
||||||
|
<item itemId="36186" count="1" /> <!-- Kaliel's Energy - Desire-->
|
||||||
|
</item>
|
||||||
|
<item id="1011469" cat="4" paymentType="0" price="400" panelType="2" recommended="1" startSale="1426662000" endSale="1427882400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="37" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="5" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23855" count="1" /> <!-- Golden Crate-->
|
||||||
|
</item>
|
||||||
|
<item id="1011470" cat="4" paymentType="0" price="200" panelType="2" recommended="1" startSale="1426662000" endSale="1427882400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="37" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="3" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="23856" count="1" /> <!-- Silver Crate-->
|
||||||
|
</item>
|
||||||
|
<item id="1011471" cat="4" paymentType="0" price="1200" panelType="3" recommended="1" startSale="1426662000" endSale="1427882400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="15" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="24344" count="1" /> <!-- Lesser Giant's Lucky Enchant Stone: Weapon Pack (R-grade)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011472" cat="4" paymentType="0" price="800" panelType="3" recommended="1" startSale="1426662000" endSale="1427882400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="10" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="24346" count="1" /> <!-- Lesser Giant's Lucky Enchant Stone: Armor Pack (R-grade)-->
|
||||||
|
</item>
|
||||||
|
<item id="1011473" cat="3" paymentType="0" price="1600" panelType="3" recommended="1" startSale="315558000" endSale="2127452400" dayOfWeek="127" startHour="0" startMinute="0" stopHour="23" stopMinute="59" stock="-1" maxStock="-1" salePercent="0" minLevel="85" maxLevel="0" minBirthday="0" maxBirthday="0" restrictionDay="0" availableCount="0" >
|
||||||
|
<item itemId="23805" count="20" /> <!-- Hero Coin-->
|
||||||
|
<item itemId="40270" count="1" /> <!-- Appearance Stone: Dark Assassin Suit-->
|
||||||
</item>
|
</item>
|
||||||
</list>
|
</list>
|
||||||
Vendored
+12473
-12755
File diff suppressed because it is too large
Load Diff
+46
@@ -0,0 +1,46 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ResidenceFunctions.xsd">
|
||||||
|
<!-- Clan hall functions -->
|
||||||
|
<function id="1" type="HP_REGEN">
|
||||||
|
<function level="1" costId="57" costCount="14000" duration="1days" value="200" />
|
||||||
|
<function level="2" costId="57" costCount="17500" duration="3days" value="300" />
|
||||||
|
<function level="3" costId="57" costCount="37500" duration="3days" value="500" />
|
||||||
|
<function level="4" costId="57" costCount="77500" duration="3days" value="700" />
|
||||||
|
<function level="5" costId="57" costCount="132500" duration="3days" value="1000" />
|
||||||
|
</function>
|
||||||
|
<function id="2" type="MP_REGEN">
|
||||||
|
<function level="1" costId="57" costCount="85000" duration="2days" value="500" />
|
||||||
|
<function level="2" costId="57" costCount="137500" duration="2days" value="1000" />
|
||||||
|
<function level="3" costId="57" costCount="200000" duration="2days" value="2000" />
|
||||||
|
<function level="4" costId="57" costCount="275000" duration="2days" value="3000" />
|
||||||
|
</function>
|
||||||
|
<function id="3" type="EXP_RESTORE">
|
||||||
|
<function level="1" costId="57" costCount="45000" duration="1days" value="35" />
|
||||||
|
<function level="2" costId="57" costCount="75000" duration="1days" value="45" />
|
||||||
|
<function level="3" costId="57" costCount="105000" duration="1days" value="55" />
|
||||||
|
<function level="4" costId="57" costCount="150000" duration="1days" value="70" />
|
||||||
|
</function>
|
||||||
|
<function id="4" type="TELEPORT">
|
||||||
|
<function level="1" costId="57" costCount="840000" duration="2days" />
|
||||||
|
<function level="2" costId="57" costCount="860000" duration="2days" />
|
||||||
|
</function>
|
||||||
|
<function id="5" type="BUFF">
|
||||||
|
<function level="1" costId="57" costCount="185000" duration="1days" />
|
||||||
|
<function level="2" costId="57" costCount="260000" duration="1days" />
|
||||||
|
<function level="3" costId="57" costCount="335000" duration="1days" />
|
||||||
|
<function level="4" costId="57" costCount="410000" duration="1days" />
|
||||||
|
</function>
|
||||||
|
<function id="6" type="ITEM">
|
||||||
|
<function level="1" costId="57" costCount="150000" duration="1days" />
|
||||||
|
<function level="2" costId="57" costCount="350000" duration="1days" />
|
||||||
|
<function level="3" costId="57" costCount="700000" duration="1days" />
|
||||||
|
</function>
|
||||||
|
<function id="7" type="CURTAIN">
|
||||||
|
<function level="1" costId="57" costCount="10000" duration="7days" />
|
||||||
|
<function level="2" costId="57" costCount="12500" duration="7days" />
|
||||||
|
</function>
|
||||||
|
<function id="8" type="PLATFORM">
|
||||||
|
<function level="1" costId="57" costCount="6500" duration="3days" />
|
||||||
|
<function level="2" costId="57" costCount="20000" duration="3days" />
|
||||||
|
</function>
|
||||||
|
</list>
|
||||||
Vendored
+1277
-584
File diff suppressed because it is too large
Load Diff
Vendored
+320
@@ -0,0 +1,320 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/SayuneData.xsd">
|
||||||
|
<!-- Talking Island -> Ruins of Ye Sagira -->
|
||||||
|
<map id="12">
|
||||||
|
<loc id="0" x="-112860" y="256154" z="-1232" />
|
||||||
|
<loc id="1" x="-113337" y="255468" z="-1064" />
|
||||||
|
<loc id="2" x="-113486" y="254176" z="-1064" />
|
||||||
|
<loc id="3" x="-114259" y="252583" z="-1536" />
|
||||||
|
<loc id="4" x="-114192" y="249690" z="-1768" />
|
||||||
|
<loc id="5" x="-114910" y="248363" z="-1896" />
|
||||||
|
<loc id="6" x="-117316" y="246637" z="-2312" />
|
||||||
|
<loc id="7" x="-116685" y="245179" z="-1944" />
|
||||||
|
<loc id="8" x="-116402" y="243260" z="-1440" />
|
||||||
|
<loc id="9" x="-116609" y="241530" z="-2568" />
|
||||||
|
<loc id="10" x="-117165" y="239769" z="-2736" />
|
||||||
|
<loc id="11" x="-116650" y="238339" z="-2472" />
|
||||||
|
<loc id="12" x="-115737" y="236295" z="-3088" />
|
||||||
|
</map>
|
||||||
|
<!-- Magmeld -> Arms of Timinel/Deep inside Northen Fortress -->
|
||||||
|
<map id="14">
|
||||||
|
<selector id="0" x="205564" y="80480" z="404">
|
||||||
|
<!-- Down -->
|
||||||
|
<choice id="-1" x="205564" y="80480" z="404" />
|
||||||
|
<!-- Deep inside the Northern Forest -->
|
||||||
|
<choice id="1" x="205324" y="77300" z="872">
|
||||||
|
<loc id="2" x="203776" y="74224" z="832" />
|
||||||
|
<loc id="3" x="205088" y="73600" z="1228" />
|
||||||
|
<loc id="4" x="204828" y="71336" z="1312" />
|
||||||
|
<loc id="-1" x="205536" y="71256" z="996" />
|
||||||
|
</choice>
|
||||||
|
<!-- Arms of Timiniel -->
|
||||||
|
<choice id="5" x="207240" y="80900" z="608">
|
||||||
|
<loc id="5" x="207240" y="80900" z="608" />
|
||||||
|
<loc id="6" x="208432" y="80028" z="592" />
|
||||||
|
<loc id="7" x="211104" y="80768" z="-112" />
|
||||||
|
<loc id="8" x="212288" y="79124" z="496" />
|
||||||
|
<loc id="9" x="213100" y="80004" z="1612" />
|
||||||
|
<loc id="-1" x="213968" y="81232" z="816" />
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</map>
|
||||||
|
<!-- Magmeld -> Arms of Timinel/Deep inside Southen forest -->
|
||||||
|
<map id="15">
|
||||||
|
<selector id="0" x="211952" y="82592" z="136">
|
||||||
|
<!-- Down -->
|
||||||
|
<choice id="-1" x="211952" y="82592" z="136" />
|
||||||
|
<!-- Arms of Timiniel -->
|
||||||
|
<choice id="1" x="213152" y="84496" z="980">
|
||||||
|
<loc id="9" x="213604" y="81868" z="1836" />
|
||||||
|
<loc id="-1" x="214032" y="81304" z="824" />
|
||||||
|
</choice>
|
||||||
|
<!-- Deep inside the Southern Forest -->
|
||||||
|
<choice id="9" x="213604" y="81868" z="1836">
|
||||||
|
<loc id="2" x="214112" y="85312" z="1440" />
|
||||||
|
<loc id="3" x="214896" y="86480" z="1640" />
|
||||||
|
<loc id="4" x="217584" y="87984" z="1332" />
|
||||||
|
<loc id="5" x="219680" y="88000" z="1328" />
|
||||||
|
<loc id="6" x="220976" y="88368" z="1088" />
|
||||||
|
<loc id="7" x="222336" y="88288" z="1064" />
|
||||||
|
<loc id="8" x="222448" y="88424" z="1584" />
|
||||||
|
<loc id="-1" x="222064" y="88944" z="812" />
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</map>
|
||||||
|
<!-- Arms of Timinel -> Magmeld 1 -->
|
||||||
|
<map id="16">
|
||||||
|
<loc id="1" x="211088" y="81056" z="112" />
|
||||||
|
<loc id="2" x="209216" y="80240" z="-112" />
|
||||||
|
<loc id="3" x="208512" y="79952" z="592" />
|
||||||
|
<loc id="4" x="206336" y="80432" z="1604" />
|
||||||
|
<loc id="-1" x="205264" y="80420" z="416" />
|
||||||
|
</map>
|
||||||
|
<!-- Arms of Timinel -> Magmeld 2 -->
|
||||||
|
<map id="17">
|
||||||
|
<loc id="1" x="213120" y="84432" z="944" />
|
||||||
|
<loc id="2" x="212548" y="83588" z="544" />
|
||||||
|
<loc id="3" x="211968" y="82880" z="960" />
|
||||||
|
<loc id="-1" x="212096" y="82528" z="144" />
|
||||||
|
</map>
|
||||||
|
<!-- Garden of Genesis -->
|
||||||
|
<map id="19">
|
||||||
|
<selector id="0" x="221411" y="119121" z="-2080">
|
||||||
|
<!-- Apherus Garden -->
|
||||||
|
<choice id="1" x="219722" y="119344" z="-1050">
|
||||||
|
<loc id="2" x="215886" y="119357" z="-1060" />
|
||||||
|
<loc id="3" x="213686" y="118012" z="-900" />
|
||||||
|
</choice>
|
||||||
|
<!-- Progress -->
|
||||||
|
<choice id="4" x="219721" y="117432" z="-1191">
|
||||||
|
<loc id="5" x="218586" y="116649" z="-909" />
|
||||||
|
<selector id="6" x="218072" y="115261" z="-1341">
|
||||||
|
<!-- Fountain Garden -->
|
||||||
|
<choice id="7" x="218950" y="115019" z="-715">
|
||||||
|
<loc id="8" x="219675" y="114155" z="-819" />
|
||||||
|
<loc id="9" x="220943" y="113582" z="-1202" />
|
||||||
|
<loc id="10" x="221489" y="111141" z="-1680" />
|
||||||
|
</choice>
|
||||||
|
<!-- Garden of Genesis Entrance -->
|
||||||
|
<choice id="11" x="215865" y="114365" z="-342">
|
||||||
|
<loc id="12" x="215148" y="113648" z="-490" />
|
||||||
|
<loc id="13" x="214493" y="112627" z="-40" />
|
||||||
|
<loc id="14" x="211524" y="111880" z="-1136" />
|
||||||
|
<loc id="15" x="209650" y="112165" z="-1474" />
|
||||||
|
<loc id="16" x="207541" y="112487" z="-1807" />
|
||||||
|
<loc id="17" x="207548" y="112163" z="-2060" />
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</map>
|
||||||
|
<!-- Ye Sigira -> Talking Island -->
|
||||||
|
<map id="20">
|
||||||
|
<loc id="1" x="-115382" y="228370" z="-2688" />
|
||||||
|
<loc id="2" x="-115677" y="230311" z="-3592" />
|
||||||
|
<loc id="3" x="-115470" y="232174" z="-3120" />
|
||||||
|
<loc id="4" x="-115605" y="234757" z="-2824" />
|
||||||
|
<loc id="5" x="-114147" y="236166" z="-2912" />
|
||||||
|
<loc id="6" x="-112827" y="237548" z="-2776" />
|
||||||
|
<loc id="7" x="-112374" y="237981" z="-2664" />
|
||||||
|
<loc id="8" x="-111860" y="239665" z="-2920" />
|
||||||
|
<loc id="9" x="-110831" y="241012" z="-2744" />
|
||||||
|
<loc id="10" x="-110581" y="242703" z="-2408" />
|
||||||
|
<loc id="11" x="-110901" y="243271" z="-2008" />
|
||||||
|
<loc id="12" x="-110839" y="244080" z="-1560" />
|
||||||
|
<loc id="13" x="-111069" y="245466" z="-1880" />
|
||||||
|
<loc id="14" x="-111952" y="247788" z="-1984" />
|
||||||
|
<loc id="15" x="-112756" y="249137" z="-1784" />
|
||||||
|
<loc id="16" x="-113540" y="253377" z="-1208" />
|
||||||
|
<loc id="17" x="-113501" y="254172" z="-1200" />
|
||||||
|
<loc id="18" x="-113124" y="255947" z="-1136" />
|
||||||
|
<loc id="-1" x="-113372" y="256444" z="-1504" />
|
||||||
|
</map>
|
||||||
|
<!-- Bloody swamp -> Swamp/Altar -->
|
||||||
|
<map id="21">
|
||||||
|
<selector id="0" x="-15778" y="30638" z="-3616">
|
||||||
|
<!-- Down -->
|
||||||
|
<choice id="-1" x="-15778" y="30638" z="-3616" />
|
||||||
|
<!-- Swamp -->
|
||||||
|
<choice id="1" x="-15076" y="32311" z="-3560">
|
||||||
|
<loc id="2" x="-14569" y="33547" z="-3504" />
|
||||||
|
<loc id="3" x="-13977" y="36452" z="-1251" />
|
||||||
|
<loc id="4" x="-15379" y="38120" z="-3648" />
|
||||||
|
<loc id="5" x="-14032" y="41275" z="-3704" />
|
||||||
|
<loc id="6" x="-14602" y="43737" z="-3584" />
|
||||||
|
<loc id="7" x="-14602" y="43737" z="-3584" />
|
||||||
|
</choice>
|
||||||
|
<!-- Altar -->
|
||||||
|
<choice id="7" x="-14368" y="25609" z="-3592">
|
||||||
|
<loc id="9" x="-15510" y="23868" z="-3712" />
|
||||||
|
<loc id="10" x="-16195" y="22424" z="-3696" />
|
||||||
|
<loc id="11" x="-13982" y="22124" z="-3616" />
|
||||||
|
<loc id="12" x="-13982" y="22124" z="-3616" />
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</map>
|
||||||
|
<!-- Gludio Airship -> Gracia -->
|
||||||
|
<map id="22">
|
||||||
|
<loc id="1" x="-152694" y="253813" z="-797" />
|
||||||
|
<loc id="2" x="-155227" y="253348" z="-1277" />
|
||||||
|
<loc id="3" x="-156214" y="255930" z="-761" />
|
||||||
|
<loc id="4" x="-159235" y="254930" z="-705" />
|
||||||
|
<loc id="5" x="-160768" y="257021" z="-1182" />
|
||||||
|
<loc id="6" x="-163281" y="255511" z="-629" />
|
||||||
|
<loc id="7" x="-166900" y="258352" z="198" />
|
||||||
|
<loc id="8" x="-168406" y="255825" z="724" />
|
||||||
|
<loc id="9" x="-167861" y="253295" z="1770" />
|
||||||
|
<loc id="10" x="-170385" y="251797" z="778" />
|
||||||
|
<loc id="11" x="-172266" y="252408" z="1269" />
|
||||||
|
<loc id="12" x="-170225" y="249979" z="2408" />
|
||||||
|
<loc id="13" x="-173368" y="249680" z="2198" />
|
||||||
|
<loc id="14" x="-172144" y="245589" z="2397" />
|
||||||
|
<loc id="15" x="-175238" y="242801" z="2031" />
|
||||||
|
<loc id="16" x="-178198" y="243477" z="1162" />
|
||||||
|
<loc id="17" x="-180790" y="243953" z="2666" />
|
||||||
|
<loc id="18" x="-182344" y="242399" z="2122" />
|
||||||
|
<loc id="19" x="-184413" y="243376" z="3114" />
|
||||||
|
<loc id="-1" x="-186243" y="243560" z="2608" />
|
||||||
|
</map>
|
||||||
|
<!-- Gludio Airship -> Gracia -->
|
||||||
|
<map id="23">
|
||||||
|
<loc id="1" x="-182344" y="242399" z="2122" />
|
||||||
|
<loc id="2" x="-180790" y="243953" z="2666" />
|
||||||
|
<loc id="3" x="-178198" y="243477" z="1162" />
|
||||||
|
<loc id="4" x="-175238" y="242801" z="2031" />
|
||||||
|
<loc id="5" x="-172144" y="245589" z="2397" />
|
||||||
|
<loc id="6" x="-173368" y="249680" z="2198" />
|
||||||
|
<loc id="7" x="-170225" y="249979" z="2408" />
|
||||||
|
<loc id="8" x="-172266" y="252408" z="1269" />
|
||||||
|
<loc id="10" x="-167861" y="253295" z="1770" />
|
||||||
|
<loc id="11" x="-168406" y="255825" z="724" />
|
||||||
|
<loc id="12" x="-166900" y="258352" z="198" />
|
||||||
|
<loc id="13" x="-163281" y="255511" z="-629" />
|
||||||
|
<loc id="14" x="-160768" y="257021" z="-1182" />
|
||||||
|
<loc id="15" x="-159235" y="254930" z="-705" />
|
||||||
|
<loc id="16" x="-156214" y="255930" z="-737" />
|
||||||
|
<loc id="17" x="-155227" y="253348" z="-1277" />
|
||||||
|
<loc id="18" x="-152694" y="253813" z="-797" />
|
||||||
|
<loc id="19" x="-150678" y="252758" z="-1345" />
|
||||||
|
<loc id="-1" x="-149482" y="253328" z="-120" />
|
||||||
|
</map>
|
||||||
|
<!-- Guillotine Fortress -->
|
||||||
|
<map id="25">
|
||||||
|
<loc id="0" x="45531" y="154481" z="-864" />
|
||||||
|
<loc id="1" x="43293" y="153730" z="-1520" />
|
||||||
|
<loc id="2" x="43679" y="152511" z="-1936" />
|
||||||
|
</map>
|
||||||
|
<!-- Guillotine Fortress -->
|
||||||
|
<map id="26">
|
||||||
|
<loc id="0" x="41350" y="142449" z="-2288" />
|
||||||
|
<loc id="1" x="40307" y="139914" z="-1928" />
|
||||||
|
<loc id="2" x="40816" y="138463" z="-1232" />
|
||||||
|
<loc id="3" x="41264" y="139373" z="-1280" />
|
||||||
|
<loc id="4" x="43048" y="138903" z="-1280" />
|
||||||
|
<loc id="5" x="42845" y="139463" z="-1464" />
|
||||||
|
</map>
|
||||||
|
<!-- Dion -->
|
||||||
|
<map id="27">
|
||||||
|
<selector id="0" x="15755" y="143045" z="-2696">
|
||||||
|
<choice id="-1" x="15755" y="143045" z="-2696" />
|
||||||
|
<!-- Guillotine West Gate -->
|
||||||
|
<choice id="1" x="16113" y="142617" z="-2336">
|
||||||
|
<loc id="1" x="16113" y="142617" z="-2336" />
|
||||||
|
<loc id="2" x="19629" y="143349" z="-2728" />
|
||||||
|
<loc id="3" x="24557" y="142920" z="-2848" />
|
||||||
|
<loc id="4" x="26465" y="143645" z="-2592" />
|
||||||
|
<loc id="5" x="27431" y="144696" z="-2664" />
|
||||||
|
<loc id="6" x="29360" y="146178" z="-2288" />
|
||||||
|
<loc id="7" x="33206" y="144729" z="-3408" />
|
||||||
|
<loc id="8" x="33206" y="144729" z="-3408" />
|
||||||
|
</choice>
|
||||||
|
<!-- Guillotine North Gate -->
|
||||||
|
<choice id="9" x="19583" y="144840" z="-2672">
|
||||||
|
<loc id="10" x="20292" y="143878" z="-2776" />
|
||||||
|
<loc id="11" x="20877" y="144338" z="-2632" />
|
||||||
|
<loc id="12" x="21374" y="143669" z="-2936" />
|
||||||
|
<loc id="13" x="22302" y="139026" z="-3376" />
|
||||||
|
<loc id="14" x="23489" y="136897" z="-3192" />
|
||||||
|
<loc id="15" x="26637" y="137534" z="-3192" />
|
||||||
|
<loc id="16" x="27631" y="134332" z="-2568" />
|
||||||
|
<loc id="17" x="28642" y="133682" z="-2616" />
|
||||||
|
<loc id="18" x="30860" y="134905" z="-3088" />
|
||||||
|
<loc id="19" x="31406" y="133822" z="-3080" />
|
||||||
|
<loc id="20" x="31546" y="133000" z="-3112" />
|
||||||
|
<loc id="21" x="32056" y="133043" z="-2936" />
|
||||||
|
<loc id="22" x="34572" y="132706" z="-2904" />
|
||||||
|
<loc id="23" x="37324" y="131962" z="-2912" />
|
||||||
|
<loc id="24" x="40739" y="129898" z="-2912" />
|
||||||
|
<loc id="25" x="46737" y="132039" z="-3224" />
|
||||||
|
<loc id="26" x="50467" y="133963" z="-1952" />
|
||||||
|
<loc id="27" x="54118" y="135247" z="-1376" />
|
||||||
|
<loc id="28" x="54477" y="138044" z="-2536" />
|
||||||
|
<loc id="29" x="54477" y="138044" z="-2536" />
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</map>
|
||||||
|
<!-- North of the Town of Aden -->
|
||||||
|
<map id="28">
|
||||||
|
<loc id="0" x="145855" y="20160" z="-1197" />
|
||||||
|
<loc id="1" x="147434" y="23748" z="-568" />
|
||||||
|
<selector id="2" x="147455" y="25104" z="-568">
|
||||||
|
<!--West of the Town of Aden -->
|
||||||
|
<choice id="3" x="146063" y="27140" z="-1552">
|
||||||
|
<loc id="4" x="143409" y="25560" z="-1392" />
|
||||||
|
<loc id="5" x="140277" y="25564" z="-2240" />
|
||||||
|
<loc id="6" x="140277" y="25564" z="-2240" />
|
||||||
|
</choice>
|
||||||
|
<!--East of the Town of Aden -->
|
||||||
|
<choice id="7" x="148859" y="27169" z="-1552">
|
||||||
|
<loc id="8" x="151492" y="26898" z="-1248" />
|
||||||
|
<loc id="9" x="152799" y="25529" z="-2144" />
|
||||||
|
<loc id="10" x="152799" y="25529" z="-2144" />
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</map>
|
||||||
|
<!-- East of the Town of Aden -->
|
||||||
|
<map id="29">
|
||||||
|
<loc id="0" x="151215" y="23809" z="-1256" />
|
||||||
|
<selector id="1" x="149513" y="24697" z="-1320">
|
||||||
|
<!--West of the Town of Aden -->
|
||||||
|
<choice id="2" x="147930" y="26384" z="-1288">
|
||||||
|
<loc id="3" x="146986" y="26402" z="-1288" />
|
||||||
|
<loc id="4" x="145708" y="25394" z="-1512" />
|
||||||
|
<loc id="5" x="143266" y="25584" z="-1392" />
|
||||||
|
<loc id="6" x="142081" y="24439" z="-2240" />
|
||||||
|
<loc id="7" x="142081" y="24439" z="-2240" />
|
||||||
|
</choice>
|
||||||
|
<!--North of the Town of Aden -->
|
||||||
|
<choice id="8" x="148110" y="23755" z="-568">
|
||||||
|
<loc id="9" x="148510" y="20262" z="-1200" />
|
||||||
|
<loc id="10" x="149000" y="16754" z="-1528" />
|
||||||
|
<loc id="11" x="149000" y="16754" z="-1528" />
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</map>
|
||||||
|
<!-- West of the Town of Aden -->
|
||||||
|
<map id="30">
|
||||||
|
<loc id="0" x="143390" y="25209" z="-1512" />
|
||||||
|
<selector id="1" x="146043" y="26667" z="-1552">
|
||||||
|
<!--East of the Town of Aden -->
|
||||||
|
<choice id="2" x="148853" y="27622" z="-1088">
|
||||||
|
<loc id="3" x="151261" y="26957" z="-1240" />
|
||||||
|
<loc id="4" x="153312" y="24995" z="-2112" />
|
||||||
|
<loc id="5" x="153312" y="24995" z="-2112" />
|
||||||
|
</choice>
|
||||||
|
<!--North of the Town of Aden -->
|
||||||
|
<choice id="6" x="146327" y="24394" z="-2008">
|
||||||
|
<loc id="7" x="145825" y="22984" z="-1384" />
|
||||||
|
<loc id="8" x="146174" y="20168" z="-1200" />
|
||||||
|
<loc id="9" x="145943" y="16913" z="-1568" />
|
||||||
|
<loc id="10" x="145943" y="16913" z="-1568" />
|
||||||
|
</choice>
|
||||||
|
</selector>
|
||||||
|
</map>
|
||||||
|
<!-- Keucereus Alliance Base -->
|
||||||
|
<map id="44">
|
||||||
|
<loc id="0" x="-184988" y="242842" z="2331" />
|
||||||
|
<loc id="1" x="-186018" y="243468" z="2657" />
|
||||||
|
<loc id="2" x="-186470" y="243500" z="2618" />
|
||||||
|
</map>
|
||||||
|
</list>
|
||||||
+154
@@ -0,0 +1,154 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/SellBuffData.xsd">
|
||||||
|
<!-- ISS Buffs -->
|
||||||
|
<skill id="11517"/> <!-- Horn Melody -->
|
||||||
|
<skill id="11518"/> <!-- Drum Melody -->
|
||||||
|
<skill id="11519"/> <!-- Pipe Organ Melody -->
|
||||||
|
<skill id="11520"/> <!-- Guitar Melody -->
|
||||||
|
<skill id="11521"/> <!-- Harp Melody -->
|
||||||
|
<skill id="11522"/> <!-- Lute Melody -->
|
||||||
|
<skill id="11565"/> <!-- Elemental Resistance -->
|
||||||
|
<skill id="11566"/> <!-- Holy Attack Resistance -->
|
||||||
|
<skill id="11567"/> <!-- Mental Attack Resistance -->
|
||||||
|
<skill id="11523"/> <!-- Knight's Harmony -->
|
||||||
|
<skill id="11524"/> <!-- Warrior's Harmony -->
|
||||||
|
<skill id="11525"/> <!-- Wizard's Harmony -->
|
||||||
|
<skill id="11529"/> <!-- Prevailing Sonata -->
|
||||||
|
<skill id="11530"/> <!-- Daring Sonata -->
|
||||||
|
<skill id="11532"/> <!-- Refreshing Sonata -->
|
||||||
|
<skill id="11607"/> <!-- Prevailing Song -->
|
||||||
|
<skill id="11608"/> <!-- Daring Song -->
|
||||||
|
<skill id="11609"/> <!-- Refreshing Song -->
|
||||||
|
<skill id="11610"/> <!-- Prevailing Dance -->
|
||||||
|
<skill id="11611"/> <!-- Daring Dance -->
|
||||||
|
<skill id="11612"/> <!-- Refreshing Dance -->
|
||||||
|
<!-- Old Buffs -->
|
||||||
|
<skill id="1232"/> <!-- Blazing Skin -->
|
||||||
|
<skill id="1003"/> <!-- Pa'agrian Gift -->
|
||||||
|
<skill id="1005"/> <!-- Blessings of Pa'agrio -->
|
||||||
|
<skill id="1250"/> <!-- Shield of Pa'agrio -->
|
||||||
|
<skill id="1008"/> <!-- The Glory of Pa'agrio -->
|
||||||
|
<skill id="1260"/> <!-- The Tact of Pa'agrio -->
|
||||||
|
<skill id="1004"/> <!-- The Wisdom of Pa'agrio -->
|
||||||
|
<skill id="1261"/> <!-- Rage of Pa'agrio -->
|
||||||
|
<skill id="1249"/> <!-- The Vision of Pa'agrio -->
|
||||||
|
<skill id="1563"/> <!-- Fury of Pa'agrio -->
|
||||||
|
<skill id="1282"/> <!-- Pa'agrian Haste -->
|
||||||
|
<skill id="1536"/> <!-- Combat of Pa'agrio -->
|
||||||
|
<skill id="1538"/> <!-- Condition of Pa'agrio -->
|
||||||
|
<skill id="1537"/> <!-- Critical of Pa'agrio -->
|
||||||
|
<skill id="1364"/> <!-- Eye of Pa'agrio -->
|
||||||
|
<skill id="1365"/> <!-- Soul of Pa'agrio -->
|
||||||
|
<skill id="1415"/> <!-- Pa'agrio's Emblem -->
|
||||||
|
<skill id="1416"/> <!-- Pa'agrio's Fist -->
|
||||||
|
<skill id="1414"/> <!-- Victory of Pa'agrio -->
|
||||||
|
<skill id="1006"/> <!-- Chant of Fire -->
|
||||||
|
<skill id="1009"/> <!-- Chant of Shielding -->
|
||||||
|
<skill id="1007"/> <!-- Chant of Battle -->
|
||||||
|
<skill id="1002"/> <!-- Flame Chant -->
|
||||||
|
<skill id="1252"/> <!-- Chant of Evasion -->
|
||||||
|
<skill id="1308"/> <!-- Chant of Predator -->
|
||||||
|
<skill id="1253"/> <!-- Chant of Rage -->
|
||||||
|
<skill id="1562"/> <!-- Chant of Berserker -->
|
||||||
|
<skill id="1309"/> <!-- Chant of Eagle -->
|
||||||
|
<skill id="1251"/> <!-- Chant of Fury -->
|
||||||
|
<skill id="1391"/> <!-- Earth Chant -->
|
||||||
|
<skill id="1390"/> <!-- War Chant -->
|
||||||
|
<skill id="1284"/> <!-- Chant of Revenge -->
|
||||||
|
<skill id="1535"/> <!-- Chant of Movement -->
|
||||||
|
<skill id="1310"/> <!-- Chant of Vampire -->
|
||||||
|
<skill id="1519"/> <!-- Chant of Blood Awakening -->
|
||||||
|
<skill id="1549"/> <!-- Chant of Elements -->
|
||||||
|
<skill id="1362"/> <!-- Chant of Spirit -->
|
||||||
|
<skill id="1363"/> <!-- Chant of Victory -->
|
||||||
|
<skill id="1413"/> <!-- Magnus' Chant -->
|
||||||
|
<skill id="1461"/> <!-- Chant of Protection -->
|
||||||
|
<skill id="1078"/> <!-- Concentration -->
|
||||||
|
<skill id="1068"/> <!-- Might -->
|
||||||
|
<skill id="1040"/> <!-- Shield -->
|
||||||
|
<skill id="1035"/> <!-- Mental Shield -->
|
||||||
|
<skill id="1043"/> <!-- Holy Weapon -->
|
||||||
|
<skill id="1243"/> <!-- Bless Shield -->
|
||||||
|
<skill id="1304"/> <!-- Advanced Block -->
|
||||||
|
<skill id="1259"/> <!-- Resist Shock -->
|
||||||
|
<skill id="1397"/> <!-- Clarity -->
|
||||||
|
<skill id="1504"/> <!-- Improved Movement -->
|
||||||
|
<skill id="1503"/> <!-- Improved Shield Defense -->
|
||||||
|
<skill id="1303"/> <!-- Wild Magic -->
|
||||||
|
<skill id="1393"/> <!-- Resist Dark -->
|
||||||
|
<skill id="1033"/> <!-- Resist Poison -->
|
||||||
|
<skill id="1044"/> <!-- Regeneration -->
|
||||||
|
<skill id="1257"/> <!-- Decrease Weight -->
|
||||||
|
<skill id="1087"/> <!-- Agility -->
|
||||||
|
<skill id="1204"/> <!-- Wind Walk -->
|
||||||
|
<skill id="1073"/> <!-- Kiss of Eva -->
|
||||||
|
<skill id="1354"/> <!-- Arcane Protection -->
|
||||||
|
<skill id="1353"/> <!-- Divine Protection -->
|
||||||
|
<skill id="1460"/> <!-- Mana Gain -->
|
||||||
|
<skill id="1355"/> <!-- Prophecy of Water -->
|
||||||
|
<skill id="1501"/> <!-- Improved Condition -->
|
||||||
|
<skill id="1499"/> <!-- Improved Combat -->
|
||||||
|
<skill id="1242"/> <!-- Death Whisper -->
|
||||||
|
<skill id="1045"/> <!-- Bless the Body -->
|
||||||
|
<skill id="1048"/> <!-- Bless the Soul -->
|
||||||
|
<skill id="1388"/> <!-- Greater Might -->
|
||||||
|
<skill id="1389"/> <!-- Greater Shield -->
|
||||||
|
<skill id="1392"/> <!-- Resist Holy -->
|
||||||
|
<skill id="1182"/> <!-- Resist Aqua -->
|
||||||
|
<skill id="1189"/> <!-- Resist Wind -->
|
||||||
|
<skill id="1548"/> <!-- Resist Earth -->
|
||||||
|
<skill id="1191"/> <!-- Resist Fire -->
|
||||||
|
<skill id="1036"/> <!-- Magic Barrier -->
|
||||||
|
<skill id="1077"/> <!-- Focus -->
|
||||||
|
<skill id="1086"/> <!-- Haste -->
|
||||||
|
<skill id="1062"/> <!-- Berserker Spirit -->
|
||||||
|
<skill id="1085"/> <!-- Acumen -->
|
||||||
|
<skill id="1240"/> <!-- Guidance -->
|
||||||
|
<skill id="1032"/> <!-- Invigor -->
|
||||||
|
<skill id="1352"/> <!-- Elemental Protection -->
|
||||||
|
<skill id="1542"/> <!-- Counter Critical -->
|
||||||
|
<skill id="1356"/> <!-- Prophecy of Fire -->
|
||||||
|
<skill id="828"/> <!-- Case Harden -->
|
||||||
|
<skill id="830"/> <!-- Embroider -->
|
||||||
|
<skill id="829"/> <!-- Hard Tanning -->
|
||||||
|
<skill id="827"/> <!-- Restring -->
|
||||||
|
<skill id="825"/> <!-- Sharp Edge -->
|
||||||
|
<skill id="826"/> <!-- Spike -->
|
||||||
|
<skill id="1238"/> <!-- Freezing Skin -->
|
||||||
|
<skill id="1059"/> <!-- Empower -->
|
||||||
|
<skill id="1268"/> <!-- Vampiric Rage -->
|
||||||
|
<skill id="1502"/> <!-- Improved Critical Attack -->
|
||||||
|
<skill id="1500"/> <!-- Improved Magic -->
|
||||||
|
<skill id="1357"/> <!-- Prophecy of Wind -->
|
||||||
|
<skill id="307"/> <!-- Dance of Aqua Guard -->
|
||||||
|
<skill id="309"/> <!-- Dance of Earth Guard -->
|
||||||
|
<skill id="311"/> <!-- Dance of Protection -->
|
||||||
|
<skill id="276"/> <!-- Dance of Concentration -->
|
||||||
|
<skill id="273"/> <!-- Dance of the Mystic -->
|
||||||
|
<skill id="274"/> <!-- Dance of Fire -->
|
||||||
|
<skill id="275"/> <!-- Dance of Fury -->
|
||||||
|
<skill id="272"/> <!-- Dance of Inspiration -->
|
||||||
|
<skill id="277"/> <!-- Dance of Light -->
|
||||||
|
<skill id="310"/> <!-- Dance of the Vampire -->
|
||||||
|
<skill id="271"/> <!-- Dance of the Warrior -->
|
||||||
|
<skill id="365"/> <!-- Dance of Siren -->
|
||||||
|
<skill id="530"/> <!-- Dance of Alignment -->
|
||||||
|
<skill id="915"/> <!-- Dance of Berserker -->
|
||||||
|
<skill id="264"/> <!-- Song of Earth -->
|
||||||
|
<skill id="306"/> <!-- Song of Flame Guard -->
|
||||||
|
<skill id="269"/> <!-- Song of Hunter -->
|
||||||
|
<skill id="270"/> <!-- Song of Invocation -->
|
||||||
|
<skill id="265"/> <!-- Song of Life -->
|
||||||
|
<skill id="308"/> <!-- Song of Storm Guard -->
|
||||||
|
<skill id="305"/> <!-- Song of Vengeance -->
|
||||||
|
<skill id="304"/> <!-- Song of Vitality -->
|
||||||
|
<skill id="267"/> <!-- Song of Warding -->
|
||||||
|
<skill id="266"/> <!-- Song of Water -->
|
||||||
|
<skill id="268"/> <!-- Song of Wind -->
|
||||||
|
<skill id="364"/> <!-- Song of Champion -->
|
||||||
|
<skill id="363"/> <!-- Song of Meditation -->
|
||||||
|
<skill id="349"/> <!-- Song of Renewal -->
|
||||||
|
<skill id="529"/> <!-- Song of Elemental -->
|
||||||
|
<skill id="914"/> <!-- Song of Purification -->
|
||||||
|
<skill id="764"/> <!-- Song of Wind Storm -->
|
||||||
|
</list>
|
||||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/Shuttledata.xsd">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ShuttleData.xsd">
|
||||||
<shuttle id="1" name="Magmeld 1" x="206580" y="82700" z="-1035" heading="0">
|
<shuttle id="1" name="Magmeld 1" x="206580" y="82700" z="-1035" heading="0">
|
||||||
<doors>
|
<doors>
|
||||||
<door id="26200002" />
|
<door id="26200002" />
|
||||||
|
|||||||
-664
@@ -1,664 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<SoulCrystalOptions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/SoulCrystalOptions.xsd">
|
|
||||||
<option id="1" skillId="13856" level="1" effectId="1" type="1" /> <!-- Might - P. Atk. + 2%" -->
|
|
||||||
<option id="1" skillId="13856" level="2" effectId="2" type="1" /> <!-- Might - P. Atk. + 3%" -->
|
|
||||||
<option id="1" skillId="13856" level="3" effectId="3" type="1" /> <!-- Might - P. Atk. + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="4" effectId="4" type="1" /> <!-- Might - P. Atk. + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="5" effectId="5" type="1" /> <!-- Might - P. Atk. + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="6" effectId="6" type="1" /> <!-- Might - P. Atk. + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="7" effectId="7" type="1" /> <!-- Might - P. Atk. + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="8" effectId="8" type="1" /> <!-- Might - P. Atk. + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="9" effectId="9" type="1" /> <!-- Might - P. Atk. + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="10" effectId="10" type="1" /> <!-- Might - P. Atk. + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="11" effectId="11" type="1" /> <!-- Might - P. Atk. + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="12" effectId="12" type="1" /> <!-- Might - P. Atk. + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="13" effectId="13" type="1" /> <!-- Might - P. Atk. + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="14" effectId="14" type="1" /> <!-- Might - P. Atk. + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="1" skillId="13856" level="15" effectId="15" type="1" /> <!-- Might - P. Atk. + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="1" effectId="16" type="1" /> <!-- Fury - Atk. Spd. + 11%" -->
|
|
||||||
<option id="2" skillId="13857" level="2" effectId="17" type="1" /> <!-- Fury - Atk. Spd. + 12%" -->
|
|
||||||
<option id="2" skillId="13857" level="3" effectId="18" type="1" /> <!-- Fury - Atk. Spd. + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="4" effectId="19" type="1" /> <!-- Fury - Atk. Spd. + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="5" effectId="20" type="1" /> <!-- Fury - Atk. Spd. + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="6" effectId="21" type="1" /> <!-- Fury - Atk. Spd. + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="7" effectId="22" type="1" /> <!-- Fury - Atk. Spd. + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="8" effectId="23" type="1" /> <!-- Fury - Atk. Spd. + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="9" effectId="24" type="1" /> <!-- Fury - Atk. Spd. + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="10" effectId="25" type="1" /> <!-- Fury - Atk. Spd. + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="11" effectId="26" type="1" /> <!-- Fury - Atk. Spd. + 21%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="12" effectId="27" type="1" /> <!-- Fury - Atk. Spd. + 22%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="13" effectId="28" type="1" /> <!-- Fury - Atk. Spd. + 23%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="14" effectId="29" type="1" /> <!-- Fury - Atk. Spd. + 24%, PvP Damage + 5%" -->
|
|
||||||
<option id="2" skillId="13857" level="15" effectId="30" type="1" /> <!-- Fury - Atk. Spd. + 25%, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="1" effectId="31" type="1" /> <!-- Focus - P. Critical Rate + 58" -->
|
|
||||||
<option id="3" skillId="13858" level="2" effectId="32" type="1" /> <!-- Focus - P. Critical Rate + 64" -->
|
|
||||||
<option id="3" skillId="13858" level="3" effectId="33" type="1" /> <!-- Focus - P. Critical Rate + 70, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="4" effectId="34" type="1" /> <!-- Focus - P. Critical Rate + 76, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="5" effectId="35" type="1" /> <!-- Focus - P. Critical Rate + 82, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="6" effectId="36" type="1" /> <!-- Focus - P. Critical Rate + 88, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="7" effectId="37" type="1" /> <!-- Focus - P. Critical Rate + 94, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="8" effectId="38" type="1" /> <!-- Focus - P. Critical Rate + 100, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="9" effectId="39" type="1" /> <!-- Focus - P. Critical Rate + 106, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="10" effectId="40" type="1" /> <!-- Focus - P. Critical Rate + 112, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="11" effectId="41" type="1" /> <!-- Focus - P. Critical Rate + 118, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="12" effectId="42" type="1" /> <!-- Focus - P. Critical Rate + 124, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="13" effectId="43" type="1" /> <!-- Focus - P. Critical Rate + 130, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="14" effectId="44" type="1" /> <!-- Focus - P. Critical Rate + 136, PvP Damage + 5%" -->
|
|
||||||
<option id="3" skillId="13858" level="15" effectId="45" type="1" /> <!-- Focus - P. Critical Rate + 142, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="1" effectId="46" type="1" /> <!-- Death - P. Critical Damage + 3%" -->
|
|
||||||
<option id="4" skillId="13859" level="2" effectId="47" type="1" /> <!-- Death - P. Critical Damage + 4%" -->
|
|
||||||
<option id="4" skillId="13859" level="3" effectId="48" type="1" /> <!-- Death - P. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="4" effectId="49" type="1" /> <!-- Death - P. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="5" effectId="50" type="1" /> <!-- Death - P. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="6" effectId="51" type="1" /> <!-- Death - P. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="7" effectId="52" type="1" /> <!-- Death - P. Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="8" effectId="53" type="1" /> <!-- Death - P. Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="9" effectId="54" type="1" /> <!-- Death - P. Critical Damage + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="10" effectId="55" type="1" /> <!-- Death - P. Critical Damage + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="11" effectId="56" type="1" /> <!-- Death - P. Critical Damage + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="12" effectId="57" type="1" /> <!-- Death - P. Critical Damage + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="13" effectId="58" type="1" /> <!-- Death - P. Critical Damage + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="14" effectId="59" type="1" /> <!-- Death - P. Critical Damage + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="4" skillId="13859" level="15" effectId="60" type="1" /> <!-- Death - P. Critical Damage + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="1" effectId="61" type="1" /> <!-- Hunter - P. Skill Critical Rate + 6%" -->
|
|
||||||
<option id="5" skillId="13860" level="2" effectId="62" type="1" /> <!-- Hunter - P. Skill Critical Rate + 7%" -->
|
|
||||||
<option id="5" skillId="13860" level="3" effectId="63" type="1" /> <!-- Hunter - P. Skill Critical Rate + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="4" effectId="64" type="1" /> <!-- Hunter - P. Skill Critical Rate + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="5" effectId="65" type="1" /> <!-- Hunter - P. Skill Critical Rate + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="6" effectId="66" type="1" /> <!-- Hunter - P. Skill Critical Rate + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="7" effectId="67" type="1" /> <!-- Hunter - P. Skill Critical Rate + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="8" effectId="68" type="1" /> <!-- Hunter - P. Skill Critical Rate + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="9" effectId="69" type="1" /> <!-- Hunter - P. Skill Critical Rate + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="10" effectId="70" type="1" /> <!-- Hunter - P. Skill Critical Rate + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="11" effectId="71" type="1" /> <!-- Hunter - P. Skill Critical Rate + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="12" effectId="72" type="1" /> <!-- Hunter - P. Skill Critical Rate + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="13" effectId="73" type="1" /> <!-- Hunter - P. Skill Critical Rate + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="14" effectId="74" type="1" /> <!-- Hunter - P. Skill Critical Rate + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="5" skillId="13860" level="15" effectId="75" type="1" /> <!-- Hunter - P. Skill Critical Rate + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="1" effectId="76" type="1" /> <!-- Fire - P. Skill Critical Damage + 6%" -->
|
|
||||||
<option id="6" skillId="13861" level="2" effectId="77" type="1" /> <!-- Fire - P. Skill Critical Damage + 7%" -->
|
|
||||||
<option id="6" skillId="13861" level="3" effectId="78" type="1" /> <!-- Fire - P. Skill Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="4" effectId="79" type="1" /> <!-- Fire - P. Skill Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="5" effectId="80" type="1" /> <!-- Fire - P. Skill Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="6" effectId="81" type="1" /> <!-- Fire - P. Skill Critical Damage + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="7" effectId="82" type="1" /> <!-- Fire - P. Skill Critical Damage + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="8" effectId="83" type="1" /> <!-- Fire - P. Skill Critical Damage + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="9" effectId="84" type="1" /> <!-- Fire - P. Skill Critical Damage + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="10" effectId="85" type="1" /> <!-- Fire - P. Skill Critical Damage + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="11" effectId="86" type="1" /> <!-- Fire - P. Skill Critical Damage + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="12" effectId="87" type="1" /> <!-- Fire - P. Skill Critical Damage + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="13" effectId="88" type="1" /> <!-- Fire - P. Skill Critical Damage + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="14" effectId="89" type="1" /> <!-- Fire - P. Skill Critical Damage + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="6" skillId="13861" level="15" effectId="90" type="1" /> <!-- Fire - P. Skill Critical Damage + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="1" effectId="91" type="1" /> <!-- Body - Max HP + 21%" -->
|
|
||||||
<option id="7" skillId="13862" level="2" effectId="92" type="1" /> <!-- Body - Max HP + 22%" -->
|
|
||||||
<option id="7" skillId="13862" level="3" effectId="93" type="1" /> <!-- Body - Max HP + 23%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="4" effectId="94" type="1" /> <!-- Body - Max HP + 24%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="5" effectId="95" type="1" /> <!-- Body - Max HP + 25%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="6" effectId="96" type="1" /> <!-- Body - Max HP + 26%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="7" effectId="97" type="1" /> <!-- Body - Max HP + 27%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="8" effectId="98" type="1" /> <!-- Body - Max HP + 28%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="9" effectId="99" type="1" /> <!-- Body - Max HP + 29%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="10" effectId="100" type="1" /> <!-- Body - Max HP + 30%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="11" effectId="101" type="1" /> <!-- Body - Max HP + 31%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="12" effectId="102" type="1" /> <!-- Body - Max HP + 32%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="13" effectId="103" type="1" /> <!-- Body - Max HP + 33%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="14" effectId="104" type="1" /> <!-- Body - Max HP + 34%, PvP Damage + 5%" -->
|
|
||||||
<option id="7" skillId="13862" level="15" effectId="105" type="1" /> <!-- Body - Max HP + 35%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="1" effectId="106" type="1" /> <!-- Empower - M. Atk. + 2%" -->
|
|
||||||
<option id="10" skillId="13863" level="2" effectId="107" type="1" /> <!-- Empower - M. Atk. + 3%" -->
|
|
||||||
<option id="10" skillId="13863" level="3" effectId="108" type="1" /> <!-- Empower - M. Atk. + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="4" effectId="109" type="1" /> <!-- Empower - M. Atk. + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="5" effectId="110" type="1" /> <!-- Empower - M. Atk. + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="6" effectId="111" type="1" /> <!-- Empower - M. Atk. + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="7" effectId="112" type="1" /> <!-- Empower - M. Atk. + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="8" effectId="113" type="1" /> <!-- Empower - M. Atk. + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="9" effectId="114" type="1" /> <!-- Empower - M. Atk. + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="10" effectId="115" type="1" /> <!-- Empower - M. Atk. + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="11" effectId="116" type="1" /> <!-- Empower - M. Atk. + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="12" effectId="117" type="1" /> <!-- Empower - M. Atk. + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="13" effectId="118" type="1" /> <!-- Empower - M. Atk. + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="14" effectId="119" type="1" /> <!-- Empower - M. Atk. + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="10" skillId="13863" level="15" effectId="120" type="1" /> <!-- Empower - M. Atk. + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="1" effectId="121" type="1" /> <!-- Acumen - Casting Spd. + 11%" -->
|
|
||||||
<option id="11" skillId="13864" level="2" effectId="122" type="1" /> <!-- Acumen - Casting Spd. + 12%" -->
|
|
||||||
<option id="11" skillId="13864" level="3" effectId="123" type="1" /> <!-- Acumen - Casting Spd. + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="4" effectId="124" type="1" /> <!-- Acumen - Casting Spd. + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="5" effectId="125" type="1" /> <!-- Acumen - Casting Spd. + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="6" effectId="126" type="1" /> <!-- Acumen - Casting Spd. + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="7" effectId="127" type="1" /> <!-- Acumen - Casting Spd. + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="8" effectId="128" type="1" /> <!-- Acumen - Casting Spd. + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="9" effectId="129" type="1" /> <!-- Acumen - Casting Spd. + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="10" effectId="130" type="1" /> <!-- Acumen - Casting Spd. + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="11" effectId="131" type="1" /> <!-- Acumen - Casting Spd. + 21%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="12" effectId="132" type="1" /> <!-- Acumen - Casting Spd. + 22%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="13" effectId="133" type="1" /> <!-- Acumen - Casting Spd. + 23%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="14" effectId="134" type="1" /> <!-- Acumen - Casting Spd. + 24%, PvP Damage + 5%" -->
|
|
||||||
<option id="11" skillId="13864" level="15" effectId="135" type="1" /> <!-- Acumen - Casting Spd. + 25%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="1" effectId="136" type="1" /> <!-- Wild - M. Critical Rate + 21%" -->
|
|
||||||
<option id="12" skillId="13865" level="2" effectId="137" type="1" /> <!-- Wild - M. Critical Rate + 22%" -->
|
|
||||||
<option id="12" skillId="13865" level="3" effectId="138" type="1" /> <!-- Wild - M. Critical Rate + 23%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="4" effectId="139" type="1" /> <!-- Wild - M. Critical Rate + 24%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="5" effectId="140" type="1" /> <!-- Wild - M. Critical Rate + 25%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="6" effectId="141" type="1" /> <!-- Wild - M. Critical Rate + 26%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="7" effectId="142" type="1" /> <!-- Wild - M. Critical Rate + 27%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="8" effectId="143" type="1" /> <!-- Wild - M. Critical Rate + 28%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="9" effectId="144" type="1" /> <!-- Wild - M. Critical Rate + 29%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="10" effectId="145" type="1" /> <!-- Wild - M. Critical Rate + 30%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="11" effectId="146" type="1" /> <!-- Wild - M. Critical Rate + 31%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="12" effectId="147" type="1" /> <!-- Wild - M. Critical Rate + 32%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="13" effectId="148" type="1" /> <!-- Wild - M. Critical Rate + 33%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="14" effectId="149" type="1" /> <!-- Wild - M. Critical Rate + 34%, PvP Damage + 5%" -->
|
|
||||||
<option id="12" skillId="13865" level="15" effectId="150" type="1" /> <!-- Wild - M. Critical Rate + 35%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="1" effectId="151" type="1" /> <!-- Mystic - M. Critical Damage + 3%" -->
|
|
||||||
<option id="13" skillId="13866" level="2" effectId="152" type="1" /> <!-- Mystic - M. Critical Damage + 4%" -->
|
|
||||||
<option id="13" skillId="13866" level="3" effectId="153" type="1" /> <!-- Mystic - M. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="4" effectId="154" type="1" /> <!-- Mystic - M. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="5" effectId="155" type="1" /> <!-- Mystic - M. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="6" effectId="156" type="1" /> <!-- Mystic - M. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="7" effectId="157" type="1" /> <!-- Mystic - M. Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="8" effectId="158" type="1" /> <!-- Mystic - M. Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="9" effectId="159" type="1" /> <!-- Mystic - M. Critical Damage + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="10" effectId="160" type="1" /> <!-- Mystic - M. Critical Damage + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="11" effectId="161" type="1" /> <!-- Mystic - M. Critical Damage + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="12" effectId="162" type="1" /> <!-- Mystic - M. Critical Damage + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="13" effectId="163" type="1" /> <!-- Mystic - M. Critical Damage + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="14" effectId="164" type="1" /> <!-- Mystic - M. Critical Damage + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="13" skillId="13866" level="15" effectId="165" type="1" /> <!-- Mystic - M. Critical Damage + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="1" effectId="166" type="1" /> <!-- Soul - Max MP + 26%" -->
|
|
||||||
<option id="14" skillId="13867" level="2" effectId="167" type="1" /> <!-- Soul - Max MP + 27%" -->
|
|
||||||
<option id="14" skillId="13867" level="3" effectId="168" type="1" /> <!-- Soul - Max MP + 28%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="4" effectId="169" type="1" /> <!-- Soul - Max MP + 29%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="5" effectId="170" type="1" /> <!-- Soul - Max MP + 30%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="6" effectId="171" type="1" /> <!-- Soul - Max MP + 31%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="7" effectId="172" type="1" /> <!-- Soul - Max MP + 32%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="8" effectId="173" type="1" /> <!-- Soul - Max MP + 33%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="9" effectId="174" type="1" /> <!-- Soul - Max MP + 34%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="10" effectId="175" type="1" /> <!-- Soul - Max MP + 35%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="11" effectId="176" type="1" /> <!-- Soul - Max MP + 36%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="12" effectId="177" type="1" /> <!-- Soul - Max MP + 37%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="13" effectId="178" type="1" /> <!-- Soul - Max MP + 38%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="14" effectId="179" type="1" /> <!-- Soul - Max MP + 39%, PvP Damage + 5%" -->
|
|
||||||
<option id="14" skillId="13867" level="15" effectId="180" type="1" /> <!-- Soul - Max MP + 40%, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="1" effectId="181" type="1" /> <!-- Speed Focus - Atk. Spd. + 5%, P. Critical Rate + 26" -->
|
|
||||||
<option id="19" skillId="13868" level="2" effectId="182" type="1" /> <!-- Speed Focus - Atk. Spd. + 5%, P. Critical Rate + 29" -->
|
|
||||||
<option id="19" skillId="13868" level="3" effectId="183" type="1" /> <!-- Speed Focus - Atk. Spd. + 6%, P. Critical Rate + 32, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="4" effectId="184" type="1" /> <!-- Speed Focus - Atk. Spd. + 6%, P. Critical Rate + 34, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="5" effectId="185" type="1" /> <!-- Speed Focus - Atk. Spd. + 7%, P. Critical Rate + 37, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="6" effectId="186" type="1" /> <!-- Speed Focus - Atk. Spd. + 7%, P. Critical Rate + 40, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="7" effectId="187" type="1" /> <!-- Speed Focus - Atk. Spd. + 8%, P. Critical Rate + 42, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="8" effectId="188" type="1" /> <!-- Speed Focus - Atk. Spd. + 8%, P. Critical Rate + 45, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="9" effectId="189" type="1" /> <!-- Speed Focus - Atk. Spd. + 9%, P. Critical Rate + 48, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="10" effectId="190" type="1" /> <!-- Speed Focus - Atk. Spd. + 9%, P. Critical Rate + 50, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="11" effectId="191" type="1" /> <!-- Speed Focus - Atk. Spd. + 10%, P. Critical Rate + 53, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="12" effectId="192" type="1" /> <!-- Speed Focus - Atk. Spd. + 10%, P. Critical Rate + 56, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="13" effectId="193" type="1" /> <!-- Speed Focus - Atk. Spd. + 11%, P. Critical Rate + 59, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="14" effectId="194" type="1" /> <!-- Speed Focus - Atk. Spd. + 11%, P. Critical Rate + 61, PvP Damage + 5%" -->
|
|
||||||
<option id="19" skillId="13868" level="15" effectId="195" type="1" /> <!-- Speed Focus - Atk. Spd. + 12%, P. Critical Rate + 64, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="1" effectId="196" type="1" /> <!-- Speed Death - Atk. Spd. + 5%, P. Critical Damage + 1%" -->
|
|
||||||
<option id="20" skillId="13869" level="2" effectId="197" type="1" /> <!-- Speed Death - Atk. Spd. + 5%, P. Critical Damage + 2%" -->
|
|
||||||
<option id="20" skillId="13869" level="3" effectId="198" type="1" /> <!-- Speed Death - Atk. Spd. + 6%, P. Critical Damage + 2%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="4" effectId="199" type="1" /> <!-- Speed Death - Atk. Spd. + 6%, P. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="5" effectId="200" type="1" /> <!-- Speed Death - Atk. Spd. + 7%, P. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="6" effectId="201" type="1" /> <!-- Speed Death - Atk. Spd. + 7%, P. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="7" effectId="202" type="1" /> <!-- Speed Death - Atk. Spd. + 8%, P. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="8" effectId="203" type="1" /> <!-- Speed Death - Atk. Spd. + 8%, P. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="9" effectId="204" type="1" /> <!-- Speed Death - Atk. Spd. + 9%, P. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="10" effectId="205" type="1" /> <!-- Speed Death - Atk. Spd. + 9%, P. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="11" effectId="206" type="1" /> <!-- Speed Death - Atk. Spd. + 10%, P. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="12" effectId="207" type="1" /> <!-- Speed Death - Atk. Spd. + 10%, P. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="13" effectId="208" type="1" /> <!-- Speed Death - Atk. Spd. + 11%, P. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="14" effectId="209" type="1" /> <!-- Speed Death - Atk. Spd. + 11%, P. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="20" skillId="13869" level="15" effectId="210" type="1" /> <!-- Speed Death - Atk. Spd. + 12%, P. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="1" effectId="211" type="1" /> <!-- Speed Hunter - Atk. Spd. + 5%, P. Skill Critical Rate + 3%" -->
|
|
||||||
<option id="21" skillId="13870" level="2" effectId="212" type="1" /> <!-- Speed Hunter - Atk. Spd. + 5%, P. Skill Critical Rate + 4%" -->
|
|
||||||
<option id="21" skillId="13870" level="3" effectId="213" type="1" /> <!-- Speed Hunter - Atk. Spd. + 6%, P. Skill Critical Rate + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="4" effectId="214" type="1" /> <!-- Speed Hunter - Atk. Spd. + 6%, P. Skill Critical Rate + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="5" effectId="215" type="1" /> <!-- Speed Hunter - Atk. Spd. + 7%, P. Skill Critical Rate + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="6" effectId="216" type="1" /> <!-- Speed Hunter - Atk. Spd. + 7%, P. Skill Critical Rate + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="7" effectId="217" type="1" /> <!-- Speed Hunter - Atk. Spd. + 8%, P. Skill Critical Rate + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="8" effectId="218" type="1" /> <!-- Speed Hunter - Atk. Spd. + 8%, P. Skill Critical Rate + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="9" effectId="219" type="1" /> <!-- Speed Hunter - Atk. Spd. + 9%, P. Skill Critical Rate + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="10" effectId="220" type="1" /> <!-- Speed Hunter - Atk. Spd. + 9%, P. Skill Critical Rate + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="11" effectId="221" type="1" /> <!-- Speed Hunter - Atk. Spd. + 10%, P. Skill Critical Rate + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="12" effectId="222" type="1" /> <!-- Speed Hunter - Atk. Spd. + 10%, P. Skill Critical Rate + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="13" effectId="223" type="1" /> <!-- Speed Hunter - Atk. Spd. + 11%, P. Skill Critical Rate + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="14" effectId="224" type="1" /> <!-- Speed Hunter - Atk. Spd. + 11%, P. Skill Critical Rate + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="21" skillId="13870" level="15" effectId="225" type="1" /> <!-- Speed Hunter - Atk. Spd. + 12%, P. Skill Critical Rate + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="1" effectId="226" type="1" /> <!-- Speed Fire - Atk. Spd. + 5%, P. Skill Critical Damage + 3%" -->
|
|
||||||
<option id="22" skillId="13871" level="2" effectId="227" type="1" /> <!-- Speed Fire - Atk. Spd. + 5%, P. Skill Critical Damage + 4%" -->
|
|
||||||
<option id="22" skillId="13871" level="3" effectId="228" type="1" /> <!-- Speed Fire - Atk. Spd. + 6%, P. Skill Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="4" effectId="229" type="1" /> <!-- Speed Fire - Atk. Spd. + 6%, P. Skill Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="5" effectId="230" type="1" /> <!-- Speed Fire - Atk. Spd. + 7%, P. Skill Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="6" effectId="231" type="1" /> <!-- Speed Fire - Atk. Spd. + 7%, P. Skill Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="7" effectId="232" type="1" /> <!-- Speed Fire - Atk. Spd. + 8%, P. Skill Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="8" effectId="233" type="1" /> <!-- Speed Fire - Atk. Spd. + 8%, P. Skill Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="9" effectId="234" type="1" /> <!-- Speed Fire - Atk. Spd. + 9%, P. Skill Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="10" effectId="235" type="1" /> <!-- Speed Fire - Atk. Spd. + 9%, P. Skill Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="11" effectId="236" type="1" /> <!-- Speed Fire - Atk. Spd. + 10%, P. Skill Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="12" effectId="237" type="1" /> <!-- Speed Fire - Atk. Spd. + 10%, P. Skill Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="13" effectId="238" type="1" /> <!-- Speed Fire - Atk. Spd. + 11%, P. Skill Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="14" effectId="239" type="1" /> <!-- Speed Fire - Atk. Spd. + 11%, P. Skill Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="22" skillId="13871" level="15" effectId="240" type="1" /> <!-- Speed Fire - Atk. Spd. + 12%, P. Skill Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="1" effectId="241" type="1" /> <!-- Speed Body - Atk. Spd. + 5%, Max HP + 10%" -->
|
|
||||||
<option id="23" skillId="13872" level="2" effectId="242" type="1" /> <!-- Speed Body - Atk. Spd. + 5%, Max HP + 11%" -->
|
|
||||||
<option id="23" skillId="13872" level="3" effectId="243" type="1" /> <!-- Speed Body - Atk. Spd. + 6%, Max HP + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="4" effectId="244" type="1" /> <!-- Speed Body - Atk. Spd. + 6%, Max HP + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="5" effectId="245" type="1" /> <!-- Speed Body - Atk. Spd. + 7%, Max HP + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="6" effectId="246" type="1" /> <!-- Speed Body - Atk. Spd. + 7%, Max HP + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="7" effectId="247" type="1" /> <!-- Speed Body - Atk. Spd. + 8%, Max HP + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="8" effectId="248" type="1" /> <!-- Speed Body - Atk. Spd. + 8%, Max HP + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="9" effectId="249" type="1" /> <!-- Speed Body - Atk. Spd. + 9%, Max HP + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="10" effectId="250" type="1" /> <!-- Speed Body - Atk. Spd. + 9%, Max HP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="11" effectId="251" type="1" /> <!-- Speed Body - Atk. Spd. + 10%, Max HP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="12" effectId="252" type="1" /> <!-- Speed Body - Atk. Spd. + 10%, Max HP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="13" effectId="253" type="1" /> <!-- Speed Body - Atk. Spd. + 11%, Max HP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="14" effectId="254" type="1" /> <!-- Speed Body - Atk. Spd. + 11%, Max HP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="23" skillId="13872" level="15" effectId="255" type="1" /> <!-- Speed Body - Atk. Spd. + 12%, Max HP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="1" effectId="256" type="1" /> <!-- Critical Death - P. Critical Rate + 26, P. Critical Damage + 1%" -->
|
|
||||||
<option id="24" skillId="13873" level="2" effectId="257" type="1" /> <!-- Critical Death - P. Critical Rate + 29, P. Critical Damage + 2%" -->
|
|
||||||
<option id="24" skillId="13873" level="3" effectId="258" type="1" /> <!-- Critical Death - P. Critical Rate + 32, P. Critical Damage + 2%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="4" effectId="259" type="1" /> <!-- Critical Death - P. Critical Rate + 34, P. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="5" effectId="260" type="1" /> <!-- Critical Death - P. Critical Rate + 37, P. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="6" effectId="261" type="1" /> <!-- Critical Death - P. Critical Rate + 40, P. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="7" effectId="262" type="1" /> <!-- Critical Death - P. Critical Rate + 42, P. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="8" effectId="263" type="1" /> <!-- Critical Death - P. Critical Rate + 45, P. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="9" effectId="264" type="1" /> <!-- Critical Death - P. Critical Rate + 48, P. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="10" effectId="265" type="1" /> <!-- Critical Death - P. Critical Rate + 50, P. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="11" effectId="266" type="1" /> <!-- Critical Death - P. Critical Rate + 53, P. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="12" effectId="267" type="1" /> <!-- Critical Death - P. Critical Rate + 56, P. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="13" effectId="268" type="1" /> <!-- Critical Death - P. Critical Rate + 59, P. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="14" effectId="269" type="1" /> <!-- Critical Death - P. Critical Rate + 61, P. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="24" skillId="13873" level="15" effectId="270" type="1" /> <!-- Critical Death - P. Critical Rate + 64, P. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="1" effectId="271" type="1" /> <!-- Critical Hunter - P. Critical Rate + 26, P. Skill Critical Rate + 3%" -->
|
|
||||||
<option id="25" skillId="13874" level="2" effectId="272" type="1" /> <!-- Critical Hunter - P. Critical Rate + 29, P. Skill Critical Rate + 4%" -->
|
|
||||||
<option id="25" skillId="13874" level="3" effectId="273" type="1" /> <!-- Critical Hunter - P. Critical Rate + 32, P. Skill Critical Rate + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="4" effectId="274" type="1" /> <!-- Critical Hunter - P. Critical Rate + 34, P. Skill Critical Rate + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="5" effectId="275" type="1" /> <!-- Critical Hunter - P. Critical Rate + 37, P. Skill Critical Rate + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="6" effectId="276" type="1" /> <!-- Critical Hunter - P. Critical Rate + 40, P. Skill Critical Rate + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="7" effectId="277" type="1" /> <!-- Critical Hunter - P. Critical Rate + 42, P. Skill Critical Rate + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="8" effectId="278" type="1" /> <!-- Critical Hunter - P. Critical Rate + 45, P. Skill Critical Rate + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="9" effectId="279" type="1" /> <!-- Critical Hunter - P. Critical Rate + 48, P. Skill Critical Rate + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="10" effectId="280" type="1" /> <!-- Critical Hunter - P. Critical Rate + 50, P. Skill Critical Rate + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="11" effectId="281" type="1" /> <!-- Critical Hunter - P. Critical Rate + 53, P. Skill Critical Rate + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="12" effectId="282" type="1" /> <!-- Critical Hunter - P. Critical Rate + 56, P. Skill Critical Rate + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="13" effectId="283" type="1" /> <!-- Critical Hunter - P. Critical Rate + 59, P. Skill Critical Rate + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="14" effectId="284" type="1" /> <!-- Critical Hunter - P. Critical Rate + 61, P. Skill Critical Rate + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="25" skillId="13874" level="15" effectId="285" type="1" /> <!-- Critical Hunter - P. Critical Rate + 64, P. Skill Critical Rate + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="1" effectId="286" type="1" /> <!-- Critical Fire - P. Critical Rate + 26, P. Skill Critical Damage + 3%" -->
|
|
||||||
<option id="26" skillId="13875" level="2" effectId="287" type="1" /> <!-- Critical Fire - P. Critical Rate + 29, P. Skill Critical Damage + 4%" -->
|
|
||||||
<option id="26" skillId="13875" level="3" effectId="288" type="1" /> <!-- Critical Fire - P. Critical Rate + 32, P. Skill Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="4" effectId="289" type="1" /> <!-- Critical Fire - P. Critical Rate + 34, P. Skill Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="5" effectId="290" type="1" /> <!-- Critical Fire - P. Critical Rate + 37, P. Skill Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="6" effectId="291" type="1" /> <!-- Critical Fire - P. Critical Rate + 40, P. Skill Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="7" effectId="292" type="1" /> <!-- Critical Fire - P. Critical Rate + 42, P. Skill Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="8" effectId="293" type="1" /> <!-- Critical Fire - P. Critical Rate + 45, P. Skill Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="9" effectId="294" type="1" /> <!-- Critical Fire - P. Critical Rate + 48, P. Skill Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="10" effectId="295" type="1" /> <!-- Critical Fire - P. Critical Rate + 50, P. Skill Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="11" effectId="296" type="1" /> <!-- Critical Fire - P. Critical Rate + 53, P. Skill Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="12" effectId="297" type="1" /> <!-- Critical Fire - P. Critical Rate + 56, P. Skill Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="13" effectId="298" type="1" /> <!-- Critical Fire - P. Critical Rate + 59, P. Skill Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="14" effectId="299" type="1" /> <!-- Critical Fire - P. Critical Rate + 61, P. Skill Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="26" skillId="13875" level="15" effectId="300" type="1" /> <!-- Critical Fire - P. Critical Rate + 64, P. Skill Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="1" effectId="301" type="1" /> <!-- Critical Body - P. Critical Rate + 26, Max HP + 10%" -->
|
|
||||||
<option id="27" skillId="13876" level="2" effectId="302" type="1" /> <!-- Critical Body - P. Critical Rate + 29, Max HP + 11%" -->
|
|
||||||
<option id="27" skillId="13876" level="3" effectId="303" type="1" /> <!-- Critical Body - P. Critical Rate + 32, Max HP + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="4" effectId="304" type="1" /> <!-- Critical Body - P. Critical Rate + 34, Max HP + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="5" effectId="305" type="1" /> <!-- Critical Body - P. Critical Rate + 37, Max HP + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="6" effectId="306" type="1" /> <!-- Critical Body - P. Critical Rate + 40, Max HP + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="7" effectId="307" type="1" /> <!-- Critical Body - P. Critical Rate + 42, Max HP + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="8" effectId="308" type="1" /> <!-- Critical Body - P. Critical Rate + 45, Max HP + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="9" effectId="309" type="1" /> <!-- Critical Body - P. Critical Rate + 48, Max HP + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="10" effectId="310" type="1" /> <!-- Critical Body - P. Critical Rate + 50, Max HP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="11" effectId="311" type="1" /> <!-- Critical Body - P. Critical Rate + 53, Max HP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="12" effectId="312" type="1" /> <!-- Critical Body - P. Critical Rate + 56, Max HP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="13" effectId="313" type="1" /> <!-- Critical Body - P. Critical Rate + 59, Max HP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="14" effectId="314" type="1" /> <!-- Critical Body - P. Critical Rate + 61, Max HP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="27" skillId="13876" level="15" effectId="315" type="1" /> <!-- Critical Body - P. Critical Rate + 64, Max HP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="1" effectId="316" type="1" /> <!-- Acumen Wild - Casting Spd. + 5%, M. Critical Rate + 10%" -->
|
|
||||||
<option id="28" skillId="13877" level="2" effectId="317" type="1" /> <!-- Acumen Wild - Casting Spd. + 5%, M. Critical Rate + 11%" -->
|
|
||||||
<option id="28" skillId="13877" level="3" effectId="318" type="1" /> <!-- Acumen Wild - Casting Spd. + 6%, M. Critical Rate + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="4" effectId="319" type="1" /> <!-- Acumen Wild - Casting Spd. + 6%, M. Critical Rate + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="5" effectId="320" type="1" /> <!-- Acumen Wild - Casting Spd. + 7%, M. Critical Rate + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="6" effectId="321" type="1" /> <!-- Acumen Wild - Casting Spd. + 7%, M. Critical Rate + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="7" effectId="322" type="1" /> <!-- Acumen Wild - Casting Spd. + 8%, M. Critical Rate + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="8" effectId="323" type="1" /> <!-- Acumen Wild - Casting Spd. + 8%, M. Critical Rate + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="9" effectId="324" type="1" /> <!-- Acumen Wild - Casting Spd. + 9%, M. Critical Rate + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="10" effectId="325" type="1" /> <!-- Acumen Wild - Casting Spd. + 9%, M. Critical Rate + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="11" effectId="326" type="1" /> <!-- Acumen Wild - Casting Spd. + 10%, M. Critical Rate + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="12" effectId="327" type="1" /> <!-- Acumen Wild - Casting Spd. + 10%, M. Critical Rate + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="13" effectId="328" type="1" /> <!-- Acumen Wild - Casting Spd. + 11%, M. Critical Rate + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="14" effectId="329" type="1" /> <!-- Acumen Wild - Casting Spd. + 11%, M. Critical Rate + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="28" skillId="13877" level="15" effectId="330" type="1" /> <!-- Acumen Wild - Casting Spd. + 12%, M. Critical Rate + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="1" effectId="331" type="1" /> <!-- Acumen Mystic - Casting Spd. + 5%, M. Critical Damage + 1%" -->
|
|
||||||
<option id="29" skillId="13878" level="2" effectId="332" type="1" /> <!-- Acumen Mystic - Casting Spd. + 5%, M. Critical Damage + 2%" -->
|
|
||||||
<option id="29" skillId="13878" level="3" effectId="333" type="1" /> <!-- Acumen Mystic - Casting Spd. + 6%, M. Critical Damage + 2%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="4" effectId="334" type="1" /> <!-- Acumen Mystic - Casting Spd. + 6%, M. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="5" effectId="335" type="1" /> <!-- Acumen Mystic - Casting Spd. + 7%, M. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="6" effectId="336" type="1" /> <!-- Acumen Mystic - Casting Spd. + 7%, M. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="7" effectId="337" type="1" /> <!-- Acumen Mystic - Casting Spd. + 8%, M. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="8" effectId="338" type="1" /> <!-- Acumen Mystic - Casting Spd. + 8%, M. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="9" effectId="339" type="1" /> <!-- Acumen Mystic - Casting Spd. + 9%, M. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="10" effectId="340" type="1" /> <!-- Acumen Mystic - Casting Spd. + 9%, M. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="11" effectId="341" type="1" /> <!-- Acumen Mystic - Casting Spd. + 10%, M. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="12" effectId="342" type="1" /> <!-- Acumen Mystic - Casting Spd. + 10%, M. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="13" effectId="343" type="1" /> <!-- Acumen Mystic - Casting Spd. + 11%, M. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="14" effectId="344" type="1" /> <!-- Acumen Mystic - Casting Spd. + 11%, M. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="29" skillId="13878" level="15" effectId="345" type="1" /> <!-- Acumen Mystic - Casting Spd. + 12%, M. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="1" effectId="346" type="1" /> <!-- Acumen Soul - Casting Spd. + 5%, Max MP + 13%" -->
|
|
||||||
<option id="30" skillId="13879" level="2" effectId="347" type="1" /> <!-- Acumen Soul - Casting Spd. + 5%, Max MP + 14%" -->
|
|
||||||
<option id="30" skillId="13879" level="3" effectId="348" type="1" /> <!-- Acumen Soul - Casting Spd. + 6%, Max MP + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="4" effectId="349" type="1" /> <!-- Acumen Soul - Casting Spd. + 6%, Max MP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="5" effectId="350" type="1" /> <!-- Acumen Soul - Casting Spd. + 7%, Max MP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="6" effectId="351" type="1" /> <!-- Acumen Soul - Casting Spd. + 7%, Max MP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="7" effectId="352" type="1" /> <!-- Acumen Soul - Casting Spd. + 8%, Max MP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="8" effectId="353" type="1" /> <!-- Acumen Soul - Casting Spd. + 8%, Max MP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="9" effectId="354" type="1" /> <!-- Acumen Soul - Casting Spd. + 9%, Max MP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="10" effectId="355" type="1" /> <!-- Acumen Soul - Casting Spd. + 9%, Max MP + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="11" effectId="356" type="1" /> <!-- Acumen Soul - Casting Spd. + 10%, Max MP + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="12" effectId="357" type="1" /> <!-- Acumen Soul - Casting Spd. + 10%, Max MP + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="13" effectId="358" type="1" /> <!-- Acumen Soul - Casting Spd. + 11%, Max MP + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="14" effectId="359" type="1" /> <!-- Acumen Soul - Casting Spd. + 11%, Max MP + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="30" skillId="13879" level="15" effectId="360" type="1" /> <!-- Acumen Soul - Casting Spd. + 12%, Max MP + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="1" effectId="361" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 10%, M. Critical Damage + 1%" -->
|
|
||||||
<option id="31" skillId="13880" level="2" effectId="362" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 10%, M. Critical Damage + 2%" -->
|
|
||||||
<option id="31" skillId="13880" level="3" effectId="363" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 11%, M. Critical Damage + 2%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="4" effectId="364" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 11%, M. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="5" effectId="365" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 12%, M. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="6" effectId="366" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 12%, M. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="7" effectId="367" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 13%, M. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="8" effectId="368" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 13%, M. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="9" effectId="369" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 14%, M. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="10" effectId="370" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 14%, M. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="11" effectId="371" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 15%, M. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="12" effectId="372" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 15%, M. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="13" effectId="373" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 16%, M. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="14" effectId="374" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 16%, M. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="31" skillId="13880" level="15" effectId="375" type="1" /> <!-- Wid. Mystic - M. Critical Rate + 17%, M. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="1" effectId="376" type="1" /> <!-- Wid. Soul - M. Critical Rate + 10%, Max MP + 13%" -->
|
|
||||||
<option id="32" skillId="13881" level="2" effectId="377" type="1" /> <!-- Wid. Soul - M. Critical Rate + 10%, Max MP + 14%" -->
|
|
||||||
<option id="32" skillId="13881" level="3" effectId="378" type="1" /> <!-- Wid. Soul - M. Critical Rate + 11%, Max MP + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="4" effectId="379" type="1" /> <!-- Wid. Soul - M. Critical Rate + 11%, Max MP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="5" effectId="380" type="1" /> <!-- Wid. Soul - M. Critical Rate + 12%, Max MP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="6" effectId="381" type="1" /> <!-- Wid. Soul - M. Critical Rate + 12%, Max MP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="7" effectId="382" type="1" /> <!-- Wid. Soul - M. Critical Rate + 13%, Max MP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="8" effectId="383" type="1" /> <!-- Wid. Soul - M. Critical Rate + 13%, Max MP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="9" effectId="384" type="1" /> <!-- Wid. Soul - M. Critical Rate + 14%, Max MP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="10" effectId="385" type="1" /> <!-- Wid. Soul - M. Critical Rate + 14%, Max MP + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="11" effectId="386" type="1" /> <!-- Wid. Soul - M. Critical Rate + 15%, Max MP + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="12" effectId="387" type="1" /> <!-- Wid. Soul - M. Critical Rate + 15%, Max MP + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="13" effectId="388" type="1" /> <!-- Wid. Soul - M. Critical Rate + 16%, Max MP + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="14" effectId="389" type="1" /> <!-- Wid. Soul - M. Critical Rate + 16%, Max MP + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="32" skillId="13881" level="15" effectId="390" type="1" /> <!-- Wid. Soul - M. Critical Rate + 17%, Max MP + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="1" effectId="391" type="1" /> <!-- HP Acumen - Max HP + 10%, Casting Spd. + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="2" effectId="392" type="1" /> <!-- HP Acumen - Max HP + 11%, Casting Spd. + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="3" effectId="393" type="1" /> <!-- HP Acumen - Max HP + 11%, Casting Spd. + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="4" effectId="394" type="1" /> <!-- HP Acumen - Max HP + 12%, Casting Spd. + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="5" effectId="395" type="1" /> <!-- HP Acumen - Max HP + 12%, Casting Spd. + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="6" effectId="396" type="1" /> <!-- HP Acumen - Max HP + 13%, Casting Spd. + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="7" effectId="397" type="1" /> <!-- HP Acumen - Max HP + 13%, Casting Spd. + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="8" effectId="398" type="1" /> <!-- HP Acumen - Max HP + 14%, Casting Spd. + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="9" effectId="399" type="1" /> <!-- HP Acumen - Max HP + 14%, Casting Spd. + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="10" effectId="400" type="1" /> <!-- HP Acumen - Max HP + 15%, Casting Spd. + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="11" effectId="401" type="1" /> <!-- HP Acumen - Max HP + 15%, Casting Spd. + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="12" effectId="402" type="1" /> <!-- HP Acumen - Max HP + 16%, Casting Spd. + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="13" effectId="403" type="1" /> <!-- HP Acumen - Max HP + 16%, Casting Spd. + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="14" effectId="404" type="1" /> <!-- HP Acumen - Max HP + 17%, Casting Spd. + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="37" skillId="13882" level="15" effectId="405" type="1" /> <!-- HP Acumen - Max HP + 17%, Casting Spd. + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="1" effectId="406" type="1" /> <!-- HP Wild - Max HP + 10%, M. Critical Rate + 10%" -->
|
|
||||||
<option id="38" skillId="13883" level="2" effectId="407" type="1" /> <!-- HP Wild - Max HP + 11%, M. Critical Rate + 10%" -->
|
|
||||||
<option id="38" skillId="13883" level="3" effectId="408" type="1" /> <!-- HP Wild - Max HP + 11%, M. Critical Rate + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="4" effectId="409" type="1" /> <!-- HP Wild - Max HP + 12%, M. Critical Rate + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="5" effectId="410" type="1" /> <!-- HP Wild - Max HP + 12%, M. Critical Rate + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="6" effectId="411" type="1" /> <!-- HP Wild - Max HP + 13%, M. Critical Rate + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="7" effectId="412" type="1" /> <!-- HP Wild - Max HP + 13%, M. Critical Rate + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="8" effectId="413" type="1" /> <!-- HP Wild - Max HP + 14%, M. Critical Rate + 13%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="9" effectId="414" type="1" /> <!-- HP Wild - Max HP + 14%, M. Critical Rate + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="10" effectId="415" type="1" /> <!-- HP Wild - Max HP + 15%, M. Critical Rate + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="11" effectId="416" type="1" /> <!-- HP Wild - Max HP + 15%, M. Critical Rate + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="12" effectId="417" type="1" /> <!-- HP Wild - Max HP + 16%, M. Critical Rate + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="13" effectId="418" type="1" /> <!-- HP Wild - Max HP + 16%, M. Critical Rate + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="14" effectId="419" type="1" /> <!-- HP Wild - Max HP + 17%, M. Critical Rate + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="38" skillId="13883" level="15" effectId="420" type="1" /> <!-- HP Wild - Max HP + 17%, M. Critical Rate + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="1" effectId="421" type="1" /> <!-- HP Mystic - Max HP + 10%, M. Critical Damage + 1%" -->
|
|
||||||
<option id="39" skillId="13884" level="2" effectId="422" type="1" /> <!-- HP Mystic - Max HP + 11%, M. Critical Damage + 2%" -->
|
|
||||||
<option id="39" skillId="13884" level="3" effectId="423" type="1" /> <!-- HP Mystic - Max HP + 11%, M. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="4" effectId="424" type="1" /> <!-- HP Mystic - Max HP + 12%, M. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="5" effectId="425" type="1" /> <!-- HP Mystic - Max HP + 12%, M. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="6" effectId="426" type="1" /> <!-- HP Mystic - Max HP + 13%, M. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="7" effectId="427" type="1" /> <!-- HP Mystic - Max HP + 13%, M. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="8" effectId="428" type="1" /> <!-- HP Mystic - Max HP + 14%, M. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="9" effectId="429" type="1" /> <!-- HP Mystic - Max HP + 14%, M. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="10" effectId="430" type="1" /> <!-- HP Mystic - Max HP + 15%, M. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="11" effectId="431" type="1" /> <!-- HP Mystic - Max HP + 15%, M. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="12" effectId="432" type="1" /> <!-- HP Mystic - Max HP + 16%, M. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="13" effectId="433" type="1" /> <!-- HP Mystic - Max HP + 16%, M. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="14" effectId="434" type="1" /> <!-- HP Mystic - Max HP + 17%, M. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="39" skillId="13884" level="15" effectId="435" type="1" /> <!-- HP Mystic - Max HP + 17%, M. Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="1" effectId="436" type="1" /> <!-- HP Soul - Max HP + 10%, Max MP + 13%" -->
|
|
||||||
<option id="40" skillId="13885" level="2" effectId="437" type="1" /> <!-- HP Soul - Max HP + 11%, Max MP + 13%" -->
|
|
||||||
<option id="40" skillId="13885" level="3" effectId="438" type="1" /> <!-- HP Soul - Max HP + 11%, Max MP + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="4" effectId="439" type="1" /> <!-- HP Soul - Max HP + 12%, Max MP + 14%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="5" effectId="440" type="1" /> <!-- HP Soul - Max HP + 12%, Max MP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="6" effectId="441" type="1" /> <!-- HP Soul - Max HP + 13%, Max MP + 15%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="7" effectId="442" type="1" /> <!-- HP Soul - Max HP + 13%, Max MP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="8" effectId="443" type="1" /> <!-- HP Soul - Max HP + 14%, Max MP + 16%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="9" effectId="444" type="1" /> <!-- HP Soul - Max HP + 14%, Max MP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="10" effectId="445" type="1" /> <!-- HP Soul - Max HP + 15%, Max MP + 17%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="11" effectId="446" type="1" /> <!-- HP Soul - Max HP + 15%, Max MP + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="12" effectId="447" type="1" /> <!-- HP Soul - Max HP + 16%, Max MP + 18%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="13" effectId="448" type="1" /> <!-- HP Soul - Max HP + 16%, Max MP + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="14" effectId="449" type="1" /> <!-- HP Soul - Max HP + 17%, Max MP + 19%, PvP Damage + 5%" -->
|
|
||||||
<option id="40" skillId="13885" level="15" effectId="450" type="1" /> <!-- HP Soul - Max HP + 17%, Max MP + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="1" effectId="451" type="1" /> <!-- MP Fury - Max MP + 13%, Atk. Spd. + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="2" effectId="452" type="1" /> <!-- MP Fury - Max MP + 13%, Atk. Spd. + 6%" -->
|
|
||||||
<option id="41" skillId="13886" level="3" effectId="453" type="1" /> <!-- MP Fury - Max MP + 14%, Atk. Spd. + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="4" effectId="454" type="1" /> <!-- MP Fury - Max MP + 14%, Atk. Spd. + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="5" effectId="455" type="1" /> <!-- MP Fury - Max MP + 15%, Atk. Spd. + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="6" effectId="456" type="1" /> <!-- MP Fury - Max MP + 15%, Atk. Spd. + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="7" effectId="457" type="1" /> <!-- MP Fury - Max MP + 16%, Atk. Spd. + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="8" effectId="458" type="1" /> <!-- MP Fury - Max MP + 16%, Atk. Spd. + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="9" effectId="459" type="1" /> <!-- MP Fury - Max MP + 17%, Atk. Spd. + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="10" effectId="460" type="1" /> <!-- MP Fury - Max MP + 17%, Atk. Spd. + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="11" effectId="461" type="1" /> <!-- MP Fury - Max MP + 18%, Atk. Spd. + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="12" effectId="462" type="1" /> <!-- MP Fury - Max MP + 18%, Atk. Spd. + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="13" effectId="463" type="1" /> <!-- MP Fury - Max MP + 19%, Atk. Spd. + 11%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="14" effectId="464" type="1" /> <!-- MP Fury - Max MP + 19%, Atk. Spd. + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="41" skillId="13886" level="15" effectId="465" type="1" /> <!-- MP Fury - Max MP + 20%, Atk. Spd. + 12%, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="1" effectId="466" type="1" /> <!-- MP Focus - Max MP + 13%, P. Critical Rate + 26" -->
|
|
||||||
<option id="42" skillId="13887" level="2" effectId="467" type="1" /> <!-- MP Focus - Max MP + 13%, P. Critical Rate + 29" -->
|
|
||||||
<option id="42" skillId="13887" level="3" effectId="468" type="1" /> <!-- MP Focus - Max MP + 14%, P. Critical Rate + 32, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="4" effectId="469" type="1" /> <!-- MP Focus - Max MP + 14%, P. Critical Rate + 34, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="5" effectId="470" type="1" /> <!-- MP Focus - Max MP + 15%, P. Critical Rate + 37, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="6" effectId="471" type="1" /> <!-- MP Focus - Max MP + 15%, P. Critical Rate + 40, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="7" effectId="472" type="1" /> <!-- MP Focus - Max MP + 16%, P. Critical Rate + 42, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="8" effectId="473" type="1" /> <!-- MP Focus - Max MP + 16%, P. Critical Rate + 45, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="9" effectId="474" type="1" /> <!-- MP Focus - Max MP + 17%, P. Critical Rate + 48, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="10" effectId="475" type="1" /> <!-- MP Focus - Max MP + 17%, P. Critical Rate + 50, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="11" effectId="476" type="1" /> <!-- MP Focus - Max MP + 18%, P. Critical Rate + 53, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="12" effectId="477" type="1" /> <!-- MP Focus - Max MP + 18%, P. Critical Rate + 56, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="13" effectId="478" type="1" /> <!-- MP Focus - Max MP + 19%, P. Critical Rate + 59, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="14" effectId="479" type="1" /> <!-- MP Focus - Max MP + 19%, P. Critical Rate + 61, PvP Damage + 5%" -->
|
|
||||||
<option id="42" skillId="13887" level="15" effectId="480" type="1" /> <!-- MP Focus - Max MP + 20%, P. Critical Rate + 64, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="1" effectId="481" type="1" /> <!-- MP Death - Max MP + 13%, P. Critical Damage + 1%" -->
|
|
||||||
<option id="43" skillId="13888" level="2" effectId="482" type="1" /> <!-- MP Death - Max MP + 13%, P. Critical Damage + 2%" -->
|
|
||||||
<option id="43" skillId="13888" level="3" effectId="483" type="1" /> <!-- MP Death - Max MP + 14%, P. Critical Damage + 2%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="4" effectId="484" type="1" /> <!-- MP Death - Max MP + 14%, P. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="5" effectId="485" type="1" /> <!-- MP Death - Max MP + 15%, P. Critical Damage + 3%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="6" effectId="486" type="1" /> <!-- MP Death - Max MP + 15%, P. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="7" effectId="487" type="1" /> <!-- MP Death - Max MP + 16%, P. Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="8" effectId="488" type="1" /> <!-- MP Death - Max MP + 16%, P. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="9" effectId="489" type="1" /> <!-- MP Death - Max MP + 17%, P. Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="10" effectId="490" type="1" /> <!-- MP Death - Max MP + 17%, P. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="11" effectId="491" type="1" /> <!-- MP Death - Max MP + 18%, P. Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="12" effectId="492" type="1" /> <!-- MP Death - Max MP + 18%, P. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="13" effectId="493" type="1" /> <!-- MP Death - Max MP + 19%, P. Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="14" effectId="494" type="1" /> <!-- MP Death - Max MP + 19%, P. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="43" skillId="13888" level="15" effectId="495" type="1" /> <!-- MP Death - Max MP + 20%, P. Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="1" effectId="496" type="1" /> <!-- MP Hunter - Max MP + 13%, P. Skill Critical Rate + 3%" -->
|
|
||||||
<option id="44" skillId="13889" level="2" effectId="497" type="1" /> <!-- MP Hunter - Max MP + 13%, P. Skill Critical Rate + 4%" -->
|
|
||||||
<option id="44" skillId="13889" level="3" effectId="498" type="1" /> <!-- MP Hunter - Max MP + 14%, P. Skill Critical Rate + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="4" effectId="499" type="1" /> <!-- MP Hunter - Max MP + 14%, P. Skill Critical Rate + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="5" effectId="500" type="1" /> <!-- MP Hunter - Max MP + 15%, P. Skill Critical Rate + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="6" effectId="501" type="1" /> <!-- MP Hunter - Max MP + 15%, P. Skill Critical Rate + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="7" effectId="502" type="1" /> <!-- MP Hunter - Max MP + 16%, P. Skill Critical Rate + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="8" effectId="503" type="1" /> <!-- MP Hunter - Max MP + 16%, P. Skill Critical Rate + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="9" effectId="504" type="1" /> <!-- MP Hunter - Max MP + 17%, P. Skill Critical Rate + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="10" effectId="505" type="1" /> <!-- MP Hunter - Max MP + 17%, P. Skill Critical Rate + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="11" effectId="506" type="1" /> <!-- MP Hunter - Max MP + 18%, P. Skill Critical Rate + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="12" effectId="507" type="1" /> <!-- MP Hunter - Max MP + 18%, P. Skill Critical Rate + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="13" effectId="508" type="1" /> <!-- MP Hunter - Max MP + 19%, P. Skill Critical Rate + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="14" effectId="509" type="1" /> <!-- MP Hunter - Max MP + 19%, P. Skill Critical Rate + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="44" skillId="13889" level="15" effectId="510" type="1" /> <!-- MP Hunter - Max MP + 20%, P. Skill Critical Rate + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="1" effectId="511" type="1" /> <!-- MP Fire - Max MP + 13%, P. Skill Critical Damage + 3%" -->
|
|
||||||
<option id="45" skillId="13890" level="2" effectId="512" type="1" /> <!-- MP Fire - Max MP + 13%, P. Skill Critical Damage + 4%" -->
|
|
||||||
<option id="45" skillId="13890" level="3" effectId="513" type="1" /> <!-- MP Fire - Max MP + 14%, P. Skill Critical Damage + 4%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="4" effectId="514" type="1" /> <!-- MP Fire - Max MP + 14%, P. Skill Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="5" effectId="515" type="1" /> <!-- MP Fire - Max MP + 15%, P. Skill Critical Damage + 5%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="6" effectId="516" type="1" /> <!-- MP Fire - Max MP + 15%, P. Skill Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="7" effectId="517" type="1" /> <!-- MP Fire - Max MP + 16%, P. Skill Critical Damage + 6%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="8" effectId="518" type="1" /> <!-- MP Fire - Max MP + 16%, P. Skill Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="9" effectId="519" type="1" /> <!-- MP Fire - Max MP + 17%, P. Skill Critical Damage + 7%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="10" effectId="520" type="1" /> <!-- MP Fire - Max MP + 17%, P. Skill Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="11" effectId="521" type="1" /> <!-- MP Fire - Max MP + 18%, P. Skill Critical Damage + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="12" effectId="522" type="1" /> <!-- MP Fire - Max MP + 18%, P. Skill Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="13" effectId="523" type="1" /> <!-- MP Fire - Max MP + 19%, P. Skill Critical Damage + 9%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="14" effectId="524" type="1" /> <!-- MP Fire - Max MP + 19%, P. Skill Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="45" skillId="13890" level="15" effectId="525" type="1" /> <!-- MP Fire - Max MP + 20%, P. Skill Critical Damage + 10%, PvP Damage + 5%" -->
|
|
||||||
<option id="46" skillId="13898" level="1" effectId="526" type="2" /> <!-- Tyrr - P. Atk. + 5%" -->
|
|
||||||
<option id="47" skillId="13899" level="1" effectId="527" type="2" /> <!-- Feoh - M. Atk. + 5%" -->
|
|
||||||
<option id="48" skillId="13900" level="1" effectId="528" type="2" /> <!-- Sigel - Max HP + 15%" -->
|
|
||||||
<option id="64" skillId="13891" level="1" effectId="529" type="1" /> <!-- Critical Slow - Chance to decrease Speed and PvP Damage + 5% during a critical attack." -->
|
|
||||||
<option id="64" skillId="13892" level="1" effectId="530" type="1" /> <!-- Critical Stun - Chance to stun and PvP Damage + 5% during a critical attack." -->
|
|
||||||
<option id="64" skillId="13893" level="1" effectId="531" type="1" /> <!-- Magic Hold - Chance to activate a Dryad Root and PvP Damage + 5% when using a magic skill." -->
|
|
||||||
<option id="64" skillId="13894" level="1" effectId="532" type="1" /> <!-- Magic Focus - Chance to activate Focus when using a magic skill." -->
|
|
||||||
<option id="64" skillId="13894" level="2" effectId="533" type="1" /> <!-- Magic Focus - Chance to activate Focus and PvP Damage + 5% when using a magic skill." -->
|
|
||||||
<option id="64" skillId="13895" level="1" effectId="534" type="1" /> <!-- Magic Blessed Body - Chance to activate Blessed Body when using a magic skill." -->
|
|
||||||
<option id="64" skillId="13896" level="1" effectId="535" type="1" /> <!-- Magic Regeneration - Chance to activate Regeneration when using a magic skill." -->
|
|
||||||
<option id="64" skillId="13897" level="1" effectId="536" type="1" /> <!-- Magic Mental Shield - Chance to activate Mental Shield when using a magic skill." -->
|
|
||||||
<option id="64" skillId="13897" level="2" effectId="537" type="1" /> <!-- Magic Mental Shield - Chance to activate Mental Shield and PvP Damage + 5% when using a magic skill." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="538" type="1" /> <!-- Guidance - Accuracy + 7.6, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="539" type="1" /> <!-- Guidance - Accuracy + 7.7, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="540" type="1" /> <!-- Guidance - Accuracy + 7.8, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="541" type="1" /> <!-- Guidance - Accuracy + 7.9, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="542" type="1" /> <!-- Guidance - Accuracy + 5.27, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="543" type="1" /> <!-- Guidance - Accuracy + 7.5, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="544" type="1" /> <!-- HP Drain - Restores HP by using some of the damage inflicted upon the enemy with a certain probability. PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="545" type="1" /> <!-- Evasion - Evasion + 2.95" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="546" type="1" /> <!-- Evasion - Evasion + 2.82" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="547" type="1" /> <!-- Evasion - Evasion + 2.68" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="548" type="1" /> <!-- Evasion - Evasion + 2.41" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="549" type="1" /> <!-- Evasion - Evasion + 5.31, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="550" type="1" /> <!-- Back Blow - Rear Critical Rate + 50%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="551" type="1" /> <!-- Back Blow - Rear Critical Rate + 45%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="552" type="1" /> <!-- Back Blow - Rear Critical Rate + 40%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="553" type="1" /> <!-- Back Blow - Rear Critical Rate + 67%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="554" type="1" /> <!-- Back Blow - Rear Critical Rate + 56%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="555" type="1" /> <!-- Back Blow - Rear Critical Rate + 37%, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="556" type="1" /> <!-- Focus - Critical Attack Rate + 90.5" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="557" type="1" /> <!-- Focus - Critical Attack Rate + 81.2" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="558" type="1" /> <!-- Focus - Critical Attack Rate + 71.9" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="559" type="1" /> <!-- Focus - Critical Attack Rate + 86.7" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="560" type="1" /> <!-- Focus - Critical Attack Rate + 82.2" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="561" type="1" /> <!-- Focus - Critical Attack Rate + 77.8" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="562" type="1" /> <!-- Focus - Critical Attack Rate + 73.3" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="563" type="1" /> <!-- Focus - Critical Attack Rate + 68.9" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="564" type="1" /> <!-- Focus - Critical Attack Rate + 64.5" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="565" type="1" /> <!-- Guidance - Accuracy + 5.42" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="566" type="1" /> <!-- Guidance - Accuracy + 5.12" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="567" type="1" /> <!-- Guidance - Accuracy + 4.82" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="568" type="1" /> <!-- Guidance - Accuracy + 4.53" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="569" type="1" /> <!-- Guidance - Accuracy + 3.95" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="570" type="1" /> <!-- Guidance - Accuracy + 6.07" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="571" type="1" /> <!-- Guidance - Accuracy + 5.72" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="572" type="1" /> <!-- Guidance - Accuracy + 5.02" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="573" type="1" /> <!-- Mighty Mortal - Vital Spot Attack Success Rate + 50%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="574" type="1" /> <!-- Mighty Mortal - Vital Spot Attack Success Rate + 48%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="575" type="1" /> <!-- Mighty Mortal - Vital Spot Attack Success Rate + 44%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="576" type="1" /> <!-- Mighty Mortal - Vital Spot Attack Success Rate + 42%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="577" type="1" /> <!-- Mighty Mortal - Vital Spot Attack Success Rate + 40%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="578" type="1" /> <!-- Focus - Critical Attack Rate + 67.3, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="579" type="1" /> <!-- Focus - Critical Attack Rate + 67.3, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="580" type="1" /> <!-- Focus - Critical Attack Rate + 88.1, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="581" type="1" /> <!-- Focus - Critical Attack Rate + 116, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="582" type="1" /> <!-- Focus - Critical Attack Rate + 133.9, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="583" type="1" /> <!-- Focus - Critical Attack Rate + 133.9, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="584" type="1" /> <!-- Focus - Critical Attack Rate + 133.9, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="585" type="1" /> <!-- Focus - Critical Attack Rate + 61.6, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="586" type="1" /> <!-- Focus - Critical Attack Rate + 61.6, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="587" type="1" /> <!-- Focus - Critical Attack Rate + 80.6, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="588" type="1" /> <!-- Focus - Critical Attack Rate + 107, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="589" type="1" /> <!-- Focus - Critical Attack Rate + 123.5, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="590" type="1" /> <!-- Focus - Critical Attack Rate + 129, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="591" type="1" /> <!-- Focus - Critical Attack Rate + 129, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="592" type="1" /> <!-- Focus - Critical Attack Rate + 84.3, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="593" type="1" /> <!-- Focus - Critical Attack Rate + 111.5, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="594" type="1" /> <!-- Focus - Critical Attack Rate + 131.3, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="595" type="1" /> <!-- Focus - Critical Attack Rate + 134.4, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="596" type="1" /> <!-- Focus - Critical Attack Rate + 134.4, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="597" type="1" /> <!-- Guidance - Accuracy + 5.41, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="598" type="1" /> <!-- Guidance - Accuracy + 3.95, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="603" type="1" /> <!-- Guidance - Accuracy + 5.32, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="604" type="1" /> <!-- HP Drain - Restores HP by using some of the damage inflicted upon the enemy with a certain probability. PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="606" type="1" /> <!-- HP Regeneration - Increases HP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="607" type="1" /> <!-- HP Regeneration - Increases HP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="608" type="1" /> <!-- HP Regeneration - Increases HP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="609" type="1" /> <!-- HP Regeneration - Increases HP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="610" type="1" /> <!-- Light - Weight Gauge + 20%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="611" type="1" /> <!-- Light - Weight Gauge + 20%, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="612" type="1" /> <!-- MP Regeneration - Increases MP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="613" type="1" /> <!-- MP Regeneration - Increases MP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="614" type="1" /> <!-- MP Regeneration - Increases MP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="615" type="1" /> <!-- MP Regeneration - Increases MP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="616" type="1" /> <!-- MP Regeneration - Increases MP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="617" type="1" /> <!-- MP Regeneration - Increases MP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="618" type="1" /> <!-- MP Regeneration - Increases MP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="619" type="1" /> <!-- MP Regeneration - Increases MP Recovery Bonus., PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="620" type="1" /> <!-- Rsk.Evasion - Evasion + 6.8, PvP Damage + 5% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="621" type="1" /> <!-- Rsk. Focus - Critical Attack Rate+ 130, PvP Damage + 5% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="622" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 11%, PvP Damage + 5% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="623" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 11%, PvP Damage + 5% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="624" type="1" /> <!-- Long Blow - Bow/Crossbow Range + 100, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="625" type="1" /> <!-- Conversion - Max HP - 40%, Max MP + 60%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="626" type="1" /> <!-- Conversion - Max HP - 40%, Max MP + 60%, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="627" type="1" /> <!-- Conversion - Max HP - 40%, Max MP + 60%, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="628" type="1" /> <!-- Rsk.Evasion - Evasion + 7.29 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="629" type="1" /> <!-- Rsk.Evasion - Evasion + 6.95 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="630" type="1" /> <!-- Rsk.Evasion - Evasion + 6.24 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="631" type="1" /> <!-- Rsk.Evasion - Evasion + 7.63 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="632" type="1" /> <!-- Rsk.Evasion - Evasion + 6.95 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="633" type="1" /> <!-- Rsk.Evasion - Evasion + 6.6 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="634" type="1" /> <!-- Rsk.Evasion - Evasion + 7.29 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="635" type="1" /> <!-- Rsk. Focus - Critical Attack Rate + 138.7 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="636" type="1" /> <!-- Rsk. Focus - Critical Attack Rate + 115.4 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="637" type="1" /> <!-- Rsk. Focus - Critical Attack Rate + 107.7 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="638" type="1" /> <!-- Rsk. Focus - Critical Attack Rate + 99.9 when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="639" type="1" /> <!-- Rsk. Focus - Critical Attack Rate + 164, PvP Damage + 5% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="640" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 13% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="641" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 12% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="642" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 13% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="643" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 12% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="644" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 12% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="645" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 11% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="646" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 10% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="647" type="1" /> <!-- Rsk. Haste - Atk. Spd.+ 9% when in danger." -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="648" type="1" /> <!-- Acumen - Casting Spd. + 15%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="649" type="1" /> <!-- Health - Max HP + 25%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="650" type="1" /> <!-- Mana Up - Max MP + 30%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="651" type="1" /> <!-- Guidance - Accuracy + 6.5, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="652" type="1" /> <!-- Robust Health - Max HP + 15%, Max MP + 20%, Max CP + 30%, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="653" type="1" /> <!-- Focus - Critical Attack Rate + 109.2, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="654" type="1" /> <!-- Focus - Critical Attack Rate + 50.4" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="655" type="1" /> <!-- Focus - Critical Attack Rate + 24.8" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="656" type="1" /> <!-- Focus - Critical Attack Rate + 76.6" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="657" type="1" /> <!-- Focus - Critical Attack Rate + 40.4" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="658" type="1" /> <!-- Focus - Critical Attack Rate + 65" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="659" type="1" /> <!-- Focus - Critical Attack Rate + 43.7" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="660" type="1" /> <!-- Focus - Critical Attack Rate + 54" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="661" type="1" /> <!-- Focus - Critical Attack Rate + 52.6" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="662" type="1" /> <!-- Focus - Critical Attack Rate + 109.2, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="664" type="1" /> <!-- Health - Max HP + 25%, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="0" level="0" effectId="665" type="1" /> <!-- Haste - Atk. Spd. + 8%, PvP Damage + 5%" -->
|
|
||||||
<option id="64" skillId="13902" level="1" effectId="666" type="1" /> <!-- Fury-Practice - Atk. Spd. + 1%" -->
|
|
||||||
<option id="64" skillId="13903" level="1" effectId="667" type="1" /> <!-- Acumen-Practice - Casting Spd. + 1%" -->
|
|
||||||
</SoulCrystalOptions>
|
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Normal -->
|
<!-- Normal -->
|
||||||
<item id="22402" price="0" /> <!-- Weapon Appearance Stone (R-grade) -->
|
<item id="22402" price="0" /> <!-- Weapon Appearance Stone (R-grade) -->
|
||||||
<item id="22403" price="0" /> <!-- Weapon Appearance Stone (S-grade) -->
|
<item id="22403" price="0" /> <!-- Weapon Appearance Stone (S-grade) -->
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Normal -->
|
<!-- Normal -->
|
||||||
<item id="22414" price="0" /> <!-- Weapon Restoration Stone (R-grade) -->
|
<item id="22414" price="0" /> <!-- Weapon Restoration Stone (R-grade) -->
|
||||||
<item id="22415" price="0" /> <!-- Weapon Restoration Stone (S-grade) -->
|
<item id="22415" price="0" /> <!-- Weapon Restoration Stone (S-grade) -->
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Normal -->
|
<!-- Normal -->
|
||||||
<item id="22682" price="0" /> <!-- Armor Appearance Stone (R-grade) -->
|
<item id="22682" price="0" /> <!-- Armor Appearance Stone (R-grade) -->
|
||||||
<item id="22683" price="0" /> <!-- Armor Appearance Stone (S-grade) -->
|
<item id="22683" price="0" /> <!-- Armor Appearance Stone (S-grade) -->
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Normal -->
|
<!-- Normal -->
|
||||||
<item id="22694" price="0" /> <!-- Armor Restoration Stone (R-grade) -->
|
<item id="22694" price="0" /> <!-- Armor Restoration Stone (R-grade) -->
|
||||||
<item id="22695" price="0" /> <!-- Armor Restoration Stone (S-grade) -->
|
<item id="22695" price="0" /> <!-- Armor Restoration Stone (S-grade) -->
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Restore -->
|
<!-- Restore -->
|
||||||
<item id="22700" price="0" /> <!-- Equipment Restoration Stone (R-grade) -->
|
<item id="22700" price="0" /> <!-- Equipment Restoration Stone (R-grade) -->
|
||||||
<item id="22701" price="0" /> <!-- Equipment Restoration Stone (S-grade) -->
|
<item id="22701" price="0" /> <!-- Equipment Restoration Stone (S-grade) -->
|
||||||
+112
@@ -0,0 +1,112 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
|
<!-- Metal Suit -->
|
||||||
|
<item id="23493" price="0" /> <!-- Metal Top Appearance Stone -->
|
||||||
|
<item id="23494" price="0" /> <!-- Metal Pants Appearance Stone -->
|
||||||
|
<item id="23495" price="0" /> <!-- Metal Gloves Appearance Stone -->
|
||||||
|
<item id="23496" price="0" /> <!-- Metal Shoes Appearance Stone -->
|
||||||
|
<item id="23497" price="0" /> <!-- Metal Hair Accessory Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Metal Suit with skill -->
|
||||||
|
<item id="23712" price="0" /> <!-- Metal Top Appearance Stone -->
|
||||||
|
<item id="23713" price="0" /> <!-- Metal Pants Appearance Stone -->
|
||||||
|
<item id="23714" price="0" /> <!-- Metal Gloves Appearance Stone -->
|
||||||
|
<item id="23715" price="0" /> <!-- Metal Shoes Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Military Suit -->
|
||||||
|
<item id="23503" price="0" /> <!-- Military Top Appearance Stone -->
|
||||||
|
<item id="23504" price="0" /> <!-- Military Pants Appearance Stone -->
|
||||||
|
<item id="23505" price="0" /> <!-- Military Gloves Appearance Stone -->
|
||||||
|
<item id="23506" price="0" /> <!-- Military Shoes Appearance Stone -->
|
||||||
|
<item id="23507" price="0" /> <!-- Military Hair Accessory Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Military Suit with skill -->
|
||||||
|
<item id="23720" price="0" /> <!-- Military Top Appearance Stone -->
|
||||||
|
<item id="23721" price="0" /> <!-- Military Pants Appearance Stone -->
|
||||||
|
<item id="23722" price="0" /> <!-- Military Gloves Appearance Stone -->
|
||||||
|
<item id="23723" price="0" /> <!-- Military Shoes Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Ninja Suit -->
|
||||||
|
<item id="23189" price="0" /> <!-- Ninja Top Appearance Stone -->
|
||||||
|
<item id="23190" price="0" /> <!-- Ninja Pants Appearance Stone -->
|
||||||
|
<item id="23191" price="0" /> <!-- Ninja Gloves Appearance Stone -->
|
||||||
|
<item id="23192" price="0" /> <!-- Ninja Shoes Appearance Stone -->
|
||||||
|
<item id="23193" price="0" /> <!-- Ninja Hair Accessory Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Ninja Suit with skill -->
|
||||||
|
<item id="23564" price="0" /> <!-- Ninja Top Appearance Stone -->
|
||||||
|
<item id="23565" price="0" /> <!-- Ninja Pants Appearance Stone -->
|
||||||
|
<item id="23566" price="0" /> <!-- Ninja Gloves Appearance Stone -->
|
||||||
|
<item id="23567" price="0" /> <!-- Ninja Shoes Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Traditional Taiwanese Suit -->
|
||||||
|
<item id="23194" price="0" /> <!-- Traditional Taiwanese Top Appearance Stone -->
|
||||||
|
<item id="23195" price="0" /> <!-- Traditional Taiwanese Pants Appearance Stone -->
|
||||||
|
<item id="23196" price="0" /> <!-- Traditional Taiwanese Gloves Appearance Stone -->
|
||||||
|
<item id="23197" price="0" /> <!-- Traditional Taiwanese Shoes Appearance Stone -->
|
||||||
|
<item id="23198" price="0" /> <!-- Traditional Taiwanese Hair Accessory Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Tauti Suit -->
|
||||||
|
<item id="46573" price="0" /> <!-- Tauti Top Appearance Stone -->
|
||||||
|
<item id="46574" price="0" /> <!-- Tauti Pants Appearance Stone -->
|
||||||
|
<item id="46575" price="0" /> <!-- Tauti Gloves Appearance Stone -->
|
||||||
|
<item id="46576" price="0" /> <!-- Tauti Shoes Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Kelbim Suit -->
|
||||||
|
<item id="46578" price="0" /> <!-- Kelbim Top Appearance Stone -->
|
||||||
|
<item id="46579" price="0" /> <!-- Kelbim Pants Appearance Stone -->
|
||||||
|
<item id="46580" price="0" /> <!-- Kelbim Gloves Appearance Stone -->
|
||||||
|
<item id="46581" price="0" /> <!-- Kelbim Shoes Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Freya Suit -->
|
||||||
|
<item id="46583" price="0" /> <!-- Freya Top Appearance Stone -->
|
||||||
|
<item id="46584" price="0" /> <!-- Freya Pants Appearance Stone -->
|
||||||
|
<item id="46585" price="0" /> <!-- Freya Gloves Appearance Stone -->
|
||||||
|
<item id="46586" price="0" /> <!-- Freya Shoes Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Maid Suit -->
|
||||||
|
<item id="23513" price="0" /> <!-- Maid Appearance Stone -->
|
||||||
|
<item id="23514" price="0" /> <!-- Maid Hair Accessory Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Dark Knight Suit -->
|
||||||
|
<item id="46270" price="0" /> <!-- Dark Knight Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Dark Assassin Suit -->
|
||||||
|
<item id="24134" price="0" /> <!-- Dark Assassin Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- White Assassin Suit -->
|
||||||
|
<item id="46605" price="0" /> <!-- White Assassin Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Vampire Outfit -->
|
||||||
|
<item id="23892" price="0" /> <!-- Vampire Hair Accessory Appearance Stone -->
|
||||||
|
<item id="23888" price="0" /> <!-- Vampire Top Appearance Stone -->
|
||||||
|
<item id="23889" price="0" /> <!-- Vampire Pants Appearance Stone -->
|
||||||
|
<item id="23890" price="0" /> <!-- Vampire Gloves Appearance Stone -->
|
||||||
|
<item id="23891" price="0" /> <!-- Vampire Shoes Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Santa Suit -->
|
||||||
|
<item id="40310" price="0" /> <!-- Santa Hat Appearance Stone -->
|
||||||
|
<item id="40330" price="0" /> <!-- Santa Suit Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Lineage II Baseball Uniform -->
|
||||||
|
<item id="46605" price="0" /> <!-- Lineage II Baseball Uniform Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Blue Dynasty Armor -->
|
||||||
|
<item id="46603" price="0" /> <!-- Blue Dynasty Armor Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Tribal Warrior Suit -->
|
||||||
|
<item id="23198" price="0" /> <!-- Tribal Warrior Top Appearance Stone -->
|
||||||
|
<item id="23194" price="0" /> <!-- Tribal Warrior Top Appearance Stone -->
|
||||||
|
<item id="23195" price="0" /> <!-- Tribal Warrior Pants Appearance Stone -->
|
||||||
|
<item id="23196" price="0" /> <!-- Tribal Warrior Gloves Appearance Stone -->
|
||||||
|
<item id="23197" price="0" /> <!-- Tribal Warrior Shoes Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Beach Swimsuit -->
|
||||||
|
<item id="23172" price="0" /> <!-- Beach Swimsuit Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Alluring Swimsuit -->
|
||||||
|
<item id="23234" price="0" /> <!-- Beach Swimsuit Appearance Stone -->
|
||||||
|
|
||||||
|
<!-- Seductive Swimsuit -->
|
||||||
|
<item id="23235" price="0" /> <!-- Beach Swimsuit Appearance Stone -->
|
||||||
|
</list>
|
||||||
Vendored
+1
-1
@@ -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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<item id="5900" count="1" price="10000" restock_delay="180" /> <!-- Coin Collecting Album -->
|
<item id="5900" count="1" price="10000" restock_delay="180" /> <!-- Coin Collecting Album -->
|
||||||
</list>
|
</list>
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Swords -->
|
<!-- Swords -->
|
||||||
<item id="22666" price="0" /> <!-- Emerald One-Handed Sword Appearance Stone -->
|
<item id="22666" price="0" /> <!-- Emerald One-Handed Sword Appearance Stone -->
|
||||||
<item id="22727" price="0" /> <!-- Japanese Sword Appearance Stone -->
|
<item id="22727" price="0" /> <!-- Japanese Sword Appearance Stone -->
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Big Swords -->
|
<!-- Big Swords -->
|
||||||
<item id="22668" price="0" /> <!-- Emerald Weapon Appearance Stone: Two-handed Sword -->
|
<item id="22668" price="0" /> <!-- Emerald Weapon Appearance Stone: Two-handed Sword -->
|
||||||
<item id="22729" price="0" /> <!-- Japanese Long Sword Appearance Stone -->
|
<item id="22729" price="0" /> <!-- Japanese Long Sword Appearance Stone -->
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Daggers -->
|
<!-- Daggers -->
|
||||||
<item id="22667" price="0" /> <!-- Emerald Weapon Appearance Stone: Dagger -->
|
<item id="22667" price="0" /> <!-- Emerald Weapon Appearance Stone: Dagger -->
|
||||||
<item id="22728" price="0" /> <!-- Japanese Dagger Appearance Stone -->
|
<item id="22728" price="0" /> <!-- Japanese Dagger Appearance Stone -->
|
||||||
Vendored
+1
-1
@@ -1,5 +1,5 @@
|
|||||||
<?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">
|
<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/buylist.xsd">
|
||||||
<!-- Duals -->
|
<!-- Duals -->
|
||||||
<item id="22677" price="0" /> <!-- Emerald Weapon Appearance Stone: Dualsword -->
|
<item id="22677" price="0" /> <!-- Emerald Weapon Appearance Stone: Dualsword -->
|
||||||
<item id="36659" price="0" /> <!-- Emerald Dualsword Appearance Stone ( 7 days ) -->
|
<item id="36659" price="0" /> <!-- Emerald Dualsword Appearance Stone ( 7 days ) -->
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user