Chronicle 4 branch.

This commit is contained in:
MobiusDev
2017-07-19 21:24:06 +00:00
parent 9a69bec286
commit 3a0bf3539a
13496 changed files with 641683 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
-- ---------------------------
-- Table structure for `account_data`
-- ---------------------------
CREATE TABLE IF NOT EXISTS `account_data` (
account_name VARCHAR(45) NOT NULL DEFAULT '',
var VARCHAR(20) NOT NULL DEFAULT '',
value VARCHAR(255) ,
PRIMARY KEY (account_name,var)
);
+12
View File
@@ -0,0 +1,12 @@
-- ---------------------------
-- Table structure for accounts
-- ---------------------------
CREATE TABLE IF NOT EXISTS `accounts` (
`login` VARCHAR(45) NOT NULL default '',
`password` VARCHAR(45) ,
`lastactive` DECIMAL(20),
`access_level` INT,
`lastIP` VARCHAR(20),
`lastServer` int(4) default 1,
PRIMARY KEY (`login`)
);
+851
View File
@@ -0,0 +1,851 @@
-- ----------------------------
-- Table structure for armor
-- ----------------------------
DROP TABLE IF EXISTS armor;
CREATE TABLE `armor` (
`item_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(70) DEFAULT NULL,
`bodypart` varchar(15) NOT NULL DEFAULT '',
`crystallizable` varchar(5) NOT NULL DEFAULT '',
`armor_type` varchar(5) NOT NULL DEFAULT '',
`weight` int(5) NOT NULL DEFAULT '0',
`material` varchar(15) NOT NULL DEFAULT '',
`crystal_type` varchar(4) NOT NULL DEFAULT '',
`avoid_modify` int(1) NOT NULL DEFAULT '0',
`p_def` int(3) NOT NULL DEFAULT '0',
`m_def` int(2) NOT NULL DEFAULT '0',
`mp_bonus` int(3) NOT NULL DEFAULT '0',
`price` int(11) NOT NULL DEFAULT '0',
`crystal_count` int(4) DEFAULT NULL,
`sellable` varchar(5) DEFAULT 'true',
`dropable` varchar(5) DEFAULT 'true',
`destroyable` varchar(5) DEFAULT 'true',
`tradeable` varchar(5) DEFAULT 'true',
`item_skill_id` decimal(11,0) NOT NULL DEFAULT '0',
`item_skill_lvl` decimal(11,0) NOT NULL DEFAULT '0',
PRIMARY KEY (`item_id`)
);
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `armor` VALUES
('21', 'Shirt', 'chest', 'false', 'light', '4830', 'cloth', 'none', '0', '36', '0', '0', '147', '0', 'true', 'true', 'true', 'true', '0', '0'),
('22', 'Leather Shirt', 'chest', 'false', 'light', '4830', 'leather', 'none', '0', '43', '0', '0', '2430', '0', 'true', 'true', 'true', 'true', '0', '0'),
('23', 'Wooden Breastplate', 'chest', 'false', 'light', '4820', 'wood', 'none', '0', '47', '0', '0', '7960', '0', 'true', 'true', 'true', 'true', '0', '0'),
('24', 'Bone Breastplate', 'chest', 'false', 'light', '4770', 'bone', 'none', '0', '50', '0', '0', '20300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('25', 'Piece Bone Breastplate', 'chest', 'false', 'heavy', '8970', 'bone', 'none', '0', '62', '0', '0', '31800', '0', 'true', 'true', 'true', 'true', '0', '0'),
('26', 'Bronze Breastplate', 'chest', 'false', 'heavy', '8920', 'bronze', 'none', '0', '68', '0', '0', '49200', '0', 'true', 'true', 'true', 'true', '0', '0'),
('27', 'Hard Leather Shirt', 'chest', 'false', 'light', '4720', 'leather', 'none', '0', '53', '0', '0', '36900', '0', 'true', 'true', 'true', 'true', '0', '0'),
('28', 'Pants', 'legs', 'false', 'light', '1740', 'cloth', 'none', '0', '22', '0', '0', '92', '0', 'true', 'true', 'true', 'true', '0', '0'),
('29', 'Leather Pants', 'legs', 'false', 'light', '1730', 'leather', 'none', '0', '27', '0', '0', '1520', '0', 'true', 'true', 'true', 'true', '0', '0'),
('30', 'Hard Leather Pants', 'legs', 'false', 'light', '1700', 'leather', 'none', '0', '29', '0', '0', '4970', '0', 'true', 'true', 'true', 'true', '0', '0'),
('31', 'Bone Gaiters', 'legs', 'false', 'light', '1680', 'bone', 'none', '0', '32', '0', '0', '12700', '0', 'true', 'true', 'true', 'true', '0', '0'),
('32', 'Piece Bone Gaiters', 'legs', 'false', 'heavy', '4020', 'bone', 'none', '0', '39', '0', '0', '19900', '0', 'true', 'true', 'true', 'true', '0', '0'),
('33', 'Hard Leather Gaiters', 'legs', 'false', 'light', '1610', 'leather', 'none', '0', '33', '0', '0', '23000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('34', 'Bronze Gaiters', 'legs', 'false', 'heavy', '3960', 'bronze', 'none', '0', '43', '0', '0', '30700', '0', 'true', 'true', 'true', 'true', '0', '0'),
('35', 'Cloth Shoes', 'feet', 'false', 'none', '1320', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('36', 'Leather Sandals', 'feet', 'false', 'none', '1320', 'leather', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('37', 'Leather Shoes', 'feet', 'false', 'none', '1320', 'leather', 'none', '0', '13', '0', '0', '2650', '0', 'true', 'true', 'true', 'true', '0', '0'),
('38', 'Low Boots', 'feet', 'false', 'none', '1320', 'leather', 'none', '0', '15', '0', '0', '6770', '0', 'true', 'true', 'true', 'true', '0', '0'),
('39', 'Boots', 'feet', 'false', 'none', '1310', 'cloth', 'none', '0', '17', '0', '0', '12300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('40', 'Leather Boots', 'feet', 'true', 'none', '1300', 'leather', 'd', '0', '19', '0', '0', '20900', '38', 'true', 'true', 'true', 'true', '0', '0'),
('41', 'Cloth Cap', 'head', 'false', 'none', '660', 'cloth', 'none', '0', '13', '0', '0', '55', '0', 'true', 'true', 'true', 'true', '0', '0'),
('42', 'Leather Cap', 'head', 'false', 'none', '660', 'leather', 'none', '0', '16', '0', '0', '911', '0', 'true', 'true', 'true', 'true', '0', '0'),
('43', 'Wooden Helmet', 'head', 'false', 'none', '660', 'wood', 'none', '0', '19', '0', '0', '3980', '0', 'true', 'true', 'true', 'true', '0', '0'),
('44', 'Leather Helmet', 'head', 'false', 'none', '650', 'leather', 'none', '0', '23', '0', '0', '10200', '0', 'true', 'true', 'true', 'true', '0', '0'),
('45', 'Bone Helmet', 'head', 'true', 'none', '640', 'bone', 'd', '0', '29', '0', '0', '31300', '56', 'true', 'true', 'true', 'true', '0', '0'),
('46', 'Bronze Helmet', 'head', 'true', 'none', '630', 'bronze', 'd', '0', '33', '0', '0', '50000', '90', 'true', 'true', 'true', 'true', '0', '0'),
('47', 'Helmet', 'head', 'true', 'none', '640', 'fine_steel', 'd', '0', '37', '0', '0', '76200', '138', 'true', 'true', 'true', 'true', '0', '0'),
('48', 'Short Gloves', 'gloves', 'false', 'none', '660', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('49', 'Gloves', 'gloves', 'false', 'none', '660', 'cloth', 'none', '0', '13', '0', '0', '2650', '0', 'true', 'true', 'true', 'true', '0', '0'),
('50', 'Leather Gloves', 'gloves', 'false', 'none', '650', 'leather', 'none', '0', '15', '0', '0', '6770', '0', 'true', 'true', 'true', 'true', '0', '0'),
('51', 'Bracer', 'gloves', 'false', 'none', '650', 'leather', 'none', '0', '17', '0', '0', '12300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('52', 'Hemp Cloak', 'back', 'false', 'none', '260', 'cloth', 'none', '0', '2', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('53', 'Cotton Cloak', 'back', 'false', 'none', '250', 'cloth', 'none', '0', '3', '0', '0', '607', '0', 'true', 'true', 'true', 'true', '0', '0'),
('54', 'Silk Cloak', 'back', 'false', 'none', '250', 'cloth', 'none', '0', '4', '0', '0', '2650', '0', 'true', 'true', 'true', 'true', '0', '0'),
('55', 'Cotton Undergarment', 'underwear', 'false', 'none', '170', 'cotton', 'none', '0', '4', '0', '0', '18', '0', 'true', 'true', 'true', 'true', '0', '0'),
('56', 'Wool Undergarment', 'underwear', 'false', 'none', '170', 'wood', 'none', '0', '5', '0', '0', '304', '0', 'true', 'true', 'true', 'true', '0', '0'),
('58', 'Mithril Breastplate', 'chest', 'true', 'heavy', '8670', 'mithril', 'd', '0', '95', '0', '0', '183000', '332', 'true', 'true', 'true', 'true', '0', '0'),
('59', 'Mithril Gaiters', 'legs', 'true', 'heavy', '3830', 'mithril', 'd', '0', '61', '0', '0', '127000', '230', 'true', 'true', 'true', 'true', '0', '0'),
('60', 'Composite Armor', 'fullarmor', 'true', 'heavy', '10980', 'fine_steel', 'c', '0', '224', '0', '0', '1440000', '576', 'true', 'true', 'true', 'true', '0', '0'),
('61', 'Mithril Gloves', 'gloves', 'true', 'none', '630', 'mithril', 'd', '0', '29', '0', '0', '97800', '177', 'true', 'true', 'true', 'true', '0', '0'),
('62', 'Mithril Boots', 'feet', 'true', 'none', '1230', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('63', 'Gauntlets', 'gloves', 'true', 'none', '640', 'cloth', 'd', '0', '24', '0', '0', '50800', '92', 'true', 'true', 'true', 'true', '0', '0'),
('64', 'Composite Boots', 'feet', 'true', 'none', '1220', 'fine_steel', 'c', '0', '36', '0', '0', '245000', '98', 'true', 'true', 'true', 'true', '0', '0'),
('112', 'Apprentice\'s Earring', 'rear,lear', 'false', 'none', '150', 'silver', 'none', '0', '0', '11', '0', '49', '0', 'true', 'true', 'true', 'true', '0', '0'),
('113', 'Mystic\'s Earring', 'rear,lear', 'false', 'none', '150', 'silver', 'none', '0', '0', '13', '0', '811', '0', 'true', 'true', 'true', 'true', '0', '0'),
('114', 'Earring of Strength', 'rear,lear', 'false', 'none', '150', 'gold', 'none', '0', '0', '16', '0', '3510', '0', 'true', 'true', 'true', 'true', '0', '0'),
('115', 'Earring of Wisdom', 'rear,lear', 'false', 'none', '150', 'gold', 'none', '0', '0', '16', '0', '3510', '0', 'true', 'true', 'true', 'true', '0', '0'),
('116', 'Magic Ring', 'rfinger,lfinger', 'false', 'none', '150', 'gold', 'none', '0', '0', '7', '0', '33', '0', 'true', 'true', 'true', 'true', '0', '0'),
('117', 'Ring of Mana', 'rfinger,lfinger', 'true', 'none', '150', 'silver', 'b', '0', '0', '34', '0', '404000', '53', 'true', 'true', 'true', 'true', '0', '0'),
('118', 'Necklace of Magic', 'neck', 'false', 'none', '150', 'silver', 'none', '0', '0', '15', '0', '66', '0', 'true', 'true', 'true', 'true', '0', '0'),
('119', 'Necklace of Binding', 'neck', 'true', 'none', '150', 'adamantaite', 'c', '0', '0', '64', '0', '565000', '226', 'true', 'true', 'true', 'true', '0', '0'),
('347', 'Ring Mail Breastplate', 'chest', 'true', 'heavy', '8820', 'steel', 'd', '0', '77', '0', '0', '83500', '151', 'true', 'true', 'true', 'true', '0', '0'),
('348', 'Scale Mail', 'chest', 'true', 'heavy', '8720', 'steel', 'd', '0', '87', '0', '0', '133000', '241', 'true', 'true', 'true', 'true', '0', '0'),
('349', 'Compound Scale Mail', 'chest', 'true', 'heavy', '8620', 'fine_steel', 'd', '0', '95', '0', '0', '183000', '332', 'true', 'true', 'true', 'true', '0', '0'),
('350', 'Dwarven Scale Mail', 'chest', 'true', 'heavy', '8540', 'fine_steel', 'd', '0', '95', '0', '0', '183000', '332', 'true', 'true', 'true', 'true', '0', '0'),
('351', 'Blast Plate', 'chest', 'true', 'heavy', '8420', 'fine_steel', 'd', '0', '97', '0', '0', '203000', '369', 'true', 'true', 'true', 'true', '0', '0'),
('352', 'Brigandine Tunic', 'chest', 'true', 'heavy', '8320', 'fine_steel', 'd', '0', '103', '0', '0', '299000', '543', 'true', 'true', 'true', 'true', '0', '0'),
('353', 'Half Plate Armor', 'chest', 'true', 'heavy', '8220', 'fine_steel', 'd', '0', '111', '0', '0', '391000', '710', 'true', 'true', 'true', 'true', '0', '0'),
('354', 'Chain Mail Shirt', 'chest', 'true', 'heavy', '8120', 'fine_steel', 'c', '0', '120', '0', '0', '505000', '202', 'true', 'true', 'true', 'true', '0', '0'),
('355', 'Dwarven Chain Mail Shirt', 'chest', 'true', 'heavy', '8070', 'fine_steel', 'c', '0', '129', '0', '0', '644000', '257', 'true', 'true', 'true', 'true', '0', '0'),
('356', 'Full Plate Armor', 'fullarmor', 'true', 'heavy', '10480', 'fine_steel', 'c', '0', '239', '0', '0', '2090000', '836', 'true', 'true', 'true', 'true', '0', '0'),
('357', 'Zubei\'s Breastplate', 'chest', 'true', 'heavy', '7970', 'mithril', 'b', '0', '157', '0', '0', '2080000', '277', 'true', 'true', 'true', 'true', '0', '0'),
('358', 'Blue Wolf Breastplate', 'chest', 'true', 'heavy', '7820', 'oriharukon', 'b', '0', '166', '0', '0', '3220000', '429', 'true', 'true', 'true', 'true', '0', '0'),
('359', 'Shining Dragon Armor', 'fullarmor', 'true', 'heavy', '6400', 'mithril', 'b', '0', '301', '0', '0', '6770000', '902', 'true', 'true', 'true', 'true', '0', '0'),
('360', 'Armor of Victory', 'chest', 'true', 'heavy', '3360', 'oriharukon', 'b', '0', '175', '0', '0', '3220000', '429', 'true', 'true', 'true', 'true', '0', '0'),
('361', 'Breastplate of Valor', 'chest', 'true', 'heavy', '3360', 'blood_steel', 'b', '0', '185', '0', '0', '4630000', '617', 'true', 'true', 'true', 'true', '0', '0'),
('362', 'Glorious Armor', 'fullarmor', 'true', 'heavy', '6720', 'fine_steel', 'b', '0', '284', '0', '0', '4710000', '628', 'true', 'true', 'true', 'true', '0', '0'),
('363', 'Red Flame Armor', 'fullarmor', 'true', 'heavy', '6400', 'blood_steel', 'b', '0', '301', '0', '0', '6770000', '902', 'true', 'true', 'true', 'true', '0', '0'),
('364', 'Elven Crystal Breastplate', 'chest', 'true', 'heavy', '2400', 'crystal', 'b', '0', '175', '0', '0', '3220000', '429', 'true', 'true', 'true', 'true', '0', '0'),
('365', 'Dark Crystal Breastplate', 'chest', 'true', 'heavy', '7700', 'crystal', 'a', '0', '171', '0', '0', '4630000', '370', 'true', 'true', 'true', 'true', '0', '0'),
('366', 'Implosion Armor', 'fullarmor', 'true', 'heavy', '6080', 'damascus', 'b', '0', '284', '0', '0', '4710000', '628', 'true', 'true', 'true', 'true', '0', '0'),
('367', 'Dark Dragon Armor', 'fullarmor', 'true', 'heavy', '5760', 'damascus', 'b', '0', '301', '0', '0', '6770000', '902', 'true', 'true', 'true', 'true', '0', '0'),
('368', 'Elven Vagian Armor', 'fullarmor', 'true', 'heavy', '2400', 'mithril', 'b', '0', '284', '0', '0', '4710000', '628', 'true', 'true', 'true', 'true', '0', '0'),
('369', 'Dark Vagian Armor', 'fullarmor', 'true', 'heavy', '2400', 'mithril', 'b', '0', '301', '0', '0', '6770000', '902', 'true', 'true', 'true', 'true', '0', '0'),
('370', 'Complete Set of Plate Armor', 'fullarmor', 'true', 'heavy', '6400', 'fine_steel', 'b', '0', '284', '0', '0', '4710000', '628', 'true', 'true', 'true', 'true', '0', '0'),
('371', 'Hell Plate', 'fullarmor', 'true', 'heavy', '6400', 'blood_steel', 'b', '0', '301', '0', '0', '6770000', '902', 'true', 'true', 'true', 'true', '0', '0'),
('372', 'Art of Plate', 'fullarmor', 'true', 'heavy', '6720', 'chrysolite', 'b', '0', '284', '0', '0', '4710000', '628', 'true', 'true', 'true', 'true', '0', '0'),
('373', 'Masterpiece Armor', 'fullarmor', 'true', 'heavy', '5600', 'oriharukon', 'b', '0', '301', '0', '0', '6770000', '902', 'true', 'true', 'true', 'true', '0', '0'),
('374', 'Armor of Nightmare', 'fullarmor', 'true', 'heavy', '9580', 'blood_steel', 'a', '0', '293', '0', '0', '10300000', '824', 'true', 'true', 'true', 'true', '0', '0'),
('375', 'Dragon Scale Mail', 'chest', 'true', 'heavy', '7620', 'scale_of_dragon', 's', '0', '198', '0', '0', '10500000', '525', 'false', 'true', 'true', 'true', '0', '0'),
('376', 'Iron Plate Gaiters', 'legs', 'true', 'heavy', '3820', 'steel', 'd', '0', '48', '0', '0', '52200', '94', 'true', 'true', 'true', 'true', '0', '0'),
('377', 'Scale Gaiters', 'legs', 'true', 'heavy', '3860', 'fine_steel', 'd', '0', '54', '0', '0', '83300', '151', 'true', 'true', 'true', 'true', '0', '0'),
('378', 'Compound Scale Gaiters', 'legs', 'true', 'heavy', '3770', 'fine_steel', 'd', '0', '61', '0', '0', '127000', '230', 'true', 'true', 'true', 'true', '0', '0'),
('379', 'Dwarven Scale Gaiters', 'legs', 'true', 'heavy', '3840', 'fine_steel', 'd', '0', '61', '0', '0', '127000', '230', 'true', 'true', 'true', 'true', '0', '0'),
('380', 'Plate Gaiters', 'legs', 'true', 'heavy', '3770', 'fine_steel', 'd', '0', '70', '0', '0', '244000', '443', 'true', 'true', 'true', 'true', '0', '0'),
('381', 'Chain Gaiters', 'legs', 'true', 'heavy', '3680', 'fine_steel', 'c', '0', '75', '0', '0', '316000', '126', 'true', 'true', 'true', 'true', '0', '0'),
('382', 'Dwarven Chain Gaiters', 'legs', 'true', 'heavy', '3620', 'fine_steel', 'c', '0', '80', '0', '0', '403000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('383', 'Zubei\'s Gaiters', 'legs', 'true', 'heavy', '3570', 'mithril', 'b', '0', '98', '0', '0', '1300000', '173', 'true', 'true', 'true', 'true', '0', '0'),
('384', 'Wolf Gaiters', 'legs', 'true', 'heavy', '2560', 'oriharukon', 'b', '0', '109', '0', '0', '2010000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('385', 'Gaiters of Victory', 'legs', 'true', 'heavy', '2240', 'oriharukon', 'b', '0', '109', '0', '0', '2010000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('386', 'Gaiters of Valor', 'legs', 'true', 'heavy', '2240', 'blood_steel', 'b', '0', '116', '0', '0', '2890000', '385', 'true', 'true', 'true', 'true', '0', '0'),
('387', 'Elven Crystal Gaiters', 'legs', 'true', 'heavy', '2240', 'crystal', 'b', '0', '109', '0', '0', '2010000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('388', 'Dark Crystal Gaiters', 'legs', 'true', 'heavy', '3320', 'crystal', 'a', '0', '107', '0', '0', '2890000', '231', 'true', 'true', 'true', 'true', '0', '0'),
('389', 'Dragon Scale Gaiters', 'legs', 'true', 'heavy', '3260', 'scale_of_dragon', 's', '0', '122', '0', '0', '5980000', '299', 'false', 'true', 'true', 'true', '0', '0'),
('390', 'Cotton Shirt', 'chest', 'false', 'light', '4770', 'cloth', 'none', '0', '50', '0', '0', '20300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('391', 'Puma Skin Shirt', 'chest', 'true', 'light', '4700', 'leather', 'd', '0', '58', '0', '0', '62600', '113', 'true', 'true', 'true', 'true', '0', '0'),
('392', 'Lion Skin Shirt', 'chest', 'true', 'light', '4580', 'leather', 'd', '0', '65', '0', '0', '99900', '181', 'true', 'true', 'true', 'true', '0', '0'),
('393', 'Mithril Banded Mail', 'chest', 'true', 'light', '4570', 'mithril', 'd', '0', '73', '0', '0', '152000', '276', 'true', 'true', 'true', 'true', '0', '0'),
('394', 'Reinforced Leather Shirt', 'chest', 'true', 'light', '4570', 'leather', 'd', '0', '73', '0', '0', '152000', '276', 'true', 'true', 'true', 'true', '0', '0'),
('395', 'Manticore Skin Shirt', 'chest', 'true', 'light', '4520', 'leather', 'd', '0', '77', '0', '0', '224000', '407', 'true', 'true', 'true', 'true', '0', '0'),
('396', 'Salamander Skin Mail', 'fullarmor', 'true', 'light', '6100', 'leather', 'd', '0', '136', '0', '0', '429000', '780', 'true', 'true', 'true', 'true', '0', '0'),
('397', 'Mithril Shirt', 'chest', 'true', 'light', '4470', 'mithril', 'c', '0', '90', '0', '0', '379000', '151', 'true', 'true', 'true', 'true', '0', '0'),
('398', 'Plated Leather', 'chest', 'true', 'light', '4450', 'leather', 'c', '0', '94', '0', '0', '446000', '178', 'true', 'true', 'true', 'true', '0', '0'),
('399', 'Rind Leather Armor', 'chest', 'true', 'light', '4420', 'leather', 'c', '0', '97', '0', '0', '483000', '193', 'true', 'true', 'true', 'true', '0', '0'),
('400', 'Theca Leather Armor', 'chest', 'true', 'light', '4370', 'leather', 'c', '0', '106', '0', '0', '825000', '330', 'true', 'true', 'true', 'true', '0', '0'),
('401', 'Drake Leather Armor', 'fullarmor', 'true', 'light', '5800', 'leather', 'c', '0', '179', '0', '0', '1570000', '628', 'true', 'true', 'true', 'true', '0', '0'),
('402', 'Chain Mail of Silence', 'fullarmor', 'true', 'light', '3200', 'damascus', 'b', '0', '213', '0', '0', '3530000', '470', 'true', 'true', 'true', 'true', '0', '0'),
('403', 'Gust Chain Mail', 'fullarmor', 'true', 'light', '2720', 'blood_steel', 'b', '0', '225', '0', '0', '5080000', '677', 'true', 'true', 'true', 'true', '0', '0'),
('404', 'Prairie Leather Armor', 'chest', 'true', 'light', '8000', 'leather', 'b', '0', '131', '0', '0', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('405', 'Leather Armor of The Underworld', 'chest', 'true', 'light', '8000', 'leather', 'b', '0', '139', '0', '0', '3470000', '462', 'true', 'true', 'true', 'true', '0', '0'),
('406', 'Leather Suit of Concentration', 'fullarmor', 'true', 'light', '2400', 'leather', 'b', '0', '213', '0', '0', '3530000', '470', 'true', 'true', 'true', 'true', '0', '0'),
('407', 'Ace\'s Leather Armor', 'fullarmor', 'true', 'light', '2400', 'leather', 'b', '0', '225', '0', '0', '5080000', '677', 'true', 'true', 'true', 'true', '0', '0'),
('408', 'Guardian\'s Leather Armor', 'chest', 'true', 'light', '8000', 'leather', 'b', '0', '131', '0', '0', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('409', 'Marksman\'s Leather Armor', 'chest', 'true', 'light', '4300', 'leather', 'b', '0', '139', '0', '0', '3470000', '462', 'true', 'true', 'true', 'true', '0', '0'),
('410', 'Unicorn Leather Armor', 'fullarmor', 'true', 'light', '1280', 'leather', 'a', '0', '238', '0', '0', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('411', 'Dragon Leather Armor', 'fullarmor', 'true', 'light', '4950', 'leather', 's', '0', '237', '0', '0', '10500000', '525', 'false', 'true', 'true', 'true', '0', '0'),
('412', 'Cotton Pants', 'legs', 'false', 'light', '1630', 'cloth', 'none', '0', '32', '0', '0', '12700', '0', 'true', 'true', 'true', 'true', '0', '0'),
('413', 'Puma Skin Gaiters', 'legs', 'true', 'light', '1600', 'leather', 'd', '0', '36', '0', '0', '39100', '71', 'true', 'true', 'true', 'true', '0', '0'),
('414', 'Lion Skin Gaiters', 'legs', 'true', 'light', '1570', 'leather', 'd', '0', '41', '0', '0', '62500', '113', 'true', 'true', 'true', 'true', '0', '0'),
('415', 'Mithril Banded Gaiters', 'legs', 'true', 'light', '1580', 'mithril', 'd', '0', '46', '0', '0', '95200', '173', 'true', 'true', 'true', 'true', '0', '0'),
('416', 'Reinforced Leather Gaiters', 'legs', 'true', 'light', '1570', 'leather', 'd', '0', '46', '0', '0', '95200', '173', 'true', 'true', 'true', 'true', '0', '0'),
('417', 'Manticore Skin Gaiters', 'legs', 'true', 'light', '1550', 'leather', 'd', '0', '48', '0', '0', '140000', '254', 'true', 'true', 'true', 'true', '0', '0'),
('418', 'Plated Leather Gaiters', 'legs', 'true', 'light', '1560', 'leather', 'c', '0', '59', '0', '0', '279000', '111', 'true', 'true', 'true', 'true', '0', '0'),
('419', 'Rind Leather Gaiters', 'legs', 'true', 'light', '1550', 'leather', 'c', '0', '60', '0', '0', '302000', '120', 'true', 'true', 'true', 'true', '0', '0'),
('420', 'Theca Leather Gaiters', 'legs', 'true', 'light', '1530', 'leather', 'c', '0', '66', '0', '0', '516000', '206', 'true', 'true', 'true', 'true', '0', '0'),
('421', 'Prairie Leather Gaiters', 'legs', 'true', 'light', '4800', 'leather', 'b', '0', '82', '0', '0', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('422', 'Gaiters of The Underworld', 'legs', 'true', 'light', '4800', 'leather', 'b', '0', '87', '0', '0', '2170000', '289', 'true', 'true', 'true', 'true', '0', '0'),
('423', 'Guardian\'s Leather Gaiters', 'legs', 'true', 'light', '4800', 'leather', 'b', '0', '82', '0', '0', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('424', 'Marksman\'s Leather Gaiters', 'legs', 'true', 'light', '1490', 'leather', 'b', '0', '87', '0', '0', '2170000', '289', 'true', 'true', 'true', 'true', '0', '0'),
('425', 'Apprentice\'s Tunic', 'chest', 'false', 'magic', '2150', 'cloth', 'none', '0', '17', '0', '19', '26', '0', 'false', 'true', 'true', 'true', '0', '0'),
('426', 'Tunic', 'chest', 'false', 'magic', '2150', 'cloth', 'none', '0', '18', '0', '24', '147', '0', 'true', 'true', 'true', 'true', '0', '0'),
('427', 'Cotton Robe', 'fullarmor', 'false', 'magic', '2750', 'cotton', 'none', '0', '35', '0', '61', '3550', '0', 'true', 'true', 'true', 'true', '0', '0'),
('428', 'Feriotic Tunic', 'chest', 'false', 'magic', '2140', 'cloth', 'none', '0', '21', '0', '38', '2430', '0', 'true', 'true', 'true', 'true', '0', '0'),
('429', 'Leather Tunic', 'chest', 'false', 'magic', '2110', 'leather', 'none', '0', '25', '0', '52', '7960', '0', 'true', 'true', 'true', 'true', '0', '0'),
('430', 'Robe of Devotion', 'fullarmor', 'false', 'magic', '2650', 'cloth', 'none', '0', '49', '0', '109', '29700', '0', 'true', 'true', 'true', 'true', '0', '0'),
('431', 'Robe of Magic', 'fullarmor', 'false', 'magic', '2600', 'cloth', 'none', '0', '56', '0', '140', '53900', '0', 'true', 'true', 'true', 'true', '0', '0'),
('432', 'Cursed Tunic', 'chest', 'true', 'magic', '2090', 'cloth', 'd', '0', '39', '0', '106', '62600', '113', 'true', 'true', 'true', 'true', '0', '0'),
('433', 'Elven Tunic', 'chest', 'true', 'magic', '2080', 'cloth', 'd', '0', '43', '0', '126', '99900', '181', 'true', 'true', 'true', 'true', '0', '0'),
('434', 'White Tunic', 'chest', 'true', 'magic', '2040', 'cloth', 'd', '0', '43', '0', '126', '99900', '181', 'true', 'true', 'true', 'true', '0', '0'),
('435', 'Mystic\'s Tunic', 'chest', 'true', 'magic', '2030', 'cloth', 'd', '0', '43', '0', '126', '99900', '181', 'true', 'true', 'true', 'true', '0', '0'),
('436', 'Tunic of Knowledge', 'chest', 'true', 'magic', '2020', 'cloth', 'd', '0', '49', '0', '147', '152000', '276', 'true', 'true', 'true', 'true', '0', '0'),
('437', 'Mithril Tunic', 'chest', 'true', 'magic', '2010', 'mithril', 'd', '0', '52', '0', '169', '224000', '407', 'true', 'true', 'true', 'true', '0', '0'),
('438', 'Sage\'s Rag', 'fullarmor', 'true', 'magic', '2580', 'cloth', 'd', '0', '90', '0', '320', '429000', '780', 'true', 'true', 'true', 'true', '0', '0'),
('439', 'Karmian Tunic', 'chest', 'true', 'magic', '1980', 'cloth', 'c', '0', '60', '0', '225', '379000', '151', 'true', 'true', 'true', 'true', '0', '0'),
('440', 'Robe of Seal', 'fullarmor', 'true', 'magic', '2500', 'cloth', 'c', '0', '105', '0', '413', '707000', '282', 'true', 'true', 'true', 'true', '0', '0'),
('441', 'Demon\'s Tunic', 'chest', 'true', 'magic', '1990', 'cloth', 'c', '0', '69', '0', '284', '736000', '294', 'true', 'true', 'true', 'true', '0', '0'),
('442', 'Divine Tunic', 'chest', 'true', 'magic', '1980', 'cloth', 'c', '0', '74', '0', '314', '1070000', '428', 'true', 'true', 'true', 'true', '0', '0'),
('443', 'Tunic of Mana', 'chest', 'true', 'magic', '2000', 'cloth', 'b', '0', '87', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('444', 'Sage\'s Robe', 'fullarmor', 'true', 'magic', '1600', 'cloth', 'b', '0', '150', '0', '665', '5080000', '677', 'true', 'true', 'true', 'true', '0', '0'),
('445', 'Paradia Tunic', 'chest', 'true', 'magic', '1990', 'cloth', 'b', '0', '87', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('446', 'Inferno Tunic', 'chest', 'true', 'magic', '1880', 'cloth', 'b', '0', '92', '0', '409', '3470000', '462', 'true', 'true', 'true', 'true', '0', '0'),
('447', 'Tunic of Solar Eclipse', 'chest', 'true', 'magic', '1960', 'cloth', 'b', '0', '87', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('448', 'Robe of Black Ore', 'fullarmor', 'true', 'magic', '1600', 'cloth', 'b', '0', '150', '0', '665', '5080000', '677', 'true', 'true', 'true', 'true', '0', '0'),
('449', 'Tunic of Summoning', 'chest', 'true', 'magic', '1950', 'cloth', 'b', '0', '87', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('450', 'Otherworldly Robe', 'fullarmor', 'true', 'magic', '1600', 'cloth', 'b', '0', '150', '0', '665', '5080000', '677', 'true', 'true', 'true', 'true', '0', '0'),
('451', 'Elemental Tunic', 'chest', 'true', 'magic', '1970', 'cloth', 'b', '0', '87', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('452', 'Tunic of Phantom', 'chest', 'true', 'magic', '1890', 'cloth', 'b', '0', '92', '0', '409', '3470000', '462', 'true', 'true', 'true', 'true', '0', '0'),
('453', 'Tunic of Grace', 'chest', 'true', 'magic', '1930', 'cloth', 'b', '0', '87', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('454', 'Robe of Holy Spirit', 'fullarmor', 'true', 'magic', '1600', 'cloth', 'b', '0', '150', '0', '665', '5080000', '677', 'true', 'true', 'true', 'true', '0', '0'),
('455', 'Phoenix Tunic', 'chest', 'true', 'magic', '1950', 'cloth', 'b', '0', '87', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('456', 'Cerberus Tunic', 'chest', 'true', 'magic', '1870', 'cloth', 'b', '0', '92', '0', '409', '3470000', '462', 'true', 'true', 'true', 'true', '0', '0'),
('457', 'Tunic of Aid', 'chest', 'true', 'magic', '1910', 'cloth', 'b', '0', '87', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('458', 'Robe of Blessing', 'fullarmor', 'true', 'magic', '1600', 'cloth', 'b', '0', '150', '0', '665', '5080000', '677', 'true', 'true', 'true', 'true', '0', '0'),
('459', 'Dasparion\'s Robe', 'fullarmor', 'true', 'magic', '1200', 'cloth', 'a', '0', '158', '0', '718', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('460', 'The Robe', 'fullarmor', 'true', 'magic', '2300', 'cloth', 's', '0', '158', '0', '773', '10500000', '525', 'false', 'true', 'true', 'true', '0', '0'),
('461', 'Apprentice\'s Stockings', 'legs', 'false', 'magic', '1100', 'cloth', 'none', '0', '10', '0', '10', '6', '0', 'false', 'true', 'true', 'true', '0', '0'),
('462', 'Stockings', 'legs', 'false', 'magic', '1080', 'cloth', 'none', '0', '11', '0', '15', '92', '0', 'true', 'true', 'true', 'true', '0', '0'),
('463', 'Feriotic Stockings', 'legs', 'false', 'magic', '1070', 'cloth', 'none', '0', '13', '0', '23', '1520', '0', 'true', 'true', 'true', 'true', '0', '0'),
('464', 'Leather Stockings', 'legs', 'false', 'magic', '1020', 'leather', 'none', '0', '16', '0', '33', '4970', '0', 'true', 'true', 'true', 'true', '0', '0'),
('465', 'Cursed Stockings', 'legs', 'true', 'magic', '1020', 'cloth', 'd', '0', '24', '0', '66', '39100', '71', 'true', 'true', 'true', 'true', '0', '0'),
('466', 'Elven Stockings', 'legs', 'true', 'magic', '1010', 'cloth', 'd', '0', '27', '0', '79', '62500', '113', 'true', 'true', 'true', 'true', '0', '0'),
('467', 'Dark Stockings', 'legs', 'true', 'magic', '1000', 'cloth', 'd', '0', '27', '0', '79', '62500', '113', 'true', 'true', 'true', 'true', '0', '0'),
('468', 'Mystic\'s Stockings', 'legs', 'true', 'magic', '990', 'cloth', 'd', '0', '27', '0', '79', '62500', '113', 'true', 'true', 'true', 'true', '0', '0'),
('469', 'Stockings of Knowledge', 'legs', 'true', 'magic', '1000', 'cloth', 'd', '0', '30', '0', '92', '95200', '173', 'true', 'true', 'true', 'true', '0', '0'),
('470', 'Mithril Stockings', 'legs', 'true', 'magic', '980', 'mithril', 'd', '0', '32', '0', '105', '140000', '254', 'true', 'true', 'true', 'true', '0', '0'),
('471', 'Karmian Stockings', 'legs', 'true', 'magic', '970', 'cloth', 'c', '0', '37', '0', '141', '237000', '94', 'true', 'true', 'true', 'true', '0', '0'),
('472', 'Demon\'s Stockings', 'legs', 'true', 'magic', '980', 'cloth', 'c', '0', '43', '0', '177', '460000', '184', 'true', 'true', 'true', 'true', '0', '0'),
('473', 'Divine Stockings', 'legs', 'true', 'magic', '960', 'cloth', 'c', '0', '46', '0', '196', '671000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('474', 'Stockings of Mana', 'legs', 'true', 'magic', '2400', 'cloth', 'b', '0', '55', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('475', 'Paradia Stockings', 'legs', 'true', 'magic', '1600', 'cloth', 'b', '0', '55', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('476', 'Inferno Stockings', 'legs', 'true', 'magic', '1600', 'cloth', 'b', '0', '58', '0', '256', '2170000', '289', 'true', 'true', 'true', 'true', '0', '0'),
('477', 'Stockings of Solar Eclipse', 'legs', 'true', 'magic', '2400', 'cloth', 'b', '0', '55', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('478', 'Stockings of Summoning', 'legs', 'true', 'magic', '2400', 'cloth', 'b', '0', '55', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('479', 'Elemental Stockings', 'legs', 'true', 'magic', '1600', 'cloth', 'b', '0', '55', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('480', 'Stockings of Phantom', 'legs', 'true', 'magic', '1600', 'cloth', 'b', '0', '58', '0', '256', '2170000', '289', 'true', 'true', 'true', 'true', '0', '0'),
('481', 'Stockings of Grace', 'legs', 'true', 'magic', '2400', 'cloth', 'b', '0', '55', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('482', 'Phoenix Stockings', 'legs', 'true', 'magic', '2400', 'cloth', 'b', '0', '55', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('483', 'Cerberus Stockings', 'legs', 'true', 'magic', '6400', 'cloth', 'b', '0', '58', '0', '256', '2170000', '289', 'true', 'true', 'true', 'true', '0', '0'),
('484', 'Stockings of Aid', 'legs', 'true', 'magic', '2400', 'cloth', 'b', '0', '55', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('485', 'Tattoo of Power', 'underwear', 'false', 'none', '4200', 'dyestuff', 'none', '0', '53', '0', '0', '36900', '0', 'true', 'true', 'true', 'true', '0', '0'),
('486', 'Tattoo of Fire', 'underwear', 'true', 'none', '4050', 'dyestuff', 'd', '0', '73', '0', '0', '152000', '276', 'true', 'true', 'true', 'true', '0', '0'),
('487', 'Tattoo of Resolve', 'underwear', 'true', 'none', '4000', 'dyestuff', 'd', '0', '73', '0', '0', '152000', '276', 'true', 'true', 'true', 'true', '0', '0'),
('488', 'Tattoo of Flame', 'underwear', 'true', 'none', '800', 'dyestuff', 'b', '0', '139', '0', '0', '3470000', '462', 'true', 'true', 'true', 'true', '0', '0'),
('489', 'Tattoo of Bravery', 'underwear', 'true', 'none', '4100', 'dyestuff', 'c', '0', '110', '0', '0', '1070000', '428', 'true', 'true', 'true', 'true', '0', '0'),
('490', 'Tattoo of Blood', 'underwear', 'true', 'none', '3800', 'dyestuff', 'a', '0', '132', '0', '0', '3470000', '277', 'true', 'true', 'true', 'true', '0', '0'),
('491', 'Tattoo of Absolute', 'underwear', 'true', 'none', '800', 'dyestuff', 'a', '0', '146', '0', '0', '5280000', '422', 'true', 'true', 'true', 'true', '0', '0'),
('492', 'Tattoo of Soul', 'underwear', 'true', 'none', '4150', 'dyestuff', 'd', '0', '65', '0', '0', '99900', '181', 'true', 'true', 'true', 'true', '0', '0'),
('493', 'Tattoo of Avadon', 'underwear', 'true', 'none', '4000', 'dyestuff', 'b', '0', '117', '0', '0', '1560000', '208', 'true', 'true', 'true', 'true', '0', '0'),
('494', 'Tattoo of Doom', 'underwear', 'true', 'none', '4100', 'dyestuff', 'b', '0', '125', '0', '0', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('495', 'Tattoo of Pledge', 'underwear', 'true', 'none', '4000', 'dyestuff', 'b', '0', '124', '0', '0', '1560000', '208', 'true', 'true', 'true', 'true', '0', '0'),
('496', 'Tattoo of Divine', 'underwear', 'true', 'none', '4100', 'dyestuff', 'b', '0', '131', '0', '0', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('497', 'Chain Helmet', 'head', 'true', 'none', '620', 'fine_steel', 'c', '0', '45', '0', '0', '147000', '59', 'true', 'true', 'true', 'true', '0', '0'),
('498', 'Steel Plate Helmet', 'head', 'true', 'none', '610', 'fine_steel', 'c', '0', '49', '0', '0', '206000', '82', 'true', 'true', 'true', 'true', '0', '0'),
('499', 'Mithril Helmet', 'head', 'true', 'none', '240', 'mithril', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('500', 'Great Helmet', 'head', 'true', 'none', '610', 'fine_steel', 'c', '0', '51', '0', '0', '242000', '96', 'true', 'true', 'true', 'true', '0', '0'),
('501', 'Armet', 'head', 'true', 'none', '580', 'chrysolite', 'b', '0', '62', '0', '0', '1030000', '4', 'true', 'true', 'true', 'true', '0', '0'),
('502', 'Close Helmet', 'head', 'true', 'none', '570', 'oriharukon', 'a', '0', '64', '0', '0', '1560000', '3', 'true', 'true', 'true', 'true', '0', '0'),
('503', 'Zubei\'s Helmet', 'head', 'true', 'none', '590', 'mithril', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('504', 'Dragon Helmet', 'head', 'true', 'none', '550', 'bone', 's', '0', '77', '0', '0', '3590000', '179', 'false', 'true', 'true', 'true', '0', '0'),
('505', 'Wolf Helmet', 'head', 'true', 'none', '580', 'oriharukon', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('506', 'Shining Dragon Helmet', 'head', 'true', 'none', '880', 'mithril', 'b', '0', '67', '0', '0', '1740000', '232', 'true', 'true', 'true', 'true', '0', '0'),
('507', 'Helmet of Victory', 'head', 'true', 'none', '640', 'oriharukon', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('508', 'Helmet of Valor', 'head', 'true', 'none', '720', 'blood_steel', 'b', '0', '67', '0', '0', '1740000', '232', 'true', 'true', 'true', 'true', '0', '0'),
('509', 'Glorious Helmet', 'head', 'true', 'none', '800', 'fine_steel', 'a', '0', '65', '0', '0', '2040000', '3', 'true', 'true', 'true', 'true', '0', '0'),
('510', 'Red Flame Helmet', 'head', 'true', 'none', '960', 'blood_steel', 'a', '0', '71', '0', '0', '2640000', '3', 'true', 'true', 'true', 'true', '0', '0'),
('511', 'Elven Crystal Helmet', 'head', 'true', 'none', '580', 'crystal', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('512', 'Dark Crystal Helmet', 'head', 'true', 'none', '570', 'crystal', 'a', '0', '69', '0', '0', '1740000', '139', 'true', 'true', 'true', 'true', '0', '0'),
('513', 'Implosion Helmet', 'head', 'true', 'none', '480', 'damascus', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('514', 'Dark Dragon Helmet', 'head', 'true', 'none', '400', 'damascus', 'b', '0', '67', '0', '0', '1740000', '232', 'true', 'true', 'true', 'true', '0', '0'),
('515', 'Elven Vagian Helm', 'head', 'true', 'none', '560', 'mithril', 'a', '0', '65', '0', '0', '2040000', '3', 'true', 'true', 'true', 'true', '0', '0'),
('516', 'Dark Vagian Helm', 'head', 'true', 'none', '560', 'mithril', 'a', '0', '71', '0', '0', '2640000', '3', 'true', 'true', 'true', 'true', '0', '0'),
('517', 'Composite Helmet', 'head', 'true', 'none', '610', 'fine_steel', 'c', '0', '54', '0', '0', '368000', '147', 'true', 'true', 'true', 'true', '0', '0'),
('518', 'Hell Helm', 'head', 'true', 'none', '320', 'blood_steel', 'a', '0', '71', '0', '0', '2640000', '3', 'true', 'true', 'true', 'true', '0', '0'),
('519', 'Art of Helmet', 'head', 'true', 'none', '400', 'chrysolite', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('520', 'Masterpiece Helm', 'head', 'true', 'none', '400', 'oriharukon', 'a', '0', '71', '0', '0', '2640000', '3', 'true', 'true', 'true', 'true', '0', '0'),
('521', 'Helmet of Silence', 'head', 'true', 'none', '320', 'damascus', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('522', 'Gust Helmet', 'head', 'true', 'none', '570', 'blood_steel', 'b', '0', '67', '0', '0', '1740000', '232', 'true', 'true', 'true', 'true', '0', '0'),
('523', 'Prairie Helmet', 'head', 'true', 'none', '480', 'leather', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('524', 'Helm of The Underworld', 'head', 'true', 'none', '320', 'damascus', 'b', '0', '67', '0', '0', '1740000', '232', 'true', 'true', 'true', 'true', '0', '0'),
('525', 'Helmet of Concentration', 'head', 'true', 'none', '320', 'oriharukon', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('526', 'Ace\'s Helmet', 'head', 'true', 'none', '320', 'oriharukon', 'b', '0', '67', '0', '0', '1740000', '232', 'true', 'true', 'true', 'true', '0', '0'),
('527', 'Guardian\'s Helmet', 'head', 'true', 'none', '240', 'mithril', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('528', 'Marksman Helmet', 'head', 'true', 'none', '240', 'leather', 'b', '0', '67', '0', '0', '1740000', '232', 'true', 'true', 'true', 'true', '0', '0'),
('529', 'Cap of Mana', 'head', 'true', 'none', '320', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('530', 'Sage\'s Cap', 'head', 'true', 'none', '320', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('531', 'Paradia Hood', 'head', 'true', 'none', '320', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('532', 'Inferno Hood', 'head', 'true', 'none', '320', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('533', 'Hood of Solar Eclipse', 'head', 'true', 'none', '320', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('534', 'Hood of Black Ore', 'head', 'true', 'none', '320', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('535', 'Hood of Summoning', 'head', 'true', 'none', '320', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('536', 'Otherworldly Hood', 'head', 'true', 'none', '320', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('537', 'Elemental Hood', 'head', 'true', 'none', '320', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('538', 'Hood of Phantom', 'head', 'true', 'none', '320', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('539', 'Hood of Grace', 'head', 'true', 'none', '320', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('540', 'Hood of Holy Spirit', 'head', 'true', 'none', '320', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('541', 'Phoenix Hood', 'head', 'true', 'none', '590', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('542', 'Cerberus Hood', 'head', 'true', 'none', '320', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('543', 'Hood of Aid', 'head', 'true', 'none', '320', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('544', 'Hood of Blessing', 'head', 'true', 'none', '320', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('545', 'Flame Helm', 'head', 'true', 'none', '400', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('546', 'Helm of Bravery', 'head', 'true', 'none', '400', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('547', 'Tallum Helm', 'head', 'true', 'none', '570', 'cloth', 'a', '0', '69', '0', '0', '1740000', '139', 'true', 'true', 'true', 'true', '0', '0'),
('548', 'Absolute Helm', 'head', 'true', 'none', '400', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('549', 'Helm of Avadon', 'head', 'true', 'none', '400', 'cloth', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('550', 'Helm of Doom', 'head', 'true', 'none', '400', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('551', 'Helmet of Pledge', 'head', 'true', 'none', '400', 'chrysolite', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('552', 'Divine Helm', 'head', 'true', 'none', '400', 'cloth', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('553', 'Iron Boots', 'feet', 'true', 'none', '1280', 'fine_steel', 'd', '0', '24', '0', '0', '50800', '92', 'true', 'true', 'true', 'true', '0', '0'),
('554', 'Zubei\'s Boots', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('555', 'Dragon Boots', 'feet', 'true', 'none', '1110', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'false', 'true', 'true', 'true', '0', '0'),
('556', 'Wolf Boots', 'feet', 'true', 'none', '1180', 'oriharukon', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('557', 'Shining Dragon Boots', 'feet', 'true', 'none', '1150', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('558', 'Boots of Victory', 'feet', 'true', 'none', '1180', 'oriharukon', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('559', 'Boots of Valor', 'feet', 'true', 'none', '1150', 'blood_steel', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('560', 'Glorious Boots', 'feet', 'true', 'none', '1180', 'fine_steel', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('561', 'Red Flame Boots', 'feet', 'true', 'none', '1120', 'blood_steel', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('562', 'Elven Crystal Boots', 'feet', 'true', 'none', '1180', 'crystal', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('563', 'Dark Crystal Boots', 'feet', 'true', 'none', '1110', 'crystal', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('564', 'Implosion Boots', 'feet', 'true', 'none', '1150', 'damascus', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('565', 'Dark Dragon Boots', 'feet', 'true', 'none', '1130', 'damascus', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('566', 'Elven Vagian Boots', 'feet', 'true', 'none', '1150', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('567', 'Dark Vagian Boots', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('568', 'Composite Boots', 'feet', 'true', 'none', '200', 'fine_steel', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('569', 'Hell Boots', 'feet', 'true', 'none', '1130', 'blood_steel', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('570', 'Art of Boots', 'feet', 'true', 'none', '1150', 'chrysolite', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('571', 'Masterpiece Boots', 'feet', 'true', 'none', '1130', 'oriharukon', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('572', 'Boots of Silence', 'feet', 'true', 'none', '1190', 'damascus', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('573', 'Gust Boots', 'feet', 'true', 'none', '1120', 'blood_steel', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('574', 'Prairie Boots', 'feet', 'true', 'none', '1140', 'leather', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('575', 'Boots of The Underworld', 'feet', 'true', 'none', '1110', 'leather', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('576', 'Boots of Concentration', 'feet', 'true', 'none', '1170', 'oriharukon', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('577', 'Ace\'s Boots', 'feet', 'true', 'none', '1150', 'oriharukon', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('578', 'Guardian\'s Boots', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('579', 'Marksman Boots', 'feet', 'true', 'none', '1150', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('580', 'Boots of Mana', 'feet', 'true', 'none', '1180', 'leather', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('581', 'Sage\'s Boots', 'feet', 'true', 'none', '1150', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('582', 'Paradia Boots', 'feet', 'true', 'none', '1140', 'chrysolite', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('583', 'Majestic Boots', 'feet', 'true', 'none', '1110', 'blood_steel', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('584', 'Boots of Solar Eclipse', 'feet', 'true', 'none', '1180', 'blood_steel', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('585', 'Boots of Black Ore', 'feet', 'true', 'none', '1200', 'damascus', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('586', 'Boots of Summoning', 'feet', 'true', 'none', '1170', 'leather', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('587', 'Otherworldly Boots', 'feet', 'true', 'none', '1200', 'adamantaite', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('588', 'Elemental Boots', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('589', 'Boots of Phantom', 'feet', 'true', 'none', '1120', 'oriharukon', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('590', 'Boots of Grace', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('591', 'Boots of Holy Spirit', 'feet', 'true', 'none', '1200', 'chrysolite', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('592', 'Phoenix Boots', 'feet', 'true', 'none', '1120', 'blood_steel', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('593', 'Cerberus Boots', 'feet', 'true', 'none', '1120', 'damascus', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('594', 'Boots of Aid', 'feet', 'true', 'none', '1200', 'leather', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('595', 'Boots of Blessing', 'feet', 'true', 'none', '1160', 'adamantaite', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('596', 'Flame Boots', 'feet', 'true', 'none', '1020', 'blood_steel', 'b', '0', '45', '0', '0', '1160000', '154', 'true', 'true', 'true', 'true', '0', '0'),
('597', 'Boots of Bravery', 'feet', 'true', 'none', '1050', 'chrysolite', 'b', '0', '45', '0', '0', '1160000', '154', 'true', 'true', 'true', 'true', '0', '0'),
('598', 'Blood Boots', 'feet', 'true', 'none', '1130', 'blood_steel', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('599', 'Absolute Boots', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '45', '0', '0', '1160000', '154', 'true', 'true', 'true', 'true', '0', '0'),
('600', 'Avadon Boots', 'feet', 'true', 'none', '1170', 'damascus', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('601', 'Boots of Doom', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('602', 'Boots of Pledge', 'feet', 'true', 'none', '1130', 'chrysolite', 'b', '0', '45', '0', '0', '1160000', '154', 'true', 'true', 'true', 'true', '0', '0'),
('603', 'Divine Boots', 'feet', 'true', 'none', '1200', 'adamantaite', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('604', 'Crafted Leather Gloves', 'gloves', 'true', 'none', '650', 'leather', 'd', '0', '19', '0', '0', '20900', '38', 'true', 'true', 'true', 'true', '0', '0'),
('605', 'Leather Gauntlets', 'gloves', 'true', 'none', '640', 'leather', 'd', '0', '22', '0', '0', '33300', '60', 'true', 'true', 'true', 'true', '0', '0'),
('606', 'Rip Gauntlets', 'gloves', 'true', 'none', '630', 'leather', 'd', '0', '27', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('607', 'Ogre Power Gauntlets', 'gloves', 'true', 'none', '620', 'fine_steel', 'd', '0', '29', '0', '0', '97800', '177', 'true', 'true', 'true', 'true', '0', '0'),
('608', 'Mithril Gauntlets', 'gloves', 'true', 'none', '600', 'mithril', 'c', '0', '36', '0', '0', '245000', '98', 'true', 'true', 'true', 'true', '0', '0'),
('609', 'Gauntlets of Ghost', 'gloves', 'true', 'none', '1920', 'blood_steel', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('610', 'Saint Knight\'s Gauntlets', 'gloves', 'true', 'none', '6400', 'oriharukon', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('611', 'Soul Leech Gauntlets', 'gloves', 'true', 'none', '4800', 'blood_steel', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('612', 'Zubei\'s Gauntlets', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('613', 'Sand Dragon Gloves', 'gloves', 'true', 'none', '3200', 'damascus', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('614', 'Knight\'s Cloak', 'back', 'true', 'none', '240', 'cloth', 'd', '0', '7', '0', '0', '20900', '38', 'true', 'true', 'true', 'true', '0', '0'),
('615', 'Cobweb Cloak', 'back', 'true', 'none', '240', 'cobweb', 'd', '0', '8', '0', '0', '33300', '60', 'true', 'true', 'true', 'true', '0', '0'),
('616', 'Cloak of Magic', 'back', 'true', 'none', '240', 'cloth', 'd', '0', '11', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('617', 'Mithril Cloak', 'back', 'true', 'none', '240', 'mithril', 'd', '0', '11', '0', '0', '97800', '177', 'true', 'true', 'true', 'true', '0', '0'),
('618', 'Cloak of Self Protection', 'back', 'true', 'none', '240', 'cloth', 'c', '0', '13', '0', '0', '161000', '64', 'true', 'true', 'true', 'true', '0', '0'),
('619', 'Ancient Cloak', 'back', 'true', 'none', '230', 'cloth', 'c', '0', '15', '0', '0', '245000', '98', 'true', 'true', 'true', 'true', '0', '0'),
('620', 'Cloak of Protection', 'back', 'true', 'none', '230', 'cloth', 'c', '0', '16', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('621', 'Cloak of Hell', 'back', 'true', 'none', '220', 'cloth', 'b', '0', '18', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('622', 'Holy Spirit\'s Cloak', 'back', 'true', 'none', '220', 'cloth', 'a', '0', '18', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('623', 'Divine Cloak', 'back', 'true', 'none', '220', 'cloth', 'a', '0', '19', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('624', 'Cloak of Invisibility', 'back', 'false', 'none', '260', 'cloth', 'none', '0', '2', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('675', 'Silk Yarn Undergarment Set', 'underwear', 'false', 'none', '170', 'cloth', 'none', '0', '6', '0', '0', '1330', '0', 'true', 'true', 'true', 'true', '0', '0'),
('676', 'Pure White Undergarment Set', 'underwear', 'false', 'none', '160', 'cloth', 'none', '0', '9', '0', '0', '6150', '0', 'true', 'true', 'true', 'true', '0', '0'),
('677', 'One-Piece Swimsuit', 'underwear', 'true', 'none', '150', 'cloth', 'd', '0', '10', '0', '0', '10400', '18', 'true', 'true', 'true', 'true', '0', '0'),
('678', 'Bikini Set', 'underwear', 'true', 'none', '150', 'cloth', 'd', '0', '11', '0', '0', '16700', '30', 'true', 'true', 'true', 'true', '0', '0'),
('679', 'Cursed Undergarment Set', 'underwear', 'true', 'none', '150', 'cloth', 'd', '0', '12', '0', '0', '25400', '46', 'true', 'true', 'true', 'true', '0', '0'),
('680', 'Mithril Undergarment Set', 'underwear', 'true', 'none', '140', 'mithril', 'c', '0', '16', '0', '0', '63100', '25', 'true', 'true', 'true', 'true', '0', '0'),
('681', 'Fascination Undergarment Set', 'underwear', 'true', 'none', '140', 'cloth', 'c', '0', '17', '0', '0', '80500', '32', 'true', 'true', 'true', 'true', '0', '0'),
('682', 'Demon\'s Undergarment Set', 'underwear', 'true', 'none', '140', 'cloth', 'c', '0', '19', '0', '0', '179000', '71', 'true', 'true', 'true', 'true', '0', '0'),
('683', 'Holy Undergarment Set', 'underwear', 'true', 'none', '140', 'cloth', 'b', '0', '22', '0', '0', '402000', '53', 'true', 'true', 'true', 'true', '0', '0'),
('684', 'Underwear of Rule', 'underwear', 'true', 'none', '140', 'cloth', 'a', '0', '24', '0', '0', '880000', '70', 'true', 'true', 'true', 'true', '0', '0'),
('685', 'Crystal Swimsuit Set', 'underwear', 'true', 'none', '130', 'crystal', 's', '0', '26', '0', '0', '1310000', '65', 'true', 'true', 'true', 'true', '0', '0'),
('845', 'Cat\'s Eye Earring', 'rear,lear', 'false', 'none', '150', 'silver', 'none', '0', '0', '19', '0', '8890', '0', 'true', 'true', 'true', 'true', '0', '0'),
('846', 'Coral Earring', 'rear,lear', 'false', 'none', '150', 'silver', 'none', '0', '0', '21', '0', '16000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('847', 'Red Crescent Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'd', '0', '0', '24', '0', '26900', '48', 'true', 'true', 'true', 'true', '0', '0'),
('848', 'Enchanted Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'd', '0', '0', '27', '0', '42600', '77', 'true', 'true', 'true', 'true', '0', '0'),
('849', 'Tiger\'s Eye Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'd', '0', '0', '30', '0', '64300', '116', 'true', 'true', 'true', 'true', '0', '0'),
('850', 'Elven Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'd', '0', '0', '34', '0', '93400', '169', 'true', 'true', 'true', 'true', '0', '0'),
('851', 'Omen Beast\'s Eye Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'd', '0', '0', '36', '0', '121000', '220', 'true', 'true', 'true', 'true', '0', '0'),
('852', 'Moonstone Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'c', '0', '0', '39', '0', '155000', '62', 'true', 'true', 'true', 'true', '0', '0'),
('853', 'Earring of Protection', 'rear,lear', 'true', 'none', '150', 'silver', 'c', '0', '0', '42', '0', '196000', '78', 'true', 'true', 'true', 'true', '0', '0'),
('854', 'Earring of Binding', 'rear,lear', 'true', 'none', '150', 'silver', 'c', '0', '0', '45', '0', '295000', '118', 'true', 'true', 'true', 'true', '0', '0'),
('855', 'Nassen\'s Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'c', '0', '0', '48', '0', '424000', '169', 'true', 'true', 'true', 'true', '0', '0'),
('856', 'Adamantite Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '51', '0', '606000', '80', 'true', 'true', 'true', 'true', '0', '0'),
('857', 'Blessed Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'c', '0', '0', '48', '0', '424000', '169', 'true', 'true', 'true', 'true', '0', '0'),
('858', 'Tateossian Earring', 'rear,lear', 'true', 'none', '150', 'silver', 's', '0', '0', '71', '31', '4440000', '222', 'true', 'true', 'true', 'true', '0', '0'),
('859', 'Earring of Mana', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '51', '0', '606000', '80', 'true', 'true', 'true', 'true', '0', '0'),
('860', 'Sage\'s Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '54', '0', '924000', '123', 'true', 'true', 'true', 'true', '0', '0'),
('861', 'Paradia Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '54', '0', '924000', '123', 'true', 'true', 'true', 'true', '0', '0'),
('862', 'Majestic Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'a', '0', '0', '63', '25', '2590000', '207', 'true', 'true', 'true', 'true', '0', '0'),
('863', 'Earring of Solar Eclipse', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '51', '0', '606000', '80', 'true', 'true', 'true', 'true', '0', '0'),
('864', 'Earring of Black Ore', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '54', '0', '924000', '123', 'true', 'true', 'true', 'true', '0', '0'),
('865', 'Earring of Summoning', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '51', '0', '606000', '80', 'true', 'true', 'true', 'true', '0', '0'),
('866', 'Otherworldly Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '54', '0', '924000', '123', 'true', 'true', 'true', 'true', '0', '0'),
('867', 'Elemental Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '54', '0', '924000', '123', 'true', 'true', 'true', 'true', '0', '0'),
('868', 'Earring of Phantom', 'rear,lear', 'true', 'none', '150', 'silver', 'a', '0', '0', '60', '0', '1950000', '156', 'true', 'true', 'true', 'true', '0', '0'),
('869', 'Earring of Grace', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '51', '0', '606000', '80', 'true', 'true', 'true', 'true', '0', '0'),
('870', 'Earring of Holy Spirit', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '54', '0', '924000', '123', 'true', 'true', 'true', 'true', '0', '0'),
('871', 'Phoenix Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'a', '0', '0', '60', '20', '1950000', '156', 'true', 'true', 'true', 'true', '0', '0'),
('872', 'Cerberus Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'a', '0', '0', '60', '0', '1950000', '156', 'true', 'true', 'true', 'true', '0', '0'),
('873', 'Earring of Aid', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '51', '0', '606000', '80', 'true', 'true', 'true', 'true', '0', '0'),
('874', 'Earring of Blessing', 'rear,lear', 'true', 'none', '150', 'silver', 'b', '0', '0', '51', '0', '606000', '80', 'true', 'true', 'true', 'true', '0', '0'),
('875', 'Ring of Knowledge', 'rfinger,lfinger', 'false', 'none', '150', 'gold', 'none', '0', '0', '9', '0', '540', '0', 'true', 'true', 'true', 'true', '0', '0'),
('876', 'Ring of Anguish', 'rfinger,lfinger', 'false', 'none', '150', 'gold', 'none', '0', '0', '11', '0', '2340', '0', 'true', 'true', 'true', 'true', '0', '0'),
('877', 'Ring of Wisdom', 'rfinger,lfinger', 'false', 'none', '150', 'gold', 'none', '0', '0', '12', '0', '5920', '0', 'true', 'true', 'true', 'true', '0', '0'),
('878', 'Blue Coral Ring', 'rfinger,lfinger', 'false', 'none', '150', 'gold', 'none', '0', '0', '14', '0', '10700', '0', 'true', 'true', 'true', 'true', '0', '0'),
('879', 'Enchanted Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'd', '0', '0', '18', '0', '28400', '51', 'true', 'true', 'true', 'true', '0', '0'),
('880', 'Black Pearl Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'd', '0', '0', '20', '0', '42800', '77', 'true', 'true', 'true', 'true', '0', '0'),
('881', 'Elven Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'd', '0', '0', '22', '0', '62300', '113', 'true', 'true', 'true', 'true', '0', '0'),
('882', 'Mithril Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'd', '0', '0', '24', '0', '80800', '146', 'true', 'true', 'true', 'true', '0', '0'),
('883', 'Aquastone Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'c', '0', '0', '26', '0', '103000', '41', 'true', 'true', 'true', 'true', '0', '0'),
('884', 'Ring of Protection', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'c', '0', '0', '28', '0', '130000', '52', 'true', 'true', 'true', 'true', '0', '0'),
('885', 'Ring of Ages', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'c', '0', '0', '30', '0', '196000', '78', 'true', 'true', 'true', 'true', '0', '0'),
('886', 'Ring of Binding', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'c', '0', '0', '32', '0', '282000', '112', 'true', 'true', 'true', 'true', '0', '0'),
('887', 'Adamantite Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '34', '0', '404000', '53', 'true', 'true', 'true', 'true', '0', '0'),
('888', 'Blessed Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'c', '0', '0', '32', '0', '282000', '112', 'true', 'true', 'true', 'true', '0', '0'),
('889', 'Tateossian Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 's', '0', '0', '48', '21', '2960000', '148', 'true', 'true', 'true', 'true', '0', '0'),
('890', 'Ring of Devotion', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'd', '0', '0', '16', '0', '18000', '32', 'true', 'true', 'true', 'true', '0', '0'),
('891', 'Sage\'s Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '36', '0', '616000', '82', 'true', 'true', 'true', 'true', '0', '0'),
('892', 'Paradia Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '36', '0', '616000', '82', 'true', 'true', 'true', 'true', '0', '0'),
('893', 'Majestic Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'a', '0', '0', '42', '17', '1730000', '138', 'true', 'true', 'true', 'true', '0', '0'),
('894', 'Ring of Solar Eclipse', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '34', '0', '404000', '53', 'true', 'true', 'true', 'true', '0', '0'),
('895', 'Ring of Black Ore', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '36', '0', '616000', '82', 'true', 'true', 'true', 'true', '0', '0'),
('896', 'Ring of Summoning', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '34', '0', '404000', '53', 'true', 'true', 'true', 'true', '0', '0'),
('897', 'Otherworldly Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '36', '0', '616000', '82', 'true', 'true', 'true', 'true', '0', '0'),
('898', 'Elemental Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '36', '0', '616000', '82', 'true', 'true', 'true', 'true', '0', '0'),
('899', 'Ring of Phantom', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'a', '0', '0', '40', '0', '1300000', '104', 'true', 'true', 'true', 'true', '0', '0'),
('900', 'Ring of Grace', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '34', '0', '404000', '53', 'true', 'true', 'true', 'true', '0', '0'),
('901', 'Ring of Holy Spirit', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '36', '0', '616000', '82', 'true', 'true', 'true', 'true', '0', '0'),
('902', 'Phoenix Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'a', '0', '0', '40', '13', '1300000', '104', 'true', 'true', 'true', 'true', '0', '0'),
('903', 'Cerberus Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'a', '0', '0', '40', '0', '1300000', '104', 'true', 'true', 'true', 'true', '0', '0'),
('904', 'Ring of Aid', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '34', '0', '404000', '53', 'true', 'true', 'true', 'true', '0', '0'),
('905', 'Ring of Blessing', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '34', '0', '404000', '53', 'true', 'true', 'true', 'true', '0', '0'),
('906', 'Necklace of Knowledge', 'neck', 'false', 'none', '150', 'silver', 'none', '0', '0', '18', '0', '1080', '0', 'true', 'true', 'true', 'true', '0', '0'),
('907', 'Necklace of Anguish', 'neck', 'false', 'none', '150', 'silver', 'none', '0', '0', '21', '0', '4680', '0', 'true', 'true', 'true', 'true', '0', '0'),
('908', 'Necklace of Wisdom', 'neck', 'false', 'none', '150', 'silver', 'none', '0', '0', '25', '0', '11900', '0', 'true', 'true', 'true', 'true', '0', '0'),
('909', 'Blue Diamond Necklace', 'neck', 'false', 'none', '150', 'silver', 'none', '0', '0', '28', '0', '21300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('910', 'Necklace of Devotion', 'neck', 'true', 'none', '150', 'silver', 'd', '0', '0', '32', '0', '35900', '65', 'true', 'true', 'true', 'true', '0', '0'),
('911', 'Enchanted Necklace', 'neck', 'true', 'none', '150', 'silver', 'd', '0', '0', '36', '0', '56800', '103', 'true', 'true', 'true', 'true', '0', '0'),
('912', 'Near Forest Necklace', 'neck', 'true', 'none', '150', 'silver', 'd', '0', '0', '40', '0', '85700', '155', 'true', 'true', 'true', 'true', '0', '0'),
('913', 'Elven Necklace', 'neck', 'true', 'none', '150', 'silver', 'd', '0', '0', '45', '0', '125000', '227', 'true', 'true', 'true', 'true', '0', '0'),
('914', 'Necklace of Darkness', 'neck', 'true', 'none', '150', 'silver', 'd', '0', '0', '48', '0', '162000', '294', 'true', 'true', 'true', 'true', '0', '0'),
('915', 'Aquastone Necklace', 'neck', 'true', 'none', '150', 'silver', 'c', '0', '0', '52', '0', '207000', '82', 'true', 'true', 'true', 'true', '0', '0'),
('916', 'Necklace of Protection', 'neck', 'true', 'none', '150', 'silver', 'c', '0', '0', '56', '0', '261000', '104', 'true', 'true', 'true', 'true', '0', '0'),
('917', 'Necklace of Mermaid', 'neck', 'true', 'none', '150', 'silver', 'c', '0', '0', '60', '0', '393000', '157', 'true', 'true', 'true', 'true', '0', '0'),
('918', 'Adamantite Necklace', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '68', '0', '808000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('919', 'Blessed Necklace', 'neck', 'true', 'none', '150', 'silver', 'c', '0', '0', '64', '0', '565000', '226', 'true', 'true', 'true', 'true', '0', '0'),
('920', 'Tateossian Necklace', 'neck', 'true', 'none', '150', 'silver', 's', '0', '0', '95', '42', '5920000', '296', 'true', 'true', 'true', 'true', '0', '0'),
('921', 'Necklace of Mana', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '68', '0', '808000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('922', 'Sage\'s Necklace', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '72', '0', '1230000', '164', 'true', 'true', 'true', 'true', '0', '0'),
('923', 'Paradia Necklace', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '72', '0', '1230000', '164', 'true', 'true', 'true', 'true', '0', '0'),
('924', 'Majestic Necklace', 'neck', 'true', 'none', '150', 'silver', 'a', '0', '0', '85', '33', '3450000', '276', 'true', 'true', 'true', 'true', '0', '0'),
('925', 'Necklace of Solar Eclipse', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '68', '0', '808000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('926', 'Necklace of Black Ore', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '72', '0', '1230000', '164', 'true', 'true', 'true', 'true', '0', '0'),
('927', 'Necklace of Summoning', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '68', '0', '808000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('928', 'Otherworldly Necklace', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '72', '0', '1230000', '164', 'true', 'true', 'true', 'true', '0', '0'),
('929', 'Elemental Necklace', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '72', '0', '1230000', '164', 'true', 'true', 'true', 'true', '0', '0'),
('930', 'Necklace of Phantom', 'neck', 'true', 'none', '150', 'silver', 'a', '0', '0', '80', '0', '2600000', '208', 'true', 'true', 'true', 'true', '0', '0'),
('931', 'Necklace of Grace', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '68', '0', '808000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('932', 'Necklace of Holy Spirit', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '72', '0', '1230000', '164', 'true', 'true', 'true', 'true', '0', '0'),
('933', 'Phoenix Necklace', 'neck', 'true', 'none', '150', 'silver', 'a', '0', '0', '80', '26', '2600000', '208', 'true', 'true', 'true', 'true', '0', '0'),
('934', 'Cerberus Necklace', 'neck', 'true', 'none', '150', 'silver', 'a', '0', '0', '80', '0', '2600000', '208', 'true', 'true', 'true', 'true', '0', '0'),
('935', 'Necklace of Aid', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '68', '0', '808000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('936', 'Necklace of Blessing', 'neck', 'true', 'none', '150', 'silver', 'b', '0', '0', '68', '0', '808000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('990', 'Mandragora Essence', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('991', 'Royen\'s Key', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('992', 'Shilen\'s 1st Mark', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('993', 'Shilen\'s 2nd Mark', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('994', 'Eye of Abyss', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('995', 'Wanted Poster', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('996', 'Alex\'s Dagger', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('997', 'Pinter\'s Bill', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('998', 'Book of Aklantoth - Part 1', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('999', 'Book of Aklantoth - Part 2', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1000', 'Book of Aklantoth - Part 3', 'gloves', 'false', 'none', '60', 'cloth', 'none', '0', '9', '0', '0', '37', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1100', 'Cotton Tunic', 'chest', 'false', 'magic', '2120', 'cloth', 'none', '0', '21', '0', '38', '2430', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1101', 'Tunic of Devotion', 'chest', 'false', 'magic', '2090', 'cloth', 'none', '0', '30', '0', '67', '20300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1102', 'Tunic of Magic', 'chest', 'false', 'magic', '2080', 'cloth', 'none', '0', '34', '0', '86', '36900', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1103', 'Cotton Stockings', 'legs', 'false', 'magic', '1060', 'cloth', 'none', '0', '13', '0', '23', '1520', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1104', 'Stockings of Devotion', 'legs', 'false', 'magic', '1040', 'cloth', 'none', '0', '19', '0', '42', '12700', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1105', 'Stockings of Magic', 'legs', 'false', 'magic', '1030', 'cloth', 'none', '0', '21', '0', '54', '23000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1119', 'Short Leather Gloves', 'gloves', 'false', 'none', '660', 'leather', 'none', '0', '11', '0', '0', '607', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1120', 'Pa\'agrian Hand', 'gloves', 'true', 'none', '1600', 'leather', 'c', '0', '34', '0', '0', '161000', '64', 'true', 'true', 'true', 'true', '0', '0'),
('1121', 'Apprentice\'s Shoes', 'feet', 'false', 'none', '1320', 'leather', 'none', '0', '8', '0', '0', '7', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1122', 'Cotton Shoes', 'feet', 'false', 'none', '1320', 'leather', 'none', '0', '11', '0', '0', '607', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1123', 'Blue Buckskin Boots', 'feet', 'true', 'none', '1300', 'leather', 'd', '0', '22', '0', '0', '33300', '60', 'true', 'true', 'true', 'true', '0', '0'),
('1124', 'Boots of Power', 'feet', 'true', 'none', '1250', 'leather', 'd', '0', '27', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('1125', 'Assault Boots', 'feet', 'true', 'none', '1240', 'leather', 'd', '0', '29', '0', '0', '97800', '177', 'true', 'true', 'true', 'true', '0', '0'),
('1126', 'Crimson Boots', 'feet', 'true', 'none', '1210', 'leather', 'c', '0', '34', '0', '0', '161000', '64', 'true', 'true', 'true', 'true', '0', '0'),
('1127', 'Forgotten Boots', 'feet', 'true', 'none', '4000', 'leather', 'c', '0', '36', '0', '0', '245000', '98', 'true', 'true', 'true', 'true', '0', '0'),
('1128', 'Adamantite Boots', 'feet', 'true', 'none', '4000', 'adamantaite', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('1129', 'Crude Leather Shoes', 'feet', 'false', 'none', '1320', 'leather', 'none', '0', '11', '0', '0', '607', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1146', 'Squire\'s Shirt', 'chest', 'false', 'light', '3301', 'cloth', 'none', '0', '33', '0', '0', '26', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1147', 'Squire\'s Pants', 'legs', 'false', 'light', '1750', 'cloth', 'none', '0', '20', '0', '0', '6', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1148', 'Hard Leather Helmet', 'head', 'false', 'none', '640', 'leather', 'none', '0', '26', '0', '0', '18400', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1149', 'Shining Circlet', 'head', 'true', 'none', '600', 'steel', 'c', '0', '54', '0', '0', '368000', '147', 'true', 'true', 'true', 'true', '0', '0'),
('1308', 'Compound Scale Mail', 'chest', 'false', 'heavy', '1400', 'fine_steel', 'none', '0', '51', '0', '0', '247000', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1309', 'Mithril Breastplate', 'chest', 'false', 'heavy', '1000', 'mithril', 'none', '0', '51', '0', '0', '247000', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1310', 'Tunic of Magic', 'chest', 'false', 'magic', '150', 'cloth', 'none', '0', '51', '0', '96', '48500', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1311', 'Puma Skin Shirt', 'chest', 'false', 'light', '300', 'leather', 'none', '0', '51', '0', '0', '99900', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1312', 'White Tunic', 'chest', 'false', 'magic', '150', 'cloth', 'none', '0', '51', '0', '142', '138000', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1313', 'Compound Scale Gaiters', 'legs', 'false', 'heavy', '1000', 'fine_steel', 'none', '0', '32', '0', '0', '170000', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1314', 'Mithril Gaiters', 'legs', 'false', 'heavy', '600', 'mithril', 'none', '0', '32', '0', '0', '170000', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1315', 'Stockings of Magic', 'legs', 'false', 'magic', '150', 'cloth', 'none', '0', '32', '0', '60', '30300', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1316', 'Puma Skin Gaiters', 'legs', 'false', 'light', '400', 'leather', 'none', '0', '32', '0', '0', '55800', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1317', 'Dark Stockings', 'legs', 'false', 'magic', '150', 'cloth', 'none', '0', '32', '0', '79', '62500', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1318', 'Gloves', 'gloves', 'false', 'none', '80', 'cloth', 'none', '0', '14', '0', '0', '3270', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1319', 'Leather Gloves', 'gloves', 'false', 'none', '100', 'leather', 'none', '0', '14', '0', '0', '7950', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1320', 'Crafted Leather Gloves', 'gloves', 'false', 'none', '100', 'leather', 'none', '0', '14', '0', '0', '29800', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1321', 'Rip Gauntlets', 'gloves', 'false', 'none', '150', 'leather', 'none', '0', '14', '0', '0', '97800', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1322', 'Bracer', 'gloves', 'false', 'none', '80', 'leather', 'none', '0', '14', '0', '0', '16200', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1323', 'Leather Shoes', 'feet', 'false', 'none', '120', 'leather', 'none', '0', '14', '0', '0', '3270', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1324', 'Low Boots', 'feet', 'false', 'none', '150', 'leather', 'none', '0', '14', '0', '0', '7950', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1325', 'Leather Boots', 'feet', 'false', 'none', '250', 'leather', 'none', '0', '14', '0', '0', '29800', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1326', 'Iron Boots', 'feet', 'false', 'none', '300', 'fine_steel', 'none', '0', '14', '0', '0', '74700', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1327', 'Boots', 'feet', 'false', 'none', '200', 'cloth', 'none', '0', '14', '0', '0', '16200', '0', 'false', 'true', 'true', 'true', '0', '0'),
('1506', 'Necklace of Courage', 'neck', 'false', 'none', '150', 'silver', 'none', '0', '0', '15', '0', '66', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1507', 'Necklace of Valor', 'neck', 'false', 'none', '150', 'silver', 'none', '0', '0', '21', '0', '4680', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1508', 'Ring of Raccoon', 'rfinger,lfinger', 'false', 'none', '150', 'gold', 'none', '0', '0', '11', '0', '2340', '0', 'true', 'true', 'true', 'true', '0', '0'),
('1509', 'Ring of Firefly', 'rfinger,lfinger', 'false', 'none', '150', 'gold', 'none', '0', '0', '11', '0', '2340', '0', 'true', 'true', 'true', 'true', '0', '0'),
('2376', 'Avadon Breastplate', 'chest', 'true', 'heavy', '7920', 'leather', 'b', '0', '157', '0', '0', '2080000', '277', 'true', 'true', 'true', 'true', '0', '0'),
('2377', 'Mithril Scale Gaiters', 'legs', 'true', 'heavy', '3870', 'leather', 'd', '0', '64', '0', '0', '187000', '340', 'true', 'true', 'true', 'true', '0', '0'),
('2378', 'Brigandine Gaiters', 'legs', 'true', 'heavy', '3820', 'leather', 'd', '0', '64', '0', '0', '187000', '340', 'true', 'true', 'true', 'true', '0', '0'),
('2379', 'Avadon Gaiters', 'legs', 'true', 'heavy', '3520', 'leather', 'b', '0', '98', '0', '0', '1300000', '173', 'true', 'true', 'true', 'true', '0', '0'),
('2380', 'Blue Wolf Gaiters', 'legs', 'true', 'heavy', '3370', 'leather', 'b', '0', '104', '0', '0', '2010000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('2381', 'Doom Plate Armor', 'fullarmor', 'true', 'heavy', '9980', 'leather', 'b', '0', '270', '0', '0', '4710000', '628', 'true', 'true', 'true', 'true', '0', '0'),
('2382', 'Tallum Plate Armor', 'fullarmor', 'true', 'heavy', '9780', 'leather', 'a', '0', '278', '0', '0', '6770000', '541', 'true', 'true', 'true', 'true', '0', '0'),
('2383', 'Majestic Plate Armor', 'fullarmor', 'true', 'heavy', '9200', 'leather', 'a', '0', '293', '0', '0', '10300000', '824', 'true', 'true', 'true', 'true', '0', '0'),
('2384', 'Zubei\'s Leather Shirt', 'chest', 'true', 'light', '4330', 'leather', 'b', '0', '117', '0', '0', '1560000', '208', 'true', 'true', 'true', 'true', '0', '0'),
('2385', 'Dark Crystal Leather Armor', 'chest', 'true', 'light', '4300', 'leather', 'a', '0', '128', '0', '0', '3470000', '277', 'true', 'true', 'true', 'true', '0', '0'),
('2386', 'Wooden Gaiters', 'legs', 'false', 'light', '1670', 'leather', 'none', '0', '29', '0', '0', '4970', '0', 'true', 'true', 'true', 'true', '0', '0'),
('2387', 'Tempered Mithril Gaiters', 'legs', 'true', 'light', '1530', 'leather', 'c', '0', '56', '0', '0', '237000', '94', 'true', 'true', 'true', 'true', '0', '0');
INSERT INTO `armor` VALUES
('2388', 'Zubei\'s Leather Gaiters', 'legs', 'true', 'light', '1480', 'leather', 'b', '0', '73', '0', '0', '973000', '129', 'true', 'true', 'true', 'true', '0', '0'),
('2389', 'Dark Crystal Leggings', 'legs', 'true', 'light', '1480', 'leather', 'a', '0', '80', '0', '0', '2170000', '173', 'true', 'true', 'true', 'true', '0', '0'),
('2390', 'Avadon Leather Armor', 'fullarmor', 'true', 'light', '5600', 'leather', 'b', '0', '191', '0', '0', '2280000', '304', 'true', 'true', 'true', 'true', '0', '0'),
('2391', 'Blue Wolf Leather Armor', 'fullarmor', 'true', 'light', '5500', 'leather', 'b', '0', '202', '0', '0', '3530000', '470', 'true', 'true', 'true', 'true', '0', '0'),
('2392', 'Leather Armor of Doom', 'fullarmor', 'true', 'light', '5500', 'leather', 'b', '0', '202', '0', '0', '3530000', '470', 'true', 'true', 'true', 'true', '0', '0'),
('2393', 'Tallum Leather Armor', 'fullarmor', 'true', 'light', '5400', 'leather', 'a', '0', '209', '0', '0', '5080000', '406', 'true', 'true', 'true', 'true', '0', '0'),
('2394', 'Nightmarish Leather Armor', 'fullarmor', 'true', 'light', '5300', 'leather', 'a', '0', '220', '0', '0', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('2395', 'Majestic Leather Armor', 'fullarmor', 'true', 'light', '5350', 'leather', 'a', '0', '220', '0', '0', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('2396', 'Elven Mithril Tunic', 'chest', 'true', 'magic', '720', 'leather', 'd', '0', '54', '0', '169', '224000', '407', 'true', 'true', 'true', 'true', '0', '0'),
('2397', 'Tunic of Zubei', 'chest', 'true', 'magic', '1960', 'leather', 'b', '0', '78', '0', '345', '1560000', '208', 'true', 'true', 'true', 'true', '0', '0'),
('2398', 'Blue Wolf Tunic', 'chest', 'true', 'magic', '1920', 'leather', 'b', '0', '83', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('2399', 'Tunic of Doom', 'chest', 'true', 'magic', '1900', 'leather', 'b', '0', '83', '0', '377', '2410000', '321', 'true', 'true', 'true', 'true', '0', '0'),
('2400', 'Tallum Tunic', 'chest', 'true', 'magic', '1860', 'leather', 'a', '0', '86', '0', '409', '3470000', '277', 'true', 'true', 'true', 'true', '0', '0'),
('2401', 'Elven Mithril Stockings', 'legs', 'true', 'magic', '2400', 'leather', 'd', '0', '34', '0', '105', '140000', '254', 'true', 'true', 'true', 'true', '0', '0'),
('2402', 'Stockings of Zubei', 'legs', 'true', 'magic', '940', 'leather', 'b', '0', '49', '0', '216', '973000', '129', 'true', 'true', 'true', 'true', '0', '0'),
('2403', 'Blue Wolf Stockings', 'legs', 'true', 'magic', '920', 'leather', 'b', '0', '52', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('2404', 'Stockings of Doom', 'legs', 'true', 'magic', '910', 'leather', 'b', '0', '52', '0', '236', '1510000', '201', 'true', 'true', 'true', 'true', '0', '0'),
('2405', 'Tallum Stockings', 'legs', 'true', 'magic', '920', 'leather', 'a', '0', '53', '0', '256', '2170000', '173', 'true', 'true', 'true', 'true', '0', '0'),
('2406', 'Avadon Robe', 'fullarmor', 'true', 'magic', '2540', 'leather', 'b', '0', '127', '0', '561', '2280000', '304', 'true', 'true', 'true', 'true', '0', '0'),
('2407', 'Dark Crystal Robe', 'fullarmor', 'true', 'magic', '2450', 'leather', 'a', '0', '139', '0', '665', '5080000', '406', 'true', 'true', 'true', 'true', '0', '0'),
('2408', 'Nightmare Robe', 'fullarmor', 'true', 'magic', '2300', 'leather', 'a', '0', '147', '0', '718', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('2409', 'Majestic Robe', 'fullarmor', 'true', 'magic', '2330', 'leather', 'a', '0', '147', '0', '718', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('2410', 'Nightmarish Tattoo', 'underwear', 'true', 'none', '3600', 'leather', 'a', '0', '139', '0', '0', '5280000', '422', 'true', 'true', 'true', 'true', '0', '0'),
('2411', 'Brigandine Helmet', 'head', 'true', 'none', '630', 'leather', 'd', '0', '41', '0', '0', '112000', '203', 'true', 'true', 'true', 'true', '0', '0'),
('2412', 'Plate Helmet', 'head', 'true', 'none', '630', 'leather', 'd', '0', '44', '0', '0', '147000', '267', 'true', 'true', 'true', 'true', '0', '0'),
('2413', 'Chain Hood', 'head', 'true', 'none', '620', 'leather', 'c', '0', '47', '0', '0', '189000', '75', 'true', 'true', 'true', 'true', '0', '0'),
('2414', 'Full Plate Helmet', 'head', 'true', 'none', '600', 'leather', 'c', '0', '58', '0', '0', '536000', '214', 'true', 'true', 'true', 'true', '0', '0'),
('2415', 'Avadon Circlet', 'head', 'true', 'none', '590', 'leather', 'b', '0', '62', '0', '0', '778000', '103', 'true', 'true', 'true', 'true', '0', '0'),
('2416', 'Blue Wolf Helmet', 'head', 'true', 'none', '580', 'leather', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('2417', 'Doom Helmet', 'head', 'true', 'none', '580', 'leather', 'b', '0', '66', '0', '0', '1210000', '161', 'true', 'true', 'true', 'true', '0', '0'),
('2418', 'Helm of Nightmare', 'head', 'true', 'none', '560', 'leather', 'a', '0', '73', '0', '0', '2640000', '211', 'true', 'true', 'true', 'true', '0', '0'),
('2419', 'Majestic Circlet', 'head', 'true', 'none', '550', 'leather', 'a', '0', '73', '0', '0', '2640000', '211', 'true', 'true', 'true', 'true', '0', '0'),
('2420', 'Dragon Headgear', 'head', 'true', 'none', '540', 'leather', 's', '0', '77', '0', '0', '3590000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('2421', 'The Hood', 'head', 'true', 'none', '540', 'leather', 's', '0', '77', '0', '0', '3590000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('2422', 'Reinforced Leather Boots', 'feet', 'true', 'none', '1280', 'leather', 'd', '0', '24', '0', '0', '50800', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2423', 'Boots of Knowledge', 'feet', 'true', 'none', '1270', 'leather', 'd', '0', '24', '0', '0', '50800', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2424', 'Manticore Skin Boots', 'feet', 'true', 'none', '1260', 'leather', 'd', '0', '27', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('2425', 'Brigandine Boots', 'feet', 'true', 'none', '1250', 'leather', 'd', '0', '27', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('2426', 'Elven Mithril Boots', 'feet', 'true', 'none', '1250', 'leather', 'd', '0', '27', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('2427', 'Salamander Skin Boots', 'feet', 'true', 'none', '1230', 'leather', 'd', '0', '29', '0', '0', '97800', '177', 'true', 'true', 'true', 'true', '0', '0'),
('2428', 'Plate Boots', 'feet', 'true', 'none', '1240', 'leather', 'd', '0', '29', '0', '0', '97800', '177', 'true', 'true', 'true', 'true', '0', '0'),
('2429', 'Chain Boots', 'feet', 'true', 'none', '1220', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2430', 'Karmian Boots', 'feet', 'true', 'none', '1230', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2431', 'Plated Leather Boots', 'feet', 'true', 'none', '1220', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2432', 'Dwarven Chain Boots', 'feet', 'true', 'none', '1210', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2433', 'Boots of Seal', 'feet', 'true', 'none', '1220', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2434', 'Rind Leather Boots', 'feet', 'true', 'none', '1220', 'leather', 'c', '0', '34', '0', '0', '161000', '64', 'true', 'true', 'true', 'true', '0', '0'),
('2435', 'Demon\'s Boots', 'feet', 'true', 'none', '1220', 'leather', 'c', '0', '36', '0', '0', '245000', '98', 'true', 'true', 'true', 'true', '0', '0'),
('2436', 'Theca Leather Boots', 'feet', 'true', 'none', '1210', 'leather', 'c', '0', '37', '0', '0', '275000', '110', 'true', 'true', 'true', 'true', '0', '0'),
('2437', 'Drake Leather Boots', 'feet', 'true', 'none', '1210', 'leather', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('2438', 'Full Plate Boots', 'feet', 'true', 'none', '1200', 'leather', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('2439', 'Blue Wolf Boots', 'feet', 'true', 'none', '1130', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('2440', 'Boots of Nightmare', 'feet', 'true', 'none', '1110', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2441', 'Dark Legion Boots', 'feet', 'true', 'none', '1120', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2442', 'Dasparion\'s Boots', 'feet', 'true', 'none', '1100', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2443', 'Dragon Leather Boots', 'feet', 'true', 'none', '1100', 'leather', 's', '0', '51', '0', '0', '2390000', '119', 'true', 'true', 'true', 'true', '0', '0'),
('2444', 'The Boots', 'feet', 'true', 'none', '1100', 'leather', 's', '0', '51', '0', '0', '2390000', '119', 'true', 'true', 'true', 'true', '0', '0'),
('2445', 'Dragon Scale Boots', 'feet', 'true', 'none', '1100', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2446', 'Reinforced Leather Gloves', 'gloves', 'true', 'none', '640', 'leather', 'd', '0', '24', '0', '0', '50800', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2447', 'Gloves of Knowledge', 'gloves', 'true', 'none', '640', 'leather', 'd', '0', '24', '0', '0', '50800', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2448', 'Manticore Skin Gloves', 'gloves', 'true', 'none', '630', 'leather', 'd', '0', '27', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('2449', 'Brigandine Gauntlets', 'gloves', 'true', 'none', '630', 'leather', 'd', '0', '27', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('2450', 'Elven Mithril Gloves', 'gloves', 'true', 'none', '640', 'leather', 'd', '0', '27', '0', '0', '74700', '135', 'true', 'true', 'true', 'true', '0', '0'),
('2451', 'Sage\'s Worn Gloves', 'gloves', 'true', 'none', '630', 'leather', 'd', '0', '29', '0', '0', '97800', '177', 'true', 'true', 'true', 'true', '0', '0'),
('2452', 'Reinforced Mithril Gloves', 'gloves', 'true', 'none', '620', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2453', 'Chain Gloves', 'gloves', 'true', 'none', '620', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2454', 'Karmian Gloves', 'gloves', 'true', 'none', '620', 'leather', 'c', '0', '32', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2455', 'Plated Leather Gloves', 'gloves', 'true', 'none', '610', 'leather', 'c', '0', '33', '0', '0', '149000', '59', 'true', 'true', 'true', 'true', '0', '0'),
('2456', 'Dwarven Chain Gloves', 'gloves', 'true', 'none', '600', 'leather', 'c', '0', '34', '0', '0', '161000', '64', 'true', 'true', 'true', 'true', '0', '0'),
('2457', 'Gloves of Seal', 'gloves', 'true', 'none', '620', 'leather', 'c', '0', '34', '0', '0', '161000', '64', 'true', 'true', 'true', 'true', '0', '0'),
('2458', 'Rind Leather Gloves', 'gloves', 'true', 'none', '600', 'leather', 'c', '0', '34', '0', '0', '161000', '64', 'true', 'true', 'true', 'true', '0', '0'),
('2459', 'Demon\'s Gloves', 'gloves', 'true', 'none', '610', 'leather', 'c', '0', '36', '0', '0', '245000', '98', 'true', 'true', 'true', 'true', '0', '0'),
('2460', 'Theca Leather Gloves', 'gloves', 'true', 'none', '600', 'leather', 'c', '0', '37', '0', '0', '275000', '110', 'true', 'true', 'true', 'true', '0', '0'),
('2461', 'Drake Leather Gloves', 'gloves', 'true', 'none', '600', 'leather', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('2462', 'Full Plate Gauntlets', 'gloves', 'true', 'none', '600', 'leather', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('2463', 'Divine Gloves', 'gloves', 'true', 'none', '610', 'leather', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('2464', 'Avadon Gloves', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('2465', 'Chain Gloves of Silence', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('2466', 'Guardian\'s Gloves', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('2467', 'Gloves of Blessing', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('2468', 'Blessed Gloves', 'gloves', 'true', 'none', '600', 'leather', 'c', '0', '39', '0', '0', '358000', '143', 'true', 'true', 'true', 'true', '0', '0'),
('2469', 'Gloves of The Underworld', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2470', 'Gloves of Phantom', 'gloves', 'true', 'none', '560', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2471', 'Dark Legion Gloves', 'gloves', 'true', 'none', '560', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2472', 'Dark Crystal Gloves', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2473', 'The Gloves', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '51', '0', '0', '2390000', '119', 'true', 'true', 'true', 'true', '0', '0'),
('2474', 'Dasparion\'s Gloves', 'gloves', 'true', 'none', '550', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2475', 'Doom Gloves', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('2476', 'Dragon Gauntlets', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '52', '0', '0', '2610000', '130', 'true', 'true', 'true', 'true', '0', '0'),
('2477', 'Dragon Leather Gloves', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '51', '0', '0', '2390000', '119', 'true', 'true', 'true', 'true', '0', '0'),
('2478', 'Tallum Gloves', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2479', 'Gauntlets of Nightmare', 'gloves', 'true', 'none', '550', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2480', 'Elemental Gloves', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('2481', 'Gloves of Grace', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('2482', 'Majestic Gauntlets', 'gloves', 'true', 'none', '540', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2483', 'Gust Bracer', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2484', 'Cerberus Gloves', 'gloves', 'true', 'none', '540', 'leather', 'a', '0', '48', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('2485', 'Implosion Gauntlets', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('2486', 'Paradia Gloves', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('2487', 'Blue Wolf Gloves', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('2488', 'Phoenix Gloves', 'gloves', 'true', 'none', '570', 'leather', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2489', 'Gloves of Black Ore', 'gloves', 'true', 'none', '570', 'leather', 'a', '0', '45', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('2490', 'Cloak of Silence', 'back', 'false', 'none', '250', 'leather', 'none', '0', '5', '0', '0', '6770', '0', 'true', 'true', 'true', 'true', '0', '0'),
('2491', 'Golden Yarn Cloak', 'back', 'false', 'none', '250', 'leather', 'none', '0', '5', '0', '0', '12300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('2492', 'Shadow Cloak', 'back', 'true', 'none', '240', 'leather', 'c', '0', '12', '0', '0', '126000', '50', 'true', 'true', 'true', 'true', '0', '0'),
('2506', 'Wolf\'s Leather Armor', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '9', '14', '0', '7000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3891', 'Wolf\'s Hide Armor', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '13', '16', '0', '18000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3892', 'Wolf\'s Hard Leather Mail', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '16', '18', '0', '32000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3893', 'Wolf\'s Wooden Armor', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '19', '20', '0', '55000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3894', 'Wolf\'s Ring Mail', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '22', '23', '0', '87000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3895', 'Wolf\'s Bone Armor', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '26', '26', '0', '130000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3896', 'Wolf\'s Scale Male', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '30', '29', '0', '200000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3897', 'Wof\'s Bronze Armor', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '33', '31', '0', '260000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3898', 'Wolf\'s Plate Mail', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '37', '33', '0', '330000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3899', 'Wolf\'s Steel Armor', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '40', '36', '0', '420000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3900', 'Wolf\'s Luxury Plate', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '43', '38', '0', '640000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3901', 'Wolf\'s Mithril Armor', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '47', '41', '0', '940000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3912', 'Hatchling\'s Soft Leather', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '26', '26', '0', '200000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3913', 'Hatchling\'s Scale Mail', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '29', '29', '0', '310000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3914', 'Hatchling\'s Brigandine', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '31', '31', '0', '420000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3915', 'Hatchling\'s Bronze Coat', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '33', '33', '0', '570000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3916', 'Hatchling\'s Steel Coat', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '36', '36', '0', '760000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3917', 'Hatchling\'s Shadowplate', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '38', '38', '0', '1100000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('3918', 'Hatchling\'s Mithril Coat', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '41', '41', '0', '1600000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4224', 'Dream Armor', 'chest', 'true', 'heavy', '8920', 'bronze', 'none', '0', '68', '0', '0', '49200', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4225', 'Dream Stockings', 'legs', 'true', 'heavy', '3960', 'bronze', 'none', '0', '43', '0', '0', '30700', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4226', 'Dream Gloves', 'gloves', 'true', 'none', '650', 'leather', 'none', '0', '17', '0', '0', '12300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4227', 'Dream Boots', 'feet', 'true', 'none', '1310', 'cloth', 'none', '0', '17', '0', '0', '12300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4228', 'Ubiquitous Armor', 'chest', 'true', 'heavy', '8920', 'bronze', 'none', '0', '68', '0', '0', '49200', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4229', 'Ubiquitous Stockings', 'legs', 'true', 'heavy', '3960', 'bronze', 'none', '0', '43', '0', '0', '30700', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4230', 'Ubiquitous Gloves', 'gloves', 'true', 'none', '650', 'leather', 'none', '0', '17', '0', '0', '12300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4231', 'Ubiquitous Boots', 'feet', 'true', 'none', '1310', 'cloth', 'none', '0', '17', '0', '0', '12300', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4234', 'Hatchling\'s Level 65 Armor', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '50', '50', '0', '5628000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4235', 'Hatchling\'s Level 75 Armor', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '58', '58', '0', '19073000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('4236', 'Gara Item', 'chest', 'false', 'light', '160', 'leather', 'none', '0', '58', '58', '0', '19073000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5170', 'Mithril Panzer Coat', 'strider', 'false', 'pet', '160', 'leather', 'none', '0', '41', '41', '0', '1600000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5171', 'Brigadine Panzer Coat', 'strider', 'false', 'pet', '160', 'leather', 'none', '0', '44', '44', '0', '2300000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5172', 'Draconic Panzer Coat', 'strider', 'false', 'pet', '160', 'leather', 'none', '0', '46', '46', '0', '3400000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5173', 'Blood Panzer Coat', 'strider', 'false', 'pet', '160', 'leather', 'none', '0', '49', '49', '0', '4900000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5174', 'Ophidian Panzer Coat', 'strider', 'false', 'pet', '160', 'leather', 'none', '0', '52', '52', '0', '7300000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5175', 'Inferno Panzer Coat', 'strider', 'false', 'pet', '160', 'leather', 'none', '0', '54', '54', '0', '10000000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5182', 'Hatchling\'s Gorgon Coat', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '44', '44', '0', '2300000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5183', 'Hatchling\'s Ophidian Plate', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '46', '46', '0', '3400000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5184', 'Hatchling\'s Crimson Plate', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '49', '49', '0', '4900000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5185', 'Hatchling\'s Draconic Plate', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '52', '52', '0', '7300000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5186', 'Hatchling\'s Inferno Plate', 'hatchling', 'false', 'pet', '160', 'leather', 'none', '0', '54', '54', '0', '10000000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5216', 'Wolf Level 75 Armor', 'wolf', 'false', 'pet', '160', 'leather', 'none', '0', '71', '58', '0', '938705', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5287', 'Sealed Dark Crystal breastplate', 'chest', 'true', 'heavy', '7700', 'crystal', 'a', '0', '171', '0', '0', '4630000', '370', 'true', 'true', 'true', 'true', '0', '0'),
('5288', 'Sealed Dark Crystal Gaiters', 'legs', 'true', 'heavy', '3320', 'crystal', 'a', '0', '107', '0', '0', '2890000', '231', 'true', 'true', 'true', 'true', '0', '0'),
('5289', 'Sealed Dark Crystal Helmet', 'head', 'true', 'none', '570', 'crystal', 'a', '0', '69', '0', '0', '1740000', '139', 'true', 'true', 'true', 'true', '0', '0'),
('5290', 'Sealed Dark Crystal Gloves', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5291', 'Sealed Dark Crystal Boots', 'feet', 'true', 'none', '1110', 'crystal', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5293', 'Sealed Tallum Plate Armor', 'fullarmor', 'true', 'heavy', '9780', 'leather', 'a', '0', '278', '0', '0', '6770000', '541', 'true', 'true', 'true', 'true', '0', '0'),
('5294', 'Sealed Tallum Helmet', 'head', 'true', 'none', '570', 'cloth', 'a', '0', '69', '0', '0', '1740000', '139', 'true', 'true', 'true', 'true', '0', '0'),
('5295', 'Sealed Tallum Gloves', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5296', 'Sealed Tallum Boots', 'feet', 'true', 'none', '1130', 'blood_steel', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5297', 'Sealed Dark Crystal Leather Armor', 'chest', 'true', 'light', '4300', 'leather', 'a', '0', '128', '0', '0', '3470000', '277', 'true', 'true', 'true', 'true', '0', '0'),
('5298', 'Sealed Dark Crystal Leggings', 'legs', 'true', 'light', '1480', 'leather', 'a', '0', '80', '0', '0', '2170000', '173', 'true', 'true', 'true', 'true', '0', '0'),
('5299', 'Sealed Gloves of The Underworld', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '45', '0', '0', '1070000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5300', 'Sealed Boots of The Underworld', 'feet', 'true', 'none', '1110', 'leather', 'a', '0', '45', '0', '0', '1070000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5301', 'Sealed Tallum Leather Armor', 'fullarmor', 'true', 'light', '5400', 'leather', 'a', '0', '209', '0', '0', '5080000', '406', 'true', 'true', 'true', 'true', '0', '0'),
('5302', 'Sealed Gust Bracer', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '45', '0', '0', '1070000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5303', 'Sealed Gust Boots', 'feet', 'true', 'none', '1120', 'blood_steel', 'a', '0', '45', '0', '0', '1070000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5304', 'Sealed Tallum Tunic', 'chest', 'true', 'magic', '1860', 'leather', 'a', '0', '86', '0', '409', '3470000', '277', 'true', 'true', 'true', 'true', '0', '0'),
('5305', 'Sealed Tallum Stockings', 'legs', 'true', 'magic', '920', 'leather', 'a', '0', '53', '0', '256', '2170000', '173', 'true', 'true', 'true', 'true', '0', '0'),
('5306', 'Sealed Gloves of Black Ore', 'gloves', 'true', 'none', '570', 'leather', 'a', '0', '45', '0', '0', '1070000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5307', 'Sealed Red Flame Boots', 'feet', 'true', 'none', '1120', 'blood_steel', 'a', '0', '45', '0', '0', '1070000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5308', 'Sealed Dark Crystal Robe', 'fullarmor', 'true', 'magic', '2450', 'leather', 'a', '0', '139', '0', '665', '5080000', '406', 'true', 'true', 'true', 'true', '0', '0'),
('5309', 'Sealed Phoenix Gloves', 'gloves', 'true', 'none', '570', 'leather', 'a', '0', '45', '0', '0', '1070000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5310', 'Sealed Phoenix Boots', 'feet', 'true', 'none', '1120', 'blood_steel', 'a', '0', '45', '0', '0', '1070000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5311', 'Sealed Armor of Nightmare', 'fullarmor', 'true', 'heavy', '9580', 'blood_steel', 'a', '0', '293', '0', '0', '10300000', '824', 'true', 'true', 'true', 'true', '0', '0'),
('5312', 'Sealed Helm of Nightmare', 'head', 'true', 'none', '560', 'leather', 'a', '0', '73', '0', '0', '2640000', '211', 'true', 'true', 'true', 'true', '0', '0'),
('5313', 'Sealed Gauntlets of Nightmare', 'gloves', 'true', 'none', '550', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5314', 'Sealed Boots of Nightmare', 'feet', 'true', 'none', '1110', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5316', 'Sealed Majestic Plate Armor', 'fullarmor', 'true', 'heavy', '9200', 'leather', 'a', '0', '293', '0', '0', '10300000', '824', 'true', 'true', 'true', 'true', '0', '0'),
('5317', 'Sealed Majestic Circlet', 'head', 'true', 'none', '550', 'leather', 'a', '0', '73', '0', '0', '2640000', '211', 'true', 'true', 'true', 'true', '0', '0'),
('5318', 'Sealed Majestic Gauntlets', 'gloves', 'true', 'none', '540', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5319', 'Sealed Majestic Boots', 'feet', 'true', 'none', '1110', 'blood_steel', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5320', 'Sealed Leather Armor of Nightmare', 'fullarmor', 'true', 'light', '5300', 'leather', 'a', '0', '220', '0', '0', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('5321', 'Sealed Dark Legion Gloves', 'gloves', 'true', 'none', '560', 'leather', 'a', '0', '48', '0', '0', '1630000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5322', 'Sealed Dark Legion Boots', 'feet', 'true', 'none', '1120', 'leather', 'a', '0', '48', '0', '0', '1630000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5323', 'Sealed Majestic Leather Armor', 'fullarmor', 'true', 'light', '5350', 'leather', 'a', '0', '220', '0', '0', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('5324', 'Sealed Gloves of Phantom', 'gloves', 'true', 'none', '560', 'leather', 'a', '0', '48', '0', '0', '1630000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5325', 'Sealed Boots of Phantom', 'feet', 'true', 'none', '1120', 'oriharukon', 'a', '0', '48', '0', '0', '1630000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5326', 'Sealed Nightmare Robe', 'fullarmor', 'true', 'magic', '2300', 'leather', 'a', '0', '147', '0', '718', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('5327', 'Sealed Cerberus Gloves', 'gloves', 'true', 'none', '540', 'leather', 'a', '0', '48', '0', '0', '1630000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5328', 'Sealed Cerberus Boots', 'feet', 'true', 'none', '1120', 'damascus', 'a', '0', '48', '0', '0', '1630000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5329', 'Sealed Majestic Robe', 'fullarmor', 'true', 'magic', '2330', 'leather', 'a', '0', '147', '0', '718', '7730000', '618', 'true', 'true', 'true', 'true', '0', '0'),
('5330', 'Sealed Dasparion\'s Gloves', 'gloves', 'true', 'none', '550', 'leather', 'a', '0', '48', '0', '0', '1630000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5331', 'Sealed Dasparion\'s Boots', 'feet', 'true', 'none', '1100', 'leather', 'a', '0', '48', '0', '0', '1630000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5576', 'Sound Test Boots', 'feet', 'false', 'none', '50', 'cloth', 'none', '0', '0', '0', '0', '0', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5590', 'Squeaking Shoes', 'feet', 'false', 'none', '50', 'cloth', 'none', '0', '0', '0', '0', '350000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('5709', 'Sealed Zubei\'s Gauntlets', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5710', 'Zubei\'s Gauntlets - Heavy Armor', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5711', 'Zubei\'s Gauntlets - Light Armor', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5712', 'Zubei\'s Gauntlets - Robe', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5713', 'Sealed Avadon Gloves', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5714', 'Avadon Gloves - Heavy Armor', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5715', 'Avadon Gloves - Light Armor', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5716', 'Avadon Gloves - Robe', 'gloves', 'true', 'none', '590', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5717', 'Sealed Blue Wolf Gloves', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5718', 'Blue Wolf Gloves - Heavy Armor', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5719', 'Blue Wolf Gloves - Light Armor', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5720', 'Blue Wolf Gloves - Robe', 'gloves', 'true', 'none', '590', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5721', 'Sealed Doom Gloves', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5722', 'Doom Gloves - Heavy Armor', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5723', 'Doom Gloves - Light Armor', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5724', 'Doom Gloves - Robe', 'gloves', 'true', 'none', '580', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5725', 'Sealed Zubei\'s Boots', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5726', 'Zubei\'s Boots - Heavy Armor', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5727', 'Zubei\'s Boots - Light Armor', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5728', 'Zubei\'s Boots - Robe', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5729', 'Sealed Avadon Boots', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5730', 'Avadon Boots - Heavy Armor', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5731', 'Avadon Boots - Light Armor', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5732', 'Avadon Boots - Robe', 'feet', 'true', 'none', '1180', 'mithril', 'b', '0', '41', '0', '0', '519000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('5733', 'Sealed Blue Wolf Boots', 'feet', 'true', 'none', '1130', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5734', 'Blue Wolf Boots - Heavy Armor', 'feet', 'true', 'none', '1130', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5735', 'Blue Wolf Boots - Light Armor', 'feet', 'true', 'none', '1130', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5736', 'Blue Wolf Boots - Robe', 'feet', 'true', 'none', '1130', 'leather', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5737', 'Sealed Boots of Doom', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5738', 'Doom Boots - Heavy Armor', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5739', 'Doom Boots - Light Armor', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5740', 'Doom Boots - Robe', 'feet', 'true', 'none', '1130', 'mithril', 'b', '0', '44', '0', '0', '804000', '107', 'true', 'true', 'true', 'true', '0', '0'),
('5765', 'Dark Crystal Gloves - Heavy Armor', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5766', 'Dark Crystal Gloves - Light Armor', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5767', 'Dark Crystal Gloves - Robe', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5768', 'Tallum Gloves - Heavy Armor', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5769', 'Tallum Gloves - Light Armor', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5770', 'Tallum Gloves - Robe', 'gloves', 'true', 'none', '580', 'leather', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5771', 'Gauntlets of Nightmare - Heavy Armor', 'gloves', 'true', 'none', '550', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5772', 'Gauntlets of Nightmare - Light Armor', 'gloves', 'true', 'none', '550', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5773', 'Gauntlets of Nightmare - Robe', 'gloves', 'true', 'none', '550', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5774', 'Majestic Gauntlets - Heavy Armor', 'gloves', 'true', 'none', '540', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5775', 'Majestic Gauntlets - Light Armor', 'gloves', 'true', 'none', '540', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5776', 'Majestic Gauntlets - Robe', 'gloves', 'true', 'none', '540', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5777', 'Dark Crystal Boots - Heavy Armor', 'feet', 'true', 'none', '1110', 'crystal', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5778', 'Dark Crystal Boots - Light Armor', 'feet', 'true', 'none', '1110', 'crystal', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5779', 'Dark Crystal Boots - Robe', 'feet', 'true', 'none', '1110', 'crystal', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5780', 'Tallum Boots - Heavy Armor', 'feet', 'true', 'none', '1130', 'blood_steel', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5781', 'Tallum Boots - Light Armor', 'feet', 'true', 'none', '1130', 'blood_steel', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5782', 'Tallum Boots - Robe', 'feet', 'true', 'none', '1130', 'blood_steel', 'a', '0', '46', '0', '0', '1160000', '92', 'true', 'true', 'true', 'true', '0', '0'),
('5783', 'Boots of Nightmare - Heavy Armor', 'feet', 'true', 'none', '1110', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5784', 'Boots of Nightmare - Light Armor', 'feet', 'true', 'none', '1110', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5785', 'Boots of Nightmare - Robe', 'feet', 'true', 'none', '1110', 'leather', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5786', 'Majestic Boots - Heavy Armor', 'feet', 'true', 'none', '1110', 'blood_steel', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5787', 'Majestic Boots - Light Armor', 'feet', 'true', 'none', '1110', 'blood_steel', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5788', 'Majestic Boots - Robe', 'feet', 'true', 'none', '1110', 'blood_steel', 'a', '0', '49', '0', '0', '1760000', '140', 'true', 'true', 'true', 'true', '0', '0'),
('5808', 'Party Mask', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('6323', 'Sealed Phoenix Necklace', 'neck', 'true', 'none', '150', 'silver', 'a', '0', '0', '76', '0', '1740000', '139', 'true', 'true', 'true', 'true', '0', '0'),
('6324', 'Sealed Phoenix Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'a', '0', '0', '57', '0', '1310000', '104', 'true', 'true', 'true', 'true', '0', '0'),
('6325', 'Sealed Phoenix Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'a', '0', '0', '38', '0', '871000', '69', 'true', 'true', 'true', 'true', '0', '0'),
('6326', 'Sealed Majestic Necklace', 'neck', 'true', 'none', '150', 'silver', 'a', '0', '0', '80', '0', '2600000', '208', 'true', 'true', 'true', 'true', '0', '0'),
('6327', 'Sealed Majestic Earring', 'rear,lear', 'true', 'none', '150', 'silver', 'a', '0', '0', '60', '0', '1950000', '156', 'true', 'true', 'true', 'true', '0', '0'),
('6328', 'Sealed Majestic Ring', 'rfinger,lfinger', 'true', 'none', '150', 'silver', 'a', '0', '0', '40', '0', '1300000', '104', 'true', 'true', 'true', 'true', '0', '0'),
('6373', 'Imperial Crusader Breastplate', 'chest', 'true', 'heavy', '7620', 'scale_of_dragon', 's', '0', '205', '0', '0', '14300000', '715', 'true', 'true', 'true', 'true', '0', '0'),
('6374', 'Imperial Crusader Gaiters', 'legs', 'true', 'heavy', '3260', 'scale_of_dragon', 's', '0', '128', '0', '0', '8960000', '448', 'true', 'true', 'true', 'true', '0', '0'),
('6375', 'Imperial Crusader Gauntlets', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6376', 'Imperial Crusader Boots', 'feet', 'true', 'none', '1110', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6378', 'Imperial Crusader Helmet', 'head', 'true', 'none', '550', 'bone', 's', '0', '83', '0', '0', '5370000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('6379', 'Draconic Leather Armor', 'fullarmor', 'true', 'light', '4950', 'leather', 's', '0', '249', '0', '0', '17400000', '870', 'true', 'true', 'true', 'true', '0', '0'),
('6380', 'Draconic Leather Gloves', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6381', 'Draconic Leather Boots', 'feet', 'true', 'none', '1110', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6382', 'Draconic Leather Helmet', 'head', 'true', 'none', '550', 'bone', 's', '0', '83', '0', '0', '5370000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('6383', 'Major Arcana Robe', 'fullarmor', 'true', 'magic', '2300', 'cloth', 's', '0', '166', '0', '866', '17400000', '870', 'true', 'true', 'true', 'true', '0', '0'),
('6384', 'Major Arcana Gloves', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6385', 'Major Arcana Boots', 'feet', 'true', 'none', '1110', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6386', 'Major Arcana Circlet', 'head', 'true', 'none', '550', 'bone', 's', '0', '83', '0', '0', '5370000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('6394', 'Red Party Mask', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('6408', 'Formal Wear', 'fullarmor', 'false', 'none', '1000', 'cloth', 'none', '0', '0', '0', '0', '5000000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('6656', 'Earring of Antharas', 'rear,lear', 'true', 'none', '150', 'gold', 's', '0', '0', '71', '31', '3700000', '185', 'true', 'true', 'true', 'true', '3558', '1'),
('6657', 'Necklace of Valakas', 'neck', 'true', 'none', '150', 'gold', 's', '0', '0', '95', '42', '4940000', '247', 'true', 'true', 'true', 'true', '3557', '1'),
('6658', 'Ring of Baium', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 's', '0', '0', '48', '21', '1730000', '86', 'true', 'true', 'true', 'true', '3561', '1'),
('6659', 'Zaken\'s Earring', 'rear,lear', 'true', 'none', '150', 'gold', 's', '0', '0', '71', '31', '2590000', '129', 'true', 'true', 'true', 'true', '3559', '1'),
('6660', 'Ring of Queen Ant', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'b', '0', '0', '48', '21', '616000', '82', 'true', 'true', 'true', 'true', '3562', '1'),
('6661', 'Earring of Orfen', 'rear,lear', 'true', 'none', '150', 'gold', 'a', '0', '0', '71', '31', '1300000', '104', 'true', 'true', 'true', 'true', '3560', '1'),
('6662', 'Ring of Core', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 'a', '0', '0', '48', '21', '870000', '69', 'true', 'true', 'true', 'true', '3563', '1'),
('6674', 'Sealed Imperial Crusader Breastplate', 'chest', 'true', 'heavy', '7620', 'scale_of_dragon', 's', '0', '193', '0', '0', '14300000', '715', 'true', 'true', 'true', 'true', '0', '0'),
('6675', 'Sealed Imperial Crusader Gaiters', 'legs', 'true', 'heavy', '3260', 'scale_of_dragon', 's', '0', '121', '0', '0', '8960000', '448', 'true', 'true', 'true', 'true', '0', '0'),
('6676', 'Sealed Imperial Crusader Gauntlet', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6677', 'Sealed Imperial Crusader Boots', 'feet', 'true', 'none', '1110', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6679', 'Sealed Imperial Crusader Helmet', 'head', 'true', 'none', '550', 'bone', 's', '0', '83', '0', '0', '5370000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('6680', 'Sealed Draconic Leather Armor', 'fullarmor', 'true', 'light', '4950', 'leather', 's', '0', '236', '0', '0', '17400000', '870', 'true', 'true', 'true', 'true', '0', '0'),
('6681', 'Sealed Draconic Leather Glove', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6682', 'Sealed Draconic Leather Boots', 'feet', 'true', 'none', '1110', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6683', 'Sealed Draconic Leather Helmet', 'head', 'true', 'none', '550', 'bone', 's', '0', '83', '0', '0', '5370000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('6684', 'Sealed Major Arcana Robe', 'fullarmor', 'true', 'magic', '2300', 'cloth', 's', '0', '157', '0', '866', '17400000', '870', 'true', 'true', 'true', 'true', '0', '0'),
('6685', 'Sealed Major Arcana Glove', 'gloves', 'true', 'none', '540', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6686', 'Sealed Major Arcana Boots', 'feet', 'true', 'none', '1110', 'leather', 's', '0', '55', '0', '0', '3580000', '179', 'true', 'true', 'true', 'true', '0', '0'),
('6687', 'Sealed Major Arcana Circlet', 'head', 'true', 'none', '550', 'bone', 's', '0', '83', '0', '0', '5370000', '268', 'true', 'true', 'true', 'true', '0', '0'),
('6724', 'Sealed Tateossian Earring', 'rear,lear', 'true', 'none', '150', 'silver', 's', '0', '0', '68', '0', '3700000', '185', 'true', 'true', 'true', 'true', '0', '0'),
('6725', 'Sealed Tateossian Ring', 'rfinger,lfinger', 'true', 'none', '150', 'gold', 's', '0', '0', '46', '0', '2470000', '123', 'true', 'true', 'true', 'true', '0', '0'),
('6726', 'Sealed Tateossian Necklace', 'neck', 'true', 'none', '150', 'silver', 's', '0', '0', '91', '0', '4940000', '247', 'true', 'true', 'true', 'true', '0', '0'),
('6834', 'Circlet of Innadril', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'true', 'false', '3633', '1'),
('6835', 'Circlet of Dion', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'true', 'false', '3633', '1'),
('6836', 'Circlet of Goddard', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'true', 'false', '3633', '2'),
('6837', 'Circlet of Oren', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'true', 'false', '3633', '1'),
('6838', 'Circlet of Gludio', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'true', 'false', '3633', '1'),
('6839', 'Circlet of Giran', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'true', 'false', '3633', '1'),
('6840', 'Circlet of Aden', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'true', 'false', '3633', '2'),
('6841', 'The Lord\'s Crown', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'true', 'false', '3633', '1'),
('6842', 'Wings of Destiny Circlet', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'false', 'false', 'false', '0', '0'),
('6843', 'Cat Ear', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('6844', 'Lady\'s Hair Pin', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('6845', 'Pirate\'s Eye Patch', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('6846', 'Monocle', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7059', 'Hair Accessory for Events', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'true', 'true', 'true', '0', '0'),
('7060', 'Tateossian Hairband', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7680', 'Raccoon Ears', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7681', 'Outlaw\'s Eyepatch', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7682', 'Maiden\'s Hairpin', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7683', 'Rabbit Ears', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7694', 'Noblesse Tiara', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'false', 'true', 'true', 'true', '0', '0'),
('7695', 'Forget-me-not Hairpin', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7696', 'Daisy Hairpin', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '500000', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7836', 'Santa\'s Hat', 'hair', 'false', 'none', '10', 'wood', 'none', '0', '0', '0', '0', '0', '0', 'true', 'true', 'true', 'true', '0', '0'),
('7837', 'Sayha\'s White Mask', 'hair', 'false', 'none', '10', 'steel', 'none', '0', '0', '0', '0', '0', '0', 'false', 'true', 'true', 'true', '0', '0');
+90
View File
@@ -0,0 +1,90 @@
--
-- Table structure for table `armorsets`
--
DROP TABLE IF EXISTS armorsets;
CREATE TABLE armorsets (
id int(3) NOT NULL auto_increment,
chest decimal(11,0) NOT NULL default '0',
legs decimal(11,0) NOT NULL default '0',
head decimal(11,0) NOT NULL default '0',
gloves decimal(11,0) NOT NULL default '0',
feet decimal(11,0) NOT NULL default '0',
skill_id decimal(11,0) NOT NULL default '0',
shield decimal(11,0) NOT NULL default '0',
shield_skill_id decimal(11,0) NOT NULL default '0',
PRIMARY KEY (id,chest)
);
-- NO GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill
INSERT INTO armorsets VALUES(1, 23, 2386, 43, 0, 0, 3500, 0, 0); -- Wooden Breastplate set (heavy)
INSERT INTO armorsets VALUES(2, 1101, 1104, 44, 0, 0, 3501, 0, 0); -- Devotion robe set (robe)
-- D GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill
INSERT INTO armorsets VALUES(3, 58, 59, 47, 0, 0, 3502, 628, 3543); -- Mithril Breastplate set(heavy)
INSERT INTO armorsets VALUES(4, 352, 2378, 2411, 0, 0, 3506, 2493, 3544); -- Brigandine Armor set
INSERT INTO armorsets VALUES(5, 394, 416, 0, 0, 2422, 3503, 0, 0); -- Reinforced leather set
INSERT INTO armorsets VALUES(6, 395, 417, 0, 0, 2424, 3505, 0, 0); -- Manticore skin set
INSERT INTO armorsets VALUES(7, 436, 469, 0, 2447, 0, 3504, 0, 0); -- Tunic of knowledge set
INSERT INTO armorsets VALUES(8, 437, 470, 0, 2450, 0, 3507, 0, 0); -- Mithril Tunic
-- C GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill
INSERT INTO armorsets VALUES(9, 354, 381, 2413, 0, 0, 3509, 2495, 3545); -- Chain Mail Shirt set
INSERT INTO armorsets VALUES(10, 60, 0, 517, 0, 0, 3512, 107, 3546); -- Composite Armor set
INSERT INTO armorsets VALUES(11, 356, 0, 2414, 0, 0, 3516, 2497, 3547); -- Full Plate Armor set
INSERT INTO armorsets VALUES(12, 397, 2387, 0, 0, 62, 3508, 0, 0); -- Mithrill shirt set
INSERT INTO armorsets VALUES(13, 398, 418, 0, 0, 2431, 3511, 0, 0); -- Plated leather set
INSERT INTO armorsets VALUES(14, 400, 420, 0, 0, 2436, 3514, 0, 0); -- Theca leather set
INSERT INTO armorsets VALUES(15, 401, 0, 0, 0, 2437, 3515, 0, 0); -- Drake leather set
INSERT INTO armorsets VALUES(16, 439, 471, 0, 2454, 0, 3510, 0, 0); -- Karmian robe set
INSERT INTO armorsets VALUES(17, 441, 472, 0, 2459, 0, 3513, 0, 0); -- Demon robe set
INSERT INTO armorsets VALUES(18, 442, 473, 0, 2463, 0, 3517, 0, 0); -- Divine robe set
-- B GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill
INSERT INTO armorsets VALUES(19, 357, 383, 503, 5710, 5726, 3518, 0, 0); -- Zubei's Breastplate set
INSERT INTO armorsets VALUES(20, 2384, 2388, 503, 5711, 5727, 3520, 0, 0); -- Zubei's leather set
INSERT INTO armorsets VALUES(21, 2397, 2402, 503, 5712, 5728, 3522, 0, 0); -- Zubei robe set
INSERT INTO armorsets VALUES(22, 2376, 2379, 2415, 5714, 5730, 3519, 673, 3548); -- Avadon heavy set
INSERT INTO armorsets VALUES(23, 2390, 0, 2415, 5715, 5731, 3521, 0, 0); -- Avadon leather set
INSERT INTO armorsets VALUES(24, 2406, 0, 2415, 5716, 5732, 3523, 0, 0); -- Avadon robe set
INSERT INTO armorsets VALUES(25, 358, 2380, 2416, 5718, 5734, 3524, 0, 0); -- Blue Wolf's Breastplate set
INSERT INTO armorsets VALUES(26, 2391, 0, 2416, 5719, 5735, 3526, 0, 0); -- Blue wolf leather set
INSERT INTO armorsets VALUES(27, 2398, 2403, 2416, 5720, 5736, 3528, 0, 0); -- Blue Wolf robe set
INSERT INTO armorsets VALUES(28, 2381, 0, 2417, 5722, 5738, 3525, 110, 3549); -- Doom plate heavy set
INSERT INTO armorsets VALUES(29, 2392, 0, 2417, 5723, 5739, 3527, 0, 0); -- Doom leather set
INSERT INTO armorsets VALUES(30, 2399, 2404, 2417, 5724, 5740, 3529, 0, 0); -- Doom robe set
-- A GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill
INSERT INTO armorsets VALUES(31, 365, 388, 512, 5765, 5777, 3530, 641, 3550); -- Dark Crystal Breastplate set
INSERT INTO armorsets VALUES(32, 2385, 2389, 512, 5766, 5778, 3532, 0, 0); -- Dark Crystal leather set
INSERT INTO armorsets VALUES(33, 2407, 0, 512, 5767, 5779, 3535, 0, 0); -- Dark Crystal robe set
INSERT INTO armorsets VALUES(34, 2382, 0, 547, 5768, 5780, 3531, 0, 0); -- Tallum plate heavy set
INSERT INTO armorsets VALUES(35, 2393, 0, 547, 5769, 5781, 3533, 0, 0); -- Tallum leather set
INSERT INTO armorsets VALUES(36, 2400, 2405, 547, 5770, 5782, 3534, 0, 0); -- Tallum robe set
INSERT INTO armorsets VALUES(37, 374, 0, 2418, 5771, 5783, 3536, 2498, 3551); -- Nightmare heavy set
INSERT INTO armorsets VALUES(38, 2394, 0, 2418, 5772, 5784, 3538, 0, 0); -- Nightmare leather set
INSERT INTO armorsets VALUES(39, 2408, 0, 2418, 5773, 5785, 3540, 0, 0); -- Robe of nightmare set
INSERT INTO armorsets VALUES(40, 2383, 0, 2419, 5774, 5786, 3537, 0, 0); -- Majestic plate heavy set
INSERT INTO armorsets VALUES(41, 2395, 0, 2419, 5775, 5787, 3539, 0, 0); -- Majestic leather set
INSERT INTO armorsets VALUES(42, 2409, 0, 2419, 5776, 5788, 3541, 0, 0); -- Majestic robe set
-- S GRADE -------------
-- ######################## id chest legs head gloves feet skill shield sh_skill
INSERT INTO armorsets VALUES(43, 6373, 6374, 6378, 6375, 6376, 3553, 6377, 3554); -- Imperial crusader set
INSERT INTO armorsets VALUES(44, 6379, 0, 6382, 6380, 6381, 3555, 0, 0); -- Draconic leather set
INSERT INTO armorsets VALUES(45, 6383, 0, 6386, 6384, 6385, 3556, 0, 0); -- Major arcana robe set
+52
View File
@@ -0,0 +1,52 @@
-- ---------------------------
-- Table structure for 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 int(11) NOT NULL default '0',
startingBid int(11) NOT NULL default '0',
currentBid int(11) NOT NULL default '0',
endDate decimal(20,0) NOT NULL default '0',
PRIMARY KEY (`itemType`,`itemId`,`itemObjectId`),
KEY `id` (`id`)
);
--
-- Dumping data for table `auction`
--
INSERT IGNORE INTO `auction` VALUES
(22, 0, 'NPC', 'NPC Clan', 'ClanHall', 22, 0, 'Moonstone Hall', 1, 20000000, 0, 1164841200000),
(23, 0, 'NPC', 'NPC Clan', 'ClanHall', 23, 0, 'Onyx Hall', 1, 20000000, 0, 1164841200000),
(24, 0, 'NPC', 'NPC Clan', 'ClanHall', 24, 0, 'Topaz Hall', 1, 20000000, 0, 1164841200000),
(25, 0, 'NPC', 'NPC Clan', 'ClanHall', 25, 0, 'Ruby Hall', 1, 20000000, 0, 1164841200000),
(26, 0, 'NPC', 'NPC Clan', 'ClanHall', 26, 0, 'Crystal Hall', 1, 20000000, 0, 1164841200000),
(27, 0, 'NPC', 'NPC Clan', 'ClanHall', 27, 0, 'Onyx Hall', 1, 20000000, 0, 1164841200000),
(28, 0, 'NPC', 'NPC Clan', 'ClanHall', 28, 0, 'Sapphire Hall', 1, 20000000, 0, 1164841200000),
(29, 0, 'NPC', 'NPC Clan', 'ClanHall', 29, 0, 'Moonstone Hall', 1, 20000000, 0, 1164841200000),
(30, 0, 'NPC', 'NPC Clan', 'ClanHall', 30, 0, 'Emerald Hall', 1, 20000000, 0, 1164841200000),
(31, 0, 'NPC', 'NPC Clan', 'ClanHall', 31, 0, 'The Atramental Barracks', 1, 8000000, 0, 1164841200000),
(32, 0, 'NPC', 'NPC Clan', 'ClanHall', 32, 0, 'The Scarlet Barracks', 1, 8000000, 0, 1164841200000),
(33, 0, 'NPC', 'NPC Clan', 'ClanHall', 33, 0, 'The Viridian Barracks', 1, 8000000, 0, 1164841200000),
(36, 0, 'NPC', 'NPC Clan', 'ClanHall', 36, 0, 'The Golden Chamber', 1, 50000000, 0, 1164841200000),
(37, 0, 'NPC', 'NPC Clan', 'ClanHall', 37, 0, 'The Silver Chamber', 1, 50000000, 0, 1164841200000),
(38, 0, 'NPC', 'NPC Clan', 'ClanHall', 38, 0, 'The Mithril Chamber', 1, 50000000, 0, 1164841200000),
(39, 0, 'NPC', 'NPC Clan', 'ClanHall', 39, 0, 'Silver Manor', 1, 50000000, 0, 1164841200000),
(40, 0, 'NPC', 'NPC Clan', 'ClanHall', 40, 0, 'Gold Manor', 1, 50000000, 0, 1164841200000),
(41, 0, 'NPC', 'NPC Clan', 'ClanHall', 41, 0, 'The Bronze Chamber', 1, 50000000, 0, 1164841200000),
(42, 0, 'NPC', 'NPC Clan', 'ClanHall', 42, 0, 'The Golden Chamber', 1, 50000000, 0, 1164841200000),
(43, 0, 'NPC', 'NPC Clan', 'ClanHall', 43, 0, 'The Silver Chamber', 1, 50000000, 0, 1164841200000),
(44, 0, 'NPC', 'NPC Clan', 'ClanHall', 44, 0, 'The Mithril Chamber', 1, 50000000, 0, 1164841200000),
(45, 0, 'NPC', 'NPC Clan', 'ClanHall', 45, 0, 'The Bronze Chamber', 1, 50000000, 0, 1164841200000),
(46, 0, 'NPC', 'NPC Clan', 'ClanHall', 46, 0, 'Silver Manor', 1, 50000000, 0, 1164841200000),
(47, 0, 'NPC', 'NPC Clan', 'ClanHall', 47, 0, 'Moonstone Hall', 1, 50000000, 0, 1164841200000),
(48, 0, 'NPC', 'NPC Clan', 'ClanHall', 48, 0, 'Onyx Hall', 1, 50000000, 0, 1164841200000),
(49, 0, 'NPC', 'NPC Clan', 'ClanHall', 49, 0, 'Emerald Hall', 1, 50000000, 0, 1164841200000),
(50, 0, 'NPC', 'NPC Clan', 'ClanHall', 50, 0, 'Sapphire Hall', 1, 50000000, 0, 1164841200000);
+14
View File
@@ -0,0 +1,14 @@
-- ---------------------------
-- Table structure for auction_bid
-- ---------------------------
CREATE TABLE IF NOT EXISTS auction_bid (
id INT NOT NULL default 0,
auctionId INT NOT NULL default 0,
bidderId INT NOT NULL default 0,
bidderName varchar(50) NOT NULL,
clan_name varchar(50) NOT NULL,
maxBid int(11) NOT NULL default 0,
time_bid decimal(20,0) NOT NULL default '0',
PRIMARY KEY (auctionId, bidderId),
KEY id (id)
);
+8
View File
@@ -0,0 +1,8 @@
-- ---------------------------
-- Table structure for auction_watch
-- ---------------------------
CREATE TABLE IF NOT EXISTS auction_watch (
charObjId INT NOT NULL default 0,
auctionId INT NOT NULL default 0,
PRIMARY KEY (charObjId, auctionId)
);
@@ -0,0 +1,12 @@
-- ----------------------------
-- Table structure for auto_announcements
-- ----------------------------
CREATE TABLE IF NOT EXISTS `auto_announcements` (
`id` INT(11) NOT NULL,
`initial` BIGINT(20) NOT NULL,
`delay` BIGINT(20) NOT NULL,
`cycle` INT(11) NOT NULL,
`memo` TEXT DEFAULT NULL,
PRIMARY KEY (`id`)
);
+11
View File
@@ -0,0 +1,11 @@
DROP TABLE IF EXISTS `auto_chat`;
CREATE TABLE `auto_chat` (
`groupId` INT NOT NULL default '0',
`npcId` INT NOT NULL default '0',
`chatDelay` BIGINT NOT NULL default '-1',
PRIMARY KEY (`groupId`)
);
INSERT INTO `auto_chat` VALUES
(1,8093,-1),
(2,8094,-1);
+24
View File
@@ -0,0 +1,24 @@
DROP TABLE IF EXISTS `auto_chat_text`;
CREATE TABLE `auto_chat_text` (
`groupId` INT NOT NULL default '0',
`chatText` VARCHAR(255) NOT NULL default '',
PRIMARY KEY (`groupId`,`chatText`)
);
INSERT INTO `auto_chat_text` VALUES
(1,'%player_cabal_loser%! All is lost! Prepare to meet the goddess of death!'),
(1,'%player_cabal_loser%! You bring an ill wind!'),
(1,'%player_cabal_loser%! You might as well give up!'),
(1,'A curse upon you!'),
(1,'All is lost! Prepare to meet the goddess of death!'),
(1,'All is lost! The prophecy of destruction has been fulfilled!'),
(1,'The prophecy of doom has awoken!'),
(1,'This world will soon be annihilated!'),
(2,'%player_cabal_winner%! I bestow on you the authority of the abyss!'),
(2,'%player_cabal_winner%, Darkness shall be banished forever!'),
(2,'%player_cabal_winner%, the time for glory is at hand!'),
(2,'All hail the eternal twilight!'),
(2,'As foretold in the prophecy of darkness, the era of chaos has begun!'),
(2,'The day of judgment is near!'),
(2,'The prophecy of darkness has been fulfilled!'),
(2,'The prophecy of darkness has come to pass!');
+23
View File
@@ -0,0 +1,23 @@
-- ---------------------------
-- Table structure for castle
-- ---------------------------
CREATE TABLE IF NOT EXISTS castle (
id INT NOT NULL default 0,
name varchar(25) NOT NULL,
taxPercent INT NOT NULL default 15,
treasury INT NOT NULL default 0,
siegeDate DECIMAL(20,0) NOT NULL default 0,
siegeDayOfWeek INT NOT NULL default 7,
siegeHourOfDay INT NOT NULL default 20,
PRIMARY KEY (name),
KEY id (id)
);
INSERT IGNORE INTO `castle` VALUES
(1, 'Gludio', 0, 0, 0, 7, 20),
(2, 'Dion', 0, 0, 0, 7, 20),
(3, 'Giran', 0, 0, 0, 1, 16),
(4, 'Oren', 0, 0, 0, 1, 16),
(5, 'Aden', 0, 0, 0, 7, 20),
(6, 'Innadril', 0, 0, 0, 1, 16),
(7, 'Goddard', 0, 0, 0, 1, 16);
+105
View File
@@ -0,0 +1,105 @@
-- ---------------------------
-- Table structure for castle_door
-- ---------------------------
DROP TABLE IF EXISTS `castle_door`;
CREATE TABLE `castle_door` (
`castleId` INT NOT NULL default 0,
`id` INT NOT NULL default 0,
`name` varchar(30) NOT NULL,
`x` INT NOT NULL default 0,
`y` INT NOT NULL default 0,
`z` INT NOT NULL default 0,
`range_xmin` INT NOT NULL default 0,
`range_ymin` INT NOT NULL default 0,
`range_zmin` INT NOT NULL default 0,
`range_xmax` INT NOT NULL default 0,
`range_ymax` INT NOT NULL default 0,
`range_zmax` INT NOT NULL default 0,
`hp` INT NOT NULL default 0,
`pDef` INT NOT NULL default 0,
`mDef` INT NOT NULL default 0,
PRIMARY KEY (`id`),
KEY `id` (`castleId`)
);
INSERT INTO `castle_door` VALUES
(1,19210001,'Gludio_outer_001',-18481,113065,-2774,-18481,113058,-2799,-18350,113072,-2479,316500,644,518),
(1,19210002,'Gludio_outer_002',-18219,113065,-2774,-18351,113058,-2799,-18220,113072,-2479,316500,644,518),
(1,19210003,'Gludio_wall_001',-19912,111381,-2861,-19977,111082,-2922,-19848,111682,-2462,678840,837,674),
(1,19210004,'Gludio_wall_002',-16586,111382,-2880,-16650,111082,-2922,-16522,111682,-2462,678840,837,674),
(1,19210005,'Gludio_inner_001',-18244,110520,-2518,-18244,110514,-2548,-18113,110526,-2293,158250,644,518),
(1,19210006,'Gludio_inner_002',-17981,110520,-2518,-18113,110514,-2548,-17982,110526,-2293,158250,644,518),
(1,19210007,'Gludio_small_002',-19235,108276,-2389,-19333,108276,-2408,-19235,108277,-2280,158250,644,518),
(1,19210008,'Gludio_station',-18997,108062,-2038,-19003,108057,-2069,-18991,108208,-1819,158250,644,518),
(1,19210009,'Gludio_small_001',-17939,107109,-2387,-17940,107011,-2408,-17939,107109,-2280,158250,644,518),
(2,20220001,'Dion_outer_001',22441,156684,-2968,22302,156678,-2994,22450,156692,-2674,316500,644,518),
(2,20220002,'Dion_outer_002',22179,156684,-2968,22171,156678,-2994,22318,156692,-2674,316500,644,518),
(2,20220003,'Dion_wall_001',23873,158368,-3055,23809,158060,-3116,23937,158676,-2656,678840,837,674),
(2,20220004,'Dion_wall_002',20546,158368,-3074,20483,158060,-3116,20611,158676,-2656,678840,837,674),
(2,20220005,'Dion_inner_001',22205,159230,-2712,22067,159224,-2735,22213,159236,-2480,158250,644,518),
(2,20220006,'Dion_inner_002',21943,159230,-2712,21935,159224,-2735,22082,159236,-2480,158250,644,518),
(2,20220007,'Dion_small_001',23194,161470,-2583,23187,161470,-2602,23300,161472,-2474,158250,644,518),
(2,20220008,'Dion_station',22905,161547,-2232,22900,161535,-2258,22912,161702,-2008,158250,644,518),
(2,20220009,'Dion_small_002',21899,162738,-2483,21899,162629,-2602,21899,162744,-2474,158250,644,518),
(3,23220001,'Giran_outer_001',112857,144729,-2841,112850,144720,-2864,112864,144867,-2544,316500,644,518),
(3,23220002,'Giran_outer_002',112857,144990,-2841,112850,144852,-2864,112864,144997,-2544,316500,644,518),
(3,23220003,'Giran_wall_001',114540,143296,-2928,114232,143232,-2991,114848,143360,-2531,678840,837,674),
(3,23220004,'Giran_wall_002',114540,146623,-2945,114232,146559,-2989,114848,146687,-2531,678840,837,674),
(3,23220005,'Giran_inner_001',115402,144965,-2585,115396,144956,-2607,115408,145104,-2352,158250,644,518),
(3,23220006,'Giran_inner_002',115402,145227,-2585,115396,145088,-2607,115408,145236,-2352,158250,644,518),
(3,23220007,'Giran_small_001',117643,143974,-2456,117643,143868,-2475,117643,143981,-2347,158250,644,518),
(3,23220008,'Giran_station',117720,144242,-2105,117708,144236,-2129,117873,144248,-1879,158250,644,518),
(3,23220009,'Giran_small_002',118811,145270,-2454,118804,145270,-2475,118917,145270,-2347,158250,644,518),
(4,22190001,'Oren_outer_001',78925,36824,-2568,78918,36816,-2591,78932,36959,-2271,316500,644,518),
(4,22190002,'Oren_outer_002',78925,37085,-2568,78918,36949,-2591,78932,37092,-2271,316500,644,518),
(4,22190003,'Oren_wall_001',80616,35391,-2655,80316,35328,-2716,80924,35456,-2256,678840,837,674),
(4,22190004,'Oren_wall_002',80616,38718,-2674,80308,38718,-2716,80616,38782,-2256,678840,837,674),
(4,22190005,'Oren_inner_001',81470,37060,-2312,81464,37060,-2335,81470,37201,-2180,158250,644,518),
(4,22190006,'Oren_inner_002',81470,37322,-2312,81464,37181,-2335,81476,37332,-2180,158250,644,518),
(4,22190007,'Oren_small_001',83719,36069,-2202,83719,35964,-2202,83719,36076,-2014,158250,644,518),
(4,22190008,'Oren_station',83796,36337,-1832,83784,36331,-1856,83950,36343,-1606,158250,644,518),
(4,22190009,'Oren_small_002',84887,37365,-2181,84880,37365,-2202,84992,37365,-2074,158250,644,518),
(5,24180001,'Aden_outer_001',147278,8483,-474,147277,8474,-496,147464,8492,-1,339420,837,674),
(5,24180002,'Aden_outer_002',147634,8483,-474,147448,8474,-496,147635,8492,-1,339420,837,674),
(5,24180003,'Aden_wall_in',146770,6977,-460,146440,6895,-496,147064,7105,-391,678840,837,674),
(5,24180004,'Aden_inner_002',147341,6210,-405,147341,6202,-430,147462,6220,-140,84855,837,674),
(5,24180005,'Aden_inner_001',147571,6210,-430,147450,6202,-430,147572,6220,-140,84855,837,674),
(5,24180006,'Aden_wall_left',145200,5504,-726,144863,5119,-752,145537,5889,-187,678840,837,674),
(5,24180007,'Aden_left_004',146607,5384,-20,146600,5318,-45,146614,5386,140,113151,837,674),
(5,24180008,'Aden_left_003',146606,5262,-20,146600,5262,-45,146614,5329,140,113151,837,674),
(5,24180009,'Aden_right_003',148324,5384,-20,148317,5319,-44,148331,5386,140,113151,837,674),
(5,24180010,'Aden_right_004',148323,5262,-20,148317,5261,-44,148317,5328,140,113151,837,674),
(5,24180011,'Aden_wall_right',149711,5503,-726,149887,5119,-752,150049,5889,-197,678840,837,674),
(5,24180012,'Aden_left_002',146001,4721,-402,145993,4601,-427,146011,4722,-98,113151,837,674),
(5,24180013,'Aden_left_001',146001,4493,-402,145993,4493,-427,146011,4613,-98,113151,837,674),
(5,24180014,'Aden_right_001',148908,4721,-402,148900,4602,-427,148918,4723,-98,113151,837,674),
(5,24180015,'Aden_right_002',148908,4493,-402,148900,4492,-427,148918,4613,-98,113151,837,674),
(5,24180016,'Aden_terrace',147511,2240,180,147398,2243,201,147514,2245,434,113151,837,674),
(5,24180018,'Aden_side_door2',150044,3783,-80,150040,3776,-102,150056,3904,145,678840,837,674),
(5,24180019,'Aden_side_door1',149208,3077,1260,149209,3072,1235,149217,3200,1478,678840,837,674),
(5,24180020,'Aden_side_door4',144859,3783,-80,144848,3775,-102,144881,3902,145,678840,837,674),
(5,24180021,'Aden_side_door3',145694,3076,1259,145688,3072,1234,145712,3200,1477,678840,837,674),
(6,23250001,'Innadril_outer_002',116392,245462,-1064,116254,245456,-1090,116400,245470,-770,316500,644,518),
(6,23250002,'Innadril_outer_001',116130,245462,-1064,116123,245456,-1090,116269,245470,-770,316500,644,518),
(6,23250003,'Innadril_wall_001',117824,247146,-1151,117745,246831,-1212,117911,247468,-752,678840,837,674),
(6,23250004,'Innadril_wall_002',114497,247146,-1170,114417,246834,-1212,114578,247462,-752,678840,837,674),
(6,23250005,'Innadril_inner_002',116155,248008,-808,116019,248002,-831,116164,248014,-576,158250,644,518),
(6,23250006,'Innadril_inner_001',115894,248008,-808,115886,248002,-831,116033,248014,-576,158250,644,518),
(6,23250007,'Innadril_small_001',117145,250249,-679,117139,250249,-698,117250,250251,-570,158250,644,518),
(6,23250008,'Innadril_station',116856,250326,-328,116850,250315,-354,116863,250479,-104,158250,644,518),
(6,23250009,'Innadril_small_002',115849,251516,-677,115850,251412,-698,115852,251524,570,158250,644,518),
(7,24160009,'Goddard_outer_002',147642,-45571,-1945,147448,-45584,-2116,147664,-45553,-1866,316500,644,518),
(7,24160010,'Goddard_outer_001',147290,-45571,-1945,147272,-45584,-2116,147480,-45552,-1866,316500,644,518),
(7,24160011,'Goddard_side_door_001',149144,-48368,-2223,149130,-48384,-2411,149160,-48098,-2161,158250,644,518),
(7,24160012,'Goddard_side_door_002',145793,-48368,-2223,145779,-48385,-2411,145811,-48097,-2161,158250,644,518),
(7,24160013,'Goddard_side_door_003',148998,-47795,-1511,148940,-47890,-1625,149056,-47698,-1375,316500,644,518),
(7,24160014,'Goddard_side_door_004',145931,-47794,-1511,145873,-47890,-1625,145989,-47698,-1375,316500,644,518),
(7,24160015,'Goddard_station_001',148750,-49120,-588,148650,-49143,-715,148866,-49092,-465,158250,644,518),
(7,24160016,'Goddard_station_002',146180,-49121,-588,146080,-49144,-715,146296,-49093,-465,158250,644,518),
(7,24160017,'Goddard_ctr_001',150248,-48577,-1659,150147,-48600,-1775,150364,-48549,-1525,39562.5,644,518),
(7,24160018,'Goddard_ctr_002',144682,-48577,-1659,144581,-48600,-1775,144798,-48549,-1525,39562.5,644,518),
(7,24160019,'Goddard_inner_001',148751,-48603,-2290,148735,-48680,-2414,148764,-48528,-2164,678840,644,518),
(7,24160020,'Goddard_inner_002',146180,-48603,-2290,146164,-48680,-2414,146193,-48528,-2164,678840,644,518),
(7,24160021,'Goddard_wall_001',150106,-47523,-2289,149636,-47958,-2573,150734,-46931,-2323,678840,837,674),
(7,24160022,'Goddard_wall_002',144824,-47522,-2289,144480,-47958,-2572,145286,-46922,-2322,678840,837,674),
(7,24160023,'Goddard_inner_003',147464,-46200,-1987,147366,-46218,-2113,147562,-46171,-1863,678840,644,518);
@@ -0,0 +1,10 @@
-- ---------------------------
-- Table structure for castle_doorupgrade
-- ---------------------------
CREATE TABLE IF NOT EXISTS castle_doorupgrade (
doorId INT NOT NULL default 0,
hp INT NOT NULL default 0,
pDef INT NOT NULL default 0,
mDef INT NOT NULL default 0,
PRIMARY KEY (doorId )
);
@@ -0,0 +1,12 @@
-- ---------------------------
-- Table structure for `castle_functions`
-- ---------------------------
CREATE TABLE IF NOT EXISTS `castle_functions` (
`castle_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` decimal(20,0) NOT NULL default '0',
PRIMARY KEY (`castle_id`,`type`)
);
@@ -0,0 +1,13 @@
-- ---------------------------
-- Table structure for `castle_manor_procure`
-- ---------------------------
CREATE TABLE IF NOT EXISTS `castle_manor_procure` (
`castle_id` INT NOT NULL DEFAULT '0',
`crop_id` int(11) NOT NULL DEFAULT '0',
`can_buy` int(11) NOT NULL DEFAULT '0',
`start_buy` int(11) NOT NULL DEFAULT '0',
`price` int(11) NOT NULL DEFAULT '0',
`reward_type` int(11) NOT NULL DEFAULT '0',
`period` INT NOT NULL DEFAULT '1',
PRIMARY KEY (`castle_id`,`crop_id`,`period`)
);
@@ -0,0 +1,12 @@
-- ---------------------------
-- Table structure for `castle_manor_production`
-- ---------------------------
CREATE TABLE IF NOT EXISTS `castle_manor_production` (
`castle_id` INT NOT NULL DEFAULT '0',
`seed_id` int(11) NOT NULL DEFAULT '0',
`can_produce` int(11) NOT NULL DEFAULT '0',
`start_produce` int(11) NOT NULL DEFAULT '0',
`seed_price` int(11) NOT NULL DEFAULT '0',
`period` INT NOT NULL DEFAULT '1',
PRIMARY KEY (`castle_id`,`seed_id`,`period`)
);
File diff suppressed because it is too large Load Diff
+136
View File
@@ -0,0 +1,136 @@
-- ----------------------------
-- Table structure for char_templates
-- ----------------------------
DROP TABLE IF EXISTS `char_templates`;
CREATE TABLE `char_templates` (
`ClassId` int(11) NOT NULL DEFAULT '0',
`ClassName` varchar(20) NOT NULL DEFAULT '',
`RaceId` int(1) NOT NULL DEFAULT '0',
`STR` int(2) NOT NULL DEFAULT '0',
`CON` int(2) NOT NULL DEFAULT '0',
`DEX` int(2) NOT NULL DEFAULT '0',
`_INT` int(2) NOT NULL DEFAULT '0',
`WIT` int(2) NOT NULL DEFAULT '0',
`MEN` int(2) NOT NULL DEFAULT '0',
`P_ATK` int(3) NOT NULL DEFAULT '0',
`P_DEF` int(3) NOT NULL DEFAULT '0',
`M_ATK` int(3) NOT NULL DEFAULT '0',
`M_DEF` int(2) NOT NULL DEFAULT '0',
`P_SPD` int(3) NOT NULL DEFAULT '0',
`M_SPD` int(3) NOT NULL DEFAULT '0',
`ACC` int(3) NOT NULL DEFAULT '0',
`CRITICAL` int(3) NOT NULL DEFAULT '0',
`EVASION` int(3) NOT NULL DEFAULT '0',
`MOVE_SPD` int(3) NOT NULL DEFAULT '0',
`x` int(9) NOT NULL DEFAULT '0',
`y` int(9) NOT NULL DEFAULT '0',
`z` int(9) NOT NULL DEFAULT '0',
`canCraft` int(1) NOT NULL DEFAULT '0',
`M_UNK1` decimal(4,2) NOT NULL DEFAULT '0.00',
`M_UNK2` decimal(8,6) NOT NULL DEFAULT '0.000000',
`M_COL_R` decimal(3,1) NOT NULL DEFAULT '0.0',
`M_COL_H` decimal(4,1) NOT NULL DEFAULT '0.0',
`F_UNK1` decimal(4,2) NOT NULL DEFAULT '0.00',
`F_UNK2` decimal(8,6) NOT NULL DEFAULT '0.000000',
`F_COL_R` decimal(3,1) NOT NULL DEFAULT '0.0',
`F_COL_H` decimal(4,1) NOT NULL DEFAULT '0.0',
`items1` int(4) NOT NULL DEFAULT '0',
`items2` int(4) NOT NULL DEFAULT '0',
`items3` int(4) NOT NULL DEFAULT '0',
`items4` int(4) NOT NULL DEFAULT '0',
`items5` int(10) NOT NULL DEFAULT '0',
PRIMARY KEY (`ClassId`)
);
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `char_templates` VALUES ('0', 'Human Fighter', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('1', 'Warrior', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('2', 'Gladiator', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('3', 'Warlord', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('4', 'Human Knight', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('5', 'Paladin', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('6', 'Dark Avenger', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('7', 'Rogue', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('8', 'Treasure Hunter', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('9', 'Hawkeye', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('10', 'Human Mage', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('11', 'Human Wizard', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('12', 'Sorcerer', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('13', 'Necromancer', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('14', 'Warlock', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('15', 'Cleric', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('16', 'Bishop', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('17', 'Human Prophet', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('18', 'Elf Fighter', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('19', 'Elf Knight', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('20', 'Temple Knight', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('21', 'Swordsinger', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('22', 'Scout', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('23', 'Plains Walker', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('24', 'Silver Ranger', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('25', 'Elf Mage', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('26', 'Elf Wizard', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('27', 'Spellsinger', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('28', 'Elemental Summoner', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('29', 'Oracle', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('30', 'Elder', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('31', 'DE Fighter', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('32', 'Palus Knight', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('33', 'Shillien Knight', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('34', 'Bladedancer', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('35', 'Assassin', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('36', 'Abyss Walker', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('37', 'Phantom Ranger', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('38', 'DE Mage', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('39', 'DE Wizard', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('40', 'Spell Howler', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('41', 'Phantom Summoner', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('42', 'Shillien Oracle', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('43', 'Shillien Elder', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('44', 'Orc Fighter', '3', '40', '47', '26', '18', '12', '27', '4', '80', '6', '41', '300', '333', '31', '42', '31', '117', '-56693', '-113610', '-690', '0', '1.06', '1.144800', '11.0', '28.0', '1.06', '1.144800', '7.0', '27.0', '1147', '1146', '2368', '2369', '5588');
INSERT INTO `char_templates` VALUES ('45', 'Raider', '3', '40', '47', '26', '18', '12', '27', '4', '80', '6', '41', '300', '333', '31', '42', '31', '117', '-56693', '-113610', '-690', '0', '1.06', '1.144800', '11.0', '28.0', '1.06', '1.144800', '7.0', '27.0', '1147', '1146', '2368', '2369', '5588');
INSERT INTO `char_templates` VALUES ('46', 'Destroyer', '3', '40', '47', '26', '18', '12', '27', '4', '80', '6', '41', '300', '333', '31', '42', '31', '117', '-56693', '-113610', '-690', '0', '1.06', '1.144800', '11.0', '28.0', '1.06', '1.144800', '7.0', '27.0', '1147', '1146', '2368', '2369', '5588');
INSERT INTO `char_templates` VALUES ('47', 'Monk', '3', '40', '47', '26', '18', '12', '27', '4', '80', '6', '41', '300', '333', '31', '42', '31', '117', '-56682', '-113610', '-690', '0', '1.06', '1.144800', '11.0', '28.0', '1.06', '1.144800', '7.0', '27.0', '1147', '1146', '2368', '2369', '5588');
INSERT INTO `char_templates` VALUES ('48', 'Tyrant', '3', '40', '47', '26', '18', '12', '27', '4', '80', '6', '41', '300', '333', '31', '42', '31', '117', '-56693', '-113610', '-690', '0', '1.06', '1.144800', '11.0', '28.0', '1.06', '1.144800', '7.0', '27.0', '1147', '1146', '2368', '2369', '5588');
INSERT INTO `char_templates` VALUES ('49', 'Orc Mage', '3', '27', '31', '24', '31', '15', '42', '3', '54', '6', '41', '300', '333', '30', '41', '30', '121', '-56682', '-113730', '-690', '0', '1.04', '0.898560', '7.0', '27.5', '1.04', '0.898560', '8.0', '25.5', '425', '461', '2368', '5588', '0');
INSERT INTO `char_templates` VALUES ('50', 'Shaman', '3', '27', '31', '24', '31', '15', '42', '3', '54', '6', '41', '300', '333', '30', '41', '30', '121', '-56682', '-113730', '-690', '0', '1.04', '0.898560', '7.0', '27.5', '1.04', '0.898560', '8.0', '25.5', '425', '461', '2368', '5588', '0');
INSERT INTO `char_templates` VALUES ('51', 'Overlord', '3', '27', '31', '24', '31', '15', '42', '3', '54', '6', '41', '300', '333', '30', '41', '30', '121', '-56682', '-113730', '-690', '0', '1.04', '0.898560', '7.0', '27.5', '1.04', '0.898560', '8.0', '25.5', '425', '461', '2368', '5588', '0');
INSERT INTO `char_templates` VALUES ('52', 'Warcryer', '3', '27', '31', '24', '31', '15', '42', '3', '54', '6', '41', '300', '333', '30', '41', '30', '121', '-56682', '-113730', '-690', '0', '1.04', '0.898560', '7.0', '27.5', '1.04', '0.898560', '8.0', '25.5', '425', '461', '2368', '5588', '0');
INSERT INTO `char_templates` VALUES ('53', 'Dwarf Fighter', '4', '39', '45', '29', '20', '10', '27', '4', '80', '6', '41', '300', '333', '33', '43', '33', '115', '108512', '-174026', '-400', '1', '1.09', '1.487196', '9.0', '18.0', '1.09', '1.487196', '5.0', '19.0', '1147', '1146', '10', '2370', '5588');
INSERT INTO `char_templates` VALUES ('54', 'Scavenger', '4', '39', '45', '29', '20', '10', '27', '4', '80', '6', '41', '300', '333', '33', '43', '33', '115', '108512', '-174026', '-400', '1', '1.09', '1.487196', '9.0', '18.0', '1.09', '1.487196', '5.0', '19.0', '1147', '1146', '10', '2370', '5588');
INSERT INTO `char_templates` VALUES ('55', 'Bounty Hunter', '4', '39', '45', '29', '20', '10', '27', '4', '80', '6', '41', '300', '333', '33', '43', '33', '115', '108512', '-174026', '-400', '1', '1.09', '1.487196', '9.0', '18.0', '1.09', '1.487196', '5.0', '19.0', '1147', '1146', '10', '2370', '5588');
INSERT INTO `char_templates` VALUES ('56', 'Artisan', '4', '39', '45', '29', '20', '10', '27', '4', '80', '6', '41', '300', '333', '33', '43', '33', '115', '108512', '-174026', '-400', '1', '1.09', '1.487196', '9.0', '18.0', '1.09', '1.487196', '5.0', '19.0', '1147', '1146', '10', '2370', '5588');
INSERT INTO `char_templates` VALUES ('57', 'Warsmith', '4', '39', '45', '29', '20', '10', '27', '4', '80', '6', '41', '300', '333', '33', '43', '33', '115', '108512', '-174026', '-400', '1', '1.09', '1.487196', '9.0', '18.0', '1.09', '1.487196', '5.0', '19.0', '1147', '1146', '10', '2370', '5588');
INSERT INTO `char_templates` VALUES ('88', 'Duelist', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('89', 'DreadNought', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('90', 'Phoenix Knight', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('91', 'Hell Knight', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('92', 'Sagittarius', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('93', 'Adventurer', '0', '40', '43', '30', '21', '11', '25', '4', '80', '6', '41', '300', '333', '33', '44', '33', '115', '-71338', '258271', '-3104', '0', '1.10', '1.188000', '9.0', '23.0', '1.10', '1.188000', '8.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('94', 'Archmage', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('95', 'Soultaker', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('96', 'Arcana Lord', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('97', 'Cardinal', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('98', 'Hierophant', '0', '22', '27', '21', '41', '20', '39', '3', '54', '6', '41', '300', '333', '28', '40', '28', '120', '-90890', '248027', '-3570', '0', '1.01', '0.872640', '7.5', '22.8', '1.01', '0.872640', '6.5', '22.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('99', 'Eva Templar', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('100', 'Sword Muse', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('101', 'Wind Rider', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('102', 'Moonlight Sentinel', '1', '36', '36', '35', '23', '14', '26', '4', '80', '6', '41', '300', '333', '36', '46', '36', '125', '45978', '41196', '-3440', '0', '1.15', '1.242000', '7.5', '24.0', '1.15', '1.242000', '7.5', '23.0', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('103', 'Mystic Muse', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('104', 'Elemental Master', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('105', 'Eva Saint', '1', '21', '25', '24', '37', '23', '40', '3', '54', '6', '41', '300', '333', '30', '41', '30', '122', '46182', '41198', '-3440', '0', '1.04', '0.898560', '7.5', '24.0', '1.04', '0.898560', '7.5', '23.0', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('106', 'Shillien Templar', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('107', 'Spectral Dancer', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('108', 'Ghost Hunter', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('109', 'Ghost Sentinel', '2', '41', '32', '34', '25', '12', '26', '4', '80', '6', '41', '300', '333', '35', '45', '35', '122', '28377', '10916', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.14', '1.231200', '7.0', '23.5', '1147', '1146', '10', '2369', '5588');
INSERT INTO `char_templates` VALUES ('110', 'Storm Screamer', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('111', 'Spectral Master', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('112', 'Shillen Saint', '2', '23', '24', '23', '44', '19', '37', '3', '54', '6', '41', '300', '333', '29', '41', '29', '122', '28295', '11063', '-4224', '0', '1.14', '1.231200', '7.5', '24.0', '1.03', '0.889920', '7.0', '23.5', '425', '461', '6', '5588', '0');
INSERT INTO `char_templates` VALUES ('113', 'Titan', '3', '40', '47', '26', '18', '12', '27', '4', '80', '6', '41', '300', '333', '31', '42', '31', '117', '-56693', '-113610', '-690', '0', '1.06', '1.144800', '11.0', '28.0', '1.06', '1.144800', '7.0', '27.0', '1147', '1146', '2368', '2369', '5588');
INSERT INTO `char_templates` VALUES ('114', 'Grand Khauatari', '3', '40', '47', '26', '18', '12', '27', '4', '80', '6', '41', '300', '333', '31', '42', '31', '117', '-56693', '-113610', '-690', '0', '1.06', '1.144800', '11.0', '28.0', '1.06', '1.144800', '7.0', '27.0', '1147', '1146', '2368', '2369', '5588');
INSERT INTO `char_templates` VALUES ('115', 'Dominator', '3', '27', '31', '24', '31', '15', '42', '3', '54', '6', '41', '300', '333', '30', '41', '30', '121', '-56682', '-113730', '-690', '0', '1.04', '0.898560', '7.0', '27.5', '1.04', '0.898560', '8.0', '25.5', '425', '461', '2368', '5588', '0');
INSERT INTO `char_templates` VALUES ('116', 'Doomcryer', '3', '27', '31', '24', '31', '15', '42', '3', '54', '6', '41', '300', '333', '30', '41', '30', '121', '-56682', '-113730', '-690', '0', '1.04', '0.898560', '7.0', '27.5', '1.04', '0.898560', '8.0', '25.5', '425', '461', '2368', '5588', '0');
INSERT INTO `char_templates` VALUES ('117', 'Fortune Seeker', '4', '39', '45', '29', '20', '10', '27', '4', '80', '6', '41', '300', '333', '33', '43', '33', '115', '108512', '-174026', '-400', '1', '1.09', '1.487196', '9.0', '18.0', '1.09', '1.487196', '5.0', '19.0', '1147', '1146', '10', '2370', '5588');
INSERT INTO `char_templates` VALUES ('118', 'Maestro', '4', '39', '45', '29', '20', '10', '27', '4', '80', '6', '41', '300', '333', '33', '43', '33', '115', '108512', '-174026', '-400', '1', '1.09', '1.487196', '9.0', '18.0', '1.09', '1.487196', '5.0', '19.0', '1147', '1146', '10', '2370', '5588');
@@ -0,0 +1,8 @@
-- ----------------------------
-- Table structure for character_friends
-- ----------------------------
CREATE TABLE IF NOT EXISTS `character_friends` (
`char_id` INT NOT NULL default 0,
`friend_id` INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`char_id`,`friend_id`)
);
@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS `character_hennas` (
`char_obj_id` INT NOT NULL DEFAULT 0,
`symbol_id` INT,
`slot` INT NOT NULL DEFAULT 0,
`class_index` INT(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`char_obj_id`,`slot`,`class_index`)
);
@@ -0,0 +1,13 @@
-- ---------------------------
-- Table structure for character_macroses
-- ---------------------------
CREATE TABLE IF NOT EXISTS `character_macroses` (
`char_obj_id` INT NOT NULL DEFAULT 0,
`id` INT NOT NULL DEFAULT 0,
`icon` INT,
`name` VARCHAR(40) ,
`descr` VARCHAR(80) ,
`acronym` VARCHAR(4) ,
`commands` VARCHAR(255) ,
PRIMARY KEY (`char_obj_id`,`id`)
);
@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS `character_offline_trade` (
`char_id` int(11) NOT NULL,
`time` bigint(20) unsigned NOT NULL DEFAULT '0',
`type` tinyint(4) NOT NULL DEFAULT '0',
`title` varchar(50) DEFAULT NULL,
PRIMARY KEY (`char_id`)
);
@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS `character_offline_trade_items` (
`char_id` int(10) NOT NULL DEFAULT '0',
`item` int(10) NOT NULL DEFAULT '0',
`count` bigint(20) NOT NULL DEFAULT '0',
`price` bigint(20) NOT NULL DEFAULT '0',
PRIMARY KEY (`char_id`,`item`)
);
@@ -0,0 +1,11 @@
-- ----------------------------
-- Table structure for character_quests
-- ----------------------------
CREATE TABLE IF NOT EXISTS `character_quests` (
`char_id` INT NOT NULL DEFAULT 0,
`name` VARCHAR(40) NOT NULL DEFAULT '',
`var` VARCHAR(20) NOT NULL DEFAULT '',
`value` VARCHAR(255) ,
`class_index` int(1) NOT NULL default '0',
PRIMARY KEY (`char_id`,`name`,`var`,`class_index`)
);
@@ -0,0 +1,10 @@
-- ---------------------------
-- Table structure for character_recipebook
-- ---------------------------
CREATE TABLE IF NOT EXISTS character_recipebook (
char_id decimal(11) NOT NULL default 0,
id decimal(11) NOT NULL default 0,
class_index INT(1) NOT NULL DEFAULT 0,
type INT NOT NULL default 0,
PRIMARY KEY (id,char_id)
);
@@ -0,0 +1,8 @@
-- ----------------------------
-- Table structure for character_recommends
-- ----------------------------
CREATE TABLE IF NOT EXISTS character_recommends (
char_id INT NOT NULL default 0,
target_id INT(11) NOT NULL DEFAULT 0,
PRIMARY KEY (char_id,target_id)
);
@@ -0,0 +1,14 @@
-- ---------------------------
-- Table structure for character_shortcuts
-- ---------------------------
CREATE TABLE IF NOT EXISTS character_shortcuts (
char_obj_id decimal(11) NOT NULL default 0,
slot decimal(3) NOT NULL default 0,
page decimal(3) NOT NULL default 0,
type decimal(3) ,
shortcut_id decimal(16) ,
level varchar(4) ,
`class_index` int(1) NOT NULL default '0',
PRIMARY KEY (char_obj_id,slot,page,`class_index`),
KEY `shortcut_id` (`shortcut_id`)
);
@@ -0,0 +1,11 @@
-- ---------------------------
-- Table structure for character_skills
-- ---------------------------
CREATE TABLE IF NOT EXISTS character_skills (
char_obj_id INT NOT NULL default 0,
skill_id INT NOT NULL default 0,
skill_level varchar(5) ,
skill_name varchar(40),
`class_index` INT(1) NOT NULL DEFAULT 0,
PRIMARY KEY (char_obj_id,skill_id,`class_index`)
);
@@ -0,0 +1,16 @@
-- ---------------------------
-- Table structure for character_skills
-- ---------------------------
CREATE TABLE IF NOT EXISTS character_skills_save (
char_obj_id INT NOT NULL default 0,
skill_id INT NOT NULL default 0,
skill_level INT NOT NULL default 0,
effect_count INT NOT NULL default 0,
effect_cur_time INT NOT NULL default 0,
reuse_delay INT(8) NOT NULL DEFAULT 0,
systime BIGINT UNSIGNED NOT NULL DEFAULT 0,
restore_type INT(1) NOT NULL DEFAULT 0,
`class_index` INT(1) NOT NULL DEFAULT 0,
buff_index INT(2) NOT NULL default 0,
PRIMARY KEY (char_obj_id,skill_id,`class_index`)
);
@@ -0,0 +1,12 @@
-- ---------------------------
-- Table structure for character_subclasses
-- ---------------------------
CREATE TABLE IF NOT EXISTS `character_subclasses` (
`char_obj_id` decimal(11,0) NOT NULL default '0',
`class_id` int(2) NOT NULL default '0',
`exp` decimal(20,0) NOT NULL default '0',
`sp` decimal(11,0) NOT NULL default '0',
`level` int(2) NOT NULL default '40',
`class_index` int(1) NOT NULL default '0',
PRIMARY KEY (`char_obj_id`,`class_id`)
);
+77
View File
@@ -0,0 +1,77 @@
-- ---------------------------
-- Table structure for characters
-- ---------------------------
CREATE TABLE IF NOT EXISTS characters (
account_name varchar(45) default NULL,
obj_Id decimal(11,0) NOT NULL default '0',
char_name varchar(35) NOT NULL,
`level` decimal(11,0) default NULL,
maxHp decimal(11,0) default NULL,
curHp decimal(18,0) default NULL,
maxCp decimal(11,0) default NULL,
curCp decimal(18,0) default NULL,
maxMp decimal(11,0) default NULL,
curMp decimal(18,0) default NULL,
acc decimal(11,0) default NULL,
crit decimal(10,0) default NULL,
evasion decimal(11,0) default NULL,
mAtk decimal(11,0) default NULL,
mDef decimal(11,0) default NULL,
mSpd decimal(11,0) default NULL,
pAtk decimal(11,0) default NULL,
pDef decimal(11,0) default NULL,
pSpd decimal(11,0) default NULL,
runSpd decimal(11,0) default NULL,
walkSpd decimal(11,0) default NULL,
str decimal(11,0) default NULL,
con decimal(11,0) default NULL,
dex decimal(11,0) default NULL,
_int decimal(11,0) default NULL,
men decimal(11,0) default NULL,
wit decimal(11,0) default NULL,
face decimal(11,0) default NULL,
hairStyle decimal(11,0) default NULL,
hairColor decimal(11,0) default NULL,
sex decimal(11,0) default NULL,
heading decimal(11,0) default NULL,
x decimal(11,0) default NULL,
y decimal(11,0) default NULL,
z decimal(11,0) default NULL,
movement_multiplier decimal(9,8) default NULL,
attack_speed_multiplier decimal(10,9) default NULL,
colRad decimal(10,3) default NULL,
colHeight decimal(10,3) default NULL,
exp decimal(20,0) default NULL,
sp decimal(11,0) default NULL,
karma decimal(11,0) default NULL,
pvpkills decimal(11,0) default NULL,
pkkills decimal(11,0) default NULL,
clanid decimal(11,0) default NULL,
maxload decimal(11,0) default NULL,
race decimal(11,0) default NULL,
classid decimal(11,0) default NULL,
base_class int(2) NOT NULL default '0',
deletetime decimal(20,0) default NULL,
cancraft decimal(11,0) default NULL,
title varchar(16) default NULL,
rec_have int(3) NOT NULL default '0',
rec_left int(3) NOT NULL default '0',
accesslevel decimal(4,0) default NULL,
online decimal(1,0) default NULL,
onlinetime decimal(20,0) default NULL,
char_slot decimal(1) default NULL,
lastAccess decimal(20,0) default NULL,
clan_privs INT DEFAULT 0,
wantspeace decimal(1,0) DEFAULT 0,
clan_join_expiry_time DECIMAL(20,0) NOT NULL DEFAULT 0,
clan_create_expiry_time DECIMAL(20,0) NOT NULL DEFAULT 0,
in_jail decimal(1,0) DEFAULT 0,
jail_timer decimal(20,0) DEFAULT 0,
newbie int(1) NOT NULL DEFAULT 0,
nobless decimal(1,0) DEFAULT 0,
last_recom_date decimal(20,0) NOT NULL DEFAULT 0,
varka_ketra_ally int(1) NOT NULL DEFAULT 0,
aio_buffer int(1) NOT NULL DEFAULT 0,
PRIMARY KEY (obj_Id),
KEY `clanid` (`clanid`)
);
+25
View File
@@ -0,0 +1,25 @@
-- ---------------------------
-- Table structure for clan_data
-- ---------------------------
CREATE TABLE IF NOT EXISTS clan_data (
clan_id INT NOT NULL default 0,
clan_name varchar(45),
clan_level INT,
hasCastle INT,
ally_id INT,
ally_name varchar(45),
leader_id INT,
crest_id INT,
crest_large_id INT,
ally_crest_id INT,
auction_bid_at INT NOT NULL default 0,
char_penalty_expiry_time DECIMAL(20,0) NOT NULL DEFAULT 0,
recover_penalty_expiry_time DECIMAL(20,0) NOT NULL DEFAULT 0,
dissolving_expiry_time DECIMAL(20,0) NOT NULL DEFAULT 0,
ally_join_expiry_time DECIMAL(20,0) NOT NULL DEFAULT 0,
ally_penalty_expiry_time DECIMAL(20,0) NOT NULL DEFAULT 0,
ally_penalty_type DECIMAL(1) NOT NULL DEFAULT 0,
PRIMARY KEY (clan_id),
KEY `leader_id` (`leader_id`),
KEY `ally_id` (`ally_id`)
);
+13
View File
@@ -0,0 +1,13 @@
--
-- Table structure for `clan_wars`
--
CREATE TABLE IF NOT EXISTS `clan_wars` (
`clan1` varchar(35) NOT NULL default '',
`clan2` varchar(35) NOT NULL default '',
`wantspeace1` decimal(1,0) NOT NULL default '0',
`wantspeace2` decimal(1,0) NOT NULL default '0'
);
+50
View File
@@ -0,0 +1,50 @@
-- ---------------------------
-- Table structure for clanhall
-- ---------------------------
CREATE TABLE IF NOT EXISTS `clanhall` (
`id` int(11) NOT NULL default '0',
`name` varchar(40) NOT NULL default '',
`ownerId` int(11) NOT NULL default '0',
`lease` int(10) NOT NULL default '0',
`desc` text NOT NULL,
`location` varchar(15) NOT NULL default '',
`paidUntil` decimal(20,0) NOT NULL default '0',
`Grade` decimal(1,0) NOT NULL default '0',
`paid` int(1) NOT NULL default '0',
PRIMARY KEY (`id`,`name`),
KEY `id` (`id`)
);
-- ----------------------------
-- Records
-- ----------------------------
INSERT IGNORE INTO `clanhall` VALUES ('21', 'Partisan Hideaway', '0', '500000', 'Ol Mahum Partisan Hideaway', 'Dion', '0', '0', '0');
INSERT IGNORE INTO `clanhall` VALUES ('22', 'Moonstone Hall', '0', '500000', 'Clan hall located in the Town of Gludio', 'Gludio', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('23', 'Onyx Hall', '0', '500000', 'Clan hall located in the Town of Gludio', 'Gludio', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('24', 'Topaz Hall', '0', '500000', 'Clan hall located in the Town of Gludio', 'Gludio', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('25', 'Ruby Hall', '0', '500000', 'Clan hall located in the Town of Gludio', 'Gludio', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('26', 'Crystal Hall', '0', '500000', 'Clan hall located in Gludin Village', 'Gludin', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('27', 'Onyx Hall', '0', '500000', 'Clan hall located in Gludin Village', 'Gludin', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('28', 'Sapphire Hall', '0', '500000', 'Clan hall located in Gludin Village', 'Gludin', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('29', 'Moonstone Hall', '0', '500000', 'Clan hall located in Gludin Village', 'Gludin', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('30', 'Emerald Hall', '0', '500000', 'Clan hall located in Gludin Village', 'Gludin', '0', '2', '0');
INSERT IGNORE INTO `clanhall` VALUES ('31', 'The Atramental Barracks', '0', '500000', 'Clan hall located in the Town of Dion', 'Dion', '0', '1', '0');
INSERT IGNORE INTO `clanhall` VALUES ('32', 'The Scarlet Barracks', '0', '500000', 'Clan hall located in the Town of Dion', 'Dion', '0', '1', '0');
INSERT IGNORE INTO `clanhall` VALUES ('33', 'The Viridian Barracks', '0', '500000', 'Clan hall located in the Town of Dion', 'Dion', '0', '1', '0');
INSERT IGNORE INTO `clanhall` VALUES ('34', 'Devastated Castle', '0', '500000', 'Contestable Clan Hall', 'Aden', '0', '0', '0');
INSERT IGNORE INTO `clanhall` VALUES ('35', 'Bandit Stronghold', '0', '500000', 'Contestable Clan Hall', 'Oren', '0', '0', '0');
INSERT IGNORE INTO `clanhall` VALUES ('36', 'The Golden Chamber', '0', '500000', 'Clan hall located in the Town of Aden', 'Aden', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('37', 'The Silver Chamber', '0', '500000', 'Clan hall located in the Town of Aden', 'Aden', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('38', 'The Mithril Chamber', '0', '500000', 'Clan hall located in the Town of Aden', 'Aden', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('39', 'Silver Manor', '0', '500000', 'Clan hall located in the Town of Aden', 'Aden', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('40', 'Gold Manor', '0', '500000', 'Clan hall located in the Town of Aden', 'Aden', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('41', 'The Bronze Chamber', '0', '500000', 'Clan hall located in the Town of Aden', 'Aden', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('42', 'The Golden Chamber', '0', '500000', 'Clan hall located in the Town of Giran', 'Giran', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('43', 'The Silver Chamber', '0', '500000', 'Clan hall located in the Town of Giran', 'Giran', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('44', 'The Mithril Chamber', '0', '500000', 'Clan hall located in the Town of Giran', 'Giran', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('45', 'The Bronze Chamber', '0', '500000', 'Clan hall located in the Town of Giran', 'Giran', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('46', 'Silver Manor', '0', '500000', 'Clan hall located in the Town of Giran', 'Giran', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('47', 'Moonstone Hall', '0', '500000', 'Clan hall located in the Town of Goddard', 'Goddard', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('48', 'Onyx Hall', '0', '500000', 'Clan hall located in the Town of Goddard', 'Goddard', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('49', 'Emerald Hall', '0', '500000', 'Clan hall located in the Town of Goddard', 'Goddard', '0', '3', '0');
INSERT IGNORE INTO `clanhall` VALUES ('50', 'Sapphire Hall', '0', '500000', 'Clan hall located in the Town of Goddard', 'Goddard', '0', '3', '0');
@@ -0,0 +1,12 @@
-- ---------------------------
-- Table structure for `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` decimal(20,0) NOT NULL default '0',
PRIMARY KEY (`hall_id`,`type`)
);
+105
View File
@@ -0,0 +1,105 @@
#----------------------------
# Table structure for class_list
#----------------------------
DROP TABLE IF EXISTS class_list;
CREATE TABLE `class_list` (
`class_name` varchar(19) NOT NULL default '',
`id` int(10) unsigned NOT NULL default '0',
`parent_id` int(11) NOT NULL default '0',
PRIMARY KEY (`id`)
);
#----------------------------
# Records for table class_list
#----------------------------
INSERT INTO `class_list` VALUES
('H_Fighter', 0, -1),
('H_Warrior', 1, 0),
('H_Gladiator', 2, 1),
('H_Duelist', 88, 2),
('H_Warlord', 3, 1),
('H_Dreadnought', 89, 3),
('H_Knight', 4, 0),
('H_Paladin', 5, 4),
('H_PhoenixKnight', 90, 5),
('H_DarkAvenger', 6, 4),
('H_HellKnight', 91, 6),
('H_Rogue', 7, 0),
('H_TreasureHunter', 8, 7),
('H_Adventurer', 93, 8),
('H_Hawkeye', 9, 7),
('H_Sagittarius', 92, 9),
('H_Mage', 10, -1),
('H_Wizard', 11, 10),
('H_Sorceror', 12, 11),
('H_Archmage', 94, 12),
('H_Necromancer', 13, 11),
('H_Soultaker', 95, 13),
('H_Warlock', 14, 11),
('H_ArcanaLord', 96, 14),
('H_Cleric', 15, 10),
('H_Bishop', 16, 15),
('H_Cardinal', 97, 16),
('H_Prophet', 17, 15),
('H_Hierophant', 98, 17),
('E_Fighter', 18, -1),
('E_Knight', 19, 18),
('E_TempleKnight', 20, 19),
('E_EvaTemplar', 99, 20),
('E_SwordSinger', 21, 19),
('E_SwordMuse', 100, 21),
('E_Scout', 22, 18),
('E_PlainsWalker', 23, 22),
('E_WindRider', 101, 23),
('E_SilverRanger', 24, 22),
('E_MoonlightSentinel', 102, 24),
('E_Mage', 25, -1),
('E_Wizard', 26, 25),
('E_SpellSinger', 27, 26),
('E_MysticMuse', 103, 27),
('E_ElementalSummoner', 28, 26),
('E_ElementalMaster', 104, 28),
('E_Oracle', 29, 25),
('E_Elder', 30, 29),
('E_EvaSaint', 105, 30),
('DE_Fighter', 31, -1),
('DE_PaulusKnight', 32, 31),
('DE_ShillienKnight', 33, 32),
('DE_ShillienTemplar', 106, 33),
('DE_BladeDancer', 34, 32),
('DE_SpectralDancer', 107, 34),
('DE_Assassin', 35, 31),
('DE_AbyssWalker', 36, 35),
('DE_GhostHunter', 108, 36),
('DE_PhantomRanger', 37, 35),
('DE_GhostSentinel', 109, 37),
('DE_Mage', 38, -1),
('DE_DarkWizard', 39, 38),
('DE_Spellhowler', 40, 39),
('DE_StormScreamer', 110, 40),
('DE_PhantomSummoner', 41, 39),
('DE_SpectralMaster', 111, 41),
('DE_ShillienOracle', 42, 38),
('DE_ShillienElder', 43, 42),
('DE_ShillienSaint', 112, 43),
('O_Fighter', 44, -1),
('O_Raider', 45, 44),
('O_Destroyer', 46, 45),
('O_Titan', 113, 46),
('O_Monk', 47, 44),
('O_Tyrant', 48, 47),
('O_GrandKhauatari', 114, 48),
('O_Mage', 49, -1),
('O_Shaman', 50, 49),
('O_Overlord', 51, 50),
('O_Dominator', 115, 51),
('O_Warcryer', 52, 50),
('O_Doomcryer', 116, 52),
('D_Fighter', 53, -1),
('D_Scavenger', 54, 53),
('D_BountyHunter', 55, 54),
('D_FortuneSeeker', 117, 55),
('D_Artisan', 56, 53),
('D_Warsmith', 57, 56),
('D_Maestro', 118, 57);
@@ -0,0 +1,27 @@
-- ----------------------------
-- Table structure for custom_armor
-- ----------------------------
DROP TABLE IF EXISTS custom_armor;
CREATE TABLE `custom_armor` (
`item_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(70) DEFAULT NULL,
`bodypart` varchar(15) NOT NULL DEFAULT '',
`crystallizable` varchar(5) NOT NULL DEFAULT '',
`armor_type` varchar(5) NOT NULL DEFAULT '',
`weight` int(5) NOT NULL DEFAULT '0',
`material` varchar(15) NOT NULL DEFAULT '',
`crystal_type` varchar(4) NOT NULL DEFAULT '',
`avoid_modify` int(1) NOT NULL DEFAULT '0',
`p_def` int(3) NOT NULL DEFAULT '0',
`m_def` int(2) NOT NULL DEFAULT '0',
`mp_bonus` int(3) NOT NULL DEFAULT '0',
`price` int(11) NOT NULL DEFAULT '0',
`crystal_count` int(4) DEFAULT NULL,
`sellable` varchar(5) DEFAULT 'true',
`dropable` varchar(5) DEFAULT 'true',
`destroyable` varchar(5) DEFAULT 'true',
`tradeable` varchar(5) DEFAULT 'true',
`item_skill_id` decimal(11,0) NOT NULL DEFAULT '0',
`item_skill_lvl` decimal(11,0) NOT NULL DEFAULT '0',
PRIMARY KEY (`item_id`)
);
@@ -0,0 +1,17 @@
--
-- Table structure for table `custom_armorsets`
--
DROP TABLE IF EXISTS custom_armorsets;
CREATE TABLE custom_armorsets (
id int(3) NOT NULL auto_increment,
chest decimal(11,0) NOT NULL default '0',
legs decimal(11,0) NOT NULL default '0',
head decimal(11,0) NOT NULL default '0',
gloves decimal(11,0) NOT NULL default '0',
feet decimal(11,0) NOT NULL default '0',
skill_id decimal(11,0) NOT NULL default '0',
shield decimal(11,0) NOT NULL default '0',
shield_skill_id decimal(11,0) NOT NULL default '0',
PRIMARY KEY (id,chest)
);
@@ -0,0 +1,14 @@
-- ----------------------------
-- Table structure for custom_droplist
-- ----------------------------
DROP TABLE IF EXISTS `custom_droplist`;
CREATE TABLE `custom_droplist` (
`mobId` int(11) NOT NULL DEFAULT '0',
`itemId` int(11) NOT NULL DEFAULT '0',
`min` int(11) NOT NULL DEFAULT '0',
`max` int(11) NOT NULL DEFAULT '0',
`category` int(11) NOT NULL DEFAULT '0',
`chance` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`mobId`,`itemId`,`category`),
KEY `key_mobId` (`mobId`)
);
@@ -0,0 +1,23 @@
-- ----------------------------
-- Table structure for custom_etcitem
-- ----------------------------
DROP TABLE IF EXISTS `custom_etcitem`;
CREATE TABLE `custom_etcitem` (
`item_id` decimal(11,0) NOT NULL DEFAULT '0',
`name` varchar(100) DEFAULT NULL,
`crystallizable` varchar(5) DEFAULT NULL,
`item_type` varchar(14) DEFAULT NULL,
`weight` decimal(4,0) DEFAULT NULL,
`consume_type` varchar(9) DEFAULT NULL,
`material` varchar(11) DEFAULT NULL,
`crystal_type` varchar(4) NOT NULL DEFAULT 'none',
`price` decimal(11,0) DEFAULT NULL,
`crystal_count` int(4) DEFAULT NULL,
`sellable` varchar(5) DEFAULT 'true',
`dropable` varchar(5) DEFAULT 'true',
`destroyable` varchar(5) DEFAULT 'true',
`tradeable` varchar(5) DEFAULT 'true',
`oldname` varchar(100) NOT NULL DEFAULT '',
`oldtype` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`item_id`)
);
@@ -0,0 +1,15 @@
-- ----------------------------
-- Table structure for `custom_merchant_buylists`
-- ----------------------------
DROP TABLE IF EXISTS `custom_merchant_buylists`;
CREATE TABLE `custom_merchant_buylists` (
`item_id` decimal(9,0) NOT NULL DEFAULT '0',
`price` decimal(11,0) NOT NULL DEFAULT '0',
`shop_id` decimal(9,0) NOT NULL DEFAULT '0',
`order` decimal(4,0) NOT NULL DEFAULT '0',
`count` INT( 11 ) NOT NULL DEFAULT '-1',
`currentCount` INT( 11 ) NOT NULL DEFAULT '-1',
time INT NOT NULL DEFAULT '0',
savetimer DECIMAL(20,0) NOT NULL DEFAULT '0',
PRIMARY KEY (`shop_id`,`order`)
);
@@ -0,0 +1,9 @@
-- ----------------------------
-- Table structure for `custom_merchant_shopids`
-- ----------------------------
DROP TABLE IF EXISTS `custom_merchant_shopids`;
CREATE TABLE `custom_merchant_shopids` (
`shop_id` decimal(9,0) NOT NULL DEFAULT '0',
`npc_id` varchar(9) DEFAULT NULL,
PRIMARY KEY (`shop_id`)
);
@@ -0,0 +1,52 @@
-- ----------------------------
-- Table structure for `custom_npc`
-- ----------------------------
DROP TABLE IF EXISTS `custom_npc`;
CREATE TABLE `custom_npc` (
`id` decimal(11,0) NOT NULL DEFAULT '0',
`idTemplate` int(11) NOT NULL DEFAULT '0',
`name` varchar(200) DEFAULT NULL,
`serverSideName` int(1) DEFAULT '0',
`title` varchar(45) DEFAULT '',
`serverSideTitle` int(1) DEFAULT '0',
`class` varchar(200) DEFAULT NULL,
`collision_radius` decimal(5,2) DEFAULT NULL,
`collision_height` decimal(5,2) DEFAULT NULL,
`level` decimal(2,0) DEFAULT NULL,
`sex` varchar(6) DEFAULT NULL,
`type` varchar(20) DEFAULT NULL,
`attackrange` int(11) DEFAULT NULL,
`hp` decimal(8,0) DEFAULT NULL,
`mp` decimal(5,0) DEFAULT NULL,
`hpreg` decimal(8,2) DEFAULT NULL,
`mpreg` decimal(5,2) DEFAULT NULL,
`str` decimal(7,0) DEFAULT NULL,
`con` decimal(7,0) DEFAULT NULL,
`dex` decimal(7,0) DEFAULT NULL,
`int` decimal(7,0) DEFAULT NULL,
`wit` decimal(7,0) DEFAULT NULL,
`men` decimal(7,0) DEFAULT NULL,
`exp` decimal(9,0) DEFAULT NULL,
`sp` decimal(8,0) DEFAULT NULL,
`patk` decimal(5,0) DEFAULT NULL,
`pdef` decimal(5,0) DEFAULT NULL,
`matk` decimal(5,0) DEFAULT NULL,
`mdef` decimal(5,0) DEFAULT NULL,
`atkspd` decimal(3,0) DEFAULT NULL,
`aggro` decimal(6,0) DEFAULT NULL,
`matkspd` decimal(4,0) DEFAULT NULL,
`rhand` decimal(4,0) DEFAULT NULL,
`lhand` decimal(4,0) DEFAULT NULL,
`armor` decimal(1,0) DEFAULT NULL,
`walkspd` decimal(3,0) DEFAULT NULL,
`runspd` decimal(3,0) DEFAULT NULL,
`faction_id` varchar(40) DEFAULT NULL,
`faction_range` decimal(4,0) DEFAULT NULL,
`isUndead` int(11) DEFAULT '0',
`absorb_level` decimal(2,0) DEFAULT '0',
`ss` int(4) DEFAULT '0',
`bss` int(4) DEFAULT '0',
`ss_rate` int(3) DEFAULT '0',
`AI` varchar(8) DEFAULT "fighter",
PRIMARY KEY (`id`)
);
@@ -0,0 +1,10 @@
--
-- Table structure for table `custom_npcskills`
--
DROP TABLE IF EXISTS custom_npcskills;
CREATE TABLE custom_npcskills (
npcid int(11) NOT NULL default '0',
skillid int(11) NOT NULL default '0',
level int(11) NOT NULL default '0',
PRIMARY KEY (npcid,skillid,level)
);
@@ -0,0 +1,21 @@
-- ----------------------------
-- Table structure for custom_spawnlist
-- ----------------------------
DROP TABLE IF EXISTS `custom_spawnlist`;
CREATE TABLE `custom_spawnlist` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`location` varchar(40) NOT NULL DEFAULT '',
`count` int(9) NOT NULL DEFAULT '0',
`npc_templateid` int(9) NOT NULL DEFAULT '0',
`locx` int(9) NOT NULL DEFAULT '0',
`locy` int(9) NOT NULL DEFAULT '0',
`locz` int(9) NOT NULL DEFAULT '0',
`randomx` int(9) NOT NULL DEFAULT '0',
`randomy` int(9) NOT NULL DEFAULT '0',
`heading` int(9) NOT NULL DEFAULT '0',
`respawn_delay` int(9) NOT NULL DEFAULT '0',
`loc_id` int(9) NOT NULL DEFAULT '0',
`periodOfDay` decimal(2,0) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `key_npc_templateid` (`npc_templateid`)
);
@@ -0,0 +1,14 @@
-- ----------------------------
-- Table structure for `custom_teleport`
-- ----------------------------
DROP TABLE IF EXISTS `custom_teleport`;
CREATE TABLE `custom_teleport` (
`Description` varchar(75) DEFAULT NULL,
`id` decimal(11,0) NOT NULL DEFAULT '0',
`loc_x` decimal(9,0) DEFAULT NULL,
`loc_y` decimal(9,0) DEFAULT NULL,
`loc_z` decimal(9,0) DEFAULT NULL,
`price` decimal(6,0) DEFAULT NULL,
`fornoble` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
);
@@ -0,0 +1,41 @@
-- ----------------------------
-- Table structure for custom_weapon
-- ----------------------------
DROP TABLE IF EXISTS `custom_weapon`;
CREATE TABLE `custom_weapon` (
`item_id` decimal(11,0) NOT NULL DEFAULT '0',
`name` varchar(70) DEFAULT NULL,
`bodypart` varchar(15) DEFAULT NULL,
`crystallizable` varchar(5) DEFAULT NULL,
`weight` decimal(4,0) DEFAULT NULL,
`soulshots` decimal(2,0) DEFAULT NULL,
`spiritshots` decimal(1,0) DEFAULT NULL,
`material` varchar(11) DEFAULT NULL,
`crystal_type` varchar(4) DEFAULT NULL,
`p_dam` decimal(5,0) DEFAULT NULL,
`rnd_dam` decimal(2,0) DEFAULT NULL,
`weaponType` varchar(8) DEFAULT NULL,
`critical` decimal(2,0) DEFAULT NULL,
`hit_modify` decimal(6,5) DEFAULT NULL,
`avoid_modify` decimal(2,0) DEFAULT NULL,
`shield_def` decimal(3,0) DEFAULT NULL,
`shield_def_rate` decimal(2,0) DEFAULT NULL,
`atk_speed` decimal(3,0) DEFAULT NULL,
`mp_consume` decimal(2,0) DEFAULT NULL,
`m_dam` decimal(3,0) DEFAULT NULL,
`price` decimal(11,0) DEFAULT NULL,
`crystal_count` int(4) DEFAULT NULL,
`sellable` varchar(5) DEFAULT 'true',
`dropable` varchar(5) DEFAULT 'true',
`destroyable` varchar(5) DEFAULT 'true',
`tradeable` varchar(5) DEFAULT 'true',
`item_skill_id` decimal(11,0) NOT NULL DEFAULT '0',
`item_skill_lvl` decimal(11,0) NOT NULL DEFAULT '0',
`onCast_skill_id` decimal(11,0) NOT NULL DEFAULT '0',
`onCast_skill_lvl` decimal(11,0) NOT NULL DEFAULT '0',
`onCast_skill_chance` decimal(11,0) NOT NULL DEFAULT '0',
`onCrit_skill_id` decimal(11,0) NOT NULL DEFAULT '0',
`onCrit_skill_lvl` decimal(11,0) NOT NULL DEFAULT '0',
`onCrit_skill_chance` decimal(11,0) NOT NULL DEFAULT '0',
PRIMARY KEY (`item_id`)
);
@@ -0,0 +1,93 @@
-- ----------------------------
-- Table structure for dimensional_rift
-- ----------------------------
DROP TABLE IF EXISTS `dimensional_rift`;
CREATE TABLE `dimensional_rift` (
`type` tinyint(1) NOT NULL,
`room_id` tinyint(1) NOT NULL,
`xMin` int(11) NOT NULL,
`xMax` int(11) NOT NULL,
`yMin` int(11) NOT NULL,
`yMax` int(11) NOT NULL,
`zMin` int(11) NOT NULL,
`zMax` int(11) NOT NULL,
`xT` int(11) NOT NULL,
`yT` int(11) NOT NULL,
`zT` int(11) NOT NULL,
`boss` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`type`,`room_id`)
);
-- ----------------------------
-- Records for table dimensional_rift
-- ----------------------------
INSERT INTO `dimensional_rift` VALUES
(0, 0, -115440, -114160, -182160, -178048, -6816, -6240, -114790, -180576, -6752, 0), -- peace zone (waiting room)
(0, 1, -120576, -109024, -187328, -172880, -6816, -6240, 0, 0, 0, 0), -- dimensional rift zone
-- Recruit Area
(1, 1, -112368, -111584, -182832, -182064, -6816, -6240, -111976, -182448, -6752, 0), -- room 1 (small / 8 mobs)
(1, 2, -111472, -110704, -182832, -182064, -6816, -6240, -111088, -182448, -6752, 0), -- room 2 (small / 8 mobs)
(1, 3, -110688, -109904, -180944, -180176, -6816, -6240, -110296, -180560, -6752, 0), -- room 3 (small / 6 mobs)
(1, 4, -109808, -109024, -180944, -180176, -6816, -6240, -109416, -180560, -6752, 0), -- room 4 (small / 6 mobs)
(1, 5, -114032, -112496, -181968, -181072, -6816, -6240, -113264, -181520, -6752, 0), -- room 5 (large / 6 mobs + 6 chests)
(1, 6, -112368, -110816, -181008, -180112, -6816, -6240, -111592, -180560, -6752, 0), -- room 6 (large / 12 mobs)
(1, 7, -110576, -109024, -182896, -182000, -6816, -6240, -109800, -182448, -6752, 0), -- room 7 (large / 8 mobs + 4 chests)
(1, 8, -112368, -110816, -181968, -181072, -6816, -6240, -111592, -181520, -6752, 0), -- room 8 (large / 12 mobs)
(1, 9, -110688, -109136, -181968, -181072, -6816, -6240, -109912, -181520, -6752, 1), -- room 9 (large / boss)
-- Soldier Area
(2, 1, -112368, -111584, -180016, -179232, -6816, -6240, -111976, -179624, -6752, 0), -- room 1 (small / 8 mobs)
(2, 2, -111472, -110704, -180016, -179232, -6816, -6240, -111088, -179624, -6752, 0), -- room 2 (small / 8 mobs)
(2, 3, -110688, -109904, -178128, -177360, -6816, -6240, -110296, -177744, -6752, 0), -- room 3 (small / 6 mobs)
(2, 4, -109808, -109024, -178128, -177360, -6816, -6240, -109416, -177744, -6752, 0), -- room 4 (small / 6 mobs)
(2, 5, -114032, -112496, -179136, -178240, -6816, -6240, -113264, -178688, -6752, 0), -- room 5 (large / 6 mobs + 6 chests)
(2, 6, -112368, -110816, -178192, -177296, -6816, -6240, -111592, -177744, -6752, 0), -- room 6 (large / 12 mobs)
(2, 7, -110576, -109024, -180064, -179168, -6816, -6240, -109800, -179624, -6752, 0), -- room 7 (large / 8 mobs + 4 chests)
(2, 8, -112368, -110816, -179136, -178240, -6816, -6240, -111592, -178688, -6752, 0), -- room 8 (large / 12 mobs)
(2, 9, -110688, -109136, -179136, -178240, -6816, -6240, -109912, -178688, -6752, 1), -- room 9 (large / boss)
-- Officer Area
(3, 1, -114256, -113488, -176208, -175440, -6816, -6240, -113872, -175824, -6752, 0), -- room 1 (small / 8 mobs)
(3, 2, -114256, -113488, -175328, -174560, -6816, -6240, -113872, -174944, -6752, 0), -- room 2 (small / 8 mobs)
(3, 3, -116144, -115360, -174544, -173760, -6816, -6240, -115752, -174152, -6752, 0), -- room 3 (small / 6 mobs)
(3, 4, -116144, -115360, -173648, -172880, -6816, -6240, -115752, -173264, -6752, 0), -- room 4 (small / 6 mobs)
(3, 5, -115248, -114352, -177888, -176352, -6816, -6240, -114800, -177120, -6752, 0), -- room 5 (large / 6 mobs + 6 chests)
(3, 6, -116208, -115312, -176208, -174672, -6816, -6240, -115760, -175440, -6752, 0), -- room 6 (large / 12 mobs)
(3, 7, -114320, -113424, -174416, -172880, -6816, -6240, -113872, -173648, -6752, 0), -- room 7 (large / 8 mobs + 4 chests)
(3, 8, -115248, -114352, -176208, -174672, -6816, -6240, -114800, -175440, -6752, 0), -- room 8 (large / 12 mobs)
(3, 9, -115248, -114352, -174528, -172992, -6816, -6240, -114800, -173832, -6752, 1), -- room 9 (large / boss)
-- Captain Area
(4, 1, -118016, -117248, -178144, -177376, -6816, -6240, -117632, -177760, -6752, 0), -- room 1 (small / 8 mobs)
(4, 2, -118896, -118128, -178144, -177376, -6816, -6240, -118512, -177760, -6752, 0), -- room 2 (small / 8 mobs)
(4, 3, -119696, -118912, -180032, -179248, -6816, -6240, -119304, -179640, -6752, 0), -- room 3 (small / 6 mobs)
(4, 4, -120576, -119808, -180032, -179248, -6816, -6240, -120192, -179640, -6752, 0), -- room 4 (small / 6 mobs)
(4, 5, -117104, -115568, -179136, -178240, -6816, -6240, -116336, -178688, -6752, 0), -- room 5 (large / 6 mobs + 6 chests)
(4, 6, -118784, -117248, -180096, -179200, -6816, -6240, -118016, -179648, -6752, 0), -- room 6 (large / 12 mobs)
(4, 7, -120576, -119040, -178208, -177312, -6816, -6240, -119808, -177760, -6752, 0), -- room 7 (large / 8 mobs + 4 chests)
(4, 8, -118784, -117248, -179136, -178240, -6816, -6240, -118016, -178688, -6752, 0), -- room 8 (large / 12 mobs)
(4, 9, -120464, -118928, -179136, -178240, -6816, -6240, -119696, -178688, -6752, 1), -- room 9 (large / boss)
-- Commander Area
(5, 1, -118016, -117248, -180976, -180192, -6816, -6240, -117632, -180584, -6752, 0), -- room 1 (small / 8 mobs)
(5, 2, -118896, -118128, -180976, -180192, -6816, -6240, -118512, -180584, -6752, 0), -- room 2 (small / 8 mobs)
(5, 3, -119696, -118912, -182848, -182080, -6816, -6240, -119304, -182464, -6752, 0), -- room 3 (small / 6 mobs)
(5, 4, -120576, -119808, -182848, -182080, -6816, -6240, -120192, -182464, -6752, 0), -- room 4 (small / 6 mobs)
(5, 5, -117104, -115568, -181968, -181072, -6816, -6240, -116336, -181520, -6752, 0), -- room 5 (large / 6 mobs + 6 chests)
(5, 6, -118784, -117248, -182912, -182016, -6816, -6240, -118016, -182464, -6752, 0), -- room 6 (large / 12 mobs)
(5, 7, -120576, -119040, -181040, -180144, -6816, -6240, -119808, -180592, -6752, 0), -- room 7 (large / 8 mobs + 4 chests)
(5, 8, -118784, -117248, -181968, -181072, -6816, -6240, -118016, -181520, -6752, 0), -- room 8 (large / 12 mobs)
(5, 9, -120464, -118928, -181968, -181072, -6816, -6240, -119696, -181520, -6752, 1), -- room 9 (large / boss)
-- Hero Area
(6, 1, -116112, -115344, -184768, -184000, -6816, -6240, -115728, -184384, -6752, 0), -- room 3 (small / 6 mobs)
(6, 2, -116112, -115344, -185648, -184880, -6816, -6240, -115728, -185264, -6752, 0), -- room 4 (small / 6 mobs)
(6, 3, -114240, -113472, -186448, -185680, -6816, -6240, -113856, -186064, -6752, 0), -- room 1 (small / 8 mobs)
(6, 4, -114240, -113472, -187328, -186560, -6816, -6240, -113856, -186944, -6752, 0), -- room 2 (small / 8 mobs)
(6, 5, -115248, -114352, -183856, -182320, -6816, -6240, -114800, -183088, -6752, 0), -- room 5 (large / 6 mobs + 6 chests)
(6, 6, -114304, -113408, -185536, -184000, -6816, -6240, -113856, -184768, -6752, 0), -- room 6 (large / 12 mobs)
(6, 7, -116176, -115280, -187328, -185792, -6816, -6240, -115728, -186560, -6752, 0), -- room 7 (large / 8 mobs + 4 chests)
(6, 8, -115248, -114352, -185536, -184000, -6816, -6240, -114800, -184768, -6752, 0), -- room 8 (large / 12 mobs)
(6, 9, -115248, -114352, -187216, -185680, -6816, -6240, -114800, -186448, -6752, 1); -- room 9 (large / boss)
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+212
View File
@@ -0,0 +1,212 @@
--
-- Table structure for fish
--
DROP TABLE IF EXISTS `fish`;
CREATE TABLE `fish` (
`id` int(5) NOT NULL default '0',
`level` int(5) NOT NULL default '0',
`name` varchar(40) NOT NULL default '',
`hp` int(5) NOT NULL default '0',
`hpregen` int(3) NOT NULL default '5',
`fish_type` int(1) NOT NULL default '0', -- 0 = wide, 1 = swift, 2 = ugly, 3 = box, 4 = easy_wide, 5 = easy_swift, 6 = easy_ugly
`fish_group` int(1) NOT NULL default '0', -- 0 = easy, 1 = normal
`fish_guts` INT(4) NOT NULL default '0',
`guts_check_time` INT(4) NOT NULL default '0',
`wait_time` INT(5) NOT NULL default '0',
`combat_time` INT(5) NOT NULL default '0',
PRIMARY KEY (`id`,`level`)
);
--
-- Records for table fish
--
INSERT INTO `fish` VALUES
(6411,1,'Small Green Nimble Fish',100,4,1,1,500,5000,20000,24000),
(6412,1,'Small Green Ugly Fish',116,4,2,1,502,5000,20000,27000),
(6413,1,'Small Green Pudgy Fish',132,4,0,1,504,5000,20000,31000),
(6414,2,'Green Nimble Fish',150,6,1,1,506,5000,20000,25000),
(6415,2,'Green Ugly Fish',168,6,2,1,508,5000,20000,28000),
(6416,2,'Green Pudgy Fish',188,6,0,1,510,5000,20000,31000),
(6417,3,'Large Green Nimble Fish',208,8,1,1,512,5000,20000,26000),
(6418,3,'Large Green Ugly Fish',230,8,2,1,514,5000,20000,29000),
(6419,3,'Large Green Pudgy Fish',252,8,0,1,516,5000,20000,32000),
(6420,4,'Small Jade Nimble Fish',276,10,1,1,518,5000,20000,28000),
(6421,4,'Small Jade Ugly Fish',300,10,2,1,520,5000,20000,31000),
(6422,4,'Small Jade Fat Fish',310,10,0,1,522,5000,20000,32000),
(6423,5,'Jade Nimble Fish',320,11,1,1,524,5000,20000,30000),
(6424,5,'Jade Ugly Fish',330,11,2,1,526,4000,20000,31000),
(6425,5,'Jade Fat Fish',340,11,0,1,528,4000,20000,32000),
(6426,6,'Big Jade Nimble Fish',350,12,1,1,530,4000,20000,30000),
(6427,6,'Big Jade Ugly Fish',360,12,2,1,532,4000,20000,31000),
(6428,6,'Big Jade Fat Fish',370,12,0,1,534,4000,20000,32000),
(6429,7,'Small Blue Nimble Fish',380,12,1,1,536,4000,20000,31000),
(6430,7,'Small Blue Ugly Fish',390,13,2,1,538,4000,20000,31000),
(6431,7,'Small Blue Fat Fish',400,13,0,1,540,4000,20000,32000),
(6432,8,'Blue Nimble Fish',410,13,1,1,542,4000,20000,31000),
(6433,8,'Blue Ugly Fish',420,13,2,1,544,4000,20000,32000),
(6434,8,'Blue Fat Fish',430,14,0,1,546,4000,20000,31000),
(6435,9,'Big Blue Nimble Fish',506,17,1,1,548,4000,20000,29000),
(6436,9,'Big Blue Ugly Fish',518,17,2,1,550,4000,20000,30000),
(6437,9,'Big Blue Fat Fish',529,17,0,1,552,4000,20000,31000),
(6438,10,'Small Yellow Nimble Fish',541,18,1,1,554,4000,20000,30000),
(6439,10,'Small Yellow Ugly Fish',552,18,2,1,556,4000,20000,30000),
(6440,10,'Small Yellow Fat Fish',564,18,0,1,558,4000,20000,31000),
(6441,11,'Yellow Nimble Fish',575,19,1,1,560,4000,20000,30000),
(6442,11,'Yellow Ugly Fish',587,19,2,1,562,4000,20000,31000),
(6443,11,'Yellow Fat Fish',598,19,0,1,564,4000,20000,31000),
(6444,12,'Big Yellow Nimble Fish',610,20,1,1,566,4000,20000,30000),
(6445,12,'Big Yellow Ugly Fish',621,20,2,1,568,4000,20000,31000),
(6446,12,'Big Yellow Fat Fish',633,20,0,1,570,4000,20000,31000),
(6447,13,'Small Orange Nimble Fish',644,21,1,1,572,4000,20000,30000),
(6448,13,'Small Orange Ugly Fish',656,21,2,1,574,4000,20000,31000),
(6449,13,'Small Orange Fat Fish',667,21,0,1,576,3000,20000,32000),
(6450,14,'Orange Nimble Fish',679,22,1,1,578,3000,20000,31000),
(6451,14,'Orange Ugly Fish',690,22,2,1,580,3000,20000,31000),
(6452,14,'Orange Fat Fish',702,22,0,1,582,3000,20000,32000),
(6453,15,'Big Orange Nimble Fish',713,25,1,1,584,3000,20000,29000),
(6454,15,'Big Orange Ugly Fish',819,27,2,1,586,3000,20000,30000),
(6455,15,'Big Orange Fat Fish',832,28,0,1,588,3000,20000,30000),
(6456,16,'Small Purple Nimble Fish',845,29,1,1,590,3000,20000,29000),
(6457,16,'Small Purple Ugly Fish',858,29,2,1,592,3000,20000,30000),
(6458,16,'Small Purple Fat Fish',871,29,0,1,594,3000,20000,30000),
(6459,17,'Purple Nimble Fish',884,29,1,1,596,3000,20000,30000),
(6460,17,'Purple Ugly Fish',897,30,2,1,598,3000,20000,30000),
(6461,17,'Purple Fat Fish',910,29,0,1,600,3000,20000,31000),
(6462,18,'Big Purple Nimble Fish',923,31,1,1,602,3000,20000,30000),
(6463,18,'Big Purple Ugly Fish',936,31,2,1,604,3000,20000,30000),
(6464,18,'Big Purple Fat Fish',949,31,0,1,606,3000,20000,31000),
(6465,19,'Small Red Nimble Fish',962,34,1,1,608,3000,20000,28000),
(6466,19,'Small Red Ugly Fish',1125,39,2,1,610,3000,20000,29000),
(6467,19,'Small Red Fat Fish',1140,39,0,1,612,3000,20000,29000),
(6468,20,'Red Nimble Fish',1155,40,1,1,614,3000,20000,29000),
(6469,20,'Red Ugly Fish',1170,40,2,1,616,3000,20000,29000),
(6470,20,'Red Fat Fish',1185,40,0,1,618,3000,20000,30000),
(6471,21,'Big Red Nimble Fish',1200,41,1,1,620,3000,20000,29000),
(6472,21,'Big Red Ugly Fish',1215,42,2,1,622,3000,20000,29000),
(6473,21,'Big Red Fat Fish',1230,46,0,1,624,3000,20000,27000),
(6474,22,'Small White Nimble Fish',1453,56,1,1,626,2000,20000,26000),
(6475,22,'Small White Ugly Fish',1470,54,2,1,628,2000,20000,27000),
(6476,22,'Small White Fat Fish',1488,55,0,1,630,2000,20000,27000),
(6477,23,'White Nimble Fish',1505,56,1,1,632,2000,20000,27000),
(6478,23,'White Ugly Fish',1523,56,2,1,634,2000,20000,27000),
(6479,23,'White Fat Fish',1540,57,0,1,636,2000,20000,27000),
(6480,24,'Big White Nimble Fish',1558,58,1,1,638,2000,20000,27000),
(6481,24,'Big White Ugly Fish',1575,58,2,1,640,2000,20000,27000),
(6482,24,'Big White Fat Fish',1593,59,0,1,642,2000,20000,27000),
(6483,25,'Small Black Nimble Fish',1610,60,1,1,644,2000,20000,27000),
(6484,25,'Small Black Ugly Fish',1628,60,2,1,646,2000,20000,27000),
(6485,25,'Small Black Fat Fish',1648,59,0,1,648,2000,20000,28000),
(6486,26,'Black Nimble Fish',1663,67,1,1,650,2000,20000,25000),
(6487,26,'Black Ugly Fish',1872,75,2,1,652,2000,20000,25000),
(6488,26,'Black Fat Fish',1892,76,0,1,654,2000,20000,25000),
(6489,27,'Big Black Nimble Fish',1911,76,1,1,656,2000,20000,25000),
(6490,27,'Big Black Ugly Fish',1931,77,2,1,658,2000,20000,25000),
(6491,27,'Big Black Fat Fish',1950,78,0,1,660,2000,20000,25000),
(6492,1,'Small Green Treasure Chest',132,4,3,1,504,5000,20000,31000),
(6493,2,'Green Treasure Chest',188,6,3,1,510,5000,20000,31000),
(6494,3,'Big Green Treasure Chest',252,8,3,1,516,5000,20000,32000),
(6495,4,'Small Jade Treasure Chest',310,10,3,1,522,5000,20000,32000),
(6496,5,'Jade Treasure Chest',340,11,3,1,528,4000,20000,32000),
(6497,6,'Big Jade Treasure Chest',370,12,3,1,534,4000,20000,32000),
(6498,7,'Small Blue Treasure Chest',400,13,3,1,540,4000,20000,32000),
(6499,8,'Blue Treasure Chest',430,14,3,1,546,4000,20000,31000),
(6500,9,'Big Blue Treasure Chest',529,17,3,1,552,4000,20000,31000),
(6501,10,'Small Yellow Treasure Chest',564,18,3,1,558,4000,20000,31000),
(6502,11,'Yellow Treasure Chest',598,19,3,1,564,4000,20000,31000),
(6503,12,'Big Yellow Treasure Chest',633,20,3,1,570,4000,20000,31000),
(6504,13,'Small Orange Treasure Chest',667,21,3,1,576,3000,20000,32000),
(6505,14,'Orange Treasure Chest',702,22,3,1,582,3000,20000,32000),
(6506,15,'Big Orange Treasure Chest',832,28,3,1,588,3000,20000,30000),
(6507,16,'Small Purple Treasure Chest',871,29,3,1,594,3000,20000,30000),
(6508,17,'Purple Treasure Chest',910,29,3,1,600,3000,20000,31000),
(6509,18,'Big Purple Treasure Chest',949,31,3,1,606,3000,20000,31000),
(6510,19,'Small Red Treasure Chest',1140,39,3,1,612,3000,20000,29000),
(6511,20,'Red Treasure Chest',1185,40,3,1,618,3000,20000,30000),
(6512,21,'Big Red Treasure Chest',1230,46,3,1,624,3000,20000,27000),
(6513,22,'Small White Treasure Chest',1488,55,3,1,630,2000,20000,27000),
(6514,23,'White Treasure Chest',1540,57,3,1,636,2000,20000,27000),
(6515,24,'Big White Treasure Chest',1593,59,3,1,642,2000,20000,27000),
(6516,25,'Small Black Treasure Chest',1648,59,3,1,648,2000,20000,28000),
(6517,26,'Black Treasure Chest',1892,76,3,1,654,2000,20000,25000),
(6518,27,'Big Black Treasure Chest',1950,78,3,1,660,2000,20000,25000),
(7726,1,'Small Green Nimble Fish - For Beginners',100,4,5,0,400,5000,20000,35000),
(7727,1,'Small Green Ugly Fish - For Beginners',116,4,6,0,400,5000,20000,35000),
(7728,1,'Small Green Pudgy Fish - For Beginners',132,5,4,0,400,5000,20000,35000),
(7729,2,'Green Nimble Fish - For Beginners',150,5,5,0,400,5000,20000,35000),
(7730,2,'Green Ugly Fish - For Beginners',168,6,6,0,400,5000,20000,35000),
(7731,2,'Green Pudgy Fish - For Beginners',188,7,4,0,400,5000,20000,35000),
(7732,3,'Large Green Nimble Fish - For Beginners',208,7,5,0,400,5000,20000,35000),
(7733,3,'Large Green Ugly Fish - For Beginners',230,8,6,0,400,5000,20000,35000),
(7734,3,'Large Green Pudgy Fish - For Beginners',252,9,4,0,400,5000,20000,35000),
(7735,4,'Small Jade Nimble Fish - For Beginners',276,10,5,0,400,5000,20000,35000),
(7736,4,'Small Jade Ugly Fish - For Beginners',300,11,6,0,400,5000,20000,35000),
(7737,4,'Small Jade Fat Fish - For Beginners',310,11,4,0,400,5000,20000,35000),
(7738,5,'Jade Nimble Fish - For Beginners',320,11,5,0,400,5000,20000,35000),
(7739,5,'Jade Ugly Fish - For Beginners',330,12,6,0,400,4000,20000,35000),
(7740,5,'Jade Fat Fish - For Beginners',340,12,4,0,400,4000,20000,35000),
(7741,6,'Large Jade Nimble Fish - For Beginners',350,13,5,0,400,4000,20000,35000),
(7742,6,'Large Jade Ugly Fish - For Beginners',360,13,6,0,400,4000,20000,35000),
(7743,6,'Large Jade Fat Fish - For Beginners',370,13,4,0,400,4000,20000,35000),
(7744,7,'Small Blue Nimble Fish - For Beginners',380,14,5,0,400,4000,20000,35000),
(7745,7,'Small Blue Ugly Fish - For Beginners',390,14,6,0,400,4000,20000,35000),
(7746,7,'Small Blue Fat Fish - For Beginners',400,14,4,0,400,4000,20000,35000),
(7747,8,'Blue Nimble Fish - For Beginners',410,15,5,0,400,4000,20000,35000),
(7748,8,'Blue Ugly Fish - For Beginners',420,15,6,0,400,4000,20000,35000),
(7749,8,'Blue Fat Fish - For Beginners',430,15,4,0,400,4000,20000,35000),
(7750,9,'Large Blue Nimble Fish - For Beginners',506,18,5,0,400,4000,20000,35000),
(7751,9,'Large Blue Ugly Fish - For Beginners',518,19,6,0,400,4000,20000,35000),
(7752,9,'Large Blue Fat Fish - For Beginners',529,19,4,0,400,4000,20000,35000),
(7753,10,'Small Yellow Nimble Fish - For Beginners',541,19,5,0,400,4000,20000,35000),
(7754,10,'Small Yellow Ugly Fish - For Beginners',552,20,6,0,400,4000,20000,35000),
(7755,10,'Small Yellow Fat Fish - For Beginners',564,20,4,0,400,4000,20000,35000),
(7756,11,'Yellow Nimble Fish - For Beginners',575,21,5,0,400,4000,20000,35000),
(7757,11,'Yellow Ugly Fish - For Beginners',587,21,6,0,400,4000,20000,35000),
(7758,11,'Yellow Fat Fish - For Beginners',598,21,4,0,400,4000,20000,35000),
(7759,12,'Large Yellow Nimble Fish - For Beginners',610,22,5,0,400,4000,20000,35000),
(7760,12,'Large Yellow Ugly Fish - For Beginners',621,22,6,0,400,4000,20000,35000),
(7761,12,'Large Yellow Fat Fish - For Beginners',633,23,4,0,400,4000,20000,35000),
(7762,13,'Small Orange Nimble Fish - For Beginners',644,23,5,0,400,4000,20000,35000),
(7763,13,'Small Orange Ugly Fish - For Beginners',656,23,6,0,400,4000,20000,35000),
(7764,13,'Small Orange Fat Fish - For Beginners',667,24,4,0,400,3000,20000,35000),
(7765,14,'Orange Nimble Fish - For Beginners',679,24,5,0,400,3000,20000,35000),
(7766,14,'Orange Ugly Fish - For Beginners',690,25,6,0,400,3000,20000,35000),
(7767,14,'Orange Fat Fish - For Beginners',702,25,4,0,400,3000,20000,35000),
(7768,15,'Large Orange Nimble Fish - For Beginners',713,25,5,0,400,3000,20000,35000),
(7769,15,'Large Orange Ugly Fish - For Beginners',819,29,6,0,400,3000,20000,35000),
(7770,15,'Large Orange Fat Fish - For Beginners',832,30,4,0,400,3000,20000,35000),
(7771,16,'Small Purple Nimble Fish - For Beginners',845,30,5,0,400,3000,20000,35000),
(7772,16,'Small Purple Ugly Fish - For Beginners',858,31,6,0,400,3000,20000,35000),
(7773,16,'Small Purple Fat Fish - For Beginners',871,31,4,0,400,3000,20000,35000),
(7774,17,'Purple Nimble Fish - For Beginners',884,32,5,0,400,3000,20000,35000),
(7775,17,'Purple Ugly Fish - For Beginners',897,32,6,0,400,3000,20000,35000),
(7776,17,'Purple Fat Fish - For Beginners',910,33,4,0,400,3000,20000,35000),
(7777,18,'Large Purple Nimble Fish - For Beginners',923,33,5,0,400,3000,20000,35000),
(7778,18,'Large Purple Ugly Fish - For Beginners',936,33,6,0,400,3000,20000,35000),
(7779,18,'Large Purple Fat Fish - For Beginners',949,34,4,0,400,3000,20000,35000),
(7780,19,'Small Red Nimble Fish - For Beginners',962,34,5,0,400,3000,20000,35000),
(7781,19,'Small Red Ugly Fish - For Beginners',1125,40,6,0,400,3000,20000,35000),
(7782,19,'Small Red Fat Fish - For Beginners',1140,41,4,0,400,3000,20000,35000),
(7783,20,'Red Nimble Fish - For Beginners',1155,41,5,0,400,3000,20000,35000),
(7784,20,'Red Ugly Fish - For Beginners',1170,42,6,0,400,3000,20000,35000),
(7785,20,'Red Fat Fish - For Beginners',1185,42,4,0,400,3000,20000,35000),
(7786,21,'Large Red Nimble Fish - For Beginners',1200,43,5,0,400,3000,20000,35000),
(7787,21,'Large Red Ugly Fish - For Beginners',1215,43,6,0,400,3000,20000,35000),
(7788,21,'Large Red Fat Fish - For Beginners',1230,44,4,0,400,3000,20000,35000),
(7789,22,'Small White Nimble Fish - For Beginners',1453,52,5,0,400,2000,20000,35000),
(7790,22,'Small White Ugly Fish - For Beginners',1470,53,6,0,400,2000,20000,35000),
(7791,22,'Small White Fat Fish - For Beginners',1488,53,4,0,400,2000,20000,35000),
(7792,23,'White Nimble Fish - For Beginners',1505,54,5,0,400,2000,20000,35000),
(7793,23,'White Ugly Fish - For Beginners',1523,54,6,0,400,2000,20000,35000),
(7794,23,'White Fat Fish - For Beginners',1540,55,4,0,400,2000,20000,35000),
(7795,24,'Large White Nimble Fish - For Beginners',1558,56,5,0,400,2000,20000,35000),
(7796,24,'Large White Ugly Fish - For Beginners',1575,56,6,0,400,2000,20000,35000),
(7797,24,'Large White Fat Fish - For Beginners',1593,57,4,0,400,2000,20000,35000),
(7798,25,'Small Black Nimble Fish - For Beginners',1610,58,5,0,400,2000,20000,35000),
(7799,25,'Small Black Ugly Fish - For Beginners',1628,58,6,0,400,2000,20000,35000),
(7800,25,'Small Black Fat Fish - For Beginners',1645,59,4,0,400,2000,20000,35000),
(7801,26,'Black Nimble Fish - For Beginners',1663,59,5,0,400,2000,20000,35000),
(7802,26,'Black Ugly Fish - For Beginners',1872,67,6,0,400,2000,20000,35000),
(7803,26,'Black Fat Fish - For Beginners',1892,68,4,0,400,2000,20000,35000),
(7804,27,'Large Black Nimble Fish - For Beginners',1911,68,5,0,400,2000,20000,35000),
(7805,27,'Large Black Ugly Fish - For Beginners',1931,69,6,0,400,2000,20000,35000),
(7806,27,'Large Black Fat Fish - For Beginners',1950,70,4,0,400,2000,20000,35000);
@@ -0,0 +1,136 @@
--
-- Table structure for fishing_skill_trees
--
DROP TABLE IF EXISTS `fishing_skill_trees`;
CREATE TABLE `fishing_skill_trees` (
`skill_id` int(10) NOT NULL default '0',
`level` int(10) NOT NULL default '0',
`name` varchar(25) NOT NULL default '',
`sp` int(10) NOT NULL default '0',
`min_level` int(10) NOT NULL default '0',
`costid` int(10) NOT NULL default '0',
`cost` int(10) NOT NULL default '0',
`isfordwarf` int(1) NOT NULL default '0',
PRIMARY KEY (`skill_id`,`level`)
);
--
-- Records for table fishing_skill_trees
--
INSERT INTO fishing_skill_trees VALUES
(1313,1,'Pumping',0,10,57,10,0),
(1313,2,'Pumping',0,12,57,50,0),
(1313,3,'Pumping',0,15,57,200,0),
(1313,4,'Pumping',0,17,57,300,0),
(1313,5,'Pumping',0,20,57,500,0),
(1313,6,'Pumping',0,22,57,800,0),
(1313,7,'Pumping',0,25,57,1600,0),
(1313,8,'Pumping',0,27,57,2600,0),
(1313,9,'Pumping',0,30,57,4000,0),
(1313,10,'Pumping',0,32,57,6700,0),
(1313,11,'Pumping',0,35,57,8000,0),
(1313,12,'Pumping',0,37,57,10000,0),
(1313,13,'Pumping',0,40,57,16000,0),
(1313,14,'Pumping',0,42,57,23000,0),
(1313,15,'Pumping',0,45,57,30000,0),
(1313,16,'Pumping',0,47,57,40000,0),
(1313,17,'Pumping',0,49,57,53000,0),
(1313,18,'Pumping',0,52,57,66000,0),
(1313,19,'Pumping',0,54,57,80000,0),
(1313,20,'Pumping',0,57,57,93000,0),
(1313,21,'Pumping',0,59,57,100000,0),
(1313,22,'Pumping',0,62,57,120000,0),
(1313,23,'Pumping',0,64,57,130000,0),
(1313,24,'Pumping',0,67,57,140000,0),
(1313,25,'Pumping',0,69,57,160000,0),
(1313,26,'Pumping',0,71,57,173000,0),
(1313,27,'Pumping',0,74,57,180000,0),
(1314,1,'Reeling',0,10,57,10,0),
(1314,2,'Reeling',0,12,57,50,0),
(1314,3,'Reeling',0,15,57,200,0),
(1314,4,'Reeling',0,17,57,300,0),
(1314,5,'Reeling',0,20,57,500,0),
(1314,6,'Reeling',0,22,57,800,0),
(1314,7,'Reeling',0,25,57,1600,0),
(1314,8,'Reeling',0,27,57,2600,0),
(1314,9,'Reeling',0,30,57,4000,0),
(1314,10,'Reeling',0,32,57,6700,0),
(1314,11,'Reeling',0,35,57,8000,0),
(1314,12,'Reeling',0,37,57,10000,0),
(1314,13,'Reeling',0,40,57,16000,0),
(1314,14,'Reeling',0,42,57,23000,0),
(1314,15,'Reeling',0,45,57,30000,0),
(1314,16,'Reeling',0,47,57,40000,0),
(1314,17,'Reeling',0,49,57,53000,0),
(1314,18,'Reeling',0,52,57,66000,0),
(1314,19,'Reeling',0,54,57,80000,0),
(1314,20,'Reeling',0,57,57,93000,0),
(1314,21,'Reeling',0,59,57,100000,0),
(1314,22,'Reeling',0,62,57,120000,0),
(1314,23,'Reeling',0,64,57,130000,0),
(1314,24,'Reeling',0,67,57,140000,0),
(1314,25,'Reeling',0,69,57,160000,0),
(1314,26,'Reeling',0,71,57,173000,0),
(1314,27,'Reeling',0,74,57,180000,0),
(1315,1,'Fishing Expertise',0,10,57,10,0),
(1315,2,'Fishing Expertise',0,12,57,50,0),
(1315,3,'Fishing Expertise',0,15,57,200,0),
(1315,4,'Fishing Expertise',0,17,57,300,0),
(1315,5,'Fishing Expertise',0,20,57,500,0),
(1315,6,'Fishing Expertise',0,22,57,800,0),
(1315,7,'Fishing Expertise',0,25,57,1600,0),
(1315,8,'Fishing Expertise',0,27,57,2600,0),
(1315,9,'Fishing Expertise',0,30,57,4000,0),
(1315,10,'Fishing Expertise',0,32,57,6700,0),
(1315,11,'Fishing Expertise',0,35,57,8000,0),
(1315,12,'Fishing Expertise',0,37,57,10000,0),
(1315,13,'Fishing Expertise',0,40,57,16000,0),
(1315,14,'Fishing Expertise',0,42,57,23000,0),
(1315,15,'Fishing Expertise',0,45,57,30000,0),
(1315,16,'Fishing Expertise',0,47,57,40000,0),
(1315,17,'Fishing Expertise',0,49,57,53000,0),
(1315,18,'Fishing Expertise',0,52,57,66000,0),
(1315,19,'Fishing Expertise',0,54,57,80000,0),
(1315,20,'Fishing Expertise',0,57,57,93000,0),
(1315,21,'Fishing Expertise',0,59,57,100000,0),
(1315,22,'Fishing Expertise',0,62,57,120000,0),
(1315,23,'Fishing Expertise',0,64,57,130000,0),
(1315,24,'Fishing Expertise',0,67,57,140000,0),
(1315,25,'Fishing Expertise',0,69,57,160000,0),
(1315,26,'Fishing Expertise',0,71,57,173000,0),
(1315,27,'Fishing Expertise',0,74,57,180000,0),
(1368,1,'Expand Dwarven Craft',0,10,7609,2000,1),
(1368,2,'Expand Dwarven Craft',0,20,7609,4000,1),
(1368,3,'Expand Dwarven Craft',0,30,7609,6000,1),
(1368,4,'Expand Dwarven Craft',0,40,7609,10000,1),
(1368,5,'Expand Dwarven Craft',0,50,7609,10000,1),
(1368,6,'Expand Dwarven Craft',0,60,7609,10000,1),
(1368,7,'Expand Dwarven Craft',0,70,7609,20000,1),
(1368,8,'Expand Dwarven Craft',0,76,7609,20000,1),
(1369,1,'Expand Common Craft',0,10,7609,2000,0),
(1369,2,'Expand Common Craft',0,20,7609,4000,0),
(1369,3,'Expand Common Craft',0,30,7609,6000,0),
(1369,4,'Expand Common Craft',0,40,7609,10000,0),
(1369,5,'Expand Common Craft',0,50,7609,10000,0),
(1369,6,'Expand Common Craft',0,60,7609,10000,0),
(1369,7,'Expand Common Craft',0,70,7609,20000,0),
(1369,8,'Expand Common Craft',0,76,7609,20000,0),
(1370,1,'Expand Trade',0,40,7609,10000,0),
(1370,2,'Expand Trade',0,55,7609,20000,0),
(1370,3,'Expand Trade',0,65,7609,40000,0),
(1371,1,'Expand Storage',0,10,7609,4000,0),
(1371,2,'Expand Storage',0,20,7609,8000,0),
(1371,3,'Expand Storage',0,30,7609,20000,0),
(1371,4,'Expand Storage',0,40,7609,20000,0),
(1371,5,'Expand Storage',0,50,7609,60000,0),
(1371,6,'Expand Storage',0,60,7609,60000,0),
(1371,7,'Expand Storage',0,70,7609,100000,0),
(1371,8,'Expand Storage',0,76,7609,100000,0),
(1372,1,'Expand Inventory',0,10,7609,4000,0),
(1372,2,'Expand Inventory',0,20,7609,8000,0),
(1372,3,'Expand Inventory',0,30,7609,20000,0),
(1372,4,'Expand Inventory',0,40,7609,20000,0),
(1372,5,'Expand Inventory',0,50,7609,60000,0),
(1372,6,'Expand Inventory',0,60,7609,60000,0),
(1372,7,'Expand Inventory',0,70,7609,100000,0),
(1372,8,'Expand Inventory',0,76,7609,100000,0),
(1312,1,'Fishing',0,10,57,1000,0);
+19
View File
@@ -0,0 +1,19 @@
-- ---------------------------
-- Table structure for forums
-- ---------------------------
CREATE TABLE IF NOT EXISTS `forums` (
`forum_id` int(8) NOT NULL default '0',
`forum_name` varchar(255) NOT NULL default '',
`forum_parent` int(8) NOT NULL default '0',
`forum_post` int(8) NOT NULL default '0',
`forum_type` int(8) NOT NULL default '0',
`forum_perm` int(8) NOT NULL default '0',
`forum_owner_id` int(8) NOT NULL default '0',
UNIQUE KEY `forum_id` (`forum_id`)
);
INSERT IGNORE INTO `forums` VALUES (1, 'NormalRoot', 0, 0, 0, 1, 0);
INSERT IGNORE INTO `forums` VALUES (2, 'ClanRoot', 0, 0, 0, 0, 0);
INSERT IGNORE INTO `forums` VALUES (3, 'MemoRoot', 0, 0, 0, 0, 0);
INSERT IGNORE INTO `forums` VALUES (4, 'MailRoot', 0, 0, 0, 0, 0);
File diff suppressed because it is too large Load Diff
+18
View File
@@ -0,0 +1,18 @@
-- ---------------------------
-- Table structure for games
-- ---------------------------
CREATE TABLE IF NOT EXISTS games (
id INT NOT NULL default 0,
idnr INT NOT NULL default 0,
number1 INT NOT NULL default 0,
number2 INT NOT NULL default 0,
prize INT NOT NULL default 0,
newprize INT NOT NULL default 0,
prize1 INT NOT NULL default 0,
prize2 INT NOT NULL default 0,
prize3 INT NOT NULL default 0,
enddate decimal(20,0) NOT NULL default 0,
finished INT NOT NULL default 0,
PRIMARY KEY (`id`,`idnr`)
);
+11
View File
@@ -0,0 +1,11 @@
CREATE TABLE IF NOT EXISTS `gameservers` (
`server_id` int(11) NOT NULL default '0',
`hexid` varchar(50) NOT NULL default '',
`host` varchar(50) NOT NULL default '',
PRIMARY KEY (`server_id`)
);
-- ----------------------------
-- Records of gameservers
-- ----------------------------
INSERT INTO `gameservers` VALUES ('1', 'f23de3c2a05a974a1b5369a8fe2eb16', '*');
+14
View File
@@ -0,0 +1,14 @@
--
-- Table structure for table `global_tasks`
--
CREATE TABLE IF NOT EXISTS global_tasks (
id int(11) NOT NULL auto_increment,
task varchar(50) NOT NULL default '',
type varchar(50) NOT NULL default '',
last_activation decimal(20,0) NOT NULL default 0,
param1 varchar(100) NOT NULL default '',
param2 varchar(100) NOT NULL default '',
param3 varchar(255) NOT NULL default '',
PRIMARY KEY (`id`)
);
+24
View File
@@ -0,0 +1,24 @@
-- ---------------------------
-- Table structure for grandboss_data
-- ---------------------------
CREATE TABLE IF NOT EXISTS grandboss_data (
`boss_id` INTEGER NOT NULL DEFAULT 0,
`loc_x` INTEGER NOT NULL DEFAULT 0,
`loc_y` INTEGER NOT NULL DEFAULT 0,
`loc_z` INTEGER NOT NULL DEFAULT 0,
`heading` INTEGER NOT NULL DEFAULT 0,
`respawn_time` BIGINT NOT NULL DEFAULT 0,
`currentHP` DECIMAL(8,0) DEFAULT NULL,
`currentMP` DECIMAL(8,0) DEFAULT NULL,
`status` TINYINT NOT NULL DEFAULT 0,
PRIMARY KEY(`boss_id`)
);
INSERT IGNORE INTO `grandboss_data` VALUES
(12001, -21610, 181594, -5734, 0, 0, 229898, 667, 0), -- Queen Ant
(12052, 17726, 108915, -6490, 0, 0, 162561, 575, 0), -- Core
(12169, 55024, 17368, -5412, 0, 0, 325124, 1660, 0), -- Orfen
(12211, 185708,114298,-8221,32768, 0, 13090000, 22197, 0), -- Antharas
(12372, 115213,16623,10080,41740, 0, 790857, 3347, 0), -- Baium
(12374, 55275, 218880, -3217, 0, 0, 858518, 1975, 0), -- Zaken
(12899, 213389,-115026,-1636,0, 0, 16660000, 22197, 0); -- Valakas
@@ -0,0 +1,8 @@
-- ---------------------------
-- Table structure for 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`));
@@ -0,0 +1,34 @@
#----------------------------
# Table structure for helper_buff_list
#----------------------------
DROP TABLE IF EXISTS `helper_buff_list`;
CREATE TABLE `helper_buff_list` (
`id` int(11) NOT NULL default '0',
`skill_id` int(10) unsigned NOT NULL default '0',
`name` varchar(25) NOT NULL default '',
`skill_level` int(10) unsigned NOT NULL default '0',
`lower_level` int(10) unsigned NOT NULL default '0',
`upper_level` int(10) unsigned NOT NULL default '0',
`is_magic_class` varchar(5) default NULL,
PRIMARY KEY (`id`)
);
#----------------------------
# Records for table helper_buff_list
#----------------------------
insert into helper_buff_list values
(0, 4322, 'WindWalk', 1, 8, 24, 'false'),
(1, 4323, 'Shield', 1, 11, 24, 'false'),
(2, 4338, 'Life Cubic', 1, 16, 19, 'false'),
(3, 4324, 'Bless the Body', 1, 12, 23, 'false'),
(4, 4325, 'Vampiric Rage', 1, 13, 22, 'false'),
(5, 4326, 'Regeneration', 1, 14, 21, 'false'),
(6, 4327, 'Haste', 1, 15, 20, 'false'),
(7, 4322, 'WindWalk', 1, 8, 24, 'true'),
(8, 4323, 'Shield', 1, 11, 24, 'true'),
(9, 4338, 'Life Cubic', 1, 16, 19, 'true'),
(10, 4328, 'Bless the Soul', 1, 12, 23, 'true'),
(11, 4329, 'Acumen', 1, 13, 22, 'true'),
(12, 4330, 'Concentration', 1, 14, 21, 'true'),
(13, 4331, 'Empower', 1, 15, 20, 'true');
+204
View File
@@ -0,0 +1,204 @@
--
-- Table structure for table `henna`
--
DROP TABLE IF EXISTS `henna`;
CREATE TABLE `henna` (
`symbol_id` int(11) NOT NULL default '0',
`symbol_name` varchar(45) default NULL,
`dye_id` int(11) default NULL,
`dye_amount` int(11) default NULL,
`price` int(11) default NULL,
`stat_INT` decimal(11,0) default NULL,
`stat_STR` decimal(11,0) default NULL,
`stat_CON` decimal(11,0) default NULL,
`stat_MEN` decimal(11,0) default NULL,
`stat_DEX` decimal(11,0) default NULL,
`stat_WIT` decimal(11,0) default NULL,
PRIMARY KEY (`symbol_id`)
);
--
-- Dumping data for table `henna`
--
INSERT INTO `henna` VALUES
(1,'symbol_s+1c-3_d',4445,10,5100,0,1,-3,0,0,0),
(2,'symbol_s+1d-3_d',4446,10,5100,0,1,0,0,-3,0),
(3,'symbol_c+1s-3_d',4447,10,5100,0,-3,1,0,0,0),
(4,'symbol_c+1d-3_d',4448,10,5100,0,0,1,0,-3,0),
(5,'symbol_d+1s-3_d',4449,10,5100,0,-3,0,0,1,0),
(6,'symbol_d+1c-3_d',4450,10,5100,0,0,-3,0,1,0),
(7,'symbol_i+1m-3_d',4451,10,5100,1,0,0,-3,0,0),
(8,'symbol_i+1w-3_d',4452,10,5100,1,0,0,0,0,-3),
(9,'symbol_m+1i-3_d',4453,10,5100,-3,0,0,1,0,0),
(10,'symbol_m+1w-3_d',4454,10,5100,0,0,0,1,0,-3),
(11,'symbol_w+1i-3_d',4455,10,5100,-3,0,0,0,0,1),
(12,'symbol_w+1m-3_d',4456,10,5100,0,0,0,-3,0,1),
(13,'symbol_s+1c-2_d',4457,10,12000,0,1,-2,0,0,0),
(14,'symbol_s+1d-2_d',4458,10,12000,0,1,0,0,-2,0),
(15,'symbol_c+1s-2_d',4459,10,12000,0,-2,1,0,0,0),
(16,'symbol_c+1d-2_d',4460,10,12000,0,0,1,0,-2,0),
(17,'symbol_d+1s-2_d',4461,10,12000,0,-2,0,0,1,0),
(18,'symbol_d+1c-2_d',4462,10,12000,0,0,-2,0,1,0),
(19,'symbol_i+1m-2_d',4463,10,12000,1,0,0,-2,0,0),
(20,'symbol_i+1w-2_d',4464,10,12000,1,0,0,0,0,-2),
(21,'symbol_m+1i-2_d',4465,10,12000,-2,0,0,1,0,0),
(22,'symbol_m+1w-2_d',4466,10,12000,0,0,0,1,0,-2),
(23,'symbol_w+1i-2_d',4467,10,12000,-2,0,0,0,0,1),
(24,'symbol_w+1m-2_d',4468,10,12000,0,0,0,-2,0,1),
(25,'symbol_s+1c-1_d',4469,10,35000,0,1,-1,0,0,0),
(26,'symbol_s+1d-1_d',4470,10,35000,0,1,0,0,-1,0),
(27,'symbol_c+1s-1_d',4471,10,35000,0,-1,1,0,0,0),
(28,'symbol_c+1d-1_d',4472,10,35000,0,0,1,0,-1,0),
(29,'symbol_d+1s-1_d',4473,10,35000,0,-1,0,0,1,0),
(30,'symbol_d+1c-1_d',4474,10,35000,0,0,-1,0,1,0),
(31,'symbol_i+1m-1_d',4475,10,35000,1,0,0,-1,0,0),
(32,'symbol_i+1w-1_d',4476,10,35000,1,0,0,0,0,-1),
(33,'symbol_m+1i-1_d',4477,10,35000,-1,0,0,1,0,0),
(34,'symbol_m+1w-1_d',4478,10,35000,0,0,0,1,0,-1),
(35,'symbol_w+1i-1_d',4479,10,35000,-1,0,0,0,0,1),
(36,'symbol_w+1m-1_d',4480,10,35000,0,0,0,-1,0,1),
(37,'symbol_s+1c-3_c',4481,10,12000,0,1,-3,0,0,0),
(38,'symbol_s+1d-3_c',4482,10,24600,0,1,0,0,-3,0),
(39,'symbol_c+1s-3_c',4483,10,24600,0,-3,1,0,0,0),
(40,'symbol_c+1d-3_c',4484,10,24600,0,0,1,0,-3,0),
(41,'symbol_d+1s-3_c',4485,10,30000,0,-3,0,0,1,0),
(42,'symbol_d+1c-3_c',4486,10,30000,0,0,-3,0,1,0),
(43,'symbol_i+1m-3_c',4487,10,30000,1,0,0,-3,0,0),
(44,'symbol_i+1w-3_c',4488,10,30000,1,0,0,0,0,-3),
(45,'symbol_m+1i-3_c',4489,10,30000,-3,0,0,1,0,0),
(46,'symbol_m+1w-3_c',4490,10,12000,0,0,0,1,0,-3),
(47,'symbol_w+1i-3_c',4491,10,30000,-3,0,0,0,0,1),
(48,'symbol_w+1m-3_c',4492,10,12000,0,0,0,-3,0,1),
(49,'symbol_s+1c-2_c',4493,10,24600,0,1,-2,0,0,0),
(50,'symbol_s+1d-2_c',4494,10,30000,0,1,0,0,-2,0),
(51,'symbol_c+1s-2_c',4495,10,35000,0,-2,1,0,0,0),
(52,'symbol_c+1d-2_c',4496,10,35000,0,0,1,0,-2,0),
(53,'symbol_d+1s-2_c',4497,10,36000,0,-2,0,0,1,0),
(54,'symbol_d+1c-2_c',4498,10,36000,0,0,-2,0,1,0),
(55,'symbol_i+1m-2_c',4499,10,50000,1,0,0,-2,0,0),
(56,'symbol_i+1w-2_c',4500,10,36000,1,0,0,0,0,-2),
(57,'symbol_m+1i-2_c',4501,10,36000,-2,0,0,1,0,0),
(58,'symbol_m+1w-2_c',4502,10,21000,0,0,0,1,0,-2),
(59,'symbol_w+1i-2_c',4503,10,30000,-2,0,0,0,0,1),
(60,'symbol_w+1m-2_c',4504,10,36000,0,0,0,-2,0,1),
(61,'symbol_s+2c-4_c',4505,10,24600,0,2,-4,0,0,0),
(62,'symbol_s+2d-4_c',4506,10,24600,0,2,0,0,-4,0),
(63,'symbol_c+2s-4_c',4507,10,24600,0,-4,2,0,0,0),
(64,'symbol_c+2d-4_c',4508,10,24600,0,0,2,0,-4,0),
(65,'symbol_d+2s-4_c',4509,10,24600,0,-4,0,0,2,0),
(66,'symbol_d+2c-4_c',4510,10,24600,0,0,-4,0,2,0),
(67,'symbol_i+2m-4_c',4511,10,24600,2,0,0,-4,0,0),
(68,'symbol_i+2w-4_c',4512,10,24600,2,0,0,0,0,-4),
(69,'symbol_m+2i-4_c',4513,10,24600,-4,0,0,2,0,0),
(70,'symbol_m+2w-4_c',4514,10,30000,0,0,0,2,0,-4),
(71,'symbol_w+2i-4_c',4515,10,30000,-4,0,0,0,0,2),
(72,'symbol_w+2m-4_c',4516,10,30000,0,0,0,-4,0,2),
(73,'symbol_s+2c-3_c',4517,10,30000,0,2,-3,0,0,0),
(74,'symbol_s+2d-3_c',4518,10,35000,0,2,0,0,-3,0),
(75,'symbol_c+2s-3_c',4519,10,35000,0,-3,2,0,0,0),
(76,'symbol_c+2d-3_c',4520,10,35000,0,0,2,0,-3,0),
(77,'symbol_d+2s-3_c',4521,10,27000,0,-3,0,0,2,0),
(78,'symbol_d+2c-3_c',4522,10,27000,0,0,-3,0,2,0),
(79,'symbol_i+2m-3_c',4523,10,27000,2,0,0,-3,0,0),
(80,'symbol_i+2w-3_c',4524,10,30000,2,0,0,0,0,-3),
(81,'symbol_m+2i-3_c',4525,10,30000,-3,0,0,2,0,0),
(82,'symbol_m+2w-3_c',4526,10,30000,0,0,0,2,0,-3),
(83,'symbol_w+2i-3_c',4527,10,30000,-3,0,0,0,0,2),
(84,'symbol_w+2m-3_c',4528,10,30000,0,0,0,-3,0,2),
(85,'symbol_s+3c-5_c',4529,10,30000,0,3,-5,0,0,0),
(86,'symbol_s+3d-5_c',4530,10,30000,0,3,0,0,-5,0),
(87,'symbol_c+3s-5_c',4531,10,30000,0,-5,3,0,0,0),
(88,'symbol_c+3d-5_c',4532,10,30000,0,0,3,0,-5,0),
(89,'symbol_d+3s-5_c',4533,10,30000,0,-5,0,0,3,0),
(90,'symbol_d+3c-5_c',4534,10,30000,0,0,-5,0,3,0),
(91,'symbol_i+3m-5_c',4535,10,30000,3,0,0,-5,0,0),
(92,'symbol_i+3w-5_c',4536,10,30000,3,0,0,0,0,-5),
(93,'symbol_m+3i-5_c',4537,10,30000,-5,0,0,3,0,0),
(94,'symbol_m+3w-5_c',4538,10,30000,0,0,0,3,0,-5),
(95,'symbol_w+3i-5_c',4539,10,30000,-5,0,0,0,0,3),
(96,'symbol_w+3m-5_c',4540,10,30000,0,0,0,-5,0,3),
(97,'symbol_s+3c-4_c',4541,10,30000,0,3,-4,0,0,0),
(98,'symbol_s+3d-4_c',4542,10,30000,0,3,0,0,-4,0),
(99,'symbol_c+3s-4_c',4543,10,50000,0,-4,3,0,0,0),
(100,'symbol_c+3d-4_c',4544,10,50000,0,0,3,0,-4,0),
(101,'symbol_d+3s-4_c',4545,10,50000,0,-4,0,0,3,0),
(102,'symbol_d+3c-4_c',4546,10,50000,0,0,-4,0,3,0),
(103,'symbol_i+3m-4_c',4547,10,50000,3,0,0,-4,0,0),
(104,'symbol_i+3w-4_c',4548,10,50000,3,0,0,0,0,-4),
(105,'symbol_m+3i-4_c',4549,10,50000,-4,0,0,3,0,0),
(106,'symbol_m+3w-4_c',4550,10,50000,0,0,0,3,0,-4),
(107,'symbol_w+3i-4_c',4551,10,50000,-4,0,0,0,0,3),
(108,'symbol_w+3m-4_c',4552,10,50000,0,0,0,-4,0,3),
(109,'symbol_s+1c-1_c',4553,10,50000,0,1,-1,0,0,0),
(110,'symbol_s+1d-1_c',4554,10,50000,0,1,0,0,-1,0),
(111,'symbol_c+1s-1_c',4555,10,50000,0,-1,1,0,0,0),
(112,'symbol_c+1d-1_c',4556,10,50000,0,0,1,0,-1,0),
(113,'symbol_d+1s-1_c',4557,10,50000,0,-1,0,0,1,0),
(114,'symbol_d+1c-1_c',4558,10,50000,0,0,-1,0,1,0),
(115,'symbol_i+1m-1_c',4559,10,90000,1,0,0,-1,0,0),
(116,'symbol_i+1w-1_c',4560,10,50000,1,0,0,0,0,-1),
(117,'symbol_m+1i-1_c',4561,10,50000,-1,0,0,1,0,0),
(118,'symbol_m+1w-1_c',4562,10,50000,0,0,0,1,0,-1),
(119,'symbol_w+1i-1_c',4563,10,50000,-1,0,0,0,0,1),
(120,'symbol_w+1m-1_c',4564,10,50000,0,0,0,-1,0,1),
(121,'symbol_s+4c-6_c',4565,10,36000,0,4,-6,0,0,0),
(122,'symbol_s+4d-6_c',4566,10,36000,0,4,0,0,-6,0),
(123,'symbol_c+4s-6_c',4567,10,50000,0,-6,4,0,0,0),
(124,'symbol_c+4d-6_c',4568,10,50000,0,0,4,0,-6,0),
(125,'symbol_d+4s-6_c',4569,10,30000,0,-6,0,0,4,0),
(126,'symbol_d+4c-6_c',4570,10,36000,0,0,-6,0,4,0),
(127,'symbol_i+4m-6_c',4571,10,36000,4,0,0,-6,0,0),
(128,'symbol_i+4w-6_c',4572,10,30000,4,0,0,0,0,-6),
(129,'symbol_m+4i-6_c',4573,10,36000,-6,0,0,4,0,0),
(130,'symbol_m+4w-6_c',4574,10,36000,0,0,0,4,0,-6),
(131,'symbol_w+4i-6_c',4575,10,36000,-6,0,0,0,0,4),
(132,'symbol_w+4m-6_c',4576,10,30000,0,0,0,-6,0,4),
(133,'symbol_s+4c-5_c',4577,10,36000,0,4,-5,0,0,0),
(134,'symbol_s+4d-5_c',4578,10,90000,0,4,0,0,-5,0),
(135,'symbol_c+4s-5_c',4579,10,90000,0,-5,4,0,0,0),
(136,'symbol_c+4d-5_c',4580,10,90000,0,0,4,0,-5,0),
(137,'symbol_d+4s-5_c',4581,10,36000,0,-5,0,0,4,0),
(138,'symbol_d+4c-5_c',4582,10,36000,0,0,-5,0,4,0),
(139,'symbol_i+4m-5_c',4583,10,90000,4,0,0,-5,0,0),
(140,'symbol_i+4w-5_c',4584,10,36000,4,0,0,0,0,-5),
(141,'symbol_m+4i-5_c',4585,10,90000,-5,0,0,4,0,0),
(142,'symbol_m+4w-5_c',4586,10,90000,0,0,0,4,0,-5),
(143,'symbol_w+4i-5_c',4587,10,36000,-5,0,0,0,0,4),
(144,'symbol_w+4m-5_c',4588,10,36000,0,0,0,-5,0,4),
(145,'symbol_s+2c-2_c',4589,10,60000,0,2,-2,0,0,0),
(146,'symbol_s+2d-2_c',4590,10,60000,0,2,0,0,-2,0),
(147,'symbol_c+2s-2_c',4591,10,60000,0,-2,2,0,0,0),
(148,'symbol_c+2d-2_c',4592,10,60000,0,0,2,0,-2,0),
(149,'symbol_d+2s-2_c',4593,10,60000,0,-2,0,0,2,0),
(150,'symbol_d+2c-2_c',4594,10,60000,0,0,-2,0,2,0),
(151,'symbol_i+2m-2_c',4595,10,60000,2,0,0,-2,0,0),
(152,'symbol_i+2w-2_c',4596,10,90000,2,0,0,0,0,-2),
(153,'symbol_m+2i-2_c',4597,10,60000,-2,0,0,2,0,0),
(154,'symbol_m+2w-2_c',4598,10,60000,0,0,0,2,0,-2),
(155,'symbol_w+2i-2_c',4599,10,60000,-2,0,0,0,0,2),
(156,'symbol_w+2m-2_c',4600,10,60000,0,0,0,-2,0,2),
(157,'symbol_s+3c-3_c',4601,10,90000,0,3,-3,0,0,0),
(158,'symbol_s+3d-3_c',4602,10,90000,0,3,0,0,-3,0),
(159,'symbol_c+3s-3_c',4603,10,90000,0,-3,3,0,0,0),
(160,'symbol_c+3d-3_c',4604,10,90000,0,0,3,0,-3,0),
(161,'symbol_d+3s-3_c',4605,10,90000,0,-3,0,0,3,0),
(162,'symbol_d+3c-3_c',4606,10,90000,0,0,-3,0,3,0),
(163,'symbol_i+3m-3_c',4607,10,90000,3,0,0,-3,0,0),
(164,'symbol_i+3w-3_c',4608,10,90000,3,0,0,0,0,-3),
(165,'symbol_m+3i-3_c',4609,10,90000,-3,0,0,3,0,0),
(166,'symbol_m+3w-3_c',4610,10,90000,0,0,0,3,0,-3),
(167,'symbol_w+3i-3_c',4611,10,90000,-3,0,0,0,0,3),
(168,'symbol_w+3m-3_c',4612,10,90000,0,0,0,-3,0,3),
(169,'symbol_s+4c-4_c',4613,10,145000,0,4,-4,0,0,0),
(170,'symbol_s+4d-4_c',4614,10,145000,0,4,0,0,-4,0),
(171,'symbol_c+4s-4_c',4615,10,145000,0,-4,4,0,0,0),
(172,'symbol_c+4d-4_c',4616,10,145000,0,0,4,0,-4,0),
(173,'symbol_d+4s-4_c',4617,10,145000,0,-4,0,0,4,0),
(174,'symbol_d+4c-4_c',4618,10,145000,0,0,-4,0,4,0),
(175,'symbol_i+4m-4_c',4619,10,145000,4,0,0,-4,0,0),
(176,'symbol_i+4w-4_c',4620,10,145000,4,0,0,0,0,-4),
(177,'symbol_m+4i-4_c',4621,10,145000,-4,0,0,4,0,0),
(178,'symbol_m+4w-4_c',4622,10,145000,0,0,0,4,0,-4),
(179,'symbol_w+4i-4_c',4623,10,145000,-4,0,0,0,0,4),
(180,'symbol_w+4m-4_c',4624,10,145000,0,0,0,-4,0,4);
File diff suppressed because it is too large Load Diff
+7
View File
@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS `heroes` (
`char_id` decimal(11,0) NOT NULL default '0',
`class_id` decimal(3,0) NOT NULL default '0',
`count` decimal(3,0) NOT NULL default '0',
`played` decimal(1,0) NOT NULL default '0',
PRIMARY KEY (`char_id`)
);
+22
View File
@@ -0,0 +1,22 @@
-- ----------------------------
-- Table structure for items
-- ----------------------------
CREATE TABLE IF NOT EXISTS items (
`owner_id` INT, -- object id of the player or clan,owner of this item
`object_id` INT NOT NULL DEFAULT 0,-- object id of the item
`item_id` INT, -- item id
`count` INT,
`enchant_level` INT,
`loc` VARCHAR(10), -- inventory,paperdoll,npc,clan warehouse,pet,and so on
`loc_data` INT, -- depending on location: equiped slot,npc id,pet id,etc
`price_sell` INT,
`price_buy` INT,
`time_of_use` INT, -- time of item use, for calculate of breackages
`custom_type1` INT DEFAULT 0,
`custom_type2` INT DEFAULT 0,
PRIMARY KEY (`object_id`),
KEY `key_owner_id` (`owner_id`),
KEY `key_loc` (`loc`),
KEY `key_item_id` (`item_id`),
KEY `key_time_of_use` (`time_of_use`)
);
+15
View File
@@ -0,0 +1,15 @@
-- ---------------------------
-- Table structure for `itemsonground`
-- ---------------------------
CREATE TABLE IF NOT EXISTS `itemsonground` (
`object_id` int(11) NOT NULL default '0',
`item_id` int(11) default NULL,
`count` int(11) default NULL,
`enchant_level` int(11) default NULL,
`x` int(11) default NULL,
`y` int(11) default NULL,
`z` int(11) default NULL,
`drop_time` decimal(20,0) default NULL,
`equipable` int(1) default '0',
PRIMARY KEY (`object_id`)
);
File diff suppressed because it is too large Load Diff
+113
View File
@@ -0,0 +1,113 @@
--
-- Table structure for table `lvlupgain`
--
DROP TABLE IF EXISTS `lvlupgain`;
CREATE TABLE `lvlupgain` (
`classid` int(3) NOT NULL default '0',
`defaulthpbase` decimal(5,1) NOT NULL default '0.0',
`defaulthpadd` decimal(4,2) NOT NULL default '0.00',
`defaulthpmod` decimal(4,2) NOT NULL default '0.00',
`defaultcpbase` decimal(5,1) NOT NULL default '0.0',
`defaultcpadd` decimal(4,2) NOT NULL default '0.00',
`defaultcpmod` decimal(4,2) NOT NULL default '0.00',
`defaultmpbase` decimal(5,1) NOT NULL default '0.0',
`defaultmpadd` decimal(4,2) NOT NULL default '0.00',
`defaultmpmod` decimal(4,2) NOT NULL default '0.00',
`class_lvl` int(3) NOT NULL default '0',
PRIMARY KEY (`classid`)
);
--
-- Dumping data for table `lvlupgain`
--
INSERT INTO `lvlupgain` VALUES ('0', '80.0', '11.83', '0.37', '32.0', '4.73', '0.22', '30.0', '5.46', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('1', '327.0', '33.00', '0.37', '261.6', '26.40', '0.22', '144.0', '9.90', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('2', '1044.0', '49.40', '0.37', '939.6', '44.46', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('3', '1044.0', '54.60', '0.37', '835.2', '43.68', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('4', '327.0', '29.70', '0.37', '196.2', '17.82', '0.22', '144.0', '9.90', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('5', '972.3', '46.80', '0.37', '583.3', '28.08', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('6', '972.3', '46.80', '0.37', '583.3', '28.08', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('7', '327.0', '27.50', '0.37', '130.8', '11.00', '0.22', '144.0', '9.90', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('8', '924.5', '41.60', '0.37', '369.8', '16.64', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('9', '924.5', '44.20', '0.37', '647.1', '30.94', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('10', '101.0', '15.57', '0.37', '50.5', '7.84', '0.22', '40.0', '7.38', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('11', '424.0', '27.60', '0.37', '212.0', '13.85', '0.22', '192.0', '13.30', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('12', '1021.5', '45.60', '0.37', '510.7', '22.85', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('13', '1021.5', '45.60', '0.37', '510.7', '22.85', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('14', '1021.5', '49.50', '0.37', '612.9', '29.74', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('15', '424.0', '34.20', '0.37', '212.0', '17.15', '0.22', '192.0', '13.30', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('16', '1164.9', '49.50', '0.37', '815.4', '34.68', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('17', '1164.9', '53.40', '0.37', '582.4', '26.75', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('18', '89.0', '12.74', '0.37', '35.6', '5.00', '0.22', '30.0', '5.46', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('19', '355.0', '33.00', '0.37', '177.5', '16.50', '0.22', '144.0', '9.90', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('20', '1072.0', '52.00', '0.37', '643.2', '31.20', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('21', '1072.0', '54.60', '0.37', '536.0', '27.30', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('22', '355.0', '30.80', '0.37', '142.0', '12.32', '0.22', '144.0', '9.90', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('23', '1024.2', '46.80', '0.37', '409.6', '18.72', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('24', '1024.2', '49.40', '0.37', '512.1', '24.70', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('25', '104.0', '15.57', '0.37', '52.0', '7.84', '0.22', '40.0', '7.38', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('26', '427.0', '28.70', '0.37', '213.5', '14.40', '0.22', '192.0', '13.30', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('27', '1048.4', '48.20', '0.37', '524.2', '24.15', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('28', '1048.4', '50.80', '0.37', '629.0', '30.52', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('29', '427.0', '35.30', '0.37', '213.5', '17.70', '0.22', '192.0', '13.30', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('30', '1191.8', '54.70', '0.37', '595.9', '27.40', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('31', '94.0', '13.65', '0.37', '37.6', '5.46', '0.22', '30.0', '5.46', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('32', '379.0', '35.20', '0.37', '189.5', '17.60', '0.22', '144.0', '9.90', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('33', '1143.8', '54.60', '0.37', '686.2', '32.76', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('34', '1143.8', '58.50', '0.37', '571.9', '29.25', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('35', '379.0', '33.00', '0.37', '151.6', '13.20', '0.22', '144.0', '9.90', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('36', '1096.0', '49.40', '0.37', '438.4', '19.76', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('37', '1096.0', '52.00', '0.37', '548.0', '26.00', '0.22', '359.1', '19.50', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('38', '106.0', '15.57', '0.37', '53.0', '7.84', '0.22', '40.0', '7.38', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('39', '429.0', '29.80', '0.37', '214.5', '14.95', '0.22', '192.0', '13.30', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('40', '1074.3', '48.20', '0.37', '537.1', '24.15', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('41', '1074.3', '52.10', '0.37', '644.5', '31.30', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('42', '429.0', '36.40', '0.37', '214.5', '18.25', '0.22', '192.0', '13.30', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('43', '1217.7', '54.70', '0.37', '608.8', '27.40', '0.22', '478.8', '26.10', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('44', '80.0', '12.64', '0.37', '40.0', '6.27', '0.22', '30.0', '5.36', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('45', '346.0', '35.10', '0.37', '242.2', '24.54', '0.22', '144.0', '9.80', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('46', '1110.8', '57.10', '0.37', '777.5', '39.94', '0.22', '359.1', '19.40', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('47', '346.0', '32.90', '0.37', '173.0', '16.40', '0.22', '144.0', '9.80', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('48', '1063.0', '54.50', '0.37', '531.5', '27.20', '0.22', '359.1', '19.40', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('49', '95.0', '15.47', '0.37', '47.5', '7.74', '0.22', '40.0', '7.28', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('50', '418.0', '35.20', '0.37', '209.0', '17.60', '0.22', '192.0', '13.20', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('51', '1182.8', '53.30', '0.37', '946.2', '42.64', '0.22', '478.8', '26.00', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('52', '1182.8', '53.30', '0.37', '591.4', '26.65', '0.22', '478.8', '26.00', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('53', '80.0', '12.64', '0.37', '56.0', '8.82', '0.22', '30.0', '5.36', '0.14', '1');
INSERT INTO `lvlupgain` VALUES ('54', '346.0', '35.10', '0.37', '242.2', '24.54', '0.22', '144.0', '9.80', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('55', '1110.8', '57.10', '0.37', '777.5', '39.94', '0.22', '359.1', '19.40', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('56', '346.0', '32.90', '0.37', '276.8', '26.30', '0.22', '144.0', '9.80', '0.14', '20');
INSERT INTO `lvlupgain` VALUES ('57', '1063.0', '54.50', '0.37', '850.4', '43.58', '0.22', '359.1', '19.40', '0.14', '40');
INSERT INTO `lvlupgain` VALUES ('88', '3061.8', '63.08', '0.37', '2755.6', '56.77', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('89', '3274.2', '69.72', '0.37', '2619.3', '55.78', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('90', '2883.9', '59.76', '0.37', '1730.3', '35.86', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('91', '2883.9', '59.76', '0.37', '1730.3', '35.86', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('92', '2729.9', '56.44', '0.37', '1910.9', '39.51', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('93', '2623.7', '53.12', '0.37', '1049.4', '21.25', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('94', '2880.0', '58.10', '0.37', '1440.0', '29.05', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('95', '2880.0', '58.10', '0.37', '1440.0', '29.05', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('96', '3039.3', '63.08', '0.37', '1823.5', '37.85', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('97', '3182.7', '63.08', '0.37', '2227.8', '44.16', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('98', '3342.0', '68.06', '0.37', '1671.0', '34.03', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('99', '3196.0', '66.40', '0.37', '1917.6', '39.84', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('100', '3302.2', '69.72', '0.37', '1651.1', '34.86', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('101', '2935.8', '59.76', '0.37', '1174.3', '23.90', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('102', '3042.0', '63.08', '0.37', '1521.0', '31.54', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('103', '3013.1', '61.42', '0.37', '1506.5', '30.71', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('104', '3119.3', '64.74', '0.37', '1871.5', '38.84', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('105', '3422.0', '69.72', '0.37', '1711.0', '34.86', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('106', '3374.0', '69.72', '0.37', '2024.4', '41.83', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('107', '3533.3', '74.70', '0.37', '1766.6', '37.35', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('108', '3113.8', '63.08', '0.37', '1245.5', '25.23', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('109', '3220.0', '66.40', '0.37', '1610.0', '33.20', '0.22', '1155.6', '24.90', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('110', '3039.0', '61.42', '0.37', '1519.5', '30.71', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('111', '3198.3', '66.40', '0.37', '1918.9', '39.84', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('112', '3447.9', '69.72', '0.37', '1723.9', '34.86', '0.22', '1540.8', '33.20', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('113', '3447.2', '72.94', '0.37', '2413.0', '51.03', '0.22', '1155.6', '24.80', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('114', '3293.2', '69.62', '0.37', '1646.6', '34.76', '0.22', '1155.6', '24.80', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('115', '3359.9', '67.96', '0.37', '2687.9', '54.35', '0.22', '1540.8', '33.10', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('116', '3359.9', '67.96', '0.37', '1679.9', '33.93', '0.22', '1540.8', '33.10', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('117', '3447.2', '72.94', '0.37', '2413.0', '51.03', '0.22', '1155.6', '24.80', '0.14', '76');
INSERT INTO `lvlupgain` VALUES ('118', '3293.2', '69.62', '0.37', '2634.5', '55.68', '0.22', '1155.6', '24.80', '0.14', '76');
+62
View File
@@ -0,0 +1,62 @@
--
-- Table structure for table `mapregion`
--
DROP TABLE IF EXISTS mapregion;
CREATE TABLE `mapregion` (
`region` int(11) NOT NULL default '0',
`sec0` int(2) NOT NULL default '0',
`sec1` int(2) NOT NULL default '0',
`sec2` int(2) NOT NULL default '0',
`sec3` int(2) NOT NULL default '0',
`sec4` int(2) NOT NULL default '0',
`sec5` int(2) NOT NULL default '0',
`sec6` int(2) NOT NULL default '0',
`sec7` int(2) NOT NULL default '0',
`sec8` int(2) NOT NULL default '0',
`sec9` int(2) NOT NULL default '0',
`sec10` int(2) NOT NULL default '0',
PRIMARY KEY (`region`)
);
--
-- Dumping data for table `mapregion`
--
-- 0 = "Talking Island Village"
-- 1 = "Elven Village"
-- 2 = "Dark Elven Village"
-- 3 = "Orc Village"
-- 4 = "Dwarven Village"
-- 5 = "Town of Gludio"
-- 6 = "Gludin Village"
-- 7 = "Town of Dion"
-- 8 = "Town of Giran"
-- 9 = "Town of Oren"
-- 10 = "Town of Aden"
-- 11 = "Hunters Village"
-- 12 = "Giran Harbor"
-- 13 = "Heine"
-- 14 = "Rune Township"
-- 15 = "Town of Goddard"
-- 16 = "Floran Village"
-- default = "Town of Aden"
INSERT INTO mapregion VALUES
(0, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4),
(1, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4),
(2, 3, 3, 7, 9, 11, 4, 4, 4, 4, 4, 4),
(3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4),
(4, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4),
(5, 3, 3, 3, 3, 3, 14, 14, 15, 15, 15, 15),
(6, 3, 3, 3, 3, 3, 14, 14, 15, 15, 15, 15),
(7, 3, 3, 3, 3, 14, 14, 14, 15, 15, 15, 15),
(8, 3, 3, 3, 3, 14, 14, 14, 15, 15, 15, 15),
(9, 2, 2, 2, 2, 2, 14, 9, 9, 10, 10, 10),
(10, 2, 2, 2, 2, 2, 9, 9, 10, 10, 10, 10),
(11, 2, 2, 2, 2, 1, 1, 9, 11, 10, 10, 10),
(12, 6, 6, 2, 5, 1, 1, 9, 11, 11, 11, 11),
(13, 6, 6, 5, 5, 7, 7, 8, 8, 8, 8, 8),
(14, 6, 6, 6, 5, 7, 7, 8, 8, 8, 8, 8),
(15, 0, 6, 6, 5, 16, 12, 13, 13, 13, 13, 13),
(16, 0, 0, 6, 6, 12, 12, 13, 13, 13, 13, 13),
(17, 0, 0, 0, 0, 0, 0, 13, 13, 13, 13, 13);
@@ -0,0 +1,30 @@
--
-- Table structure for table `merchant_areas_list`
--
DROP TABLE IF EXISTS merchant_areas_list;
CREATE TABLE `merchant_areas_list` (
`merchant_area_id` int(10) unsigned NOT NULL default '0',
`merchant_area_name` varchar(25) NOT NULL default '',
`tax` double(3,2) unsigned NOT NULL default '0.00',
`Chaotic` int(11) NOT NULL default '0',
PRIMARY KEY (`merchant_area_id`)
);
--
-- Dumping data for table `merchant_areas_list`
--
INSERT INTO `merchant_areas_list` VALUES (1,'Starter Town',0.15,0);
INSERT INTO `merchant_areas_list` VALUES (2,'West of Alter of Rights',0.50,1);
INSERT INTO `merchant_areas_list` VALUES (3,'Gludin',0.20,0);
INSERT INTO `merchant_areas_list` VALUES (4,'Gludio',0.20,0);
INSERT INTO `merchant_areas_list` VALUES (5,'South Wastelands',0.50,1);
INSERT INTO `merchant_areas_list` VALUES (6,'Dion',0.20,0);
INSERT INTO `merchant_areas_list` VALUES (7,'Floran',0.50,1);
INSERT INTO `merchant_areas_list` VALUES (8,'Hunters Village',0.30,0);
INSERT INTO `merchant_areas_list` VALUES (9,'Giran',0.10,0);
INSERT INTO `merchant_areas_list` VALUES (10,'Oren',0.15,0);
INSERT INTO `merchant_areas_list` VALUES (11,'Ivory Tower',0.15,0);
INSERT INTO `merchant_areas_list` VALUES (12,'Harden\'s Ac.',0.20,0);
INSERT INTO `merchant_areas_list` VALUES (13,'Aden',0.20,0);
INSERT INTO `merchant_areas_list` VALUES (14,'Castle',0.0,0);
File diff suppressed because it is too large Load Diff
+11
View File
@@ -0,0 +1,11 @@
-- ----------------------------
-- Table structure for leasing merchants
-- ----------------------------
CREATE TABLE IF NOT EXISTS merchant_lease (
merchant_id int(11) NOT NULL default 0,
player_id int(11) NOT NULL default 0,
bid int(11),
`type` int(11) NOT NULL default 0,
player_name varchar(35),
PRIMARY KEY (merchant_id,player_id,`type`)
);
+416
View File
@@ -0,0 +1,416 @@
-- ----------------------------
-- Table structure for `merchant_shopids`
-- ----------------------------
DROP TABLE IF EXISTS `merchant_shopids`;
CREATE TABLE `merchant_shopids` (
`shop_id` decimal(9,0) NOT NULL DEFAULT '0',
`npc_id` varchar(9) DEFAULT NULL,
PRIMARY KEY (`shop_id`)
);
-- ----------------------------
-- Records of merchant_shopids
-- ----------------------------
INSERT INTO `merchant_shopids` VALUES
(1, '7001'),
(2, '7001'),
(3, '7088'),
(4, '7087'),
(6, '7893'),
(7, '7090'),
(8, '7091'),
(9, '7093'),
(10, '7892'),
(11, '7002'),
(12, '7002'),
(13, '7003'),
(14, '7004'),
(15, '7060'),
(16, '7060'),
(17, '7061'),
(18, '7061'),
(19, '7062'),
(20, '7063'),
(21, '7078'),
(22, '7078'),
(23, '7081'),
(24, '7082'),
(25, '7084'),
(26, '7085'),
(27, '7081'),
(28, '7082'),
(29, '7094'),
(30, '7094'),
(31, '7135'),
(32, '7135'),
(33, '7136'),
(34, '7136'),
(35, '7137'),
(36, '7138'),
(37, '7147'),
(38, '7147'),
(39, '7148'),
(40, '7148'),
(41, '7149'),
(42, '7150'),
(43, '7163'),
(44, '7164'),
(45, '7165'),
(46, '7166'),
(47, '7178'),
(48, '7178'),
(49, '7179'),
(50, '7179'),
(51, '7180'),
(52, '7181'),
(53, '7207'),
(54, '7207'),
(55, '7208'),
(56, '7208'),
(57, '7209'),
(58, '7230'),
(59, '7230'),
(60, '7231'),
(61, '7253'),
(62, '7253'),
(63, '7254'),
(64, '7294'),
(65, '7301'),
(66, '7313'),
(67, '7314'),
(68, '7315'),
(69, '7321'),
(70, '7321'),
(71, '7420'),
(72, '7436'),
(73, '7436'),
(74, '7437'),
(75, '7516'),
(76, '7516'),
(77, '7517'),
(78, '7517'),
(79, '7518'),
(80, '7519'),
(81, '7558'),
(82, '7558'),
(83, '7559'),
(84, '7559'),
(85, '7560'),
(86, '7561'),
(87, '7684'),
(88, '7684'),
(89, '7731'),
(90, '7827'),
(91, '7828'),
(92, '7829'),
(93, '7830'),
(94, '7831'),
(95, '7834'),
(96, '7837'),
(97, '7837'),
(98, '7838'),
(99, '7838'),
(100, '7839'),
(101, '7840'),
(102, '7841'),
(103, '7842'),
(104, '7869'),
(105, '8256'),
(106, '8256'),
(107, '8257'),
(108, '8257'),
(109, '8258'),
(110, '8258'),
(111, '8259'),
(112, '8259'),
(113, '8260'),
(114, '8261'),
(115, '8262'),
(116, '8263'),
(117, '8263'),
(118, '8265'),
(119, '8273'),
(120, '8274'),
(121, '8284'),
(122, '8291'),
(123, '8300'),
(124, '8300'),
(125, '8301'),
(126, '8301'),
(127, '8302'),
(128, '8302'),
(129, '8303'),
(130, '8303'),
(131, '8304'),
(132, '8305'),
(133, '8306'),
(134, '8307'),
(135, '8307'),
(136, '8309'),
(137, '8318'),
(138, '8319'),
(139, '8338'),
(140, '8339'),
(141, '8366'),
(142, '8578'),
(143, '8579'),
(144, '8696'),
(145, '8366'),
(146, '8445'),
(147, '8386'),
(148, '8438'),
(149, '8435'),
(150, '8437'),
(151, '8422'),
(152, '8433'),
(153, '8440'),
(154, '8432'),
(155, '8425'),
(156, '8439'),
(157, '8416'),
(158, '8417'),
(159, '8413'),
(160, '8414'),
(161, '8415'),
(162, '8418'),
(163, '8419'),
(164, '8420'),
(165, '8421'),
(166, '8423'),
(167, '8424'),
(168, '8426'),
(169, '8427'),
(170, '8428'),
(171, '8429'),
(172, '8430'),
(173, '8431'),
(174, '8434'),
(175, '8436'),
(176, '8441'),
(177, '8442'),
(178, '8443'),
(179, '8444'),
(180, '8666'),
(181, '8667'),
(182, '8668'),
(183, '8669'),
(184, '8670'),
(213, '7003'),
(219, '7062'),
(220, '7063'),
(236, '7138'),
(241, '7149'),
(251, '7180'),
(252, '7181'),
(260, '7231'),
(263, '7254'),
(264, '7294'),
(265, '7301'),
(267, '7314'),
(285, '7560'),
(302, '7841'),
(303, '7842'),
(305, '8044'),
(306, '8045'),
(351, '7047'),
(352, '7387'),
(353, '7879'),
(1001, 'gm'),
(1002, 'gm'),
(1003, 'gm'),
(1004, 'gm'),
(1005, 'gm'),
(1006, 'gm'),
(1007, 'gm'),
(1008, 'gm'),
(1009, 'gm'),
(1010, 'gm'),
(1011, 'gm'),
(1012, 'gm'),
(1013, 'gm'),
(1014, 'gm'),
(1015, 'gm'),
(1025, 'gm'),
(1026, 'gm'),
(1027, 'gm'),
(1028, 'gm'),
(1029, 'gm'),
(1030, 'gm'),
(1813, '8380'),
(1814, '8373'),
(2001, 'gm'),
(2002, 'gm'),
(2003, 'gm'),
(2004, 'gm'),
(2005, 'gm'),
(2006, 'gm'),
(2007, 'gm'),
(2008, 'gm'),
(2009, 'gm'),
(2010, 'gm'),
(2011, 'gm'),
(2012, 'gm'),
(2013, 'gm'),
(2014, 'gm'),
(2015, 'gm'),
(3001, 'gm'),
(3002, 'gm'),
(3003, 'gm'),
(5150, 'gm'),
(5151, 'gm'),
(5152, 'gm'),
(5808, 'gm'),
(5600, '7892'),
(5601, '7893'),
(5710, '8067'),
(5800, '7890'),
(5801, '7890'),
(5802, '7891'),
(5803, '7891'),
(17996, '7996'),
(17997, '7997'),
(17998, '7998'),
(17999, '7999'),
(18000, '8000'),
(18058, '8058'),
(18059, '8059'),
(18060, '8060'),
(18402, '8402'),
(30040, 'gm'),
(30041, 'gm'),
(30042, 'gm'),
(30043, 'gm'),
(30044, 'gm'),
(30045, 'gm'),
(30046, 'gm'),
(30047, 'gm'),
(30048, 'gm'),
(30049, 'gm'),
(30050, 'gm'),
(30051, 'gm'),
(30052, 'gm'),
(30053, 'gm'),
(30054, 'gm'),
(30055, 'gm'),
(30056, 'gm'),
(30057, 'gm'),
(30058, 'gm'),
(30059, 'gm'),
(123161, '12316'),
(123171, '12317'),
(123181, '12318'),
(123191, '12319'),
(123201, '12320'),
(123211, '12321'),
(126131, '12613'),
(127901, '12790'),
(300410, 'gm'),
(300510, 'gm'),
(300511, 'gm'),
(300522, 'gm'),
(300523, 'gm'),
(300524, 'gm'),
(300525, 'gm'),
(300526, 'gm');
--
-- Clan Halls Item creation
--
INSERT INTO merchant_shopids VALUES
(112892, '12892'),
(212892, '12892'),
(312892, '12892'),
(112833, '12833'),
(212833, '12833'),
(312833, '12833'),
(112834, '12834'),
(212834, '12834'),
(312834, '12834'),
(112835, '12835'),
(212835, '12835'),
(312835, '12835'),
(112836, '12836'),
(212836, '12836'),
(312836, '12836'),
(112837, '12837'),
(212837, '12837'),
(312837, '12837'),
(112844, '12844'),
(212844, '12844'),
(312844, '12844'),
(112846, '12846'),
(212846, '12846'),
(312846, '12846'),
(112847, '12847'),
(212847, '12847'),
(312847, '12847'),
(112848, '12848'),
(212848, '12848'),
(312848, '12848'),
(112849, '12849'),
(212849, '12849'),
(312849, '12849'),
(112850, '12850'),
(212850, '12850'),
(312850, '12850'),
(112851, '12851'),
(212851, '12851'),
(312851, '12851'),
(112852, '12852'),
(212852, '12852'),
(312852, '12852'),
(112853, '12853'),
(212853, '12853'),
(312853, '12853'),
(112854, '12854'),
(212854, '12854'),
(312854, '12854'),
(112861, '12861'),
(212861, '12861'),
(312861, '12861'),
(112862, '12862'),
(212862, '12862'),
(312862, '12862'),
(112863, '12863'),
(212863, '12863'),
(312863, '12863'),
(112887, '12887'),
(212887, '12887'),
(312887, '12887'),
(112889, '12889'),
(212889, '12889'),
(312889, '12889'),
(112890, '12890'),
(212890, '12890'),
(312890, '12890'),
(112891, '12891'),
(212891, '12891'),
(312891, '12891'),
(112893, '12893'),
(212893, '12893'),
(312893, '12893'),
(112894, '12894'),
(212894, '12894'),
(312894, '12894'),
(112895, '12895'),
(212895, '12895'),
(312895, '12895'),
(112896, '12896'),
(212896, '12896'),
(312896, '12896'),
(112897, '12897'),
(212897, '12897'),
(312897, '12897'),
(112898, '12898'),
(212898, '12898'),
(312898, '12898'),
--
-- Castles Item creation
--
(121211, '12121'),
(121521, '12152'),
(122401, '12240'),
(122521, '12252'),
(122551, '12255'),
(126001, '12600'),
(127911, '12791');
+88
View File
@@ -0,0 +1,88 @@
--
-- Table structure for table `merchants`
--
DROP TABLE IF EXISTS merchants;
CREATE TABLE `merchants` (
`npc_id` int(11) NOT NULL default '0',
`merchant_area_id` tinyint(4) default NULL,
PRIMARY KEY (`npc_id`)
);
--
-- Dumping data for table `merchants`
--
INSERT INTO `merchants` VALUES (1007001,1);
INSERT INTO `merchants` VALUES (1007002,1);
INSERT INTO `merchants` VALUES (1007003,1);
INSERT INTO `merchants` VALUES (1007004,1);
INSERT INTO `merchants` VALUES (1007060,6);
INSERT INTO `merchants` VALUES (1007061,6);
INSERT INTO `merchants` VALUES (1007062,6);
INSERT INTO `merchants` VALUES (1007063,6);
INSERT INTO `merchants` VALUES (1007078,7);
INSERT INTO `merchants` VALUES (1007081,9);
INSERT INTO `merchants` VALUES (1007082,9);
INSERT INTO `merchants` VALUES (1007084,9);
INSERT INTO `merchants` VALUES (1007085,9);
INSERT INTO `merchants` VALUES (1007087,9);
INSERT INTO `merchants` VALUES (1007088,9);
INSERT INTO `merchants` VALUES (1007090,9);
INSERT INTO `merchants` VALUES (1007091,9);
INSERT INTO `merchants` VALUES (1007093,9);
INSERT INTO `merchants` VALUES (1007094,9);
INSERT INTO `merchants` VALUES (1007135,1);
INSERT INTO `merchants` VALUES (1007136,1);
INSERT INTO `merchants` VALUES (1007137,1);
INSERT INTO `merchants` VALUES (1007138,1);
INSERT INTO `merchants` VALUES (1007147,1);
INSERT INTO `merchants` VALUES (1007148,1);
INSERT INTO `merchants` VALUES (1007149,1);
INSERT INTO `merchants` VALUES (1007150,1);
INSERT INTO `merchants` VALUES (1007163,11);
INSERT INTO `merchants` VALUES (1007164,11);
INSERT INTO `merchants` VALUES (1007165,11);
INSERT INTO `merchants` VALUES (1007166,11);
INSERT INTO `merchants` VALUES (1007178,10);
INSERT INTO `merchants` VALUES (1007179,10);
INSERT INTO `merchants` VALUES (1007180,10);
INSERT INTO `merchants` VALUES (1007181,10);
INSERT INTO `merchants` VALUES (1007207,3);
INSERT INTO `merchants` VALUES (1007208,3);
INSERT INTO `merchants` VALUES (1007209,3);
INSERT INTO `merchants` VALUES (1007230,8);
INSERT INTO `merchants` VALUES (1007231,8);
INSERT INTO `merchants` VALUES (1007253,4);
INSERT INTO `merchants` VALUES (1007254,4);
INSERT INTO `merchants` VALUES (1007294,4);
INSERT INTO `merchants` VALUES (1007301,8);
INSERT INTO `merchants` VALUES (1007313,3);
INSERT INTO `merchants` VALUES (1007314,3);
INSERT INTO `merchants` VALUES (1007315,3);
INSERT INTO `merchants` VALUES (1007321,4);
INSERT INTO `merchants` VALUES (1007420,2);
INSERT INTO `merchants` VALUES (1007436,5);
INSERT INTO `merchants` VALUES (1007437,5);
INSERT INTO `merchants` VALUES (1007516,1);
INSERT INTO `merchants` VALUES (1007517,1);
INSERT INTO `merchants` VALUES (1007518,1);
INSERT INTO `merchants` VALUES (1007519,1);
INSERT INTO `merchants` VALUES (1007558,1);
INSERT INTO `merchants` VALUES (1007559,1);
INSERT INTO `merchants` VALUES (1007560,1);
INSERT INTO `merchants` VALUES (1007561,1);
INSERT INTO `merchants` VALUES (1007684,8);
INSERT INTO `merchants` VALUES (1007746,8);
INSERT INTO `merchants` VALUES (1007834,12);
INSERT INTO `merchants` VALUES (1007839,13);
INSERT INTO `merchants` VALUES (1007840,13);
INSERT INTO `merchants` VALUES (1007841,13);
INSERT INTO `merchants` VALUES (1007842,13);
INSERT INTO `merchants` VALUES (112316,14);
INSERT INTO `merchants` VALUES (112317,14);
INSERT INTO `merchants` VALUES (112318,14);
INSERT INTO `merchants` VALUES (112319,14);
INSERT INTO `merchants` VALUES (112320,14);
INSERT INTO `merchants` VALUES (112321,14);
INSERT INTO `merchants` VALUES (112613,14);
INSERT INTO `merchants` VALUES (112790,14);
+428
View File
@@ -0,0 +1,428 @@
--
-- Table structure for table `minions`
--
DROP TABLE IF EXISTS `minions`;
CREATE TABLE `minions` (
`boss_id` int(11) NOT NULL default '0',
`minion_id` int(11) NOT NULL default '0',
`amount_min` int(4) NOT NULL default '0',
`amount_max` int(4) NOT NULL default '0',
PRIMARY KEY (`boss_id`,`minion_id`)
);
--
-- Dumping data for table `minions`
--
-- c1 mobs
INSERT INTO `minions` VALUES
(117,118,1,3),
(376,377,1,2),
(398,399,1,2),
(520,445,3,5),
(522,524,2,4),
(738,739,3,5),
(745,746,1,2),
(747,748,1,2),
(749,750,1,2),
(751,752,3,3),
(753,1040,4,4),
(758,759,1,1),
(758,760,1,1),
(761,762,2,3),
(763,764,1,1),
(763,765,1,1),
(763,766,1,1),
(767,768,1,1),
(767,769,1,1),
(767,770,1,1),
(771,772,1,3),
(773,774,2,4),
(779,750,1,3),
(930,928,1,1),
(930,929,1,1),
(933,931,1,1),
(933,932,1,1),
(935,934,1,3),
(936,937,1,1),
(936,938,1,1),
(936,939,1,1),
(941,940,3,3),
(944,942,1,1),
(944,943,2,2),
(947,945,1,2),
(947,946,1,2),
(950,948,1,2),
(950,949,1,2),
(953,951,1,2),
(953,952,1,2),
(956,954,1,2),
(956,955,1,2),
(959,957,1,2),
(959,958,1,2),
(963,960,1,1),
(963,961,1,1),
(963,962,1,1),
(966,964,1,2),
(966,965,1,2),
(969,967,1,2),
(969,968,1,2),
(973,970,1,1),
(973,971,1,1),
(973,972,1,1),
(974,975,1,2),
(974,976,1,2),
(977,978,1,1),
(977,979,1,1),
(980,981,1,1),
(980,982,1,1),
(983,984,1,1),
(983,985,1,1),
(983,1074,1,1),
(986,987,1,2),
(986,988,1,2),
(989,990,1,1),
(991,992,1,2),
(991,993,1,2),
(994,995,3,4);
INSERT INTO `minions` VALUES
(1058,1059,1,2),
(1058,1060,1,2),
(1075,1076,1,1),
(1075,1077,1,2),
(1078,1079,1,1),
(1078,1080,1,2),
(1081,1082,1,1),
(1081,1083,1,3),
(1090,1091,1,1),
(1090,1092,1,1),
(1312,1313,2,2),
(1343,1344,2,2),
(1345,1346,2,2),
(1347,1348,1,1),
(1347,1349,1,1),
(1369,1370,2,2),
(1371,1372,2,2),
(1373,1374,1,1),
(1373,1375,1,1),
(1541,1542,1,1),
(1541,1543,1,1),
(1544,1545,1,1),
(1544,1546,1,1),
(1596,1597,1,1),
(1596,1598,1,1),
(1599,1600,1,1),
(1599,1601,1,1),
(5021,492,6,8),
(5022,367,1,3),
(5036,5037,2,3),
(5110,5111,3,5),
(5113,5111,3,6);
-- raid bosses
INSERT INTO `minions` VALUES
(10001,10002,3,3),
(10001,10003,1,1),
(10004,10005,3,3),
(10004,10006,2,2),
(10007,10008,2,2),
(10007,10009,2,2),
(10010,10011,3,3),
(10010,10012,2,2),
(10013,10014,1,1),
(10013,10015,4,4),
(10016,10017,2,2),
(10016,10018,2,2),
(10217,10218,3,3),
(10217,10219,2,2),
(10020,10021,2,2),
(10020,10022,2,2),
(10023,10024,1,1),
(10023,10025,4,4),
(10026,10027,3,3),
(10026,10028,2,2),
(10029,10030,2,2),
(10029,10031,2,2),
(10032,10033,3,3),
(10032,10034,1,1),
(10035,10036,3,3),
(10035,10037,2,2),
(10038,10039,1,1),
(10038,10040,4,4),
(10041,10042,3,3),
(10041,10043,2,2),
(10044,10045,2,2),
(10044,10046,2,2),
(10047,10048,1,1),
(10047,10049,4,4),
(10051,10052,2,2),
(10051,10053,2,2),
(10054,10055,1,1),
(10054,10056,4,4),
(10057,10058,3,3),
(10057,10059,2,2),
(10060,10061,3,3),
(10060,10062,1,1),
(10064,10065,1,1),
(10064,10066,4,4),
(10067,10068,3,3),
(10067,10069,2,2),
(10070,10071,3,3),
(10073,10074,2,2),
(10076,10077,1,1),
(10079,10080,2,2),
(10070,10072,1,1),
(10073,10075,2,2),
(10076,10078,4,4),
(10079,10081,2,2),
(10082,10083,3,3),
(10082,10084,1,1),
(10085,10086,3,3),
(10085,10087,2,2),
(10089,10090,3,3),
(10089,10091,1,1),
(10092,10093,1,1),
(10092,10094,4,4),
(10095,10096,3,3),
(10095,10097,1,1),
(10099,10100,2,2),
(10099,10101,2,2),
(10103,10104,1,1),
(10103,10105,4,4),
(10106,10107,3,3),
(10106,10108,2,2),
(10109,10110,3,3),
(10109,10111,1,1),
(10112,10113,3,3),
(10112,10114,1,1),
(10115,10116,3,3),
(10115,10117,2,2),
(10119,10120,3,3),
(10119,10121,1,1),
(10122,10123,1,1),
(10122,10124,4,4),
(10128,10129,3,3),
(10128,10130,1,1),
(10131,10132,3,3),
(10131,10133,2,2),
(10134,10135,2,2),
(10134,10136,2,2),
(10137,10138,3,3),
(10137,10139,1,1),
(10140,10141,1,1),
(10140,10142,4,4),
(10143,10144,2,2),
(10143,10145,2,2),
(10146,10147,3,3),
(10146,10148,2,2),
(10149,10150,3,3),
(10149,10151,2,2),
(10152,10153,1,1),
(10152,10154,4,4),
(10155,10156,3,3),
(10155,10157,1,1),
(10159,10160,2,2),
(10159,10161,2,2),
(10163,10164,3,3),
(10163,10165,2,2),
(10166,10167,2,2),
(10166,10168,2,2),
(10170,10171,3,3),
(10170,10172,2,2),
(10173,10174,2,2),
(10173,10175,2,2),
(10176,10177,1,2),
(10176,10178,1,2),
(10179,10180,1,2),
(10179,10181,1,2),
(10182,10183,2,2),
(10182,10184,2,2),
(10185,10186,3,3),
(10185,10187,2,2),
(10189,10190,3,3),
(10189,10191,1,1),
(10192,10193,1,1),
(10192,10194,4,4),
(10199,10200,3,3),
(10199,10201,1,1),
(10202,10203,2,2),
(10202,10204,2,2),
(10205,10206,1,1),
(10205,10207,4,4),
(10208,10209,3,3),
(10208,10210,1,1),
(10211,10212,3,3),
(10211,10213,2,2),
(10214,10215,3,3),
(10214,10216,1,1),
(10220,10221,1,2),
(10220,10222,1,2),
(10223,10224,3,3),
(10223,10225,1,1),
(10226,10227,2,2),
(10226,10228,2,2),
(10230,10231,1,1),
(10230,10232,4,4),
(10235,10236,2,2),
(10235,10237,2,2),
(10238,10239,1,2),
(10238,10240,1,2),
(10241,10242,3,3),
(10241,10243,2,2),
(10245,10246,1,1),
(10245,10247,4,4),
(10249,10250,2,3),
(10249,10251,1,1),
(10252,10253,3,3),
(10252,10254,1,1),
(10256,10257,3,3),
(10256,10258,2,2),
(10260,10261,3,3),
(10260,10262,2,2),
(10263,10264,1,1),
(10263,10265,1,3),
(10266,10267,4,4),
(10266,10268,1,1),
(10269,10270,3,3),
(10269,10271,2,2),
(10273,10274,3,3),
(10273,10275,1,1),
(10277,10278,2,2),
(10277,10279,2,2),
(10283,10284,3,3),
(10283,10285,1,1),
(10286,10287,2,2),
(10286,10288,1,1),
(10286,10289,1,1),
(10290,10291,3,3),
(10290,10292,1,1),
(10293,10294,1,1),
(10293,10295,4,4),
(10296,10297,3,3),
(10296,10298,1,1),
(10299,10300,3,3),
(10299,10301,2,2),
(10302,10303,3,3),
(10302,10304,1,1),
(10306,10307,1,1),
(10306,10308,4,4),
(10309,10310,1,1),
(10309,10311,4,4),
(10312,10313,2,2),
(10312,10314,2,2),
(10316,10317,1,1),
(10316,10318,4,4),
(10319,10320,3,3),
(10319,10321,1,1),
(10322,10323,3,3),
(10322,10324,1,1),
(10325,10326,1,1),
(10325,10327,4,4),
(10328,10329,1,1),
(10328,10330,1,1),
(10328,10331,1,1),
(10328,10332,1,1),
(10339,10340,2,2),
(10339,10341,2,2),
(10342,10343,1,1),
(10342,10344,1,1),
(10342,10345,2,2),
(10346,10347,3,3),
(10346,10348,1,1),
(10349,10350,3,3),
(10349,10351,1,1),
(10352,10353,3,3),
(10354,10355,4,4),
(10354,10356,1,1),
(10357,10358,2,2),
(10357,10359,1,1),
(10360,10361,3,3),
(10362,10363,2,2),
(10362,10364,3,3),
(10366,10367,2,2),
(10366,10368,1,1),
(10369,10370,1,1),
(10369,10371,4,4),
(10373,10374,3,3),
(10375,10376,2,2),
(10375,10377,1,1),
(10378,10379,3,3),
(10380,10381,1,1),
(10380,10382,4,4),
(10383,10384,3,3),
(10385,10386,1,1),
(10385,10387,4,4),
(10388,10389,3,3),
(10388,10390,2,2),
(10392,10393,3,3),
(10395,10396,1,1),
(10395,10397,2,2),
(10398,10399,3,3),
(10398,10400,1,1),
(10401,10402,1,1),
(10401,10403,3,3),
(10404,10405,2,2),
(10404,10406,1,1),
(10407,10408,1,1),
(10407,10409,2,2),
(10410,10411,3,3),
(10412,10413,3,3),
(10412,10414,2,2),
(10415,10416,3,3),
(10415,10417,1,1),
(10418,10419,3,3),
(10420,10421,3,3),
(10420,10422,1,1),
(10423,10424,4,4),
(10423,10425,1,1),
(10426,10427,2,2),
(10426,10428,1,1),
(10429,10430,6,9),
(10431,10432,2,2),
(10431,10433,2,2),
(10434,10435,1,1),
(10434,10436,3,3),
(10438,10439,1,1),
(10438,10440,3,3),
(10441,10442,4,4),
(10441,10443,1,1),
(10444,10445,3,3),
(10444,10446,2,2),
(10447,10448,2,2),
(10447,10449,2,2),
(10450,10451,3,3),
(10450,10452,1,1),
(10453,10454,3,3),
(10453,10455,1,1),
(10456,10457,1,1),
(10456,10458,2,2),
(10456,10459,1,1),
(10460,10461,2,2),
(10460,10462,1,1),
(10463,10464,1,1),
(10463,10465,1,1),
(10463,10466,1,1),
(10467,10468,4,4),
(10467,10469,1,1),
(10470,10471,3,3),
(10470,10472,1,1),
(10473,10474,3,3),
(10475,10476,3,3),
(10475,10477,2,2),
(10478,10479,3,3),
(10478,10480,1,1),
(10481,10482,2,2),
(10481,10483,1,1),
(10484,10485,1,1),
(10484,10486,2,2),
(10487,10488,3,3),
(10487,10489,1,1),
(10490,10491,3,3),
(10490,10492,1,2),
(10493,10494,1,1),
(10493,10495,4,4),
(10496,10497,3,3),
(10498,10499,1,1),
(10498,10500,4,4);
File diff suppressed because it is too large Load Diff
+69
View File
@@ -0,0 +1,69 @@
-- ----------------------------
-- Table structure for npc_buffer
-- ----------------------------
DROP TABLE IF EXISTS `npc_buffer`;
CREATE TABLE `npc_buffer` (
`id` int(6) NOT NULL AUTO_INCREMENT,
`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 (`id`,`skill_id`,`buff_group`)
);
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO npc_buffer VALUES
(1, 264, 1, 0, 0, 264),
(2, 265, 1, 0, 0, 265),
(3, 266, 1, 0, 0, 266),
(4, 267, 1, 0, 0, 267),
(5, 268, 1, 0, 0, 268),
(6, 269, 1, 0, 0, 269),
(7, 270, 1, 0, 0, 270),
(8, 271, 1, 0, 0, 271),
(9, 272, 1, 0, 0, 272),
(10, 273, 1, 0, 0, 273),
(11, 274, 1, 0, 0, 274),
(12, 275, 1, 0, 0, 275),
(13, 276, 1, 0, 0, 276),
(14, 277, 1, 0, 0, 277),
(15, 304, 1, 0, 0, 304),
(16, 305, 1, 0, 0, 305),
(17, 306, 1, 0, 0, 306),
(18, 307, 1, 0, 0, 307),
(19, 308, 1, 0, 0, 308),
(20, 309, 1, 0, 0, 309),
(21, 310, 1, 0, 0, 310),
(22, 311, 1, 0, 0, 311),
(23, 349, 1, 0, 0, 349),
(24, 363, 1, 0, 0, 363),
(25, 364, 1, 0, 0, 364),
(26, 366, 1, 0, 0, 366),
(27, 367, 1, 0, 0, 367),
(28, 1032, 1, 0, 0, 1032),
(29, 1033, 1, 0, 0, 1033),
(30, 1035, 1, 0, 0, 1035),
(31, 1036, 1, 0, 0, 1036),
(32, 1040, 1, 0, 0, 1040),
(33, 1043, 1, 0, 0, 1043),
(34, 1044, 1, 0, 0, 1044),
(35, 1045, 1, 0, 0, 1045),
(36, 1048, 1, 0, 0, 1048),
(37, 1059, 1, 0, 0, 1059),
(38, 1062, 1, 0, 0, 1062),
(39, 1068, 1, 0, 0, 1068),
(40, 1077, 1, 0, 0, 1077),
(41, 1078, 1, 0, 0, 1078),
(42, 1085, 1, 0, 0, 1085),
(43, 1086, 1, 0, 0, 1086),
(44, 1182, 1, 0, 0, 1182),
(45, 1189, 1, 0, 0, 1189),
(46, 1191, 1, 0, 0, 1191),
(47, 1204, 1, 0, 0, 1204),
(48, 1240, 1, 0, 0, 1240),
(49, 1242, 1, 0, 0, 1242),
(50, 1243, 1, 0, 0, 1243),
(51, 1303, 1, 0, 0, 1303);
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS `olympiad_nobles` (
`char_id` decimal(11,0) NOT NULL default '0',
`class_id` decimal(3,0) NOT NULL default '0',
`olympiad_points` decimal(10,0) NOT NULL default '0',
`competitions_done` decimal(3,0) NOT NULL default '0',
`competitions_won` decimal(3,0) NOT NULL default '0',
`competitions_lost` decimal(3,0) NOT NULL default '0',
PRIMARY KEY (`char_id`)
);
+18
View File
@@ -0,0 +1,18 @@
-- ---------------------------
-- Table structure for pets
-- ---------------------------
CREATE TABLE IF NOT EXISTS pets (
item_obj_id decimal(11) NOT NULL default 0,
name varchar(16) ,
level decimal(11) ,
curHp decimal(18,0) ,
curMp decimal(18,0) ,
exp decimal(20) ,
sp decimal(11) ,
maxload decimal(11) ,
fed decimal(11) ,
weapon int(5) ,
armor int(5) ,
jewel int(5) ,
PRIMARY KEY (item_obj_id)
);
File diff suppressed because it is too large Load Diff
+12
View File
@@ -0,0 +1,12 @@
-- ---------------------------
-- Table structure for posts
-- ---------------------------
CREATE TABLE IF NOT EXISTS `posts` (
`post_id` int(8) NOT NULL default '0',
`post_owner_name` varchar(255) NOT NULL default '',
`post_ownerid` int(8) NOT NULL default '0',
`post_date` decimal(20,0) NOT NULL default '0',
`post_topic_id` int(8) NOT NULL default '0',
`post_forum_id` int(8) NOT NULL default '0',
`post_txt` text NOT NULL
);
@@ -0,0 +1,12 @@
-- ----------------------------
-- Table structure for global quest data (i.e. quest data not particular to a player)
-- Note: We had considered using character_quests with char_id = 0 for this, but decided
-- against it, primarily for aesthetic purposes, cleaningness of code, expectability, and
-- to keep char-related data purely as char-related data, global purely as global.
-- ----------------------------
CREATE TABLE IF NOT EXISTS `quest_global_data` (
`quest_name` VARCHAR(40) NOT NULL DEFAULT '',
`var` VARCHAR(20) NOT NULL DEFAULT '',
`value` VARCHAR(255) ,
PRIMARY KEY (`quest_name`,`var`)
);
@@ -0,0 +1,203 @@
-- ----------------------------
-- Table structure for raidboss_spawnlist
-- ----------------------------
DROP TABLE IF EXISTS `raidboss_spawnlist`;
CREATE TABLE `raidboss_spawnlist` (
`boss_id` int(11) NOT NULL DEFAULT 0,
`amount` int(11) NOT NULL DEFAULT 0,
`loc_x` int(11) NOT NULL DEFAULT 0,
`loc_y` int(11) NOT NULL DEFAULT 0,
`loc_z` int(11) NOT NULL DEFAULT 0,
`heading` int(11) NOT NULL DEFAULT 0,
`respawn_min_delay` int(11) NOT NULL DEFAULT 43200,
`respawn_max_delay` int(11) NOT NULL DEFAULT 129600,
`respawn_time` bigint(20) NOT NULL DEFAULT 0,
`currentHp` decimal(8,0) DEFAULT NULL,
`currentMp` decimal(8,0) DEFAULT NULL,
PRIMARY KEY (`boss_id`,`loc_x`,`loc_y`,`loc_z`)
);
-- ----------------------------
-- Records
-- ----------------------------
INSERT INTO `raidboss_spawnlist` VALUES
(10001, 1, -54464, 146572, -2400, 0, 43200, 129600, 0, 23712, 514),
(10004, 1, -94101, 100238, -3012, 0, 43200, 129600, 0, 66433, 732),
(10007, 1, 124240, 75376, -2800, 0, 43200, 129600, 0, 100965, 1178),
(10010, 1, 113920, 52960, -3735, 0, 43200, 129600, 0, 153521, 1976),
(10013, 1, 169744, 11920, -2732, 0, 43200, 129600, 0, 132487, 1660),
(10016, 1, 76787, 245775, -10376, 0, 43200, 129600, 0, 94188, 2302),
(10019, 1, 7352, 169433, -3172, 0, 43200, 129600, 0, 52415, 576),
(10020, 1, 90365, 125716, -1632, 0, 43200, 129600, 0, 39603, 860),
(10023, 1, 27181, 101830, -3192, 0, 43200, 129600, 0, 73549, 860),
(10026, 1, 92976, 7920, -3914, 0, 43200, 129600, 0, 69124, 1598),
(10029, 1, 54941, 206705, -3728, 0, 43200, 129600, 0, 156190, 1848),
(10032, 1, 88532, 245798, -10376, 25874, 43200, 129600, 0, 186648, 2640),
(10035, 1, 180968, 12035, -2720, 0, 43200, 129600, 0, 241630, 2988),
(10038, 1, -57366, 186276, -4804, 0, 43200, 129600, 0, 30283, 668),
(10041, 1, 10525, 126890, -3132, 0, 43200, 129600, 0, 41308, 894),
(10044, 1, 107792, 27728, -3488, 0, 43200, 129600, 0, 64765, 1476),
(10047, 1, 116352, 27648, -3319, 0, 43200, 129600, 0, 69124, 1598),
(10050, 1, 125520, 27216, -3632, 0, 43200, 129600, 0, 126124, 1722),
(10051, 1, 117760, -9072, -3264, 0, 43200, 129600, 0, 186648, 2640),
(10054, 1, 113432, 16403, 3960, 0, 43200, 129600, 0, 250509, 3348),
(10057, 1, 107056, 168176, -3456, 0, 43200, 129600, 0, 60514, 1356),
(10060, 1, -60428, 188264, -4512, 0, 43200, 129600, 0, 21374, 546),
(10063, 1, -91009, 116339, -2908, 0, 43200, 129600, 0, 82617, 894),
(10064, 1, 92528, 84752, -3703, 0, 43200, 129600, 0, 50445, 1062),
(10067, 1, 94992, -23168, -2176, 0, 43200, 129600, 0, 140823, 1784),
(10070, 1, 125600, 50100, -3600, 0, 43200, 129600, 0, 82665, 1976),
(10073, 1, 143265, 110044, -3944, 0, 43200, 129600, 0, 239476, 2918),
(10076, 1, -61041, 127347, -2512, 0, 43200, 129600, 0, 26207, 576),
(10079, 1, 53794, 102660, -529, 0, 43200, 129600, 0, 61688, 732),
(10082, 1, 88554, 140646, -2960, 0, 43200, 129600, 0, 48537, 1028),
(10085, 1, 66944, 67504, -3704, 0, 43200, 129600, 0, 108514, 1296),
(10088, 1, 90848, 16368, -5296, 0, 43200, 129600, 0, 211294, 1238),
(10089, 1, 165424, 93776, -2992, 0, 43200, 129600, 0, 91885, 2236),
(10092, 1, 116151, 16227, 1944, 0, 43200, 129600, 0, 196324, 2988),
(10095, 1, -37799, 198120, -2200, 0, 43200, 129600, 0, 31723, 700),
(10098, 1, 123570, 133506, -3156, 0, 43200, 129600, 0, 82617, 894),
(10099, 1, 64048, 16048, -3536, 0, 43200, 129600, 0, 58430, 1296),
(10102, 1, 113840, 84256, -2480, 0, 43200, 129600, 0, 121028, 1356),
(10103, 1, 135872, 94592, -3735, 0, 43200, 129600, 0, 82665, 1976),
(10106, 1, 173880, -11412, -2880, 0, 43200, 129600, 0, 98098, 2502),
(10109, 1, 152660, 110387, -5520, 0, 43200, 129600, 0, 248996, 3274),
(10112, 1, 116219, 139458, -3124, 0, 43200, 129600, 0, 33216, 732),
(10115, 1, 94000, 197500, -3300, 0, 43200, 129600, 0, 93684, 1062),
(10118, 1, 50883, 146764, -3077, 0, 43200, 129600, 0, 82617, 894),
(10119, 1, 121872, 64032, -3536, 0, 43200, 129600, 0, 163059, 1660),
(10122, 1, 86300, -8200, -3000, 0, 43200, 129600, 0, 84968, 2040),
(10125, 1, 170656, 85184, -2000, 0, 43200, 129600, 0, 318636, 2640),
(10126, 1, 116263, 15916, 6992, 0, 43200, 129600, 0, 386945, 3644),
(10127, 1, -47634, 219274, -1936, 0, 43200, 129600, 0, 49872, 546),
(10128, 1, 17671, 179134, -3016, 0, 43200, 129600, 0, 37942, 828),
(10131, 1, 75488, -9360, -2720, 0, 43200, 129600, 0, 71339, 1660),
(10134, 1, 87536, 75872, -3591, 0, 43200, 129600, 0, 50445, 1062),
(10137, 1, 125280, 102576, -3305, 0, 43200, 129600, 0, 82665, 1976),
(10140, 1, 191975, 56959, -7616, 0, 43200, 129600, 0, 186648, 2640),
(10143, 1, 113102, 16002, 6992, 0, 43200, 129600, 0, 255158, 3644),
(10146, 1, -13698, 213796, -3300, 0, 43200, 129600, 0, 18330, 456),
(10149, 1, -12652, 138200, -3120, 0, 43200, 129600, 0, 26207, 576),
(10152, 1, 43787, 124067, -2512, 0, 43200, 129600, 0, 41308, 894),
(10155, 1, 73520, 66912, -3728, 0, 43200, 129600, 0, 100890, 1062),
(10158, 1, 77104, 5408, -3088, 0, 43200, 129600, 0, 235690, 1538),
(10159, 1, 124984, 43200, -3625, 0, 43200, 129600, 0, 80375, 1912),
(10162, 1, 194107, 53884, -4368, 0, 43200, 129600, 0, 294240, 2302),
(10163, 1, 130500, 59098, 3584, 0, 43200, 129600, 0, 241630, 2988),
(10166, 1, -21778, 152065, -2636, 0, 43200, 129600, 0, 48671, 576),
(10169, 1, -54517, 170321, -2700, 0, 43200, 129600, 0, 123377, 732),
(10170, 1, 26108, 122256, -3488, 0, 43200, 129600, 0, 46672, 994),
(10173, 1, 75968, 110784, -2512, 0, 43200, 129600, 0, 60514, 1356),
(10176, 1, 92544, 115232, -3200, 0, 43200, 129600, 0, 82665, 1976),
(10179, 1, 181814, 52379, -4344, 0, 43200, 129600, 0, 94188, 2302),
(10182, 1, 41966, 215417, -3728, 0, 43200, 129600, 0, 100502, 2707),
(10185, 1, 88143, 166365, -3388, 0, 43200, 129600, 0, 41308, 894),
(10188, 1, 88102, 176262, -3012, 0, 43200, 129600, 0, 66433, 732),
(10189, 1, 68677, 203149, -3192, 0, 43200, 129600, 0, 39603, 860),
(10192, 1, 125920, 190208, -3291, 0, 43200, 129600, 0, 56386, 1238),
(10198, 1, 102656, 157424, -3735, 0, 43200, 129600, 0, 343032, 2988),
(10199, 1, 108096, 157408, -3688, 0, 43200, 129600, 0, 214875, 3130),
(10202, 1, 119760, 157392, -3744, 0, 43200, 129600, 0, 248996, 3274),
(10205, 1, 123808, 153408, -3671, 0, 43200, 129600, 0, 220403, 3420),
(10208, 1, 73776, 201552, -3760, 0, 43200, 129600, 0, 50445, 1062),
(10211, 1, 76461, 193228, -3208, 0, 43200, 129600, 0, 43053, 928),
(10214, 1, 112112, 209936, -3616, 0, 43200, 129600, 0, 50445, 1062),
(10217, 1, 89904, 105712, -3292, 0, 43200, 129600, 0, 71339, 1660),
(10220, 1, 113551, 17083, -2120, 0, 43200, 129600, 0, 247349, 3202),
(10223, 1, 43062, 152492, -2294, 0, 43200, 129600, 0, 41308, 894),
(10226, 1, 104240, -3664, -3392, 0, 43200, 129600, 0, 193664, 2436),
(10229, 1, 137568, -19488, -3552, 0, 43200, 129600, 0, 367428, 3348),
(10230, 1, 66672, 46704, -3920, 0, 43200, 129600, 0, 87272, 2104),
(10233, 1, 185800, -26500, -2000, 0, 43200, 129600, 0, 209541, 2918),
(10234, 1, 120080, 111248, -3047, 0, 43200, 129600, 0, 201006, 2640),
(10235, 1, 116400, -62528, -3264, 0, 43200, 129600, 0, 245570, 3130),
(10238, 1, 159841, 38370, -3648, 0, 43200, 129600, 0, 102733, 2778),
(10241, 1, 165984, 88048, -2384, 0, 43200, 129600, 0, 153521, 1976),
(10244, 1, 187360, 45840, -5856, 0, 43200, 129600, 0, 367428, 3348),
(10245, 1, 172000, 55000, -5400, 0, 43200, 129600, 0, 206546, 3568),
(10248, 1, 127903, -13399, -3720, 0, 43200, 129600, 0, 352790, 3130),
(10249, 1, 147104, -20560, -3377, 0, 43200, 129600, 0, 219192, 3348),
(10252, 1, 192376, 22087, -3608, 0, 43200, 129600, 0, 211425, 2988),
(10255, 1, 170048, -24896, -3440, 0, 43200, 129600, 0, 318636, 2640),
(10256, 1, 170320, 42640, -4832, 0, 43200, 129600, 0, 94188, 2302),
(10259, 1, 42050, 208107, -3752, 0, 43200, 129600, 0, 269844, 1976),
(10260, 1, 93120, 19440, -3607, 0, 43200, 129600, 0, 112383, 1356),
(10263, 1, 144400, -28192, -1920, 0, 43200, 129600, 0, 190791, 2778),
(10266, 1, 188983, 13647, -2672, 0, 43200, 129600, 0, 250509, 3348),
(10269, 1, 123504, -23696, -3481, 0, 43200, 129600, 0, 211425, 2988),
(10272, 1, 49194, 127999, -3161, 0, 43200, 129600, 0, 60567, 668),
(10276, 1, 154088, -14116, -3736, 0, 43200, 129600, 0, 367428, 3348),
(10277, 1, 54651, 180269, -4976, 0, 43200, 129600, 0, 142678, 1660),
(10280, 1, 85622, 88766, -5120, 0, 43200, 129600, 0, 269844, 1976),
(10281, 1, 151053, 88124, -5424, 0, 43200, 129600, 0, 343032, 2988),
(10282, 1, 179311, -7632, -4896, 0, 43200, 129600, 0, 367428, 3348),
(10283, 1, 184410, -10111, -5488, 0, 43200, 129600, 0, 255960, 3793),
(10286, 1, 185000, -13000, -5488, 0, 43200, 129600, 0, 255960, 3793),
(10293, 1, 134672, -115600, -1216, 0, 43200, 129600, 0, 206546, 3568),
(10299, 1, 148160, -73808, -4919, 0, 43200, 129600, 0, 111981, 3718),
(10302, 1, 145504, -81664, -6016, 0, 43200, 129600, 0, 112730, 4022),
(10305, 1, 145008, -84992, -6240, 0, 43200, 129600, 0, 225198, 4256),
(10309, 1, 115552, -39200, -2480, 0, 43200, 129600, 0, 111981, 3718),
(10312, 1, 109216, -36160, -938, 0, 43200, 129600, 0, 112730, 4022),
(10315, 1, 105584, -43024, -1728, 0, 43200, 129600, 0, 225198, 4256),
(10319, 1, 184542, -106330, -6304, 0, 43200, 129600, 0, 257725, 4100),
(10322, 1, 93296, -75104, -1824, 0, 43200, 129600, 0, 232323, 2708),
(10325, 1, 91008, -85904, -2736, 0, 43200, 129600, 0, 211425, 3718),
(10328, 1, 59331, -42403, -3003, 0, 7200, 10800, 0, 243663, 3718),
(10352, 1, -16843, 174890, -2984, 0, 43200, 129600, 0, 28471, 732),
(10354, 1, -16089, 184295, -3364, 0, 43200, 129600, 0, 41308, 894),
(10357, 1, -3451, 112819, -2995, 0, 43200, 129600, 0, 18330, 456),
(10360, 1, 29064, 179362, -3128, 0, 43200, 129600, 0, 23592, 606),
(10362, 1, -55791, 186903, -2856, 0, 43200, 129600, 0, 20324, 514),
(10365, 1, -62171, 190489, -3160, 0, 43200, 129600, 0, 47184, 606),
(10366, 1, -62342, 179572, -3088, 0, 43200, 129600, 0, 20324, 514),
(10369, 1, -45713, 111186, -3280, 0, 43200, 129600, 0, 22463, 576),
(10372, 1, 48000, 243376, -6611, 0, 43200, 129600, 0, 34766, 426),
(10373, 1, 9661, 76976, -3652, 0, 43200, 129600, 0, 18330, 456),
(10375, 1, 22523, 80431, -3188, 0, 43200, 129600, 0, 17383, 426),
(10378, 1, -53970, 84334, -3048, 0, 43200, 129600, 0, 17383, 426),
(10380, 1, -47412, 51647, -5659, 0, 43200, 129600, 0, 18330, 456),
(10383, 1, 51405, 153984, -3008, 0, 43200, 129600, 0, 33945, 860),
(10385, 1, 53418, 143534, -3332, 0, 43200, 129600, 0, 36903, 928),
(10388, 1, 40074, 102019, -790, 0, 43200, 129600, 0, 35407, 894),
(10391, 1, 45620, 120710, -2158, 0, 43200, 129600, 0, 65044, 828),
(10392, 1, 29891, 107201, -3572, 0, 43200, 129600, 0, 31134, 796),
(10394, 1, 101806, 200394, -3180, 0, 43200, 129600, 0, 80010, 994),
(10395, 1, 15000, 119000, -11900, 0, 43200, 129600, 0, 51869, 1356),
(10398, 1, 5000, 189000, -3728, 0, 43200, 129600, 0, 35407, 894),
(10401, 1, 117812, 102948, -3140, 0, 43200, 129600, 0, 31134, 796),
(10404, 1, 36048, 191352, -2524, 0, 43200, 129600, 0, 32522, 828),
(10407, 1, 115072, 112272, -3018, 0, 43200, 129600, 0, 80732, 2302),
(10410, 1, 72192, 125424, -3657, 0, 43200, 129600, 0, 50445, 1062),
(10412, 1, 81920, 113136, -3056, 0, 43200, 129600, 0, 55512, 1476),
(10415, 1, 128352, 138464, -3467, 0, 43200, 129600, 0, 35407, 894),
(10418, 1, 62416, 8096, -3376, 0, 43200, 129600, 0, 50083, 1296),
(10420, 1, 42032, 24128, -4704, 0, 43200, 129600, 0, 66930, 1538),
(10423, 1, 113600, 47120, -4640, 0, 43200, 129600, 0, 84968, 2040),
(10426, 1, -18053, -101274, -1580, 0, 43200, 129600, 0, 22463, 576),
(10429, 1, 172122, -214776, -3064, 0, 43200, 129600, 0, 22463, 576),
(10431, 1, 79648, 18320, -5232, 0, 43200, 129600, 0, 50083, 1296),
(10434, 1, 104096, -16896, -1803, 0, 43200, 129600, 0, 70856, 1976),
(10437, 1, 67296, 64128, -3723, 0, 43200, 129600, 0, 103738, 1356),
(10438, 1, 107000, 92000, -2272, 0, 43200, 129600, 0, 50083, 1296),
(10441, 1, 111440, 82912, -2912, 0, 43200, 129600, 0, 51869, 1356),
(10444, 1, 113232, 17456, -4384, 0, 43200, 129600, 0, 86145, 2640),
(10447, 1, 113200, 17552, -1424, 0, 43200, 129600, 0, 91375, 3058),
(10450, 1, 113600, 15104, 9559, 0, 43200, 129600, 0, 254211, 3568),
(10453, 1, 156704, -6096, -4185, 0, 43200, 129600, 0, 196324, 2988),
(10456, 1, 133632, 87072, -3623, 0, 43200, 129600, 0, 59249, 1598),
(10460, 1, 150304, 67776, -3688, 0, 43200, 129600, 0, 63062, 1722),
(10463, 1, 166288, 68096, -3264, 0, 43200, 129600, 0, 72830, 2040),
(10467, 1, 186192, 61472, -4160, 0, 43200, 129600, 0, 85133, 2570),
(10470, 1, 186896, 56276, -4576, 0, 43200, 129600, 0, 87120, 2708),
(10473, 1, 175712, 29856, -3776, 0, 43200, 129600, 0, 64995, 1784),
(10475, 1, 183568, 24560, -3184, 0, 43200, 129600, 0, 70856, 1976),
(10478, 1, 168288, 28368, -3632, 0, 43200, 129600, 0, 86145, 2640),
(10481, 1, 53517, 205413, -3728, 0, 43200, 129600, 0, 66938, 3718),
(10484, 1, 43160, 220463, -3680, 0, 43200, 129600, 0, 61148, 1660),
(10487, 1, 83056, 183232, -3616, 0, 43200, 129600, 0, 43238, 1062),
(10490, 1, 86528, 216864, -3584, 0, 43200, 129600, 0, 43238, 1062),
(10493, 1, 83174, 254428, -10873, 0, 43200, 129600, 0, 70856, 1976),
(10496, 1, 88300, 258000, -10200, 0, 43200, 129600, 0, 64995, 1784),
(10498, 1, 126624, 174448, -3056, 0, 43200, 129600, 0, 51869, 1356);
+133
View File
@@ -0,0 +1,133 @@
-- ---------------------------
-- Table structure for random_spawn
-- ---------------------------
DROP TABLE IF EXISTS random_spawn;
CREATE TABLE random_spawn (
groupId INT NOT NULL default 0,
npcId INT NOT NULL default 0,
count INT NOT NULL default 0,
initialDelay BIGINT NOT NULL default -1,
respawnDelay BIGINT NOT NULL default -1,
despawnDelay BIGINT NOT NULL default -1,
broadcastSpawn VARCHAR(5) NOT NULL default 'false',
randomSpawn VARCHAR(5) NOT NULL default 'true',
PRIMARY KEY (groupId)
);
INSERT INTO `random_spawn` VALUES
(1,7556,1,-1,1800000,1800000,'false','true'),
(9,8111,1,-1,60,0,'false','false'),
(10,8112,1,-1,60,0,'false','false'),
(11,8113,1,-1,-1,-1,'true','true'),
(12,8126,1,-1,-1,-1,'true','true'),
(13,8094,1,-1,60,0,'false','false'),
(14,8094,1,-1,60,0,'false','false'),
(15,8094,1,-1,60,0,'false','false'),
(16,8094,1,-1,60,0,'false','false'),
(17,8094,1,-1,60,0,'false','false'),
(18,8094,1,-1,60,0,'false','false'),
(19,8094,1,-1,60,0,'false','false'),
(20,8094,1,-1,60,0,'false','false'),
(21,8094,1,-1,60,0,'false','false'),
(22,8094,1,-1,60,0,'false','false'),
(23,8094,1,-1,60,0,'false','false'),
(24,8094,1,-1,60,0,'false','false'),
(25,8094,1,-1,60,0,'false','false'),
(26,8094,1,-1,60,0,'false','false'),
(27,8094,1,-1,60,0,'false','false'),
(28,8094,1,-1,60,0,'false','false'),
(29,8094,1,-1,60,0,'false','false'),
(30,8094,1,-1,60,0,'false','false'),
(31,8094,1,-1,60,0,'false','false'),
(32,8094,1,-1,60,0,'false','false'),
(33,8094,1,-1,60,0,'false','false'),
(34,8094,1,-1,60,0,'false','false'),
(35,8094,1,-1,60,0,'false','false'),
(36,8094,1,-1,60,0,'false','false'),
(37,8094,1,-1,60,0,'false','false'),
(38,8094,1,-1,60,0,'false','false'),
(39,8094,1,-1,60,0,'false','false'),
(40,8094,1,-1,60,0,'false','false'),
(41,8093,1,-1,60,0,'false','false'),
(42,8093,1,-1,60,0,'false','false'),
(43,8093,1,-1,60,0,'false','false'),
(44,8093,1,-1,60,0,'false','false'),
(45,8093,1,-1,60,0,'false','false'),
(46,8093,1,-1,60,0,'false','false'),
(47,8093,1,-1,60,0,'false','false'),
(48,8093,1,-1,60,0,'false','false'),
(49,8093,1,-1,60,0,'false','false'),
(50,8093,1,-1,60,0,'false','false'),
(51,8093,1,-1,60,0,'false','false'),
(52,8093,1,-1,60,0,'false','false'),
(53,8093,1,-1,60,0,'false','false'),
(54,8093,1,-1,60,0,'false','false'),
(55,8093,1,-1,60,0,'false','false'),
(56,8093,1,-1,60,0,'false','false'),
(57,8093,1,-1,60,0,'false','false'),
(58,8093,1,-1,60,0,'false','false'),
(59,8093,1,-1,60,0,'false','false'),
(60,8093,1,-1,60,0,'false','false'),
(61,8093,1,-1,60,0,'false','false'),
(62,8093,1,-1,60,0,'false','false'),
(63,8093,1,-1,60,0,'false','false'),
(64,8093,1,-1,60,0,'false','false'),
(65,8093,1,-1,60,0,'false','false'),
(66,8093,1,-1,60,0,'false','false'),
(67,8093,1,-1,60,0,'false','false'),
(68,8093,1,-1,60,0,'false','false'),
(69,8093,1,-1,60,0,'false','false'),
(70,8093,1,-1,60,0,'false','false'),
(71,8093,1,-1,60,0,'false','false'),
(72,8093,1,-1,60,0,'false','false'),
(73,8093,1,-1,60,0,'false','false'),
(74,8093,1,-1,60,0,'false','false'),
(75,8093,1,-1,60,0,'false','false'),
(76,8093,1,-1,60,0,'false','false'),
(77,8093,1,-1,60,0,'false','false'),
(78,8093,1,-1,60,0,'false','false'),
(79,8093,1,-1,60,0,'false','false'),
(80,8093,1,-1,60,0,'false','false'),
(81,8093,1,-1,60,0,'false','false'),
(82,8170,1,-1,60,0,'false','false'),
(84,8170,1,-1,60,0,'false','false'),
(85,8171,1,-1,60,0,'false','false'),
(86,8170,1,-1,60,0,'false','false'),
(87,8171,1,-1,60,0,'false','false'),
(88,8170,1,-1,60,0,'false','false'),
(89,8171,1,-1,60,0,'false','false'),
(90,8170,1,-1,60,0,'false','false'),
(91,8171,1,-1,60,0,'false','false'),
(92,8170,1,-1,60,0,'false','false'),
(93,8171,1,-1,60,0,'false','false'),
(94,8170,1,-1,60,0,'false','false'),
(95,8171,1,-1,60,0,'false','false'),
(96,8170,1,-1,60,0,'false','false'),
(97,8171,1,-1,60,0,'false','false'),
(98,8170,1,-1,60,0,'false','false'),
(99,8171,1,-1,60,0,'false','false'),
(100,8170,1,-1,60,0,'false','false'),
(101,8171,1,-1,60,0,'false','false'),
(102,8170,1,-1,60,0,'false','false'),
(103,8171,1,-1,60,0,'false','false'),
(104,8170,1,-1,60,0,'false','false'),
(105,8171,1,-1,60,0,'false','false'),
(106,8170,1,-1,60,0,'false','false'),
(107,8171,1,-1,60,0,'false','false'),
(108,8170,1,-1,60,0,'false','false'),
(109,8171,1,-1,60,0,'false','false'),
(110,5316,1,1800000,14400000,1800000,'false','false'),
(111,8094,1,-1,60,0,'false','false'),
(112,8093,1,-1,60,0,'false','false'),
(113,8094,1,-1,60,0,'false','false'),
(114,8093,1,-1,60,0,'false','false'),
(115,8094,1,-1,60,0,'false','false'),
(116,8093,1,-1,60,0,'false','false'),
(117,8094,1,-1,60,0,'false','false'),
(118,8093,1,-1,60,0,'false','false'),
(119,8093,1,-1,60,0,'false','false'),
(120,8094,1,-1,60,0,'false','false'),
(121,8093,1,-1,60,0,'false','false'),
(122,8094,1,-1,60,0,'false','false'),
(123,8093,1,-1,60,0,'false','false'),
(124,8094,1,-1,60,0,'false','false');
+141
View File
@@ -0,0 +1,141 @@
DROP TABLE IF EXISTS `random_spawn_loc`;
CREATE TABLE `random_spawn_loc` (
`groupId` int(11) NOT NULL default '0',
`x` int(11) NOT NULL default '0',
`y` int(11) NOT NULL default '0',
`z` int(11) NOT NULL default '0',
`heading` int(11) NOT NULL default '-1',
PRIMARY KEY (`groupId`,`x`,`y`,`z`,`heading`)
);
INSERT INTO `random_spawn_loc` VALUES
(1,151680,-174891,-1782,-1),
(1,154153,-220105,-3402,-1),
(1,178834,-184336,-355,-1),
(9,183280,-11905,-4904,-1),
(10,185662,-13093,-5498,-1),
(11,-52172,78884,-4741,-1),
(11,-41350,209876,-5087,-1),
(11,-21657,77164,-5173,-1),
(11,45029,123802,-5413,-1),
(11,83175,208998,-5439,-1),
(11,111337,173804,-5439,-1),
(11,118343,132578,-4831,-1),
(11,172373,-17833,-4901,-1),
(12,-19360,13278,-4901,-1),
(12,43093,143706,-5381,-1),
(12,46303,170091,-4981,-1),
(12,77787,78176,-5125,-1),
(12,114013,84326,-6541,-1),
(12,140519,79464,-5429,-1),
(13,-84356,152742,-3204,-1),
(14,-83157,149846,-3155,-1),
(15,-79563,152726,-3204,-1),
(16,-79123,155098,-3204,-1),
(17,-16168,124129,-3143,-1),
(18,-14563,121461,-3015,-1),
(19,-14199,126128,-3171,-1),
(20,-12344,123605,-3132,-1),
(21,16901,144748,-3027,-1),
(22,17557,147084,-3150,-1),
(23,19038,142923,-3078,-1),
(24,20826,145769,-3171,-1),
(25,77830,148627,-3623,-1),
(26,81540,144204,-3559,-1),
(27,81556,152183,-3559,-1),
(28,83872,143882,-3431,-1),
(29,85328,147352,-3431,-1),
(30,114907,77916,-2662,-1),
(31,115509,74857,-2625,-1),
(32,118273,74592,-2529,-1),
(33,107251,218166,-3701,-1),
(34,115482,219266,-3689,-1),
(35,80039,54291,-1586,-1),
(36,81002,53495,-1586,-1),
(37,81527,56009,-1551,-1),
(38,143926,26468,-2338,-1),
(39,147460,20537,-2101,-1),
(40,150417,25182,-2141,-1),
(41,-83107,150270,-3155,-1),
(42,-83070,152740,-3204,-1),
(43,-80752,152738,-3204,-1),
(44,-80690,149996,-3070,-1),
(45,-80037,154344,-3204,-1),
(46,-15549,124170,-3143,-1),
(47,-14480,122330,-3126,-1),
(48,-14268,124941,-3156,-1),
(49,-13252,123689,-3143,-1),
(50,-12591,122673,-3142,-1),
(51,15722,142877,-2732,-1),
(52,18172,145740,-3140,-1),
(53,19096,143980,-3096,-1),
(54,19823,145863,-3142,-1),
(55,79825,148619,-3559,-1),
(56,81535,146866,-3559,-1),
(57,81547,150347,-3559,-1),
(58,83319,148054,-3431,-1),
(59,83894,147495,-3431,-1),
(60,115893,77551,-2729,-1),
(61,115936,75382,-2625,-1),
(62,117098,77066,-2720,-1),
(63,118049,75783,-2715,-1),
(64,107256,218615,-3701,-1),
(65,109660,217339,-3775,-1),
(66,110189,221393,-3569,-1),
(67,111389,219257,-3572,-1),
(68,113479,217795,-3731,-1),
(69,114086,220214,-3568,-1),
(70,80416,55959,-1586,-1),
(71,80617,54116,-1586,-1),
(72,82048,55417,-1551,-1),
(73,82863,53290,-1522,-1),
(74,145015,25269,-2167,-1),
(75,145394,27629,-2295,-1),
(76,146616,25816,-2039,-1),
(77,147440,30047,-2487,-1),
(78,147459,21148,-2167,-1),
(79,148013,27029,-2231,-1),
(80,149515,27641,-2295,-1),
(81,149899,24719,-2167,-1),
(82,-41312,206625,-3412,-1),
(84,-55428,79357,-3059,-1),
(85,-55428,79357,-3059,-1),
(86,-24895,77634,-3495,-1),
(87,-24895,77634,-3495,-1),
(88,-22594,13760,-3216,-1),
(89,-22594,13760,-3216,-1),
(90,43074,170560,-3298,-1),
(91,43074,170560,-3298,-1),
(92,39872,144193,-3707,-1),
(93,39872,144193,-3707,-1),
(94,45504,127550,-3734,-1),
(95,45504,127550,-3734,-1),
(96,79946,209470,-3760,-1),
(97,79946,209470,-3760,-1),
(98,108097,174274,-3769,-1),
(99,108097,174274,-3769,-1),
(100,115136,133057,-3161,-1),
(101,115136,133057,-3161,-1),
(102,74561,78656,-3446,-1),
(103,74561,78656,-3446,-1),
(104,110784,84800,-4867,-1),
(105,110784,84800,-4867,-1),
(106,137278,79936,-3751,-1),
(107,137278,79936,-3751,-1),
(108,169152,-17344,-3228,-1),
(109,169152,-17344,-3228,-1),
(110,171708,43964,-4972,-1),
(111,147943,-56176,-2781,-1),
(112,148064,-56288,-2781,-1),
(113,147703,-58879,-2981,-1),
(114,147704,-58710,-2981,-1),
(115,150550,-57471,-2981,-1),
(116,150425,-57370,-2981,-1),
(117,144841,-57493,-2981,-1),
(118,144980,-57403,-2981,-1),
(119,148867,-58156,-2981,-1),
(120,149180,-58022,-2981,-1),
(121,43961,-50913,-792,-1),
(122,43859,-50954,-796,-1),
(123,38588,-48222,896,-1),
(124,38695,-48308,896,-1);
+11
View File
@@ -0,0 +1,11 @@
CREATE TABLE IF NOT EXISTS `seven_signs` (
`char_obj_id` INT NOT NULL default '0',
`cabal` VARCHAR(4) NOT NULL default '',
`seal` INT(1) NOT NULL default '0',
`red_stones` INT NOT NULL default '0',
`green_stones` INT NOT NULL default '0',
`blue_stones` INT NOT NULL default '0',
`ancient_adena_amount` DECIMAL(20,0) NOT NULL default '0',
`contribution_score` DECIMAL(20,0) NOT NULL default '0',
PRIMARY KEY (`char_obj_id`)
);
@@ -0,0 +1,24 @@
-- ----------------------------
-- Table structure for seven_signs_festival
-- ----------------------------
CREATE TABLE IF NOT EXISTS `seven_signs_festival` (
`festivalId` int(1) NOT NULL default '0',
`cabal` varchar(4) NOT NULL default '',
`cycle` int(4) NOT NULL default '0',
`date` bigint(50) default '0',
`score` int(5) NOT NULL default '0',
`members` varchar(255) NOT NULL default '',
PRIMARY KEY (`festivalId`,`cabal`,`cycle`)
);
INSERT IGNORE INTO `seven_signs_festival` VALUES
(0, "dawn", 1, 0, 0, ""),
(1, "dawn", 1, 0, 0, ""),
(2, "dawn", 1, 0, 0, ""),
(3, "dawn", 1, 0, 0, ""),
(4, "dawn", 1, 0, 0, ""),
(0, "dusk", 1, 0, 0, ""),
(1, "dusk", 1, 0, 0, ""),
(2, "dusk", 1, 0, 0, ""),
(3, "dusk", 1, 0, 0, ""),
(4, "dusk", 1, 0, 0, "");
@@ -0,0 +1,30 @@
CREATE TABLE IF NOT EXISTS `seven_signs_status` (
`id` int(3) NOT NULL default '0',
`current_cycle` int(10) NOT NULL default '1',
`festival_cycle` int(10) NOT NULL default '1',
`active_period` int(10) NOT NULL default '1',
`date` int(10) NOT NULL default '1',
`previous_winner` int(10) NOT NULL default '0',
`dawn_stone_score` DECIMAL(20,0) NOT NULL default '0',
`dawn_festival_score` int(10) NOT NULL default '0',
`dusk_stone_score` DECIMAL(20,0) NOT NULL default '0',
`dusk_festival_score` int(10) NOT NULL default '0',
`avarice_owner` int(10) NOT NULL default '0',
`gnosis_owner` int(10) NOT NULL default '0',
`strife_owner` int(10) NOT NULL default '0',
`avarice_dawn_score` int(10) NOT NULL default '0',
`gnosis_dawn_score` int(10) NOT NULL default '0',
`strife_dawn_score` int(10) NOT NULL default '0',
`avarice_dusk_score` int(10) NOT NULL default '0',
`gnosis_dusk_score` int(10) NOT NULL default '0',
`strife_dusk_score` int(10) NOT NULL default '0',
`accumulated_bonus0` int(10) NOT NULL default '0',
`accumulated_bonus1` int(10) NOT NULL default '0',
`accumulated_bonus2` int(10) NOT NULL default '0',
`accumulated_bonus3` int(10) NOT NULL default '0',
`accumulated_bonus4` int(10) NOT NULL default '0',
PRIMARY KEY (`id`)
);
INSERT IGNORE INTO `seven_signs_status` VALUES
(0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
+7
View File
@@ -0,0 +1,7 @@
CREATE TABLE IF NOT EXISTS siege_clans (
castle_id int(1) NOT NULL default 0,
clan_id int(11) NOT NULL default 0,
type int(1) default NULL,
castle_owner int(1) default NULL,
PRIMARY KEY (clan_id,castle_id)
);
File diff suppressed because it is too large Load Diff
+299
View File
@@ -0,0 +1,299 @@
--
-- Table structure for table `skill_spellbooks`
--
DROP TABLE IF EXISTS `skill_spellbooks`;
CREATE TABLE `skill_spellbooks` (
`skill_id` int(11) NOT NULL default '-1',
`item_id` int(11) NOT NULL default '-1',
KEY `skill_id` (`skill_id`,`item_id`)
);
--
-- Dumping data for table `skill_spellbooks`
--
-- NOTES:
-- (0,1393),
-- Spellbook: Quickness unable to find a matching skill_id possibly never used
INSERT INTO `skill_spellbooks` VALUES
(2,1512), -- Spellbook: Confusion
(10,3039), -- Spellbook: Summon Storm Cubic
(13,3940), -- Blueprint: Summon Siege Golem
(15,1513), -- Spellbook: Charm
(21,1377), -- Spellbook: Poison Recovery
(22,3040), -- Spellbook: Summon Vampiric Cubic
(25,3038), -- Blueprint: Summon Mechanic Golem
(33,3041), -- Spellbook: Summon Phantom Cubic
(44,3432), -- Spellbook: Remedy
(45,1378), -- Spellbook: Divine Heal
(46,3042), -- Spellbook: Life Scavenge
(49,3043), -- Spellbook: Holy Strike
(58,1096), -- Spellbook: Elemental Heal
(61,1379), -- Spellbook: Cure Bleeding
(65,3044), -- Spellbook: Horror
(67,3045), -- Spellbook: Summon Life Cubic
(69,3046), -- Spellbook: Sacrifice
(70,1097), -- Spellbook: Drain Health
(72,3047), -- Spellbook: Iron Will
(77,1095), -- Spellbook: Attack Aura
(86,3048), -- Spellbook: Reflect Damage
(91,1294), -- Spellbook: Defense Aura
(102,1380), -- Spellbook: Entangle
(103,3049), -- Spellbook: Corpse Plague
(105,1381), -- Spellbook: Freezing Strike
(115,1382), -- Spellbook: Power Break
(122,3050), -- Spellbook: Hex
(123,3051), -- Spellbook: Spirit Barrier
(127,3052), -- Spellbook: Hamstring
(129,1383), -- Spellbook: Poison
(230,1384), -- Spellbook: Sprint
(262,3053), -- Spellbook: Holy Blessing
(278,3054), -- Spellbook: Summon Viper Cubic
(279,3055), -- Spellbook: Lightening Strike
(283,3056), -- Spellbook: Summon Dark Panther
(289,4203), -- Spellbook: Life Leech
(301,4921), -- Blueprint: Summon Big Boom
(1002,1518), -- Amulet: Flame Chant
(1003,1519), -- Amulet: Pa'agrio's Gift
(1004,3103), -- Amulet: Pa'agrio's Wisdom
(1005,1520), -- Amulet: Pa'agrio's Blessing
(1006,1521), -- Amulet: Chant of Fire
(1007,1522), -- Amulet: Chant of Battle
(1008,3104), -- Amulet: Pa'agrio's Glory
(1009,1523), -- Amulet: Chant of Shielding
(1010,1524), -- Amulet: Soul Shield
(1011,1152), -- Spellbook: Heal
(1012,1053), -- Spellbook: Cure Poison
(1013,1385), -- Spellbook: Recharge
(1015,1050), -- Spellbook: Battle Heal
(1016,1514), -- Spellbook: Resurrection
(1018,3072), -- Spellbook: Purify
(1020,3068), -- Spellbook: Vitalize
(1027,1054), -- Spellbook: Group Heal
(1028,3073), -- Spellbook: Might of Heaven
(1031,1386), -- Spellbook: Disrupt Undead
(1032,3094), -- Spellbook: Invigor
(1033,1387), -- Spellbook: Resist Poison
(1034,3069), -- Spellbook: Repose
(1035,1388), -- Spellbook: Mental Shield
(1036,3095), -- Spellbook: Magic Barrier
(1040,1058), -- Spellbook: Shield
(1042,3070), -- Spellbook: Hold Undead
(1043,1389), -- Spellbook: Holy Weapon
(1044,1390), -- Spellbook: Regeneration
(1045,3096), -- Spellbook: Blessed Body
(1047,4207), -- Spellbook: Mana Regeneration
(1048,3097), -- Spellbook: Blessed Soul
(1049,3071), -- Spellbook: Requiem
(1050,3098), -- Spellbook: Return
(1056,3079), -- Spellbook: Cancel
(1059,1391), -- Spellbook: Empower
(1062,1392), -- Spellbook: Berserker Spirit
(1064,3064), -- Spellbook: Silence
(1068,1048), -- Spellbook: Might
(1069,1394), -- Spellbook: Sleep
(1071,3082), -- Spellbook: Surrender to Water
(1072,3080), -- Spellbook: Sleeping Cloud
(1073,1515), -- Spellbook: Kiss of Eva
(1074,3074), -- Spellbook: Surrender to Wind
(1075,1397), -- Spellbook: Peace
(1077,1398), -- Spellbook: Focus
(1078,1399), -- Spellbook: Concentration
(1083,1400), -- Spellbook: Surrender to Fire
(1085,1401), -- Spellbook: Acumen
(1086,3099), -- Spellbook: Haste
(1087,1402), -- Spellbook: Agility
(1090,1525), -- Amulet: Life Drain
(1092,1526), -- Amulet: Fear
(1095,1527), -- Amulet: Venom
(1096,1528), -- Amulet: Seal of Chaos
(1097,1529), -- Amulet: Dreaming Spirit
(1099,1530), -- Amulet: Seal of Slow
(1100,1531), -- Amulet: Chill Flame
(1101,1532), -- Amulet: Blaze Quake
(1102,1533), -- Amulet: Aura Sink
(1104,3105), -- Amulet: Seal of Winter
(1105,1534), -- Amulet: Madness
(1107,1535), -- Amulet: Frost Flame
(1108,3106), -- Amulet: Seal of Flame
(1111,1403), -- Spellbook: Summon Kat the Cat
(1126,1404), -- Spellbook: Servitor Recharge
(1127,1405), -- Spellbook: Servitor Heal
(1128,1667), -- Spellbook: Summon Shadow
(1129,3057), -- Spellbook: Summon Reanimated Man
(1139,3091), -- Spellbook: Servitor Magic Shield
(1140,3092), -- Spellbook: Servitor Physical Shield
(1141,3093), -- Spellbook: Servitor Haste
(1144,1406), -- Spellbook: Servitor Wind Walk
(1145,1407), -- Spellbook: Servitor Magic Boost
(1146,1408), -- Spellbook: Mighty Servitor
(1147,1051), -- Spellbook: Vampiric Touch
(1148,3065), -- Spellbook: Death Spike
(1151,1516), -- Spellbook: Corpse Life Drain
(1154,3058), -- Spellbook: Summon Corrupted Man
(1155,3059), -- Spellbook: Corpse Burst
(1156,3060), -- Spellbook: Forget
(1157,1517), -- Spellbook: Body To Mind
(1159,3066), -- Spellbook: Curse Death Link
(1160,1409), -- Spellbook: Slow
(1163,3061), -- Spellbook: Curse Discord
(1164,1056), -- Spellbook: Curse: Weakness
(1167,1410), -- Spellbook: Poisonous Cloud
(1168,1055), -- Spellbook: Curse: Poison
(1169,3062), -- Spellbook: Curse Fear
(1170,3063), -- Spellbook: Anchor
(1171,3075), -- Spellbook: Blazing Circle
(1172,1411), -- Spellbook: Aura Burn
(1174,3083), -- Spellbook: Frost Wall
(1175,1370), -- Spellbook: Aqua Swirl
(1176,3089), -- Spellbook: Tempest
(1178,1371), -- Spellbook: Twister
(1181,1052), -- Spellbook: Flame Strike
(1182,1412), -- Spellbook: Resist Aqua
(1183,3084), -- Spellbook: Freezing Shackle
(1184,1049), -- Spellbook: Ice Bolt
(1189,1413), -- Spellbook: Resist Wind
(1191,1414), -- Spellbook: Resist Fire
(1201,1415), -- Spellbook: Dryad Root
(1204,1098), -- Spellbook: Wind Walk
(1206,1099), -- Spellbook: Wind Shackle
(1208,1536), -- Amulet: Seal of Binding
(1209,1537), -- Amulet: Seal of Poison
(1210,3107), -- Amulet: Seal of Gloom
(1213,3108), -- Amulet: Seal of Mirage
(1217,3429), -- Spellbook: Greater Heal
(1218,3430), -- Spellbook: Greater Battle Heal
(1219,3431), -- Spellbook: Greater Group Heal
(1220,1372), -- Spellbook: Blaze
(1222,1416), -- Spellbook: Curse of Chaos
(1223,1417), -- Spellbook: Surrender To Earth
(1224,1418), -- Spellbook: Surrender To Poison
(1225,1668), -- Spellbook: Summon Mew the Cat
(1226,1669), -- Spellbook: Summon Boxer the Unicorn
(1227,1670), -- Spellbook: Summon Mirage the Unicorn
(1228,1671), -- Spellbook: Summon Silhouette
(1229,1856), -- Amulet: Chant of Life
(1230,3076), -- Spellbook: Prominence
(1231,3081), -- Spellbook: Aura Flare
(1232,3077), -- Spellbook: Blazing Skin
(1233,3078), -- Spellbook: Decay
(1234,3067), -- Spellbook: Vampiric Claw
(1235,3085), -- Spellbook: Hydro Blast
(1236,3086), -- Spellbook: Frost Bolt
(1237,3087), -- Spellbook: Ice Dagger
(1238,3088), -- Spellbook: Freezing Skin
(1239,3090), -- Spellbook: Hurricane
(1240,3100), -- Spellbook: Guidance
(1242,3101), -- Spellbook: Death Whisper
(1243,3102), -- Spellbook: Bless Shield
(1244,3115), -- Amulet: Freezing Flame
(1245,3114), -- Amulet: Steal Essence
(1246,3109), -- Amulet: Seal of Silence
(1247,3110), -- Amulet: Seal of Scourge
(1248,3111), -- Amulet: Seal of Suspension
(1249,3112), -- Amulet: Pa'agrio's Eye
(1250,3113), -- Amulet: Pa'agrio's Protection
(1251,3116), -- Amulet: Chant of Fury
(1252,3117), -- Amulet: Chant of Evasion
(1253,3118), -- Amulet: Chant of Rage
(1254,3941), -- Spellbook: Mass Resurrection
(1256,3943), -- Amulet: Pa'agrio's Heart
(1257,3944), -- Spellbook: Decrease Weight
(1258,4200), -- Spellbook: Restore Life
(1259,4201), -- Spellbook: Resist Shock
(1260,4204), -- Amulet: Pa'agrio's Tact
(1261,4205), -- Amulet: Pa'agrio's Rage
(1262,4206), -- Spellbook: Transfer Pain
(1263,4208), -- Spellbook: Curse Gloom
-- c3 skill spellbooks (most of them anyway - thx Luno)
(1264,4906), -- Spellbook: Solar Spark
(1265,4907), -- Spellbook: Solar Flare
(1266,4908), -- Spellbook: Shadow Spark
(1267,4909), -- Spellbook: Shadow Flare
(1268,4910), -- Spellbook: Vampiric Rage
(1269,4911), -- Spellbook: Curse Disease
(1271,4912), -- Spellbook: Benediction
(1272,4913), -- Spellbook: Word of Fear
(1273,4914), -- Spellbook: Serenade of Eva
(299,4915), -- Blueprint: Summon Wild Hog Cannon
(1274,4916), -- Spellbook: Energy Bolt
(1275,4917), -- Spellbook: Aura Bolt
(1276,4918), -- Spellbook: Summon Kai the Cat
(1277,4919), -- Spellbook: Summon Merrow the Unicorn
(1278,4920), -- Spellbook: Summon Soulless
(1279,4922), -- Spellbook: Summon Binding Cubic
(1280,4923), -- Spellbook: Summon Aqua Cubic
(1281,4924), -- Spellbook: Summon Spark Cubic
(1282,4925), -- Amulet: Pa'agrio's Haste
(1283,4926), -- Amulet: Soul Guard
(1284,4927), -- Amulet: Chant of Revenge
(1285,4928), -- Spellbook: Seed of Fire
(1286,4929), -- Spellbook: Seed of Water
(1287,4930), -- Spellbook: Seed of Wind
(1288,4931), -- Spellbook: Aura Symphony
(1289,4932), -- Spellbook: Inferno
(1290,4933), -- Spellbook: Blizzard
(1291,4934), -- Spellbook: Demon Wind
(1292,5013), -- Spellbook: Elemental Assault
(1293,5014), -- Spellbook: Elemental Symphony
(1294,5015), -- Spellbook: Elemental Storm
(1295,5809), -- Spellbook: Aqua Splash
(1296,5810), -- Spellbook: Rain of Fire
(1298,5811), -- Spellbook: Mass Slow
(1299,5812), -- Spellbook: Servitor Empowerment
(1300,5813), -- Spellbook: Servitor Cure
(1301,5814), -- Spellbook: Servitor Blessing
(1303,5815), -- Spellbook: Wild Magic
(1304,5816), -- Spellbook: Advanced Block
(1305,6350), -- Amulet: Pa'agrio's Honor
(1306,6351), -- Amulet: Ritual of Life
(1307,6352), -- Spellbook: Prayer
(1308,6395), -- Amulet: Chant of Predator
(1309,6396), -- Amulet: Chant of Eagle
(1310,6397), -- Amulet: Chant of Vampire
(1311,6398), -- Spellbook: Body of Avatar
-- C4 Spellbooks and Amulets
(1328,7638), -- Spellbook - Mass Summon Storm Cubic
(1329,7639), -- Spellbook - Mass Summon Aqua Cubic
(1330,7640), -- Spellbook - Mass Summon Phantom Cubic
(1331,7641), -- Spellbook - Summon Feline Queen
(1332,7642), -- Spellbook - Summon Unicorn Seraphim
(1333,7643), -- Spellbook - Summon Nightshade
(1334,7644), -- Spellbook - Summon Cursed Man
(1335,7645), -- Spellbook - Balance Life
(1336,7646), -- Spellbook - Curse of Doom
(1337,7647), -- Spellbook - Curse of Abyss
(1338,7648), -- Spellbook - Arcane Chaos
(1339,7649), -- Spellbook - Fire Vortex
(1340,7650), -- Spellbook - Ice Vortex
(1341,7651), -- Spellbook - Wind Vortex
(1342,7652), -- Spellbook - Light Vortex
(1343,7653), -- Spellbook - Dark Vortex
(1344,7654), -- Spellbook - Mass Warrior Bane
(1345,7655), -- Spellbook - Mass Mage Bane
(1346,7656), -- Spellbook - Warrior Servitor
(1347,7657), -- Spellbook - Wizard Servitor
(1348,7658), -- Spellbook - Assassin Servitor
(1349,7659), -- Spellbook - Final Servitor
(1350,7660), -- Spellbook - Warrior Bane
(1351,7661), -- Spellbook - Mage Bane
(1352,7662), -- Spellbook - Elemental Protection
(1353,7663), -- Spellbook - Divine Protection
(1354,7664), -- Spellbook - Arcane Protection
(1355,7665), -- Spellbook - Prophecy of Water
(1356,7666), -- Spellbook - Prophecy of Fire
(1357,7667), -- Spellbook - Prophecy of Wind
(1358,7668), -- Spellbook - Block Shield
(1359,7669), -- Spellbook - Block Wind Walk
(1360,7670), -- Spellbook - Mass Block Shield
(1361,7671), -- Spellbook - Mass Block Wind Walk
(1362,7672), -- Amulet - Chant of Spirit
(1363,7673), -- Amulet - Chant of Victory
(1364,7674), -- Amulet - Pa'agrio's Eye
(1365,7675), -- Amulet - Pa'agrio's Soul
(1366,7676), -- Amulet - Seal of Despair
(1367,7835); -- Amulet - Seal of Disease
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+657
View File
@@ -0,0 +1,657 @@
-- ----------------------------
-- Table structure for `teleport`
-- ----------------------------
DROP TABLE IF EXISTS `teleport`;
CREATE TABLE `teleport` (
`Description` varchar(75) DEFAULT NULL,
`id` decimal(11,0) NOT NULL DEFAULT '0',
`loc_x` decimal(9,0) DEFAULT NULL,
`loc_y` decimal(9,0) DEFAULT NULL,
`loc_z` decimal(9,0) DEFAULT NULL,
`price` decimal(6,0) DEFAULT NULL,
`fornoble` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
);
-- ----------------------------
-- Records of teleport
-- ----------------------------
INSERT INTO `teleport` VALUES
('Elven Town & Dark Elven Town -> Village of Gludin', '1', '-80826', '149775', '-3043', '6400', '0'),
('Elven Town & Dark Elven Town -> Town of Gludio', '2', '-12672', '122776', '-3116', '3700', '0'),
('Elven Village -> Elven Forest', '468', '21362', '51122', '-3688', '300', '0'),
('Elven Village -> Neutral Zone', '469', '-10612', '75881', '-3592', '740', '0'),
('Elven Village -> Elven Fortress', '470', '29294', '74968', '-3776', '2500', '0'),
('Town of gludio -> Elven village', '3', '46934', '51467', '-2977', '3700', '0'),
('Town of gludio -> Dark Elven village', '4', '9745', '15606', '-4574', '3700', '0'),
('Town of gludio -> Village of Gludin', '5', '-80826', '149775', '-3043', '2900', '0'),
('Town of gludio -> Dion', '6', '15670', '142983', '-2705', '4100', '0'),
('Town of gludio & Village of Gludin -> Orc village', '7', '-44836', '-112524', '-235', '6000', '0'),
('Town of gludio & Village of Gludin -> Dwarven village', '8', '115113', '-178212', '-901', '6000', '0'),
('Village of Gludin -> TI', '9', '-84318', '244579', '-3730', '18000', '0'),
('Village of Gludin -> Elven Village', '10', '46934', '51467', '-2977', '6400', '0'),
('Village of Gludin -> Dark Elven Village', '11', '9745', '15606', '-4574', '6400', '0'),
('Village of Gludin -> Town of Gludio', '12', '-12672', '122776', '-3116', '2900', '0'),
('Village of Gludin -> Southern entrance of wastelands', '13', '-16730', '209417', '-3664', '2400', '0'),
('Dark Elven Town -> Southern part of dark elven forest', '14', '-61095', '75104', '-3356', '1100', '0'),
('DE Village -> Dark Forest', '464', '-22224', '14168', '-3232', '380', '0'),
('DE Village -> Spider Nest', '465', '-56532', '78321', '-2960', '1800', '0'),
('DE Village -> Swampland', '466', '-30777', '49750', '-3552', '480', '0'),
('DE Village -> Neutral Zone', '467', '-23520', '68688', '-3640', '760', '0'),
('TI -> Village of Gludin', '15', '-80826', '149775', '-3043', '18000', '0'),
('TI -> Obelisk of Victory', '1001', '-99678', '237562', '-3567', '200', '0'),
('TI -> Western Territory', '1002', '-101294', '212553', '-3093', '3000', '0'),
('TI -> Elven Ruins', '1003', '-113329', '235327', '-3653', '2500', '0'),
('TI -> Singing Waterfall', '1004', '-107456', '242669', '-3493', '2300', '0'),
('Dwarf Town & Orc Town -> Village of Gludin', '16', '-80826', '149775', '-3043', '3000', '0'),
('Dwarf Town -> The Northeast Coast', '17', '169008', '-208272', '-3504', '700', '0'),
('Dwarven Town -> Abandoned Coal Mines', '418', '155535', '-173560', '2495', '290', '0'),
('Dwarven Town -> Mithril Mines', '419', '179039', '-184080', '-319', '680', '0'),
('Dion Town -> Town of Gludio', '18', '-12672', '122776', '-3116', '4100', '0'),
('Dion Town -> Town of Giran', '19', '83400', '147943', '-3404', '8100', '0'),
('Dion Town -> Giran Harbor', '20', '47942', '186764', '-3485', '6500', '0'),
('Cruma Tower Entrance -> Cruma Tower 1st floor', '21', '17724', '114004', '-11672', '0', '0'),
('Cruma Tower 1st floor -> Cruma Tower Entrance', '22', '17192', '114178', '-3439', '0', '0'),
('Cruma Tower 1st floor -> Cruma Tower 2nd floor', '23', '17730', '108301', '-9057', '0', '0'),
('Cruma Tower 2nd floor -> Cruma Tower 1st floor', '24', '17714', '107923', '-11850', '0', '0'),
('Town of Giran -> Dion Town', '25', '15670', '142983', '-2705', '8100', '0'),
('Town of Giran -> Oren Town', '26', '82956', '53162', '-1495', '11000', '0'),
('Town of Giran -> Hunter Village', '27', '116819', '76994', '-2714', '9400', '0'),
('Town of Giran -> Hardin\'s Private Academy', '28', '105918', '109759', '-3207', '5300', '0'),
('Talking Island -> Obelisk of Victory', '460', '-99843', '237583', '-3568', '200', '0'),
('Talking Island -> Western Territory of Talking Island (Northern Area)', '461', '-102850', '215932', '-3424', '3000', '0'),
('Talking Island -> Elven Ruins', '462', '49315', '248452', '-5960', '2500', '0'),
('Talking Island -> Singing Waterfall', '463', '-113686', '235723', '-3640', '2300', '0'),
('TI Dungeon inside -> outside', '29', '-113329', '235327', '-3653', '0', '0'),
('TI Dungeon outside -> inside', '30', '48736', '248463', '-6162', '0', '0'),
('IvoryTower Basement', '31', '84915', '15969', '-4294', '0', '0'),
('IvoryTower Ground Floor', '32', '85399', '16197', '-3679', '0', '0'),
('IvoryTower 1st Floor', '33', '85399', '16197', '-2809', '0', '0'),
('IvoryTower 2nd Floor', '34', '85399', '16197', '-2293', '0', '0'),
('IvoryTower 3th Floor', '35', '85399', '16197', '-1776', '0', '0'),
('IvoryTower Ground Floor -> Oren Castle Town', '36', '82956', '53162', '-1495', '4400', '0'),
('IvoryTower Ground Floor -> Hunter\'s Village', '37', '116819', '76994', '-2714', '8200', '0'),
('IvoryTower Ground Floor -> Aden Castle Town', '38', '146331', '25762', '-2018', '12000', '0'),
('Aden Town -> Ivory Tower', '39', '85348', '16142', '-3699', '12000', '0'),
('Aden Town -> Oren Town', '40', '82956', '53162', '-1495', '13000', '0'),
('Aden Town -> Hunter\'s Village', '41', '116819', '76994', '-2714', '11000', '0'),
('Hunter\'s Village -> Giran Town', '42', '83400', '147943', '-3404', '9400', '0'),
('Hunter\'s Village -> Oren Town', '43', '82956', '53162', '-1495', '4900', '0'),
('Hunter\'s Village -> Ivory Tower', '44', '85348', '16142', '-3699', '8200', '0'),
('Hunter\'s Village -> Hardins Private Academy', '45', '105918', '109759', '-3207', '4100', '0'),
('Hunter\'s Village -> Aden Town', '46', '146331', '25762', '-2018', '11000', '0'),
('Oren Town -> Giran Town', '47', '83400', '147943', '-3404', '11000', '0'),
('Oren Town -> Ivory Tower', '48', '85348', '16142', '-3699', '4400', '0'),
('Oren Town -> Hunter\'s Village', '49', '116819', '76994', '-2714', '4900', '0'),
('Oren Town -> Hardins Private Academy', '50', '105918', '109759', '-3207', '7300', '0'),
('Oren Town -> Aden Town', '51', '146331', '25762', '-2018', '13000', '0'),
('Hardin\'s Private Academy -> Giran Town', '52', '83400', '147943', '-3404', '5300', '0'),
('Hardin\'s Private Academy -> Oren Town', '53', '82956', '53162', '-1495', '7300', '0'),
('Hardin\'s Private Academy -> Hunter\'s Village', '54', '116819', '76994', '-2714', '4100', '0'),
('Cruma level 2 -> Cruma level 3', '55', '17719', '115590', '-6584', '0', '0'),
('Cruma core -> Cruma level 3', '57', '17719', '115590', '-6584', '0', '0'),
('Heine -> The Town of Giran', '59', '83400', '147943', '-3404', '9200', '0'),
('Heine -> Giran Harbor', '60', '47942', '186764', '-3485', '8500', '0'),
('Giran Harbor -> Giran Town', '63', '83400', '147943', '-3404', '6300', '0'),
('Giran Harbor -> Dion Town', '64', '15670', '142983', '-2705', '6500', '0'),
('Giran Harbor -> Heine', '107', '111409', '219364', '-3545', '8500', '0'),
('Heine -> The Town of Dion', '65', '15670', '142983', '-2705', '9800', '0'),
('Heine -> Field of Silence', '66', '82684', '183551', '-3597', '2400', '0'),
('Heine -> Field of Whispers', '67', '91186', '217104', '-3649', '2400', '0'),
('Heine -> Entrance to Alligator Islands', '68', '126450', '174774', '-3079', '3500', '0'),
('Giran -> Dragon Valley', '69', '122881', '110792', '-3722', '6400', '0'),
('Giran -> Heine', '70', '111409', '219364', '-3545', '9200', '0'),
('Giran -> Patriots Necropolis', '71', '-25472', '77728', '-3440', '15500', '0'),
('Giran -> Ascetics Necropolis', '72', '-55385', '78667', '-3012', '18600', '0'),
('Giran -> Saints Necropolis', '73', '79296', '209584', '-3704', '9800', '0'),
('Giran -> Catacomb of Dark Omens', '74', '-23165', '13827', '-3172', '20400', '0'),
('Monster Derby Track', '75', '12661', '181687', '-3560', '0', '0'),
('Aden -> Coliseum', '76', '146440', '46723', '-3432', '4100', '0'),
('Aden -> Patriots Necropolis', '77', '-25472', '77728', '-3440', '35000', '0'),
('Aden -> Ascetics Necropolis', '78', '-55385', '78667', '-3012', '41000', '0'),
('Aden -> Saints Necropolis', '79', '79296', '209584', '-3704', '39000', '0'),
('Aden -> Catacomb of Dark Omens', '80', '-23165', '13827', '-3172', '33000', '0'),
('Aden -> Blazing Swamp', '81', '159455', '-12931', '-2872', '1400', '0'),
('Aden -> The Forbidden Gateway', '82', '185319', '20218', '-3264', '1400', '0'),
('Aden -> The Front of Anghell Waterfall', '83', '163341', '91374', '-3320', '2400', '0'),
('Aden -> Forsaken Plains', '84', '167285', '37109', '-4008', '840', '0'),
('Dion -> Heine', '85', '111409', '219364', '-3545', '9800', '0'),
('Dion -> Partisan Hideaway', '86', '46467', '126885', '-3720', '1900', '0'),
('Dion -> Bee Hive', '87', '20505', '189036', '-3344', '2500', '0'),
('Gludio -> Windawood Manor', '88', '-23789', '169683', '-3424', '1000', '0'),
('Gludio -> Southern Pathway to the Wasteland', '89', '-16730', '209417', '-3664', '2400', '0'),
('Gludin -> Abandoned Camp', '90', '-46932', '140883', '-2936', '900', '0'),
('Gludin -> Fellmere Harvest Grounds', '91', '-70387', '115501', '-3472', '1000', '0'),
('Gludin -> Langk Lizardman Dwelling', '92', '-45210', '202654', '-3592', '1700', '0'),
('Orc Village -> Immortal Plateau, Northern Region', '93', '-8804', '-114748', '-3088', '410', '0'),
('Orc Village -> Immortal Plateau, Southern Region', '94', '-17870', '-90980', '-2528', '620', '0'),
('Orc Village -> Immortal Plateau, Southeast Region', '95', '8209', '-93524', '-2312', '750', '0'),
('Orc Village -> Frozen Waterfall', '96', '7603', '-138871', '-920', '720', '0'),
('Orc Village -> Entrance to the Cave of Trials', '471', '9340', '-112509', '-2536', '650', '0'),
('Oren -> Plains of Lizardmen', '97', '87252', '85514', '-3056', '2700', '0'),
('Oren -> Sea of Spores', '98', '64328', '26803', '-3768', '2700', '0'),
('Hunters -> Northern Pathway of Enchanted Valley', '99', '104426', '33746', '-3800', '3700', '0'),
('Hunters -> Southern Pathway of Enchanted Valley', '100', '124904', '61992', '-3920', '1400', '0'),
('Hunters -> Entrance to the Forest of Mirrors', '101', '142065', '81300', '-3000', '2100', '0'),
('Hunters -> The Front of Anghel Waterfall', '102', '163341', '91374', '-3320', '4000', '0'),
('Hunters -> Patriots Necropolis', '103', '-25472', '77728', '-3440', '11900', '0'),
('Hunters -> Ascetics Necropolis', '104', '-55385', '78667', '-3012', '14500', '0'),
('Hunters -> Saints Necropolis', '105', '79296', '209584', '-3704', '11500', '0'),
('Hunters -> Catacomb of Dark Omens', '106', '-23165', '13827', '-3172', '12800', '0'),
('Goddard -> Aden Castle Town', '132', '146331', '25762', '-2018', '16000', '0'),
('Goddard -> Rune Castle Village', '108', '43799', '-47727', '-798', '20000', '0'),
('Goddard -> Varka Silenos Stronghold', '109', '125543', '-40953', '-3724', '950', '0'),
('Goddard -> Ketra Orc Outpost', '110', '146954', '-67390', '-3660', '420', '0'),
('Goddard -> Entrance to the Forge of the Gods', '111', '169178', '-116244', '-2421', '2300', '0'),
('Goddard -> Martyrs Necropolis', '112', '115358', '132811', '-3103', '38000', '0'),
('Goddard -> Catacomb of the Witch', '113', '137480', '79641', '-3701', '27000', '0'),
('Goddard -> Ascetics Necropolis', '114', '-55385', '78667', '-3012', '48000', '0'),
('Goddard -> Catacomb of the Forbidden Path', '115', '110399', '84041', '-4813', '29000', '0'),
('Goddard -> Saints Necropolis', '116', '79296', '209584', '-3704', '54000', '0'),
('Goddard -> Catacomb of Dark Omens', '117', '-23165', '13827', '-3172', '36000', '0'),
('Goddard -> Disciples Necropolis', '118', '168882', '-18057', '-3173', '8500', '0'),
('Rune -> Goddard Castle Village', '119', '147928', '-55273', '-2734', '12000', '0'),
('Rune -> The Town of Giran', '120', '83400', '147943', '-3404', '23000', '0'),
('Rune -> Aden Castle Town', '121', '146331', '25762', '-2018', '15000', '0'),
('Rune -> Rune Castle Town Guild', '122', '38320', '-48092', '-1153', '150', '0'),
('Rune -> Rune Castle Town Temple', '123', '38275', '-48065', '896', '150', '0'),
('Rune -> Entrance to the Forest of the Dead', '124', '52112', '-53939', '-3159', '290', '0'),
('Rune -> Western Entrance to the Swamp of Screams', '125', '70006', '-49902', '-3251', '710', '0'),
('Rune -> Catacomb of the Apostate', '126', '74379', '78887', '-3397', '25000', '0'),
('Rune -> Patriots Necropolis', '127', '-25472', '77728', '-3440', '28000', '0'),
('Rune -> Martyrs Necropolis', '128', '115358', '132811', '-3103', '38000', '0'),
('Rune -> Catacomb of the Witch', '129', '137480', '79641', '-3701', '31000', '0'),
('Rune -> Ascetics Necropolis', '130', '-55385', '78667', '-3012', '32000', '0'),
('Rune -> Rune Castle Town Store', '131', '43799', '-47727', '-798', '150', '0'),
('Aden -> Rune', '134', '43799', '-47727', '-798', '25000', '0'),
('Aden -> Goddard', '135', '147928', '-55273', '-2734', '16000', '0'),
('Giran Town -> Giran Harbor', '136', '47942', '186764', '-3485', '6300', '0'),
('TOI - 1st Floor', '201', '115168', '16022', '-5100', '100000', '0'),
('TOI - 2nd Floor', '202', '114649', '18587', '-3609', '150000', '0'),
('TOI - 3rd Floor', '203', '117918', '16039', '-2127', '200000', '0'),
('TOI - 4th Floor', '204', '114622', '12946', '-645', '250000', '0'),
('TOI - 5th Floor', '205', '112209', '16078', '928', '300000', '0'),
('TOI - 6th Floor', '206', '112376', '16099', '1947', '350000', '0'),
('TOI - 7th Floor', '207', '114448', '16175', '2994', '400000', '0'),
('TOI - 8th Floor', '208', '111063', '16118', '3967', '450000', '0'),
('TOI - 9th Floor', '209', '117147', '18415', '4977', '500000', '0'),
('TOI - 10th Floor', '210', '118374', '15973', '5987', '550000', '0'),
('TOI - 11th Floor', '211', '112209', '16078', '7028', '600000', '0'),
('TOI - 12th Floor', '212', '114809', '18711', '7996', '650000', '0'),
('TOI - 13th Floor', '213', '115178', '16989', '9007', '700000', '0'),
('TOI - 14th Floor Outside Door', '214', '112714', '14111', '10077', '800000', '0'),
('TOI - 14th Floor Inside On Roof', '215', '113098', '14532', '10077', '900000', '0'),
('Cat Heretics Entrance', '250', '43050', '143933', '-5383', '0', '0'),
('Cat Heretics Exit', '251', '42514', '143917', '-5385', '0', '0'),
('Cat Branded Entrance', '252', '46217', '170290', '-4983', '0', '0'),
('Cat Branded Exit', '253', '45770', '170299', '-4985', '0', '0'),
('Cat Apostate Entrance', '254', '78042', '78404', '-5128', '0', '0'),
('Cat Apostate Exit', '255', '77225', '78362', '-5119', '0', '0'),
('Cat Witch Entrance', '256', '140404', '79678', '-5431', '0', '0'),
('Cat Witch Exit', '257', '139965', '79678', '-5433', '0', '0'),
('Cat DarkOmen Entrance', '258', '-19500', '13508', '-4905', '0', '0'),
('Cat DarkOmen Exit', '259', '-19931', '13502', '-4905', '0', '0'),
('Cat ForbiddenPath Entrance', '260', '113865', '84543', '-6545', '0', '0'),
('Cat ForbiddenPath Exit', '261', '113429', '84540', '-6545', '0', '0'),
('Necro Sacrifice Entrance', '262', '-41570', '209785', '-5089', '0', '0'),
('Necro Sacrifice Exit', '263', '-41567', '209292', '-5091', '0', '0'),
('Necro Pilgrims Entrance', '264', '45251', '123890', '-5415', '0', '0'),
('Necro Pilgrims Exit', '265', '45250', '124366', '-5417', '0', '0'),
('Necro Worshippers Entrance', '266', '111273', '174015', '-5417', '0', '0'),
('Necro Worshippers Exit', '267', '110818', '174010', '-5443', '0', '0'),
('Necro Patriots Entrance', '268', '-21726', '77385', '-5177', '0', '0'),
('Necro Patriots Exit', '269', '-22197', '77369', '-5177', '0', '0'),
('Necro Ascetics Entrance', '270', '-52254', '79103', '-4743', '0', '0'),
('Necro Ascetics Exit', '271', '-52716', '79106', '-4745', '0', '0'),
('Necro Martyrs Entrance', '272', '118308', '132800', '-4833', '0', '0'),
('Necro Martyrs Exit', '273', '117793', '132810', '-4835', '0', '0'),
('Necro Saints Entrance', '274', '83000', '209213', '-5443', '0', '0'),
('Necro Saints Exit', '275', '82608', '209225', '-5443', '0', '0'),
('Necro Disciples Entrance', '276', '172251', '-17605', '-4903', '0', '0'),
('Necro Disciples Exit', '277', '171902', '-17595', '-4905', '0', '0'),
('Dion(artifact -> out)', '350', '22967', '157715', '-2954', '0', '0'),
('Dion(artifact -> hall)', '351', '22090', '159871', '-2711', '0', '0'),
('Dion(artifact -> outofcastle)', '352', '22448', '155798', '-2958', '0', '0'),
('Dion(in -> artifact)', '353', '22592', '161530', '-2775', '0', '0'),
('Dion(in -> out)', '354', '22967', '157715', '-2954', '0', '0'),
('Dion(in -> outofcastle)', '355', '22448', '155798', '-2958', '0', '0'),
('Dion(out -> artifact)', '356', '22592', '161530', '-2775', '0', '0'),
('Dion(out -> hall)', '357', '22090', '159871', '-2711', '0', '0'),
('Dion(out -> outofcastle)', '358', '22448', '155798', '-2958', '0', '0'),
('Dion(outofcastle -> artifact)', '359', '22592', '161530', '-2775', '0', '0'),
('Dion(outofcastle -> out)', '360', '22967', '157715', '-2954', '0', '0'),
('Dion(outofcastle -> hall)', '361', '22090', '159871', '-2711', '0', '0'),
('Giran(artifact -> out)', '362', '113892', '144175', '-2714', '0', '0'),
('Giran(artifact -> hall)', '363', '115984', '145073', '-2584', '0', '0'),
('Giran(artifact -> outofcastle)', '364', '112016', '144682', '-2833', '0', '0'),
('Giran(in -> artifact)', '365', '117619', '144564', '-2648', '0', '0'),
('Giran(in -> out)', '366', '113892', '144175', '-2714', '0', '0'),
('Giran(in -> outofcastle)', '367', '112016', '144682', '-2833', '0', '0'),
('Giran(out -> artifact)', '368', '117619', '144564', '-2648', '0', '0'),
('Giran(out -> hall)', '369', '115984', '145073', '-2584', '0', '0'),
('Giran(out -> outofcastle)', '370', '112016', '144682', '-2833', '0', '0'),
('Giran(outofcastle -> artifact)', '371', '117619', '144564', '-2648', '0', '0'),
('Giran(outofcastle -> out)', '372', '113892', '144175', '-2714', '0', '0'),
('Giran(outofcastle -> hall)', '373', '115984', '145073', '-2584', '0', '0'),
('Oren(artifact -> out)', '374', '79956', '36351', '-2532', '0', '0'),
('Oren(artifact -> hall)', '375', '82113', '37217', '-2311', '0', '0'),
('Oren(artifact -> outofcastle)', '376', '78079', '36809', '-2566', '0', '0'),
('Oren(in -> artifact)', '377', '83710', '36713', '-2375', '0', '0'),
('Oren(in -> out)', '378', '79956', '36351', '-2532', '0', '0'),
('Oren(in -> outofcastle)', '379', '78079', '36809', '-2566', '0', '0'),
('Oren(out -> artifact)', '380', '83710', '36713', '-2375', '0', '0'),
('Oren(out -> hall)', '381', '82113', '37217', '-2311', '0', '0'),
('Oren(out -> outofcastle)', '382', '78079', '36809', '-2566', '0', '0'),
('Oren(outofcastle -> artifact)', '383', '83710', '36713', '-2375', '0', '0'),
('Oren(outofcastle -> out)', '384', '79956', '36351', '-2532', '0', '0'),
('Oren(outofcastle -> hall)', '385', '82113', '37217', '-2311', '0', '0'),
('Gludio(artifact -> out)', '386', '-18941', '112085', '-2762', '0', '0'),
('Gludio(artifact -> hall)', '387', '-18129', '109898', '-2517', '0', '0'),
('Gludio(artifact -> outofcastle)', '388', '-18484', '113897', '-2772', '0', '0'),
('Gludio(in -> artifact)', '389', '-18592', '108271', '-2581', '0', '0'),
('Gludio(in -> out)', '390', '-18941', '112085', '-2762', '0', '0'),
('Gludio(in -> outofcastle)', '391', '-18484', '113897', '-2772', '0', '0'),
('Gludio(out -> artifact)', '392', '-18592', '108271', '-2581', '0', '0'),
('Gludio(out -> hall)', '393', '-18129', '109898', '-2517', '0', '0'),
('Gludio(out -> outofcastle)', '394', '-18484', '113897', '-2772', '0', '0'),
('Gludio(outofcastle -> artifact)', '395', '-18592', '108271', '-2581', '0', '0'),
('Gludio(outofcastle -> out)', '396', '-18941', '112085', '-2762', '0', '0'),
('Gludio(outofcastle -> hall)', '397', '-18129', '109898', '-2517', '0', '0'),
('Aden(artifact -> out)', '398', '147723', '7916', '-475', '0', '0'),
('Aden(artifact -> in)', '399', '148580', '4578', '-408', '0', '0'),
('Aden(artifact -> outofcastle)', '400', '147582', '8753', '-496', '0', '0'),
('Aden(artifact -> hall)', '401', '147520', '6107', '-409', '0', '0'),
('Aden(in -> artifact)', '402', '1147499', '2544', '-473', '0', '0'),
('Aden(in -> out)', '403', '147723', '7916', '-475', '0', '0'),
('Aden(in -> outofcastle)', '404', '147582', '8753', '-496', '0', '0'),
('Aden(in -> hall)', '405', '147520', '6107', '-409', '0', '0'),
('Aden(out -> artifact)', '406', '147499', '2544', '-473', '0', '0'),
('Aden(out -> in)', '407', '148580', '4578', '-408', '0', '0'),
('Aden(out -> outofcastle)', '408', '147582', '8753', '-496', '0', '0'),
('Aden(out -> hall)', '409', '147520', '6107', '-409', '0', '0'),
('Aden(outofcastle -> artifact)', '410', '147499', '2544', '-473', '0', '0'),
('Aden(outofcastle -> out)', '411', '147723', '7916', '-475', '0', '0'),
('Aden(outofcastle -> in)', '412', '148580', '4578', '-408', '0', '0'),
('Aden(outofcastle -> hall)', '413', '147520', '6107', '-409', '0', '0'),
('Aden(hall) -> artifact)', '414', '147499', '2544', '-473', '0', '0'),
('Aden(hall) -> out)', '415', '147723', '7916', '-475', '0', '0'),
('Aden(hall) -> in)', '416', '148580', '4578', '-408', '0', '0'),
('Aden(hall) -> outofcastle)', '417', '147582', '8753', '-496', '0', '0'),
('Disciples Necropolis -> Anakim', '450', '184397', '-11957', '-5498', '0', '0'),
('Disciples Necropolis -> Lilith', '451', '185551', '-9298', '-5498', '0', '0'),
('Anakim/Lilith -> Disciples Necropolis', '452', '183225', '-11911', '-4897', '0', '0');
INSERT INTO `teleport` VALUES
('Gludin Arena - 1000 adena', '9000', '-87328', '142266', '-3640', '1000', '0'),
('Coliseum - 1000 adena', '9001', '146440', '46723', '-3432', '1000', '0'),
('Giran Arena - 1000 adena', '9002', '73579', '142709', '-3768', '1000', '0'),
('Forgotten Temple - 1000 adena', '9010', '-54026', '179504', '-4640', '1000', '0'),
('Wasteland - 1000 adena', '9011', '-47506', '179572', '-3632', '1000', '0'),
('Silent Valley - 1000 adena', '9020', '181737', '46469', '-4352', '1000', '0'),
('Plains of Glory - 1000 adena', '9021', '135756', '19557', '-3424', '1000', '0'),
('War-Torn Plains - 1000 adena', '9022', '156898', '11217', '-4032', '1000', '0'),
('Tower of Insolence, 3rd Floor - 1000 adena', '9023', '110848', '16154', '-2120', '1000', '0'),
('Tower of Insolence, 5th Floor - 1000 adena', '9024', '118404', '15988', '832', '1000', '0'),
('Tower of Insolence, 7th Floor - 1000 adena', '9025', '115064', '12181', '2960', '1000', '0'),
('Tower of Insolence, 10th Floor - 1000 adena', '9026', '118525', '16455', '5984', '1000', '0'),
('Tower of Insolence, 13th Floor - 1000 adena', '9027', '115384', '16820', '9000', '1000', '0'),
('Hunters Valley - 1000 adena', '9028', '114306', '86573', '-3112', '1000', '0'),
('Angel Waterfall - 1000 adena', '9029', '166182', '91560', '-3168', '1000', '0'),
('Forest of Mirrors - 1000 adena', '9030', '166080', '75574', '-2992', '1000', '0'),
('Enchanted Valley - 1000 adena', '9031', '114674', '44150', '-3376', '1000', '0'),
('Hunters Valley - 1000 adena', '9032', '114306', '86573', '-3112', '1000', '0'),
('Gorgon Flower Garden - 1000 adena', '9040', '113553', '134813', '-3640', '1000', '0'),
('Antharas Lair 1 - 1000 adena', '9041', '147071', '120156', '-4520', '1000', '0'),
('Antharas Lair 2 - 1000 adena', '9042', '151689', '112615', '-5520', '1000', '0'),
('Dragon Valley - 1000 adena', '9043', '116425', '109898', '-3424', '1000', '0'),
('Antharas Lair, Heart of Warding - 1000 adena', '9044', '154396', '121235', '-3808', '1000', '0'),
('Dragon Valley, Traders Post - 1000 adena', '9045', '122824', '110836', '-3720', '1000', '0'),
('Private Hardins Academy - 1000 adena', '9046', '105918', '109759', '-3192', '1000', '0'),
('Forest of the Dead - 1000 adena', '9050', '54425', '-41692', '-3072', '1000', '0'),
('Valley of Saints - 1000 adena', '9051', '84092', '-80084', '-3504', '1000', '0'),
('Cursed Village - 1000 adena', '9052', '57670', '-41672', '-3144', '1000', '0'),
('Varka Silenos Village - 1000 adena', '9060', '107929', '-52248', '-2408', '1000', '0'),
('Ketra Orc Village - 1000 adena', '9061', '149817', '-80053', '-5576', '1000', '0'),
('Devil\'s Pass - 1000 adena', '9062', '106349', '-61870', '-2904', '1000', '0'),
('Garden of Beasts - 1000 adena', '9063', '132997', '-60608', '-2960', '1000', '0'),
('Hot Springs - 1000 adena', '9064', '144625', '-101291', '-3384', '1000', '0'),
('Wall of Argos - 1000 adena', '9065', '183140', '-53307', '-1896', '1000', '0'),
('Wall of Argos - 1000 adena', '9066', '183140', '-53307', '-1896', '1000', '0'),
('Four Sepulchers - 1000 adena', '9067', '178127', '-84435', '-7216', '1000', '0'),
('Imperial Tomb - 1000 adena', '9068', '186699', '-75915', '-2824', '1000', '0'),
('Forge of the Gods, upper level - 1000 adena', '9070', '173558', '-112611', '-3703', '1000', '0'),
('Forge of the Gods, lower level - 1000 adena', '9071', '179887', '-111241', '-5824', '1000', '0'),
('Execution Grounds - 1000 adena', '9080', '50568', '152408', '-2656', '1000', '0'),
('Floran Agricultural Area - 1000 adena', '9081', '26810', '172787', '-3376', '1000', '0'),
('Cruma Marshlands - 1000 adena', '9082', '5941', '125455', '-3640', '1000', '0'),
('Cruma Tower, 1st Floor - 1000 adena', '9083', '17718', '117315', '-12064', '1000', '0'),
('Cruma Tower, 2nd Floor - 1000 adena', '9084', '17728', '110325', '-9312', '1000', '0'),
('Evil Hunting Grounds - 1000 adena', '9100', '-6989', '109503', '-3040', '1000', '0'),
('Neutral Zone - 1000 adena', '9101', '-18415', '85624', '-3680', '1000', '0'),
('Dark Forest - 1000 adena', '9102', '-14129', '27094', '-3680', '1000', '0'),
('School of Dark Arts - 1000 adena', '9103', '-49185', '49441', '-5912', '1000', '0'),
('Elven Ruins - 1000 adena', '9104', '49315', '248452', '-5960', '1000', '0'),
('Immortal Plateau - 1000 adena', '9105', '-25309', '-131569', '-680', '1000', '0'),
('Mithril Mines - 1000 adena', '9106', '175499', '-181586', '-904', '1000', '0'),
('Abandoned Coal Mines - 1000 adena', '9107', '144706', '-173223', '-1520', '1000', '0'),
('Forest of Evil - 1000 adena', '9110', '93218', '16969', '-3904', '1000', '0'),
('Timak Outpost - 1000 adena', '9111', '67097', '68815', '-3648', '1000', '0'),
('Altar of Rites - 1000 adena', '9112', '-44566', '77508', '-3736', '1000', '0'),
('Fields of Silence - 1000 adena', '9120', '69748', '186111', '-2872', '1000', '0'),
('Field of Whispers - 1000 adena', '9121', '97786', '209303', '-3040', '1000', '0'),
('Alligator Island - 1000 adena', '9122', '113708', '178387', '-3232', '1000', '0'),
('Garden of Eva, entrance - 1000 adena', '9123', '82693', '242220', '-6712', '1000', '0'),
('Garden of Eva, 2nd level - 1000 adena', '9124', '79248', '247390', '-8816', '1000', '0'),
('Garden of Eva, 3rd level - 1000 adena', '9125', '77868', '250400', '-9328', '1000', '0'),
('Garden of Eva, 4th level - 1000 adena', '9126', '78721', '253309', '-9840', '1000', '0'),
('Garden of Eva, 5th level - 1000 adena', '9127', '82951', '252354', '-10592', '1000', '0'),
('Gludin Arena - 1 Noble Gate Pass', '9900', '-87328', '142266', '-3640', '1', '1'),
('Coliseum - 1 Noble Gate Pass', '9901', '146440', '46723', '-3432', '1', '1'),
('Giran Arena - 1 Noble Gate Pass', '9902', '73579', '142709', '-3768', '1', '1'),
('Forgotten Temple - 1 Noble Gate Pass', '9910', '-54026', '179504', '-4640', '1', '1'),
('Wasteland - 1 Noble Gate Pass', '9911', '-47506', '179572', '-3632', '1', '1'),
('Silent Valley - 1 Noble Gate Pass', '9920', '181737', '46469', '-4352', '1', '1'),
('Plains of Glory - 1 Noble Gate Pass', '9921', '135756', '19557', '-3424', '1', '1'),
('War-Torn Plains - 1 Noble Gate Pass', '9922', '156898', '11217', '-4032', '1', '1'),
('Tower of Insolence, 3rd Floor - 1 Noble Gate Pass', '9923', '110848', '16154', '-2120', '1', '1'),
('Tower of Insolence, 5th Floor - 1 Noble Gate Pass', '9924', '118404', '15988', '832', '1', '1'),
('Tower of Insolence, 7th Floor - 1 Noble Gate Pass', '9925', '115064', '12181', '2960', '1', '1'),
('Tower of Insolence, 10th Floor - 1 Noble Gate Pass', '9926', '118525', '16455', '5984', '1', '1'),
('Tower of Insolence, 13th Floor - 1 Noble Gate Pass', '9927', '115384', '16820', '9000', '1', '1'),
('Hunters Valley - 1 Noble Gate Pass', '9928', '114306', '86573', '-3112', '1', '1'),
('Angel Waterfall - 1 Noble Gate Pass', '9929', '166182', '91560', '-3168', '1', '1'),
('Forest of Mirrors - 1 Noble Gate Pass', '9930', '166080', '75574', '-2992', '1', '1'),
('Enchanted Valley - 1 Noble Gate Pass', '9931', '114674', '44150', '-3376', '1', '1'),
('Hunters Valley - 1 Noble Gate Pass', '9932', '114306', '86573', '-3112', '1', '1'),
('Gorgon Flower Garden - 1 Noble Gate Pass', '9940', '113553', '134813', '-3640', '1', '1'),
('Antharas Lair 1 - 1 Noble Gate Pass', '9941', '147071', '120156', '-4520', '1', '1'),
('Antharas Lair 2 - 1 Noble Gate Pass', '9942', '151689', '112615', '-5520', '1', '1'),
('Dragon Valley - 1 Noble Gate Pass', '9943', '116425', '109898', '-3424', '1', '1'),
('Antharas Lair, Heart of Warding - 1 Noble Gate Pass', '9944', '154396', '121235', '-3808', '1', '1'),
('Dragon Valley, Traders Post - 1 Noble Gate Pass', '9945', '122824', '110836', '-3720', '1', '1'),
('Private Hardins Academy - 1 Noble Gate Pass', '9946', '105918', '109759', '-3192', '1', '1'),
('Forest of the Dead - 1 Noble Gate Pass', '9950', '54425', '-41692', '-3072', '1', '1'),
('Valley of Saints - 1 Noble Gate Pass', '9951', '84092', '-80084', '-3504', '1', '1'),
('Cursed Village - 1 Noble Gate Pass', '9952', '57670', '-41672', '-3144', '1', '1'),
('Varka Silenos Village - 1 Noble Gate Pass', '9960', '107929', '-52248', '-2408', '1', '1'),
('Ketra Orc Village - 1 Noble Gate Pass', '9961', '149817', '-80053', '-5576', '1', '1'),
('Devil\'s Pass - 1 Noble Gate Pass', '9962', '106349', '-61870', '-2904', '1', '1'),
('Garden of Beasts - 1 Noble Gate Pass', '9963', '132997', '-60608', '-2960', '1', '1'),
('Hot Springs - 1 Noble Gate Pass', '9964', '144625', '-101291', '-3384', '1', '1'),
('Wall of Argos - 1 Noble Gate Pass', '9965', '183140', '-53307', '-1896', '1', '1'),
('Four Sepulchers - 1 Noble Gate Pass', '9967', '178127', '-84435', '-7216', '1', '1'),
('Imperial Tomb - 1 Noble Gate Pass', '9968', '186699', '-75915', '-2824', '1', '1'),
('Forge of the Gods, upper level - 1 Noble Gate Pass', '9970', '173558', '-112611', '-3703', '1', '1'),
('Forge of the Gods, lower level - 1 Noble Gate Pass', '9971', '179887', '-111241', '-5824', '1', '1'),
('Execution Grounds - 1 Noble Gate Pass', '9980', '50568', '152408', '-2656', '1', '1'),
('Floran Agricultural Area - 1 Noble Gate Pass', '9981', '26810', '172787', '-3376', '1', '1'),
('Cruma Marshlands - 1 Noble Gate Pass', '9982', '5941', '125455', '-3640', '1', '1'),
('Cruma Tower, 1st Floor - 1 Noble Gate Pass', '9983', '17718', '117315', '-12064', '1', '1'),
('Cruma Tower, 2nd Floor - 1 Noble Gate Pass', '9984', '17728', '110325', '-9312', '1', '1'),
('Evil Hunting Grounds - 1 Noble Gate Pass', '10000', '-6989', '109503', '-3040', '1', '1'),
('Neutral Zone - 1 Noble Gate Pass', '10001', '-18415', '85624', '-3680', '1', '1'),
('Dark Forest - 1 Noble Gate Pass', '10002', '-14129', '27094', '-3680', '1', '1'),
('School of Dark Arts - 1 Noble Gate Pass', '10003', '-49185', '49441', '-5912', '1', '1'),
('Elven Ruins - 1 Noble Gate Pass', '10004', '49315', '248452', '-5960', '1', '1'),
('Immortal Plateau - 1 Noble Gate Pass', '10005', '-25309', '-131569', '-680', '1', '1'),
('Mithril Mines - 1 Noble Gate Pass', '10006', '175499', '-181586', '-904', '1', '1'),
('Abandoned Coal Mines - 1 Noble Gate Pass', '10007', '144706', '-173223', '-1520', '1', '1'),
('Forest of Evil - 1 Noble Gate Pass', '10010', '93218', '16969', '-3904', '1', '1'),
('Timak Outpost - 1 Noble Gate Pass', '10011', '67097', '68815', '-3648', '1', '1'),
('Altar of Rites - 1 Noble Gate Pass', '10012', '-44566', '77508', '-3736', '1', '1'),
('Field of Silence - 1 Noble Gate Pass', '10020', '69748', '186111', '-2872', '1', '1'),
('Field of Whispers - 1 Noble Gate Pass', '10021', '97786', '209303', '-3040', '1', '1'),
('Alligator Island - 1 Noble Gate Pass', '10022', '113708', '178387', '-3232', '1', '1'),
('Garden of Eva, entrance - 1 Noble Gate Pass', '10023', '82693', '242220', '-6712', '1', '1'),
('Garden of Eva, 2nd ring - 1 Noble Gate Pass', '10024', '79248', '247390', '-8816', '1', '1'),
('Garden of Eva, 3rd ring - 1 Noble Gate Pass', '10025', '77868', '250400', '-9328', '1', '1'),
('Garden of Eva, 4th ring - 1 Noble Gate Pass', '10026', '78721', '253309', '-9840', '1', '1'),
('Garden of Eva, 5th level - 1 Noble Gate Pass', '10027', '82951', '252354', '-10592', '1', '1'),
('Garden of Eva, 5th level - 1 Noble Gate Pass',10028,82951,252354,-10592,1,1),
('Ketra teleport - Goddard Castle Town',10029,147978,-55408,-2728,4900,0),
('Ketra teleport - Rune Castle Town',10030,43849,-47877,-792,22000,0),
('Ketra teleport - Aden Castle Town',10031,146705,25840,-2000,21000,0),
('Ketra teleport - Wall of Argos',10032,164564,-48145,-3536,7000,0),
('Ketra teleport - Hot Springs',10033,144880,-113468,-2560,6700,0),
('Varka teleport - Goddard Castle Town',10034,147978,-55408,-2728,8000,0),
('Varka teleport - Rune Castle Town',10035,43849,-47877,-792,12000,0),
('Varka teleport - Aden Castle Town',10036,146705,25840,-2000,17000,0),
('Varka teleport - Wall of Argos',10037,164564,-48145,-3536,11000,0),
('Varka teleport - Hot Springs',10038,144880,-113468,-2560,14000,0);
-- Noblesse TP to Towns
INSERT INTO teleport VALUES
-- Noble Gate Pass
('Town of Gludio',77701,-12672,122776,-3116,1,1),
('Dion',77702,15670,142983,-2705,1,1),
('Town of Giran',77703,83400,147943,-3404,1,1),
('Oren Town',77704,82956,53162,-1495,1,1),
('Hunter Village',77705,116819,76994,-2714,1,1),
('Aden Town',77706,146331,25762,-2018,1,1),
('Goddard',77707,147928,-55273,-2734,1,1),
('Rune',77708,43799,-47727,-798,1,1),
('Heine',77709,111409,219364,-3545,1,1),
('Giran Harbor',77710,47942,186764,-3485,1,1),
('Orc village',77711,-44836,-112524,-235,1,1),
('Dwarven village',77712,115113,-178212,-901,1,1),
('Talking Island',77713,-84318,244579,-3730,1,1),
('Elven Village',77714,46934,51467,-2977,1,1),
('Dark Elven Village',77715,9745,15606,-4574,1,1),
-- 1000 adena
('Town of Gludio',77716,-12672,122776,-3116,1000,0),
('Dion',77717,15670,142983,-2705,1000,0),
('Town of Giran',77718,83400,147943,-3404,1000,0),
('Oren Town',77719,82956,53162,-1495,1000,0),
('Hunter Village',77720,116819,76994,-2714,1000,0),
('Aden Town',77721,146331,25762,-2018,1000,0),
('Goddard',77722,147928,-55273,-2734,1000,0),
('Rune',77723,43799,-47727,-798,1000,0),
('Heine',77724,111409,219364,-3545,1000,0),
('Giran Harbor',77725,47942,186764,-3485,1000,0),
('Orc village',77726,-44836,-112524,-235,1000,0),
('Dwarven village',77727,115113,-178212,-901,1000,0),
('Talking Island',77728,-84318,244579,-3730,1000,0),
('Elven Village',77729,46934,51467,-2977,1000,0),
('Dark Elven Village',77730,9745,15606,-4574,1000,0);
-- Noblesse TP Seven Signes
INSERT INTO teleport VALUES
-- Noble Gate Pass
('Necropolis of Sacrifice',77731,-41127,205913,-3358,1,1),
('Heretics Catacomb',77732,39271,144261,-3653,1,1),
('Pilgrims Necropolis',77733,45583,126972,-3685,1,1),
('Catacomb of the Branded',77734,43131,170643,-3252,1,1),
('Worshipers Necropolis',77735,107506,174339,-3711,1,1),
('Catacomb of the Apostate',77736,73972,78721,-3423,1,1),
('Martyrs Necropolis',77737,114581,132478,-3102,1,1),
('Catacomb of the Witch',77738,136692,80000,-3701,1,1),
('Ascetics Necropolis',77739,-55355,78787,-3012,1,1),
('Disciples Necropolis',77740,168586,-17930,-3172,1,1),
('Saints Necropolis',77741,79376,208901,-3710,1,1),
('Catacomb of the Dark Omens',77742,-22571,13826,-3173,1,1),
('Catacomb of the Forbidden Path',77743,110849,84230,-4839,1,1),
('Patriots Necropolis',77744,-24729,76992,-3440,1,1),
-- 1000 adena
('Necropolis of Sacrifice',77745,-41127,205913,-3358,1000,0),
('Heretics Catacomb',77746,39271,144261,-3653,1000,0),
('Pilgrims Necropolis',77747,45583,126972,-3685,1000,0),
('Catacomb of the Branded',77748,43131,170643,-3252,1000,0),
('Worshipers Necropolis',77749,107506,174339,-3711,1000,0),
('Catacomb of the Apostate',77750,73972,78721,-3423,1000,0),
('Martyrs Necropolis',77751,114581,132478,-3102,1000,0),
('Catacomb of the Witch',77752,136692,80000,-3701,1000,0),
('Ascetics Necropolis',77753,-55355,78787,-3012,1000,0),
('Disciples Necropolis',77754,168586,-17930,-3172,1000,0),
('Saints Necropolis',77755,79376,208901,-3710,1000,0),
('Catacomb of the Dark Omens',77756,-22571,13826,-3173,1000,0),
('Catacomb of the Forbidden Path',77757,110849,84230,-4839,1000,0),
('Patriots Necropolis',77758,-24729,76992,-3440,1000,0);
INSERT INTO teleport VALUES
('Clan Hall -> Execution Grounds',502,51055,141959,-2869,500,0),
-- ('Clan Hall -> Fortress of Resistance',503,51055,141959,-2869,500,0), -- dunno coords !
('Clan Hall -> Cruma Marshlands',504,5106,126916,-3664,500,0),
('Clan Hall -> Cruma Tower Entrance',505,17192,114178,-3439,500,0),
-- ('Clan Hall -> Mandragora Farm',506,17192,114178,-3439,500,0), -- dunno coords !
('Clan Hall -> Town of Dion',507,15670,142983,-2705,500,0),
('Clan Hall -> Floran Village',508,17838,170274,-3508,500,0),
-- 509
('Clan Hall -> Tanor Canyon',510,51147,165543,-2829,500,0),
('Clan Hall -> Bee Hive',511,20505,189036,-3344,500,0),
-- ('Clan Hall -> Dion Hills',512,20505,189036,-3344,500,0), -- dunno coords !
-- ('Clan Hall -> Floran Agricultural Area',513,20505,189036,-3344,500,0), -- dunno coords !
-- ('Clan Hall -> Plains of Dion',514,20505,189036,-3344,500,0), -- dunno coords !
-- 515
-- 516
('Clan Hall -> Hardin\'s Academy',517,105918,109759,-3207,500,0),
('Clan Hall -> Dragon Valley',518,122824,110836,-3720,500,0),
-- 519
-- 520
('Clan Hall -> Death Pass',521,70000,126636,-3804,500,0),
('Clan Hall -> Pirate Tunnel',522,41298,200350,-4583,500,0),
-- 523
('Clan Hall -> Giran Harbor',524,47942,186764,-3485,500,0),
('Clan Hall -> Giran Castle Town',525,83400,147943,-3404,500,0),
('Clan Hall -> Giran Arena',526,73890,142656,-3778,500,0),
-- 527
('Clan Hall -> Breka\'s Stronghold',528,79798,130624,-3677,500,0),
-- ('Clan Hall -> Gorgon Flower Garden',529,79798,130624,-3677,500,0), -- dunno coords !
-- -----------------
('Clan Hall -> Ivory Tower',581,85348,16142,-3699,500,0),
('Clan Hall -> Town of Oren',582,82956,53162,-1495,500,0),
-- 583
('Clan Hall -> Plains of Lizardmen',584,87252,85514,-3056,500,0),
('Clan Hall -> Skyshadow Meadow',585,82764,61145,-3502,500,0),
-- ('Clan Hall -> Shilen\'s Garden',586,82764,61145,-3502,500,0), -- dunno coords !
-- ('Clan Hall -> Black Rock Hill',587,82764,61145,-3502,500,0), -- dunno coords !
('Clan Hall -> Spider Nest',588,-56532,78321,-2960,500,0),
-- ('Clan Hall -> Timak Outpost',589,-56532,78321,-2960,500,0), -- dunno coords !
-- ('Clan Hall -> Ivory Tower Crater',590,-56532,78321,-2960,500,0), -- dunno coords !
-- ('Clan Hall -> Forest of Evil',591,-56532,78321,-2960,500,0), -- dunno coords !
('Clan Hall -> Outlaw Forest',592,85995,-2433,-3528,500,0),
-- ('Clan Hall -> Misty Mountains',593,85995,-2433,-3528,500,0), -- dunno coords !
-- ('Clan Hall -> Starlight Waterfall',594,85995,-2433,-3528,500,0), -- dunno coords !
-- ('Clan Hall -> Undine Waterfall',595,85995,-2433,-3528,500,0), -- dunno coords !
-- ('Clan Hall -> The Gods\' Falls',596,85995,-2433,-3528,500,0), -- dunno coords !
-- 597
('Clan Hall -> Tower of Insolence',598,121685,15749,-3852,500,0),
('Clan Hall -> The Blazing Swamp',599,146828,-12859,-4455,500,0),
-- 600
('Clan Hall -> The Forbidden Gateway',601,185395,20359,-3270,500,0),
('Clan Hall -> The Giants Cave',602,174528,52683,-4369,500,0),
('Clan Hall -> Northern Pathway of Enchanted Valley',603,104426,33746,-3800,500,0), -- need also southern?
('Clan Hall -> The Cemetary',604,172136,20325,-3326,500,0),
('Clan Hall -> The Forest of Mirrors',605,150477,85907,-2753,500,0),
('Clan Hall -> Anghel Waterfall',606,165584,85997,-2338,500,0),
('Clan Hall -> Aden Castle Town',607,146331,25762,-2018,500,0),
('Clan Hall -> Hunters Village',608,117110,76883,-2695,500,0),
('Clan Hall -> Border Outpost(Aden Side)',609,109699,-7908,-2902,500,0),
('Clan Hall -> Coliseum',610,150086,46733,-3412,500,0),
-- ('Clan Hall -> Narsell Lake',611,150086,46733,-3412,500,0), -- dunno coords !
-- 612
('Clan Hall -> Ancient Battleground',613,127739,-6998,-3869,500,0),
('Clan Hall -> Forsaken Plains',614,167285,37109,-4008,500,0),
('Clan Hall -> Silent Valley',615,177318,48447,-3835,500,0),
-- ('Clan Hall -> Hunters Valley',616,177318,48447,-3835,500,0), -- dunno coords !
-- ('Clan Hall -> Plains of Glory',617,177318,48447,-3835,500,0), -- dunno coords !
('Clan Hall -> Fields of Massacre',618,179718,48447,-7843,500,0),
-- ('Clan Hall -> War-Torn Plains',619,179718,48447,-7843,500,0), --- dunno coords !
('Clan Hall -> Border Outpost(Unknown Side)',620,114172,-18034,-1875,500,0),
('Clan Hall -> Rune Castle Town - Shopping Area',621,43835,-47749,-796,0,0),
('Clan Hall -> Rune Castle Town - Temple',622,38303,-48044,897,0,0),
('Clan Hall -> Rune Castle Town - North Gate',623,38956,-53648,-1343,0,0),
('Clan Hall -> Rune Castle Town - Harbor',624,38025,-38359,-3608,0,0),
('Clan Hall -> Beast Farm',625,42598,-88832,-3124,500,0),
('Clan Hall -> Forest of the Dead - East Entrance',626,61868,-48890,-3128,500,0),
('Clan Hall -> Forest of the Dead - West Entrance',627,45555,-56081,-3667,500,0),
('Clan Hall -> Swamp of Screams - East Entrance',628,94152,-58694,-2832,500,0),
('Clan Hall -> Swamp of Screams - West Entrance',629,69999,-49929,-3253,500,0),
('Clan Hall -> Valley of the Saints',630,65800,-71526,-3747,500,0),
('Clan Hall -> Village Square',631,147728,-56331,-2776,0,0),
('Clan Hall -> North Gate Entrance',632,147731,-58930,-2976,0,0),
('Clan Hall -> East Gate Entrance',633,150561,-57489,-2976,0,0),
('Clan Hall -> West Gate Entrance',634,144866,-57464,-2976,0,0),
('Clan Hall -> Forge of the Gods',635,168902,-116703,-2417,0,0),
('Clan Hall -> Garden of Beasts',636,129138,-60864,-3576,500,0),
('Clan Hall -> Swamp of Screams',637,70006,-49902,-3251,500,0),
('Clan Hall -> Valley of Saints',638,67992,-72012,-3748,500,0),
('Clan Hall -> Monastery of Silence',639,123743,-75032,-2902,500,0),
('Clan Hall -> Wall of Argos',640,164564,-48145,-3536,500,0),
('Clan Hall -> Hot Springs',641,144880,-113468,-2560,500,0),
('Clan Hall -> Ketra Orc Outpost',642,146990,-67128,-3640,500,0),
('Clan Hall -> Goddard Border Checkpoint',643,157560,-33269,-3320,500,0),
('Clan Hall -> Aden Border Checkpoint',644,125381,-33536,-3848,500,0),
('Clan Hall -> Garden of Beasts',645,129138,-60864,-3576,500,0),
('Clan Hall -> Devil\'s Pass',646,106849,-62061,-2968,500,0),
('Clan Hall -> Varka Silenos Outpost',647,125740,-40864,-3736,500,0),
('Clan Hall -> Village Square',648,-82445,150788,-3129,0,0),
('Clan Hall -> North Gate Entrance',649,-83331,148563,-3148,0,0),
('Clan Hall -> East Gate Entrance',650,-78405,152723,-3181,0,0),
('Clan Hall -> Nanmen Entrance',651,-77460,155995,-3194,0,0),
('Clan Hall -> West Gate Entrance',652,-85138,152749,-3160,0,0),
('Clan Hall -> Neutral Zone',653,-10612,75881,-3592,500,0),
('Clan Hall -> Langk Lizardmen Dwellings',654,-36961,201895,-2760,500,0),
('Clan Hall -> Windy Hill',655,-93453,89814,-3240,500,0),
('Clan Hall -> Orc Barracks',656,-85329,106369,-3603,500,0),
('Clan Hall -> Fellmere Harvesting Ground',657,-68668,115407,-3600,500,0),
('Clan Hall -> Ruins of Agony',658,-41055,122647,-2889,500,0),
('Clan Hall -> Abandoned Camp',659,-49756,146951,-2828,500,0),
('Clan Hall -> Forgotten Temple',660,-52369,191259,-3610,500,0),
('Clan Hall -> The Ant Nest',661,-14913,170017,-2893,500,0),
('Clan Hall -> Wasteland',662,-47506,179572,-3669,500,0),
('Clan Hall -> Ol Mahum Checkpoint',663,-17279,208954,-3664,500,0),
('Clan Hall -> Ant Cave South Entrance',664,-16019,193365,-4488,500,0),
('Clan Hall -> Ant Cave East Entrance',665,-10875,175962,-4152,500,0),
('Clan Hall -> Ant Cave West Entrance',666,-25899,172857,-4186,500,0),
('Clan Hall -> Altar of Rites',667,-44311,78617,-3744,500,0);
INSERT INTO teleport VALUES
('Clan Hall -> Center Town of Aden',12000,147450,28081,-2294,0,0),
('Clan Hall -> North Town of Aden',12001,151950,25094,-2172,0,0),
('Clan Hall -> East Town of Aden',12002,142593,26344,-2425,0,0),
('Clan Hall -> South Town of Aden',12003,147503,32299,-2501,0,0),
('Clan Hall -> West Town of Aden',12004,147465,20737,-2130,0,0),
('Clan Hall -> Southern Pathway of Enchanted Valley',12005,124904,61992,-3973,500,0),
('Clan Hall -> East of Blazing Swamp',12006,159676,-13544,-2832,500,0),
('Clan Hall -> Plains of Glory',12007,133164,14036,-3888,500,0),
('Clan Hall -> Plains of Fierce Battle',12008,153757,8905,-4024,500,0),
('Clan Hall -> Path to Forest of Wirrors',12009,134310,71976,-3298,500,0),
('Clan Hall -> The Front of Anghel Waterfall',12010,163341,91374,-3320,500,0),
('Clan Hall -> Disciples Necropolis',12011,168779,-18790,-3184,500,0),
('Clan Hall -> North Path to The Cementery',12012,175191,4082,-2863,500,0),
('Clan Hall ->South Path to The Cementery',12013,175432,30299,-3773,500,0),
('Clan Hall -> West Path to The Cementery',12014,166502,20284,-3328,500,0),
('Clan Hall -> Center of Giran Castle Town',12015,81749,149171,-3464,0,0),
('Clan Hall -> North of Giran Castle Town',12016,81525,143821,-3528,0,0),
('Clan Hall -> East of Giran Castle Town',12017,88342,147329,-3400,0,0),
('Clan Hall -> South of Giran Castle Town',12018,81548,152633,-3528,0,0),
('Clan Hall -> West of Giran Castle Town',12019,77305,148636,-3592,0,0),
('Clan Hall -> Devils Isle',12020,43408,206881,-3752,500,0),
('Clan Hall -> Center of Gludin Village',12021,-82445,150788,-3129,0,0),
('Clan Hall -> North of Gludin Village',12022,-83331,148563,-3148,0,0),
('Clan Hall -> East of Gludin Village',12023,-78405,152723,-3181,0,0),
('Clan Hall -> South of Gludin Village',12024,-77460,155995,-3194,0,0),
('Clan Hall -> West of Gludin Village',12025,-85138,152749,-3160,0,0),
('Clan Hall -> Necropolis of Sacrifice',12026,-36961,201895,-2760,500,0),
('Clan Hall -> Oracle Dusk',12027,-93453,89814,-3240,500,0),
('Clan Hall -> Oracle of Dawn',12028,-85329,106369,-3603,500,0),
('Clan Hall -> South Pathway to the Wasterland',12029,-17279,208954,-3664,500,0),
('Clan Hall -> Wasterland',12030,-16019,193365,-4488,500,0),
('Clan Hall -> North of Dion Castle Town',12041,21511,145866,-3153,0,0),
('Clan Hall -> Center of Dion Castle Town',12040,19025,145245,-3107,0,0),
('Clan Hall -> Center of Gludio Castle Town',12033,-14393,123671,-3144,0,0),
('Clan Hall -> North of Gludio Castle Town',12035,-11817,123652,-3079,0,0),
('Clan Hall -> East of Gludio Castle Town',12034,-16796,124108,-3127,0,0),
('Clan Hall -> West of Gludio Castle Town',13037,-14591,121024,-2990,0,0),
('Clan Hall -> Ruins of Despair',12038,-20767,136437,-3923,500,0),
('Clan Hall -> The Ruins Bend',12039,-32664,148626,-3956,500,0),
('Clan Hall -> East of Dion Castle Town',12042,18891,142365,-3051,0,0),
('Clan Hall -> South of Dion Castle Town',12043,17394,147593,-3129,0,0),
('Clan Hall -> West of Dion Castle Town',12044,16582,144130,-2960,0,0),
('Clan Hall -> Plains of Dion',12031,9980,173167,-3734,500,0),
('Clan Hall -> Piligrims Necropolis',12032,46428,127157,-3745,500,0),
('Clan Hall -> Giran Territory',12045,69373,155208,-3746,500,0),
('Clan Hall -> Center of Goddard Castle Town',12046,147728,-56331,-2776,0,0),
('Clan Hall -> North of Goddard Castle Town',12047,147731,-58930,-2976,0,0),
('Clan Hall -> East of Goddard Castle Town',12048,150561,-57489,-2976,0,0),
('Clan Hall -> West of Goddard Castle Town',12049,144866,-57464,-2976,0,0);
+13
View File
@@ -0,0 +1,13 @@
-- ---------------------------
-- Table structure for topic
-- ---------------------------
CREATE TABLE IF NOT EXISTS `topic` (
`topic_id` int(8) NOT NULL default '0',
`topic_forum_id` int(8) NOT NULL default '0',
`topic_name` varchar(255) NOT NULL default '',
`topic_date` decimal(20,0) NOT NULL default '0',
`topic_ownername` varchar(255) NOT NULL default '0',
`topic_ownerid` int(8) NOT NULL default '0',
`topic_type` int(8) NOT NULL default '0',
`topic_reply` int(8) NOT NULL default '0'
);
+167
View File
@@ -0,0 +1,167 @@
-- ---------------------------------
-- Table structure for walker_routes
-- ---------------------------------
DROP TABLE IF EXISTS `walker_routes`;
CREATE TABLE `walker_routes` (
`route_id` int(11) NOT NULL default '0',
`npc_id` int(11) NOT NULL default '0',
`move_point` int(9) NOT NULL,
`chatText` varchar(255) default NULL,
`move_x` int(9) NOT NULL default '0',
`move_y` int(9) NOT NULL default '0',
`move_z` int(9) NOT NULL default '0',
`delay` int(9) NOT NULL default '0',
`running` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`route_id`,`npc_id`,`move_point`)
);
--
-- Dumping data for table `walker_routes`
--
INSERT INTO `walker_routes` VALUES
(1, 8361, 1, NULL, 22418, 10249, -3648, 61, 1),
(1, 8361, 2, NULL, 23423, 11165, -3720, 0, 1),
(1, 8361, 3, NULL, 20182, 11101, -3720, 0, 1),
(1, 8361, 4, NULL, 17327, 13603, -3728, 1, 1),
(1, 8361, 5, 'The mass of darkness will start in a couple of days. Pay more attention to the guard!', 17410, 13038, -3736, 10, 1),
(1, 8361, 6, NULL, 20176, 12902, -3712, 0, 1),
(1, 8361, 7, NULL, 21669, 13378, -3616, 0, 1),
(1, 8361, 8, NULL, 20675, 10401, -3712, 0, 1),
(2, 8360, 1, NULL, 10820, 14770, -4240, 62, 0),
(2, 8360, 2, NULL, 10947, 14642, -4240, 0, 0),
(2, 8360, 3, NULL, 11301, 15844, -4584, 0, 0),
(2, 8360, 4, NULL, 12107, 16431, -4584, 0, 0),
(2, 8360, 5, 'You''re a hard worker, Rayla!', 15097, 15662, -4376, 6, 0),
(2, 8360, 6, NULL, 15269, 16281, -4376, 7, 0),
(2, 8360, 7, NULL, 12336, 16921, -4584, 0, 0),
(2, 8360, 8, NULL, 11786, 17663, -4564, 0, 0),
(2, 8360, 9, NULL, 11246, 17650, -4568, 0, 0),
(2, 8360, 10, NULL, 10649, 17284, -4584, 0, 0),
(2, 8360, 11,'You''re a hard worker!',7692,18041,-4376,6,0),
(2, 8360, 12, NULL, 10549, 16780, -4584, 0, 0),
(2, 8360, 13, NULL, 10722, 16538, -4584, 0, 0),
(2, 8360, 14, NULL, 11008, 15927, -4584, 0, 0),
(3, 8362, 1, 'Mr. Lid, Murdoc, and Airy! How are you doing?', 114847, -180066, -877, 30, 0),
(3, 8362, 2, NULL, 114834, -179685, -877, 2, 0),
(3, 8362, 3, NULL, 116122, -179457, -1068, 1, 0),
(3, 8362, 4, NULL, 116798, -180391, -1200, 2, 0),
(3, 8362, 5, NULL, 116324, -181564, -1384, 2, 0),
(3, 8362, 6, NULL, 115797, -181563, -1336, 0, 0),
(3, 8362, 7, 'Care to go a round?', 116054, -181575, -1352, 0, 0),
(3, 8362, 8, NULL, 116506, -181478, -1384, 2, 0),
(3, 8362, 9, NULL, 116634, -180029, -1160, 1, 0),
(3, 8362, 10, NULL, 115347, -178623, -928, 1, 0),
(3, 8362, 11, NULL, 115763, -177591, -888, 2, 0),
(3, 8362, 12, 'Have a nice day, Mr. Garita and Mion!', 115801, -177342, -880, 1, 0),
(3, 8362, 13, NULL, 115869, -177340, -880, 15, 0),
(3, 8362, 14, NULL, 115788, -177482, -880, 3, 0),
(3, 8362, 15, NULL, 115124, -179821, -885, 1, 0),
(3, 8362, 16, NULL, 115103, -180065, -877, 1, 0),
(4, 8363, 1, 'Where is that fool hiding?', 116731, -182477, -1512, 10, 1),
(4, 8363, 2, NULL, 115870, -183280, -1472, 0, 1),
(4, 8363, 3, NULL, 115746, -183428, -1472, 1, 1),
(4, 8363, 4, NULL, 115870, -183280, -1472, 1, 1),
(4, 8363, 5, NULL, 115999, -183246, -1480, 0, 1),
(4, 8363, 6, NULL, 116094, -183113, -1480, 1, 1),
(4, 8363, 7, 'Have you seen Torocco today?', 116584, -184294, -1568, 11, 1),
(4, 8363, 8, NULL, 116392, -184100, -1560, 1, 1),
(4, 8363, 9, NULL, 117093, -182524, -1528, 1, 1),
(4, 8363, 10, 'Have you seen Torocco?', 117789, -182540, -1528, 11, 1),
(5, 8359, 1, NULL, 45744, 50561, -3065, 61, 0),
(5, 8359, 2, NULL, 46444, 49742, -3065, 2, 0),
(5, 8359, 3, 'How can we save the Mother Tree?', 46103, 48798, -3065, 5, 0),
(5, 8359, 4, 'The Mother Tree is slowly dying', 45403, 48436, -3065, 5, 0),
(5, 8359, 5, NULL, 44444, 49078, -3065, 0, 0),
(5, 8359, 6, NULL, 44414, 50025, -3065, 0, 0),
(5, 8359, 7, NULL, 44957, 50568, -3065, 0, 0),
(5, 8359, 8, NULL, 44414, 50025, -3065, 0, 0),
(5, 8359, 9, NULL, 44444, 49078, -3065, 0, 0),
(5, 8359, 10, 'The Mother Tree is slowly dying', 45403, 48436, -3065, 5, 0),
(5, 8359, 11, 'How can we save the Mother Tree?', 46103, 48798, -3065, 5, 0),
(5, 8359, 12, NULL, 46444, 49742, -3065, 2, 0),
(6, 8358, 1, 'Lady Mirabel, may the peace of the lake be with you!', 47015, 51278, -2992, 65, 0),
(6, 8358, 2, NULL, 47437, 50441, -2992, 0, 0),
(6, 8358, 3, NULL, 47509, 49038, -2992, 0, 0),
(6, 8358, 4, NULL, 46725, 47755, -2992, 0, 0),
(6, 8358, 5, 'The Mother Tree is always so gorgeous!', 45319, 47339, -2992, 5, 0),
(6, 8358, 6, NULL, 43998, 47672, -2992, 0, 0),
(6, 8358, 7, NULL, 43037, 49310, -2992, 0, 0),
(6, 8358, 8, NULL, 43310, 50382, -2992, 0, 0),
(6, 8358, 9, NULL, 43896, 51060, -2992, 0, 0),
(6, 8358, 10, NULL, 43312, 50362, -2992, 0, 0),
(6, 8358, 11, NULL, 43040, 49311, -2992, 0, 0),
(6, 8358, 12, NULL, 44018, 47645, -2992, 0, 0),
(6, 8358, 13, 'The Mother Tree is always so gorgeous!', 45301, 47340, -2992, 5, 0),
(6, 8358, 14, NULL, 46693, 47752, -2992, 0, 0),
(6, 8358, 15, NULL, 47489, 48976, -2992, 0, 0),
(6, 8358, 16, NULL, 47441, 50455, -2992, 0, 0),
(7, 8357, 1, 'Where did he go?', -86328, 241120, -3734, 60, 0),
(7, 8357, 2, NULL, -86505, 240727, -3704, 0, 0),
(7, 8357, 3, NULL, -86081, 240402, -3712, 0, 0),
(7, 8357, 4, 'Have you seen Windawood?', -86078, 240853, -3720, 15, 0),
(7, 8357, 5, NULL, -85957, 241389, -3728, 0, 0),
(7, 8357, 6, 'Where has he gone?', -83993, 242766, -3728, 10, 0),
(7, 8357, 7, NULL, -82952, 244461, -3728, 0, 0),
(7, 8357, 8, NULL, -82370, 244919, -3720, 0, 0),
(7, 8357, 9, NULL, -82129, 245020, -3720, 0, 0),
(7, 8357, 10, NULL, -82198, 245350, -3712, 0, 0),
(7, 8357, 11, NULL, -82554, 245137, -3716, 1, 0),
(7, 8357, 12, NULL, -82198, 245350, -3712, 0, 0),
(7, 8357, 13, NULL, -82129, 245020, -3720, 0, 0),
(7, 8357, 14, NULL, -82370, 244919, -3720, 0, 0),
(7, 8357, 15, NULL, -82952, 244461, -3728, 0, 0),
(7, 8357, 16, 'Where has he gone?', -83993, 242766, -3728, 10, 0),
(7, 8357, 17, NULL, -85957, 241389, -3728, 0, 0),
(7, 8357, 18, 'Have you seen Windawood?', -86078, 240853, -3720, 15, 0),
(7, 8357, 19, NULL, -86081, 240402, -3712, 0, 0),
(7, 8357, 20, NULL, -86505, 240727, -3704, 0, 0),
(8, 8356, 1, 'A delivery for Mr. Lector? Very good!', -81681, 243384, -3712, 61, 1),
(8, 8356, 2, NULL, -81915, 243870, -3712, 1, 1),
(8, 8356, 3, NULL, -82084, 243659, -3712, 0, 1),
(8, 8356, 4, NULL, -83148, 243731, -3728, 0, 1),
(8, 8356, 5, 'I need a break!', -84497, 243241, -3728, 6, 1),
(8, 8356, 6, NULL, -85212, 243184, -3728, 0, 1),
(8, 8356, 7, NULL, -86161, 242898, -3728, 0, 1),
(8, 8356, 8, NULL, -86281, 242963, -3720, 0, 1),
(8, 8356, 9, 'Hello, Mr. Lector! Long time no see, Mr. Jackson!', -86356, 243201, -3720, 7, 1),
(8, 8356, 10, NULL, -86491, 242781, -3720, 0, 1),
(8, 8356, 11, NULL, -86497, 242585, -3728, 0, 1),
(8, 8356, 12, NULL, -86114, 241587, -3728, 0, 1),
(8, 8356, 13, NULL, -85184, 240679, -3728, 0, 1),
(8, 8356, 14, 'Lulu!', -84075, 241282, -3728, 3, 1),
(8, 8356, 15, 'Lulu!', -84075, 241282, -3728, 3, 1),
(8, 8356, 16, 'Lulu!', -83709, 241238, -3728, 0, 1),
(8, 8356, 17, NULL, -83182, 241141, -3728, 1, 1),
(8, 8356, 18, NULL, -82383, 242926, -3720, 1, 1),
(9, 8364, 1, NULL, -46506, -109402, -238, 10, 0),
(9, 8364, 2, NULL, -45752, -111652, -240, 0, 0),
(9, 8364, 3, NULL, -44028, -112688, -240, 0, 0),
(9, 8364, 4, NULL, -44049, -114536, -240, 0, 0),
(9, 8364, 5, NULL, -45540, -115415, -240, 0, 0),
(9, 8364, 6, NULL, -46526, -117731, -240, 0, 0),
(9, 8364, 7, NULL, -45540, -115415, -240, 0, 0),
(9, 8364, 8, NULL, -44049, -114536, -240, 0, 0),
(9, 8364, 9, NULL, -44028, -112688, -240, 0, 0),
(9, 8364, 10, NULL, -45752, -111652, -240, 0, 0),
(10, 8365, 1, NULL, -48807, -113489, -241, 61, 0),
(10, 8365, 2, NULL, -48821, -113746, -232, 1, 0),
(10, 8365, 3, NULL, -48823, -113505, -232, 61, 0),
(10, 8365, 4, NULL, -47339, -113581, -232, 1, 0),
(10, 8365, 5, NULL, -45740, -113562, -240, 0, 0),
(10, 8365, 6, NULL, -44851, -112965, -240, 0, 0),
(10, 8365, 7, NULL, -44308, -113207, -240, 0, 0),
(10, 8365, 8, NULL, -44204, -113743, -240, 0, 0),
(10, 8365, 9, NULL, -44659, -114171, -240, 0, 0),
(10, 8365, 10, NULL, -45167, -114034, -224, 0, 0),
(10, 8365, 11, NULL, -45658, -113633, -240, 0, 0),
(10, 8365, 12, NULL, -47363, -113621, -224, 0, 0),
(10, 8365, 13, NULL, -48829, -113746, -232, 0, 0),
(10, 8365, 14, NULL, -47363, -113621, -224, 0, 0),
(10, 8365, 15, NULL, -45658, -113633, -240, 0, 0),
(10, 8365, 16, NULL, -45167, -114034, -224, 0, 0),
(10, 8365, 17, NULL, -44659, -114171, -240, 0, 0),
(10, 8365, 18, NULL, -44204, -113743, -240, 0, 0),
(10, 8365, 19, NULL, -44308, -113207, -240, 0, 0),
(10, 8365, 20, NULL, -44851, -112965, -240, 0, 0),
(10, 8365, 21, NULL, -45740, -113562, -240, 1, 0);
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,748 @@
@echo off
REM ##############################################
REM ## L2JDP Database Installer - (by DrLecter) ##
REM ##############################################
REM ## Interactive script setup - (by TanelTM) ##
REM ##############################################
REM Copyright (C) 2007 L2J DataPack
REM This program is free software; you can redistribute it and/or modify
REM it under the terms of the GNU General Public License as published by
REM the Free Software Foundation; either version 2 of the License, or (at
REM your option) any later version.
REM
REM This program is distributed in the hope that it will be useful, but
REM WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
REM or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
REM for more details.
REM
REM You should have received a copy of the GNU General Public License along
REM with this program; if not, write to the Free Software Foundation, Inc.,
REM 675 Mass Ave, Cambridge, MA 02139, USA. Or contact the Official L2J
REM DataPack Project at http://www.l2jdp.com, http://forum.l2jdp.com or
REM #l2j-datapack @ irc://irc.freenode.net
set config_file=vars.txt
set config_version=0
set full=0
set stage=0
set logging=0
set upgrade_mode=0
set backup=.
set logdir=.
set safe_mode=1
set cmode=c
set fresh_setup=0
:loadconfig
title L2JMobius DP installer - Reading configuration from file...
cls
if not exist %config_file% goto configure
ren %config_file% vars.bat
call vars.bat
ren vars.bat %config_file%
call :colors 17
if /i %config_version% == 1 goto ls_section
set upgrade_mode=2
echo It seems to be the first time you run this version of
echo database_installer but I found a settings file already.
echo I'll hopefully ask this questions just once.
echo.
echo Configuration upgrade options:
echo.
echo (1) Import and continue: I'll read your old settings and
echo continue execution, but since no new settings will be
echo saved, you'll see this menu again next time.
echo.
echo (2) Import and configure: This tool has some new options
echo available, you choose the values that fit your needs
echo using former settings as a base.
echo.
echo (3) Ignose stored settings: I'll let you configure me
echo with a fresh set of default values as a base.
echo.
echo (4) View saved settings: See the contents of the config
echo file.
echo.
echo (5) Quit: Did you come here by mistake?
echo.
set /P upgrade_mode="Type a number, press Enter (default is '%upgrade_mode%'): "
if %upgrade_mode%==1 goto ls_section
if %upgrade_mode%==2 goto configure
if %upgrade_mode%==3 goto configure
if %upgrade_mode%==4 (cls&type %config_file%&pause&goto loadconfig)
if %upgrade_mode%==5 goto :eof
goto loadconfig
:colors
if /i "%cmode%"=="n" (
if not "%1"=="17" ( color F ) else ( color )
) else ( color %1 )
goto :eof
:configure
call :colors 17
title L2JMobius DP installer - Setup
cls
set config_version=1
if NOT %upgrade_mode% == 2 (
set fresh_setup=1
set mysqlBinPath=%ProgramFiles%\MySQL\MySQL Server 5.5\bin
set lsuser=root
set lspass=
set lsdb=l2jmc4
set lshost=localhost
set gsuser=root
set gspass=
set gsdb=l2jmc4
set gshost=localhost
set cmode=c
set backup=.
set logdir=.
)
set mysqlPath=%mysqlBinPath%\mysql.exe
echo New settings will be created for this tool to run in
echo your computer, so I need to ask you few questions.
echo.
echo 1-MySql Binaries
echo --------------------
echo In order to perform my tasks, I need the path for commands
echo such as 'mysql' and 'mysqldump'. Both executables are
echo usually stored in the same place.
echo.
if "%mysqlBinPath%" == "" (
set mysqlBinPath=use path
echo I can't determine if the binaries are available with your
echo default settings.
) else (
echo I can try to find out if the current setting actually works...
echo.
echo %mysqlPath%
)
if not "%mysqlBinPath%" == "use path" call :binaryfind
echo.
path|find "MySQL">NUL
if %errorlevel% == 0 (
echo I found MySQL is in your PATH, this will be used by default.
echo If you want to use something different, change 'use path' for
echo something else.
set mysqlBinPath=use path
) else (
echo Look, I can't find "MYSQL" in your PATH environment variable.
echo It would be good if you go and find out where "mysql.exe" and
echo "mysqldump.exe" are.
echo.
echo If you have no idea about the meaning of words such as MYSQL
echo or PATH, you'd better close this window, and consider googling
echo and reading about it. Setup and host an L2J server requires a
echo minimum of technical skills.
)
echo.
echo Write the path to your MySQL binaries (no trailing slash needed):
set /P mysqlBinPath="(default %mysqlBinPath%): "
cls
echo.
echo 2-LoginServer settings
echo --------------------
echo I will connect to the MySQL server you specify, and setup a
echo Loginserver database there, most people use a single MySQL
echo server and database for both Login and Gameserver tables.
echo.
set /P lsuser="MySQL Username (default is '%lsuser%'): "
set /P lspass="Password (will be shown as you type, default '%lspass%'): "
set /P lsdb="Database (default is '%lsdb%'): "
set /P lshost="Host (default is '%lshost%'): "
echo.
echo 3-GameServer settings
echo --------------------
set /P gsuser="User (default is '%gsuser%'): "
set /P gspass="Pass (default is '%gspass%'): "
set /P gsdb="Database (default is '%gsdb%'): "
set /P gshost="Host (default is '%gshost%'): "
echo.
echo 4-Misc. settings
echo --------------------
set /P cmode="Color mode (c)olor or (n)on-color, default %cmode% : "
set /P backup="Path for your backups (default '%backup%'): "
set /P logdir="Path for your logs (default '%logdir%'): "
:safe1
set safemode=y
set /P safemode="Debugging messages and increase verbosity a lil bit (y/n, default '%safemode%'): "
if /i %safemode%==y (set safe_mode=1&goto safe2)
if /i %safemode%==n (set safe_mode=0&goto safe2)
goto safe1
:safe2
echo.
if "%mysqlBinPath%" == "use path" (
set mysqlBinPath=
set mysqldumpPath=mysqldump
set mysqlPath=mysql
) else (
set mysqldumpPath=%mysqlBinPath%\mysqldump.exe
set mysqlPath=%mysqlBinPath%\mysql.exe
)
echo @echo off > %config_file%
echo set config_version=%config_version% >> %config_file%
echo set cmode=%cmode%>> %config_file%
echo set safe_mode=%safe_mode% >> %config_file%
echo set mysqlPath=%mysqlPath%>> %config_file%
echo set mysqlBinPath=%mysqlBinPath%>> %config_file%
echo set mysqldumpPath=%mysqldumpPath%>> %config_file%
echo set lsuser=%lsuser%>> %config_file%
echo set lspass=%lspass%>> %config_file%
echo set lsdb=%lsdb%>> %config_file%
echo set lshost=%lshost% >> %config_file%
echo set gsuser=%gsuser%>> %config_file%
echo set gspass=%gspass%>> %config_file%
echo set gsdb=%gsdb%>> %config_file%
echo set gshost=%gshost%>> %config_file%
echo set logdir=%logdir%>> %config_file%
echo set backup=%backup%>> %config_file%
echo.
echo Script setup complete, your settings were saved in the
echo '%config_file%' file. Remember: your passwords are stored
echo as clear text.
echo.
echo press any key to continue...
pause> nul
goto loadconfig
:ls_section
cls
call :colors 17
set cmdline=
set stage=1
title L2JMobius DP installer - Login Server database setup
echo.
echo Trying to make a backup of your loginserver database.
set cmdline="%mysqldumpPath%" --add-drop-table -h %lshost% -u %lsuser% --password=%lspass% %lsdb% ^> "%backup%\loginserver_backup.sql" 2^> NUL
%cmdline%
if %ERRORLEVEL% == 0 goto lsdbok
REM if %safe_mode% == 1 goto omfg
:ls_err1
call :colors 47
title L2JMobius DP installer - Login Server database setup ERROR!!!
cls
echo.
echo Backup attempt failed! A possible reason for this to
echo happen, is that your DB doesn't exist yet. I could
echo try to create %lsdb% for you, or maybe you prefer to
echo proceed with the GameServer part of this tool.
echo.
:ls_ask1
set lsdbprompt=y
echo ATTEMPT TO CREATE LOGINSERVER DATABASE:
echo.
echo (y)es
echo.
echo (n)o
echo.
echo (r)econfigure
echo.
echo (q)uit
echo.
set /p lsdbprompt= Choose (default yes):
if /i %lsdbprompt%==y goto lsdbcreate
if /i %lsdbprompt%==n goto gs_backup
if /i %lsdbprompt%==r goto configure
if /i %lsdbprompt%==q goto end
goto ls_ask1
:omfg
cls
call :colors 57
title L2JMobius DP installer - potential PICNIC detected at stage %stage%
echo.
echo There was some problem while executing:
echo.
echo "%cmdline%"
echo.
echo I'd suggest you to look for correct values and try this
echo script again later. But maybe you'd prefer to go on now.
echo.
if %stage% == 1 set label=ls_err1
if %stage% == 2 set label=ls_err2
if %stage% == 3 set label=gs_backup
if %stage% == 4 set label=gs_err1
if %stage% == 5 set label=gs_err2
if %stage% == 6 set label=horrible_end
if %stage% == 7 set label=horrible_end
:omfgask1
set omfgprompt=q
echo (c)ontinue running the script
echo.
echo (r)econfigure
echo.
echo (q)uit now
echo.
set /p omfgprompt= Choose (default quit):
if /i %omfgprompt%==c goto %label%
if /i %omfgprompt%==r goto configure
if /i %omfgprompt%==q goto horrible_end
goto omfgask1
:lsdbcreate
call :colors 17
set cmdline=
set stage=2
title L2JMobius DP installer - Login Server database setup - DB Creation
echo.
echo Trying to create a Login Server database...
set cmdline="%mysqlPath%" -h %lshost% -u %lsuser% --password=%lspass% -e "CREATE DATABASE %lsdb%" 2^> NUL
%cmdline%
if %ERRORLEVEL% == 0 goto logininstall
if %safe_mode% == 1 goto omfg
:ls_err2
call :colors 47
title L2JMobius DP installer - Login Server database setup - DB Creation error
cls
echo An error occured while trying to create a database for
echo your login server.
echo.
echo Possible reasons:
echo 1-You provided innacurate info , check user, password, etc.
echo 2-User %lsuser% don't have enough privileges for
echo database creation. Check your MySQL privileges.
echo 3-Database exists already...?
echo.
echo Unless you're sure that the pending actions of this tool
echo could work, i'd suggest you to look for correct values
echo and try this script again later.
echo.
:ls_ask2
set omfgprompt=q
echo (c)ontinue running
echo.
echo (r)econfigure
echo.
echo (q)uit now
echo.
set /p omfgprompt= Choose (default quit):
if /i %omfgprompt%==c goto gs_backup
if /i %omfgprompt%==q goto horrible_end
if /i %omfgprompt%==r goto configure
goto ls_ask2
:lsdbok
call :colors 17
title L2JMobius DP installer - Login Server database setup - WARNING!!!
echo.
:asklogin
if %fresh_setup%==0 (
set loginprompt=s
set msg=default skip
) else (
set loginprompt=x
set msg=no default for fresh install
)
echo LOGINSERVER DATABASE install type:
echo.
echo (f)ull: I will destroy data in your `accounts` and
echo and `gameserver` tables.
echo.
echo (s)kip: I'll take you to the gameserver database
echo installation and upgrade options.
echo.
echo (r)econfigure: You'll be able to redefine MySQL path,
echo user and database information and start over with
echo those fresh values.
echo.
echo (q)uit
echo.
set /p loginprompt= Choose (%msg%) :
if /i %loginprompt%==f goto logininstall
if /i %loginprompt%==s goto gs_backup
if /i %loginprompt%==r goto configure
if /i %loginprompt%==q goto end
goto asklogin
:logininstall
set stage=3
call :colors 17
set cmdline=
title L2JMobius DP installer - Login Server database setup - Full install
echo Deleting loginserver tables for new content.
set cmdline="%mysqlPath%" -h %lshost% -u %lsuser% --password=%lspass% -D %lsdb% ^< login_install.sql 2^> NUL
%cmdline%
if not %ERRORLEVEL% == 0 goto omfg
set full=1
goto gs_backup
:gs_backup
call :colors 17
set cmdline=
if %full% == 1 goto fullinstall
set stage=4
title L2JMobius DP installer - Game server database setup
cls
echo.
echo Making a backup of the original gameserver database.
set cmdline="%mysqldumpPath%" --add-drop-table -h %gshost% -u %gsuser% --password=%gspass% %gsdb% ^> "%backup%\gameserver_backup.sql" 2^> NUL
%cmdline%
if %ERRORLEVEL% == 0 goto gsdbok
if %safe_mode% == 1 goto omfg
:gs_err1
call :colors 47
title L2JMobius DP installer - Game Server database setup - Backup failed!
cls
echo.
echo Backup attempt failed! A possible reason for this to happen,
echo is that your DB doesn't exist yet. I could try to create
echo %gsdb% for you, but maybe you prefer me to continue with
echo last part of the script.
echo.
:askgsdb
set gsdbprompt=y
echo ATTEMPT TO CREATE GAMESERVER DATABASE?
echo.
echo (y)es
echo.
echo (n)o
echo.
echo (r)econfigure
echo.
echo (q)uit
echo.
set /p gsdbprompt= Choose (default yes):
if /i %gsdbprompt%==y goto gsdbcreate
if /i %gsdbprompt%==n goto horrible_end
if /i %gsdbprompt%==r goto configure
if /i %gsdbprompt%==q goto end
goto askgsdb
:gsdbcreate
call :colors 17
set stage=5
set cmdline=
title L2JMobius DP installer - Game Server database setup - DB Creation
cls
echo Trying to create Game Server database...
set cmdline="%mysqlPath%" -h %gshost% -u %gsuser% --password=%gspass% -e "CREATE DATABASE %gsdb%" 2^> NUL
%cmdline%
if %ERRORLEVEL% == 0 goto fullinstall
if %safe_mode% == 1 goto omfg
:gs_err2
call :colors 47
title L2JMobius DP installer - Game Server database setup - DB Creation failed!
cls
echo.
echo An error occured while trying to create a database for
echo your game server.
echo.
echo Possible reasons:
echo 1-You provided innacurate info, check username, pass, etc.
echo 2-User %gsuser% don't have enough privileges for
echo database creation.
echo 3-Database exists already...?
echo.
echo I'd suggest you to look for correct values and try this
echo script again later. But you can try to reconfigure it now.
echo.
:askgsdbcreate
set omfgprompt=q
echo (r)estart script with fresh configuration values
echo.
echo (q)uit now
echo.
set /p omfgprompt= Choose (default quit):
if /i %omfgprompt%==r goto configure
if /i %omfgprompt%==q goto horrible_end
goto askgsdbcreate
:gsdbok
call :colors 17
title L2JMobius DP installer - Game Server database setup - WARNING!!!
cls
echo.
:asktype
set installtype=u
echo GAMESERVER DATABASE install:
echo.
echo (f)ull: WARNING! I'll destroy ALL of your existing character
echo data (i really mean it: items, pets.. ALL)
echo.
echo (u)pgrade: I'll do my best to preserve all of your character
echo data.
echo.
echo (s)kip: We'll get into the last set of questions (cummulative
echo updates, custom stuff...)
echo.
echo (q)uit
echo.
set /p installtype= Choose (default upgrade):
if /i %installtype%==f goto fullinstall
if /i %installtype%==u goto upgradeinstall
if /i %installtype%==s goto custom
if /i %installtype%==q goto end
goto asktype
:fullinstall
call :colors 17
set stage=6
set cmdline=
title L2JMobius DP installer - Game Server database setup - Full install
echo Deleting all gameserver tables for new content...
set cmdline="%mysqlPath%" -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% ^< full_install.sql 2^> NUL
%cmdline%
if not %ERRORLEVEL% == 0 goto omfg
set full=1
echo.
echo Game Server tables were deleted.
goto upgradeinstall
:upgradeinstall
set stage=6
set cmdline=
if %full% == 1 (
title L2JMobius DP installer - Game Server database setup - Installing...
echo Installing new gameserver content.
) else (
title L2JMobius DP installer - Game Server database setup - Upgrading...
echo Upgrading gameserver content.
)
if %logging% == 0 set output=NUL
set dest=ls
for %%i in (
accounts.sql
gameservers.sql
) do call :dump %%i
set dest=gs
for %%i in (
account_data.sql
armor.sql
armorsets.sql
auction.sql
auction_bid.sql
auction_watch.sql
auto_announcements.sql
auto_chat.sql
auto_chat_text.sql
castle.sql
castle_door.sql
castle_doorupgrade.sql
castle_functions.sql
castle_manor_procure.sql
castle_manor_production.sql
castle_siege_guards.sql
char_templates.sql
character_friends.sql
character_hennas.sql
character_macroses.sql
character_offline_trade.sql
character_offline_trade_items.sql
character_quests.sql
character_recipebook.sql
character_recommends.sql
character_shortcuts.sql
character_skills.sql
character_skills_save.sql
character_subclasses.sql
characters.sql
clan_data.sql
clan_wars.sql
clanhall.sql
clanhall_functions.sql
class_list.sql
dimensional_rift.sql
droplist.sql
enchant_skill_trees.sql
etcitem.sql
fish.sql
fishing_skill_trees.sql
forums.sql
four_sepulchers_spawnlist.sql
games.sql
global_tasks.sql
grandboss_data.sql
grandboss_list.sql
helper_buff_list.sql
henna.sql
henna_trees.sql
heroes.sql
items.sql
itemsonground.sql
locations.sql
lvlupgain.sql
mapregion.sql
merchant_areas_list.sql
merchant_buylists.sql
merchant_lease.sql
merchant_shopids.sql
merchants.sql
minions.sql
npc.sql
npc_buffer.sql
pets.sql
pets_stats.sql
posts.sql
npcskills.sql
olympiad_nobles.sql
quest_global_data.sql
raidboss_spawnlist.sql
random_spawn.sql
random_spawn_loc.sql
seven_signs.sql
seven_signs_festival.sql
seven_signs_status.sql
siege_clans.sql
skill_learn.sql
skill_spellbooks.sql
skill_trees.sql
spawnlist.sql
teleport.sql
topic.sql
walker_routes.sql
weapon.sql
zone_vertices.sql
) do call :dump %%i
echo done...
echo.
goto custom
:dump
set cmdline=
if /i %full% == 1 (set action=Installing) else (set action=Upgrading)
echo %action% %1>>"%output%"
echo %action% %~nx1
if "%dest%"=="ls" set cmdline="%mysqlPath%" -h %lshost% -u %lsuser% --password=%lspass% -D %lsdb% ^< ..\sql\%1 2^>^>"%output%"
if "%dest%"=="gs" set cmdline="%mysqlPath%" -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% ^< ..\sql\%1 2^>^>"%output%"
%cmdline%
if %logging%==0 if NOT %ERRORLEVEL%==0 call :omfg2 %1
goto :eof
:custom
echo.
set cstprompt=n
set /p cstprompt=Install custom gameserver DB tables: (Y) yes or (N) no?
if /i %cstprompt%==y goto cstinstall
if /i %cstprompt%==n goto end
:cstinstall
echo Installing custom content.
cd ..\sql\custom\
echo @echo off> temp.bat
if exist errors.txt del errors.txt
for %%i in (*.sql) do echo "%mysqlPath%" -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% ^< %%i 2^>^> custom_errors.txt >> temp.bat
call temp.bat> nul
del temp.bat
move custom_errors.txt %workdir%
goto end
:omfg2
cls
call :colors 47
title L2JMobius DP installer - potential database issue at stage %stage%
echo.
echo Something caused an error while executing instruction :
echo %mysqlPath% -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb%
echo.
echo with file %~nx1
echo.
echo What should we do now?
echo.
:askomfg2
set ntpebcak=c
echo (l)og it: I will create a log for this file, then continue
echo with the rest of the list in non-logging mode.
echo.
echo (c)ontinue: Let's pretend that nothing happened and continue with
echo the rest of the list.
echo.
echo (r)econfigure: Perhaps these errors were caused by a typo.
echo you can restart from scratch and redefine paths, databases
echo and user info again.
echo.
echo (q)uit now
echo.
set /p ntpebcak= Choose (default continue):
if /i %ntpebcak%==c (call :colors 17 & goto :eof)
if /i %ntpebcak%==l (call :logginon %1 & goto :eof)
if /i %ntpebcak%==r (call :configure & exit)
if /i %ntpebcak%==q (call :horrible_end & exit)
goto askomfg2
:logginon
cls
call :colors 17
title L2JMobius DP installer - Game Server database setup - Logging options turned on
set logging=1
if %full% == 1 (
set output=%logdir%\install-%~nx1.log
) else (
set output=%logdir%\upgrade-%~nx1.log
)
echo.
echo Depending on your request, i'll create a log file for your reading pleasure.
echo.
echo I'll call it %output%
echo.
echo If you already have such a file and would like to keep a copy.
echo go now and read it or back it up, because it's not going to be rotated
echo or anything, instead i'll just overwrite it.
echo.
echo When you're done or if you don't mind, press any key to start.
pause>NUL
set cmdline="%mysqlPath%" -h %gshost% -u %gsuser% --password=%gspass% -D %gsdb% ^<..\sql\%1 2^>^>"%output%"
date /t >"%output%"
time /t >>"%output%"
%cmdline%
echo Log file created, resuming normal operations...
call :colors 17
set logging=0
set output=NUL
goto :eof
:binaryfind
if EXIST "%mysqlBinPath%" (echo Found) else (echo Not Found)
goto :eof
:horrible_end
call :colors 47
title L2JMobius DP installer - Oops!
cls
echo This wasn't a clean run, but don't worry.
echo You can get help and support at L2JMobius Forum.
echo.
echo I'll try to gather some version-related information that you
echo may find useful when asking for support :
echo.
echo Datapack revision reported by 'SVN version':
svnversion -n 2>NUL
echo.
if %ERRORLEVEL% == 9009 (
echo SVN commandline tools not found!
echo Please download and install a copy from :
echo http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91
echo.
)
set dpvf="..\config\l2jdp-version.properties"
echo Datapack revision reported by properties file :
if NOT EXIST %dpvf% (
echo Your %dpvf% file is missing!
echo Use eclipse/ant to build one from your DP SVN copy.
echo With it we'll be able to help you better.
) else (
type %dpvf% | find "version" 2> NUL
if not %ERRORLEVEL% == 0 (
echo An error occured while trying to read
echo your %dpvf% file!
echo Make sure you keep it up to date
echo and in the correct place.
echo %ERRORLEVEL%
))
echo.
rem del %config_file%
pause
goto end
:end
call :colors 17
title L2JMobius DP installer - Script execution finished
cls
echo.
echo Thanks for using L2JMobius, a project based on L2JServer.
echo.
pause
color

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