Merged with released L2J-Unity files.

This commit is contained in:
mobiusdev
2016-06-12 01:34:09 +00:00
parent e003e87887
commit 635557f5da
18352 changed files with 3245113 additions and 2892959 deletions

View File

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

View File

@@ -0,0 +1,9 @@
DROP TABLE IF EXISTS `character_daily_rewards`;
CREATE TABLE IF NOT EXISTS `character_daily_rewards` (
`charId` int(10) UNSIGNED NOT NULL ,
`rewardId` int(3) UNSIGNED NOT NULL ,
`status` tinyint(1) UNSIGNED NOT NULL DEFAULT 1 ,
`progress` int UNSIGNED NOT NULL DEFAULT 0 ,
`lastCompleted` bigint UNSIGNED NOT NULL ,
PRIMARY KEY (`charId`, `rewardId`)
);

View File

@@ -1,8 +1,7 @@
DROP TABLE IF EXISTS `character_friends`;
CREATE TABLE IF NOT EXISTS `character_friends` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`friendId` INT UNSIGNED NOT NULL DEFAULT 0,
`relation` INT UNSIGNED NOT NULL DEFAULT 0,
`memo` text,
PRIMARY KEY (`charId`,`friendId`)
DROP TABLE IF EXISTS `character_friends`;
CREATE TABLE IF NOT EXISTS `character_friends` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`friendId` INT UNSIGNED NOT NULL DEFAULT 0,
`relation` INT UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`,`friendId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,7 +0,0 @@
DROP TABLE IF EXISTS `character_quest_global_data`;
CREATE TABLE IF NOT EXISTS `character_quest_global_data` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`var` VARCHAR(20) NOT NULL DEFAULT '',
`value` VARCHAR(255) ,
PRIMARY KEY (`charId`,`var`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -5,9 +5,8 @@ CREATE TABLE IF NOT EXISTS `character_shortcuts` (
`page` decimal(3) NOT NULL DEFAULT 0,
`type` decimal(3) ,
`shortcut_id` decimal(16) ,
`level` varchar(5) ,
`level` SMALLINT UNSIGNED ,
`class_index` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`charId`,`slot`,`page`,`class_index`),
KEY `shortcut_id` (`shortcut_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `character_shortcuts` MODIFY COLUMN `level` varchar(9);
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -2,9 +2,7 @@ DROP TABLE IF EXISTS `character_skills`;
CREATE TABLE IF NOT EXISTS `character_skills` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`skill_id` INT NOT NULL DEFAULT 0,
`skill_level` INT(3) NOT NULL DEFAULT 1,
`skill_level` INT(4) NOT NULL DEFAULT 1,
`class_index` INT(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`,`skill_id`,`class_index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `character_skills` MODIFY COLUMN `skill_level` INT(4);
UPDATE `character_skills` SET skill_level=((skill_level % 100) + (round(skill_level / 100) * 1000)) WHERE skill_level <= 1000 AND skill_level >= 100;
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -2,7 +2,7 @@ DROP TABLE IF EXISTS `character_skills_save`;
CREATE TABLE IF NOT EXISTS `character_skills_save` (
`charId` INT NOT NULL DEFAULT 0,
`skill_id` INT NOT NULL DEFAULT 0,
`skill_level` INT(3) NOT NULL DEFAULT 1,
`skill_level` INT(4) NOT NULL DEFAULT 1,
`remaining_time` INT NOT NULL DEFAULT 0,
`reuse_delay` INT(8) NOT NULL DEFAULT 0,
`systime` bigint(13) unsigned NOT NULL DEFAULT '0',
@@ -10,6 +10,4 @@ CREATE TABLE IF NOT EXISTS `character_skills_save` (
`class_index` INT(1) NOT NULL DEFAULT 0,
`buff_index` INT(2) NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`,`skill_id`,`skill_level`,`class_index`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `character_skills_save` MODIFY COLUMN `skill_level` INT(4);
UPDATE `character_skills_save` SET skill_level=((skill_level % 100) + (round(skill_level / 100) * 1000)) WHERE skill_level <= 1000 AND skill_level >= 100;
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,12 +1,12 @@
DROP TABLE IF EXISTS `character_subclasses`;
CREATE TABLE IF NOT EXISTS `character_subclasses` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`class_id` int(2) NOT NULL DEFAULT 0,
`exp` bigint(20) NOT NULL DEFAULT 0,
`sp` bigint(10) NOT NULL DEFAULT 0,
`vitality_points` int(10) NOT NULL DEFAULT '140000',
`level` int(2) NOT NULL DEFAULT 40,
`class_index` int(1) NOT NULL DEFAULT 0,
`dual_class` BOOLEAN NOT NULL DEFAULT FALSE,
PRIMARY KEY (`charId`,`class_id`)
DROP TABLE IF EXISTS `character_subclasses`;
CREATE TABLE IF NOT EXISTS `character_subclasses` (
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`class_id` int(2) NOT NULL DEFAULT 0,
`exp` bigint(20) NOT NULL DEFAULT 0,
`sp` bigint(10) NOT NULL DEFAULT 0,
`level` int(2) NOT NULL DEFAULT 40,
`vitality_points` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
`class_index` int(1) NOT NULL DEFAULT 0,
`dual_class` BOOLEAN NOT NULL DEFAULT FALSE,
PRIMARY KEY (`charId`,`class_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,65 +1,62 @@
DROP TABLE IF EXISTS `characters`;
CREATE TABLE IF NOT EXISTS `characters` (
`account_name` VARCHAR(45) DEFAULT NULL,
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`char_name` VARCHAR(35) NOT NULL,
`level` TINYINT UNSIGNED DEFAULT NULL,
`maxHp` MEDIUMINT UNSIGNED DEFAULT NULL,
`curHp` MEDIUMINT UNSIGNED DEFAULT NULL,
`maxCp` MEDIUMINT UNSIGNED DEFAULT NULL,
`curCp` MEDIUMINT UNSIGNED DEFAULT NULL,
`maxMp` MEDIUMINT UNSIGNED DEFAULT NULL,
`curMp` MEDIUMINT UNSIGNED DEFAULT NULL,
`face` TINYINT UNSIGNED DEFAULT NULL,
`hairStyle` TINYINT UNSIGNED DEFAULT NULL,
`hairColor` TINYINT UNSIGNED DEFAULT NULL,
`sex` TINYINT UNSIGNED DEFAULT NULL,
`heading` MEDIUMINT DEFAULT NULL,
`x` MEDIUMINT DEFAULT NULL,
`y` MEDIUMINT DEFAULT NULL,
`z` MEDIUMINT DEFAULT NULL,
`exp` BIGINT UNSIGNED DEFAULT 0,
`expBeforeDeath` BIGINT UNSIGNED DEFAULT 0,
`sp` BIGINT(10) UNSIGNED NOT NULL DEFAULT 0,
`reputation` INT UNSIGNED DEFAULT 0,
`fame` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
`raidpoints` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
`pvpkills` SMALLINT UNSIGNED DEFAULT NULL,
`pkkills` SMALLINT UNSIGNED DEFAULT NULL,
`clanid` INT UNSIGNED DEFAULT NULL,
`race` TINYINT UNSIGNED DEFAULT NULL,
`classid` TINYINT UNSIGNED DEFAULT NULL,
`base_class` TINYINT UNSIGNED NOT NULL DEFAULT 0,
`transform_id` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
`deletetime` bigint(13) unsigned NOT NULL DEFAULT '0',
`cancraft` TINYINT UNSIGNED DEFAULT NULL,
`title` VARCHAR(21) DEFAULT NULL,
`title_color` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0xECF9A2,
`accesslevel` MEDIUMINT DEFAULT 0,
`online` TINYINT UNSIGNED DEFAULT NULL,
`onlinetime` INT DEFAULT NULL,
`char_slot` TINYINT UNSIGNED DEFAULT NULL,
`lastAccess` bigint(13) unsigned NOT NULL DEFAULT '0',
`clan_privs` MEDIUMINT UNSIGNED DEFAULT 0,
`wantspeace` TINYINT UNSIGNED DEFAULT 0,
`power_grade` TINYINT UNSIGNED DEFAULT NULL,
`nobless` TINYINT UNSIGNED NOT NULL DEFAULT 0,
`subpledge` SMALLINT NOT NULL DEFAULT 0,
`lvl_joined_academy` TINYINT UNSIGNED NOT NULL DEFAULT 0,
`apprentice` INT UNSIGNED NOT NULL DEFAULT 0,
`sponsor` INT UNSIGNED NOT NULL DEFAULT 0,
`clan_join_expiry_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`clan_create_expiry_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`death_penalty_level` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
`bookmarkslot` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
`vitality_points` int(10) NOT NULL DEFAULT '140000',
`pccafe_points` int(6) DEFAULT NULL,
`createDate` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`language` VARCHAR(2) DEFAULT NULL,
`faction` TINYINT UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`),
KEY `account_name` (`account_name`),
KEY `char_name` (`char_name`),
KEY `clanid` (`clanid`),
KEY `online` (`online`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `characters` (
`account_name` VARCHAR(45) DEFAULT NULL,
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`char_name` VARCHAR(35) NOT NULL,
`level` TINYINT UNSIGNED DEFAULT NULL,
`maxHp` MEDIUMINT UNSIGNED DEFAULT NULL,
`curHp` MEDIUMINT UNSIGNED DEFAULT NULL,
`maxCp` MEDIUMINT UNSIGNED DEFAULT NULL,
`curCp` MEDIUMINT UNSIGNED DEFAULT NULL,
`maxMp` MEDIUMINT UNSIGNED DEFAULT NULL,
`curMp` MEDIUMINT UNSIGNED DEFAULT NULL,
`face` TINYINT UNSIGNED DEFAULT NULL,
`hairStyle` TINYINT UNSIGNED DEFAULT NULL,
`hairColor` TINYINT UNSIGNED DEFAULT NULL,
`sex` TINYINT UNSIGNED DEFAULT NULL,
`heading` MEDIUMINT DEFAULT NULL,
`x` MEDIUMINT DEFAULT NULL,
`y` MEDIUMINT DEFAULT NULL,
`z` MEDIUMINT DEFAULT NULL,
`exp` BIGINT UNSIGNED DEFAULT 0,
`expBeforeDeath` BIGINT UNSIGNED DEFAULT 0,
`sp` BIGINT(10) UNSIGNED NOT NULL DEFAULT 0,
`reputation` INT DEFAULT NULL,
`fame` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
`raidbossPoints` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
`pvpkills` SMALLINT UNSIGNED DEFAULT NULL,
`pkkills` SMALLINT UNSIGNED DEFAULT NULL,
`clanid` INT UNSIGNED DEFAULT NULL,
`race` TINYINT UNSIGNED DEFAULT NULL,
`classid` TINYINT UNSIGNED DEFAULT NULL,
`base_class` TINYINT UNSIGNED NOT NULL DEFAULT 0,
`transform_id` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
`deletetime` bigint(13) unsigned NOT NULL DEFAULT '0',
`cancraft` TINYINT UNSIGNED DEFAULT NULL,
`title` VARCHAR(21) DEFAULT NULL,
`title_color` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0xECF9A2,
`accesslevel` MEDIUMINT DEFAULT 0,
`online` TINYINT UNSIGNED DEFAULT NULL,
`onlinetime` INT DEFAULT NULL,
`char_slot` TINYINT UNSIGNED DEFAULT NULL,
`lastAccess` bigint(13) unsigned NOT NULL DEFAULT '0',
`clan_privs` MEDIUMINT UNSIGNED DEFAULT 0,
`wantspeace` TINYINT UNSIGNED DEFAULT 0,
`power_grade` TINYINT UNSIGNED DEFAULT NULL,
`nobless` TINYINT UNSIGNED NOT NULL DEFAULT 0,
`subpledge` SMALLINT NOT NULL DEFAULT 0,
`lvl_joined_academy` TINYINT UNSIGNED NOT NULL DEFAULT 0,
`apprentice` INT UNSIGNED NOT NULL DEFAULT 0,
`sponsor` INT UNSIGNED NOT NULL DEFAULT 0,
`clan_join_expiry_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`clan_create_expiry_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`bookmarkslot` SMALLINT UNSIGNED NOT NULL DEFAULT 0,
`vitality_points` MEDIUMINT UNSIGNED NOT NULL DEFAULT 0,
`createDate` date NOT NULL DEFAULT '0000-00-00',
`language` VARCHAR(2) DEFAULT NULL,
`faction` TINYINT UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`charId`),
KEY `account_name` (`account_name`),
KEY `char_name` (`char_name`),
KEY `clanid` (`clanid`),
KEY `online` (`online`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -0,0 +1,7 @@
DROP TABLE IF EXISTS `clan_variables`;
CREATE TABLE IF NOT EXISTS `clan_variables` (
`clanId` int(10) UNSIGNED NOT NULL,
`var` varchar(255) NOT NULL,
`val` text NOT NULL,
KEY `clanId` (`clanId`)
);

View File

@@ -1,9 +1,13 @@
DROP TABLE IF EXISTS `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',
KEY `clan1` (`clan1`),
KEY `clan2` (`clan2`)
DROP TABLE IF EXISTS `clan_wars`;
CREATE TABLE IF NOT EXISTS `clan_wars` (
`clan1` varchar(35) NOT NULL DEFAULT '',
`clan2` varchar(35) NOT NULL DEFAULT '',
`clan1Kill` int(11) NOT NULL DEFAULT 0,
`clan2Kill` int(11) NOT NULL DEFAULT 0,
`winnerClan` varchar(35) NOT NULL DEFAULT '0',
`startTime` bigint(13) NOT NULL DEFAULT 0,
`endTime` bigint(13) NOT NULL DEFAULT 0,
`state` tinyint(4) NOT NULL DEFAULT 0,
KEY `clan1` (`clan1`),
KEY `clan2` (`clan2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

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

View File

@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `clanhall_auctions_bidders`;
CREATE TABLE IF NOT EXISTS `clanhall_auctions_bidders` (
`clanHallId` INT UNSIGNED NOT NULL DEFAULT 0,
`clanId` INT UNSIGNED NOT NULL DEFAULT 0,
`bid` BIGINT UNSIGNED NOT NULL DEFAULT 0,
`bidTime` BIGINT(13) UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY( `clanHallId`, `clanId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,10 +0,0 @@
DROP TABLE IF EXISTS `clanhall_functions`;
CREATE TABLE IF NOT EXISTS `clanhall_functions` (
`hall_id` int(2) NOT NULL DEFAULT '0',
`type` int(1) NOT NULL DEFAULT '0',
`lvl` int(3) NOT NULL DEFAULT '0',
`lease` int(10) NOT NULL DEFAULT '0',
`rate` decimal(20,0) NOT NULL DEFAULT '0',
`endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`hall_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,5 +0,0 @@
DROP TABLE IF EXISTS `clanhall_siege_attackers`;
CREATE TABLE IF NOT EXISTS `clanhall_siege_attackers` (
`clanhall_id` int(3) NOT NULL DEFAULT '0',
`attacker_id` int(10) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,785 +0,0 @@
DROP TABLE IF EXISTS `clanhall_siege_guards`;
CREATE TABLE IF NOT EXISTS `clanhall_siege_guards` (
`clanHallId` tinyint(2) unsigned NOT NULL DEFAULT '0',
`npcId` smallint(5) unsigned NOT NULL DEFAULT '0',
`x` mediumint(6) NOT NULL DEFAULT '0',
`y` mediumint(6) NOT NULL DEFAULT '0',
`z` mediumint(6) NOT NULL DEFAULT '0',
`heading` mediumint(6) NOT NULL DEFAULT '0',
`respawnDelay` mediumint(5) NOT NULL DEFAULT '0',
`isSiegeBoss` enum('false','true') NOT NULL DEFAULT 'false',
KEY `clanHallId` (`clanHallId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `clanhall_siege_guards` VALUES
-- Devasted Castle
-- Front Gate
(34,35408,178306,-17535,-2200,32768,7200,'false'),
(34,35409,178304,-17712,-2200,32768,7200,'false'),
(34,35413,178222,-14944,-2200,16384,7200,'false'),
(34,35413,178255,-14944,-2200,16384,7200,'false'),
(34,35413,178288,-14944,-2200,16384,7200,'false'),
(34,35413,178321,-14944,-2200,16384,7200,'false'),
(34,35413,178354,-14944,-2200,16384,7200,'false'),
(34,35413,178387,-14944,-2200,16384,7200,'false'),
(34,35413,178420,-14944,-2200,16384,7200,'false'),
(34,35413,178454,-14944,-2200,16384,7200,'false'),
(34,35413,178222,-14924,-2200,16384,7200,'false'),
(34,35413,178255,-14924,-2200,16384,7200,'false'),
(34,35413,178288,-14924,-2200,16384,7200,'false'),
(34,35413,178321,-14924,-2200,16384,7200,'false'),
(34,35413,178354,-14924,-2200,16384,7200,'false'),
(34,35413,178387,-14924,-2200,16384,7200,'false'),
(34,35413,178420,-14924,-2200,16384,7200,'false'),
(34,35413,178454,-14924,-2200,16384,7200,'false'),
(34,35412,178222,-14904,-2200,16384,7200,'false'),
(34,35412,178255,-14904,-2200,16384,7200,'false'),
(34,35412,178288,-14904,-2200,16384,7200,'false'),
(34,35412,178321,-14904,-2200,16384,7200,'false'),
(34,35412,178354,-14904,-2200,16384,7200,'false'),
(34,35412,178387,-14904,-2200,16384,7200,'false'),
(34,35412,178420,-14904,-2200,16384,7200,'false'),
(34,35412,178454,-14904,-2200,16384,7200,'false'),
(34,35412,178222,-14884,-2200,16384,7200,'false'),
(34,35412,178255,-14884,-2200,16384,7200,'false'),
(34,35412,178288,-14884,-2200,16384,7200,'false'),
(34,35412,178321,-14884,-2200,16384,7200,'false'),
(34,35412,178354,-14884,-2200,16384,7200,'false'),
(34,35412,178387,-14884,-2200,16384,7200,'false'),
(34,35412,178420,-14884,-2200,16384,7200,'false'),
(34,35412,178454,-14884,-2200,16384,7200,'false'),
-- East Terrace
(34,35413,178801,-14975,-2080,16384,7200,'false'),
(34,35413,178822,-14936,-2080,16384,7200,'false'),
(34,35413,178843,-14897,-2080,16384,7200,'false'),
(34,35413,178865,-14857,-2080,16384,7200,'false'),
(34,35413,178886,-14818,-2080,16384,7200,'false'),
(34,35413,178908,-14778,-2080,16384,7200,'false'),
(34,35413,178929,-14739,-2080,16384,7200,'false'),
(34,35413,178951,-14699,-2080,16384,7200,'false'),
-- West Terrace
(34,35413,177834,-15015,-2210,16384,7200,'false'),
(34,35413,177803,-14971,-2210,16384,7200,'false'),
(34,35413,177772,-14927,-2210,16384,7200,'false'),
(34,35413,177741,-14883,-2210,16384,7200,'false'),
(34,35413,177711,-14838,-2210,16384,7200,'false'),
(34,35413,177680,-14794,-2210,16384,7200,'false'),
(34,35413,177649,-14750,-2210,16384,7200,'false'),
(34,35413,177619,-14705,-2210,16384,7200,'false'),
-- Area 2 (back wall of resistance)
(34,35413,178640,-18216,-2200,-16384,7200,'false'),
(34,35413,178661,-18218,-2200,-16384,7200,'false'),
(34,35413,178682,-18220,-2200,-16384,7200,'false'),
(34,35413,178703,-18222,-2200,-16384,7200,'false'),
(34,35413,178724,-18224,-2200,-16384,7200,'false'),
(34,35413,178745,-18226,-2200,-16384,7200,'false'),
(34,35413,178766,-18228,-2200,-16384,7200,'false'),
(34,35413,178788,-18229,-2200,-16384,7200,'false'),
(34,35414,178640,-18196,-2200,-16384,7200,'false'),
(34,35414,178661,-18198,-2200,-16384,7200,'false'),
(34,35414,178682,-18200,-2200,-16384,7200,'false'),
(34,35414,178703,-18202,-2200,-16384,7200,'false'),
(34,35414,178724,-18204,-2200,-16384,7200,'false'),
(34,35414,178745,-18206,-2200,-16384,7200,'false'),
(34,35414,178766,-18208,-2200,-16384,7200,'false'),
(34,35414,178788,-18209,-2200,-16384,7200,'false'),
(34,35412,178640,-18176,-2200,-16384,7200,'false'),
(34,35412,178661,-18178,-2200,-16384,7200,'false'),
(34,35412,178682,-18180,-2200,-16384,7200,'false'),
(34,35412,178703,-18182,-2200,-16384,7200,'false'),
(34,35412,178724,-18184,-2200,-16384,7200,'false'),
(34,35412,178745,-18186,-2200,-16384,7200,'false'),
(34,35412,178766,-18188,-2200,-16384,7200,'false'),
(34,35412,178788,-18189,-2200,-16384,7200,'false'),
-- Area 3
(34,35413,177335,-17128,-2200,16384,7200,'false'),
(34,35413,177305,-17128,-2200,16384,7200,'false'),
(34,35413,177276,-17128,-2200,16384,7200,'false'),
(34,35413,177246,-17128,-2200,16384,7200,'false'),
(34,35413,177217,-17128,-2200,16384,7200,'false'),
(34,35413,177187,-17128,-2200,16384,7200,'false'),
(34,35413,177158,-17128,-2200,16384,7200,'false'),
(34,35413,177129,-17128,-2200,16384,7200,'false'),
(34,35414,177335,-17148,-2200,16384,7200,'false'),
(34,35414,177305,-17148,-2200,16384,7200,'false'),
(34,35414,177276,-17148,-2200,16384,7200,'false'),
(34,35414,177246,-17148,-2200,16384,7200,'false'),
(34,35414,177217,-17148,-2200,16384,7200,'false'),
(34,35414,177187,-17148,-2200,16384,7200,'false'),
(34,35414,177158,-17148,-2200,16384,7200,'false'),
(34,35414,177129,-17148,-2200,16384,7200,'false'),
(34,35412,177335,-17168,-2200,16384,7200,'false'),
(34,35412,177305,-17168,-2200,16384,7200,'false'),
(34,35412,177276,-17168,-2200,16384,7200,'false'),
(34,35412,177246,-17168,-2200,16384,7200,'false'),
(34,35412,177217,-17168,-2200,16384,7200,'false'),
(34,35412,177187,-17168,-2200,16384,7200,'false'),
(34,35412,177158,-17168,-2200,16384,7200,'false'),
(34,35412,177129,-17168,-2200,16384,7200,'false'),
-- Region 1 (left)
(34,35413,177707,-15427,-2226,3000,7200,'false'),
(34,35413,177727,-15464,-2226,3000,7200,'false'),
(34,35413,177680,-15485,-2226,3000,7200,'false'),
(34,35413,177745,-15498,-2226,3000,7200,'false'),
(34,35413,177769,-15540,-2226,3000,7200,'false'),
(34,35413,177722,-15561,-2226,3000,7200,'false'),
(34,35413,177788,-15578,-2226,3000,7200,'false'),
(34,35413,177811,-15622,-2226,3000,7200,'false'),
(34,35413,177765,-15643,-2226,3000,7200,'false'),
(34,35413,177838,-15664,-2226,3000,7200,'false'),
(34,35413,177859,-15704,-2226,3000,7200,'false'),
(34,35413,177813,-15726,-2226,3000,7200,'false'),
(34,35413,177880,-15744,-2226,3000,7200,'false'),
(34,35413,177906,-15791,-2226,3000,7200,'false'),
(34,35413,177859,-15812,-2226,3000,7200,'false'),
(34,35411,177470,-15856,-2250,10000,7200,'false'),
(34,35411,177506,-15887,-2250,10000,7200,'false'),
(34,35411,177627,-15953,-2250,10000,7200,'false'),
(34,35411,177703,-15999,-2250,10000,7200,'false'),
(34,35411,177400,-15854,-2250,10000,7200,'false'),
(34,35411,177517,-15930,-2250,10000,7200,'false'),
(34,35411,177564,-15963,-2250,10000,7200,'false'),
(34,35411,177608,-15985,-2250,10000,7200,'false'),
(34,35411,177709,-16043,-2253,10000,7200,'false'),
(34,35411,177387,-15955,-2250,10000,7200,'false'),
(34,35411,177661,-16014,-2253,10000,7200,'false'),
(34,35411,177308,-15861,-2253,10000,7200,'false'),
(34,35411,177606,-16035,-2253,10000,7200,'false'),
(34,35411,177861,-16164,-2253,10000,7200,'false'),
(34,35411,177810,-16145,-2253,10000,7200,'false'),
(34,35411,177719,-15951,-2253,10000,7200,'false'),
(34,35411,177667,-15921,-2253,10000,7200,'false'),
(34,35415,177428,-15981,-2250,10000,7200,'false'),
(34,35415,177473,-16011,-2250,10000,7200,'false'),
(34,35415,177612,-16090,-2250,10000,7200,'false'),
(34,35415,177657,-16113,-2250,10000,7200,'false'),
(34,35415,177387,-15996,-2250,10000,7200,'false'),
(34,35415,177433,-16026,-2250,10000,7200,'false'),
(34,35415,177530,-16079,-2250,10000,7200,'false'),
(34,35415,177571,-16105,-2250,10000,7200,'false'),
(34,35415,177663,-16154,-2250,10000,7200,'false'),
-- Region 1 (right)
(34,35413,179009,-15201,-2221,40000,7200,'false'),
(34,35413,179052,-15226,-2221,40000,7200,'false'),
(34,35413,179073,-15203,-2221,40000,7200,'false'),
(34,35413,179101,-15253,-2221,40000,7200,'false'),
(34,35413,179144,-15271,-2221,40000,7200,'false'),
(34,35413,179164,-15247,-2221,40000,7200,'false'),
(34,35413,179189,-15286,-2221,40000,7200,'false'),
(34,35413,179226,-15309,-2221,40000,7200,'false'),
(34,35413,179246,-15285,-2221,40000,7200,'false'),
(34,35413,179260,-15341,-2221,40000,7200,'false'),
(34,35413,179302,-15372,-2221,40000,7200,'false'),
(34,35413,179322,-15349,-2221,40000,7200,'false'),
(34,35413,179341,-15406,-2221,40000,7200,'false'),
(34,35413,179391,-15439,-2221,40000,7200,'false'),
(34,35411,179327,-16101,-2253,25000,7200,'false'),
(34,35411,179426,-16009,-2253,25000,7200,'false'),
(34,35415,179491,-15981,-2256,25000,7200,'false'),
(34,35415,179503,-15925,-2256,25000,7200,'false'),
(34,35415,179544,-15882,-2256,25000,7200,'false'),
(34,35415,179570,-15901,-2256,25000,7200,'false'),
(34,35415,179279,-16219,-2256,25000,7200,'false'),
(34,35415,179370,-16196,-2256,25000,7200,'false'),
(34,35415,179408,-16158,-2256,25000,7200,'false'),
(34,35415,179562,-15984,-2256,25000,7200,'false'),
(34,35415,179599,-15943,-2256,25000,7200,'false'),
-- Region 2
(34,35411,179433,-16991,-2246,16384,1200,'false'),
(34,35411,179715,-17454,-2246,16384,1200,'false'),
(34,35411,179438,-16875,-2246,16384,1200,'false'),
(34,35411,179540,-16876,-2246,16384,1200,'false'),
(34,35411,179593,-16876,-2246,16384,1200,'false'),
(34,35411,179485,-17213,-2246,16384,1200,'false'),
(34,35411,179537,-17214,-2246,16384,1200,'false'),
(34,35411,179641,-17215,-2246,16384,1200,'false'),
(34,35411,179542,-17453,-2246,16384,1200,'false'),
(34,35411,179594,-17453,-2246,16384,1200,'false'),
(34,35411,179444,-16937,-2256,16384,1200,'false'),
(34,35411,179468,-17280,-2256,16384,1200,'false'),
(34,35411,179514,-17281,-2256,16384,1200,'false'),
(34,35411,179479,-17133,-2256,16384,1200,'false'),
(34,35411,179525,-17135,-2256,16384,1200,'false'),
(34,35415,179576,-17137,-2256,16384,1200,'false'),
(34,35415,179633,-17137,-2256,16384,1200,'false'),
(34,35415,179436,-17776,-2256,16384,1200,'false'),
(34,35415,179636,-17780,-2256,16384,1200,'false'),
(34,35415,179697,-17781,-2256,16384,1200,'false'),
(34,35415,179446,-17391,-2252,16384,1200,'false'),
(34,35415,179508,-17341,-2252,16384,1200,'false'),
(34,35415,179432,-17719,-2252,16384,1200,'false'),
(34,35415,179437,-17522,-2252,16384,1200,'false'),
(34,35415,179557,-17524,-2252,16384,1200,'false'),
(34,35415,179707,-17722,-2252,16384,1200,'false'),
(34,35415,179604,-17525,-2252,16384,1200,'false'),
(34,35415,179665,-17527,-2252,16384,1200,'false'),
(34,35415,179534,-17892,-2252,16384,1200,'false'),
(34,35415,179436,-17841,-2252,16384,1200,'false'),
(34,35415,179482,-17841,-2252,16384,1200,'false'),
(34,35415,179536,-17842,-2252,16384,1200,'false'),
(34,35415,179694,-17897,-2252,16384,1200,'false'),
(34,35415,179696,-17844,-2252,16384,1200,'false'),
-- Region 3
(34,35413,178578,-18383,-2250,0,7200,'false'),
(34,35413,178577,-18422,-2250,0,7200,'false'),
(34,35413,178576,-18461,-2250,0,7200,'false'),
(34,35413,178575,-18500,-2250,0,7200,'false'),
(34,35413,178574,-18539,-2250,0,7200,'false'),
(34,35413,178573,-18577,-2250,0,7200,'false'),
(34,35413,178571,-18618,-2250,0,7200,'false'),
(34,35413,178571,-18657,-2250,0,7200,'false'),
(34,35413,178571,-18697,-2250,0,7200,'false'),
(34,35413,178570,-18736,-2250,0,7200,'false'),
(34,35413,178530,-18382,-2250,0,7200,'false'),
(34,35413,178530,-18421,-2250,0,7200,'false'),
(34,35413,178528,-18461,-2250,0,7200,'false'),
(34,35413,178528,-18499,-2250,0,7200,'false'),
(34,35413,178526,-18538,-2250,0,7200,'false'),
(34,35413,178526,-18576,-2250,0,7200,'false'),
(34,35413,178524,-18618,-2250,0,7200,'false'),
(34,35413,178523,-18656,-2250,0,7200,'false'),
(34,35413,178523,-18696,-2250,0,7200,'false'),
(34,35413,178523,-18735,-2250,0,7200,'false'),
-- Region 4
(34,35413,178437,-16548,-2217,0,7200,'false'),
(34,35413,178437,-16587,-2217,0,7200,'false'),
(34,35413,178435,-16627,-2217,0,7200,'false'),
(34,35413,178435,-16665,-2217,0,7200,'false'),
(34,35413,178433,-16704,-2217,0,7200,'false'),
(34,35413,178433,-16742,-2217,0,7200,'false'),
(34,35413,178431,-16784,-2217,0,7200,'false'),
(34,35413,178431,-16822,-2217,0,7200,'false'),
(34,35413,178430,-16862,-2217,0,7200,'false'),
(34,35413,178430,-16901,-2217,0,7200,'false'),
(34,35413,178161,-16562,-2217,0,7200,'false'),
(34,35413,178160,-16600,-2217,0,7200,'false'),
(34,35413,178158,-16640,-2217,0,7200,'false'),
(34,35413,178158,-16679,-2217,0,7200,'false'),
(34,35413,178156,-16718,-2217,0,7200,'false'),
(34,35413,178156,-16756,-2217,0,7200,'false'),
(34,35413,178154,-16797,-2217,0,7200,'false'),
(34,35413,178154,-16836,-2217,0,7200,'false'),
(34,35413,178153,-16876,-2217,0,7200,'false'),
(34,35413,178153,-16914,-2217,0,7200,'false'),
(34,35413,177876,-16558,-2217,0,7200,'false'),
(34,35413,177876,-16597,-2217,0,7200,'false'),
(34,35413,177874,-16637,-2217,0,7200,'false'),
(34,35413,177873,-16675,-2217,0,7200,'false'),
(34,35413,177872,-16714,-2217,0,7200,'false'),
(34,35413,177871,-16752,-2217,0,7200,'false'),
(34,35413,177870,-16794,-2217,0,7200,'false'),
(34,35413,177869,-16832,-2217,0,7200,'false'),
(34,35413,177869,-16873,-2217,0,7200,'false'),
(34,35413,177868,-16911,-2217,0,7200,'false'),
(34,35411,178403,-16566,-2218,0,7200,'false'),
(34,35411,178398,-16781,-2218,0,7200,'false'),
(34,35411,178397,-16824,-2218,0,7200,'false'),
(34,35411,178395,-16865,-2218,0,7200,'false'),
(34,35411,178326,-16720,-2218,0,7200,'false'),
(34,35411,178324,-16762,-2218,0,7200,'false'),
(34,35411,178324,-16804,-2218,0,7200,'false'),
(34,35411,178122,-16672,-2218,0,7200,'false'),
(34,35411,178120,-16714,-2218,0,7200,'false'),
(34,35411,178122,-16759,-2218,0,7200,'false'),
(34,35411,178117,-16885,-2218,0,7200,'false'),
(34,35411,178061,-16738,-2218,0,7200,'false'),
(34,35411,178063,-16784,-2218,0,7200,'false'),
(34,35411,178060,-16826,-2218,0,7200,'false'),
(34,35411,178060,-16868,-2218,0,7200,'false'),
(34,35415,178366,-16582,-2217,0,7200,'false'),
(34,35415,178366,-16674,-2217,0,7200,'false'),
(34,35415,178366,-16721,-2217,0,7200,'false'),
(34,35415,178363,-16768,-2217,0,7200,'false'),
(34,35415,178290,-16550,-2217,0,7200,'false'),
(34,35415,178290,-16690,-2217,0,7200,'false'),
(34,35415,178288,-16783,-2217,0,7200,'false'),
(34,35415,178285,-16832,-2217,0,7200,'false'),
(34,35415,178095,-16736,-2217,0,7200,'false'),
(34,35415,178092,-16782,-2217,0,7200,'false'),
(34,35415,178090,-16878,-2217,0,7200,'false'),
(34,35415,178029,-16587,-2217,0,7200,'false'),
(34,35415,178029,-16727,-2217,0,7200,'false'),
(34,35415,178027,-16773,-2217,0,7200,'false'),
(34,35415,178027,-16820,-2217,0,7200,'false'),
-- Region 5
(34,35413,177466,-17397,-2207,32768,7200,'false'),
(34,35415,177440,-17380,-2215,32768,7200,'false'),
(34,35416,177501,-17384,-2219,32768,7200,'false'),
(34,35415,177439,-17426,-2215,32768,7200,'false'),
(34,35415,177438,-17472,-2215,32768,7200,'false'),
(34,35415,177436,-17605,-2215,32768,7200,'false'),
(34,35415,177432,-17791,-2215,32768,7200,'false'),
(34,35415,177431,-17836,-2215,32768,7200,'false'),
(34,35415,177559,-17708,-2215,32768,7200,'false'),
(34,35415,177558,-17755,-2215,32768,7200,'false'),
(34,35415,177564,-17425,-2215,32768,7200,'false'),
(34,35415,177561,-17563,-2215,32768,7200,'false'),
(34,35413,177466,-17445,-2207,32768,7200,'false'),
(34,35413,177466,-17537,-2207,32768,7200,'false'),
(34,35413,177466,-17627,-2207,32768,7200,'false'),
(34,35413,177466,-17716,-2207,32768,7200,'false'),
(34,35413,177467,-17809,-2207,32768,7200,'false'),
(34,35413,177603,-17446,-2207,32768,7200,'false'),
(34,35413,177603,-17539,-2207,32768,7200,'false'),
(34,35413,177604,-17628,-2207,32768,7200,'false'),
(34,35413,177604,-17718,-2207,32768,7200,'false'),
(34,35413,177601,-17811,-2207,32768,7200,'false'),
(34,35413,177693,-17447,-2207,32768,7200,'false'),
(34,35413,177693,-17539,-2207,32768,7200,'false'),
(34,35413,177693,-17629,-2207,32768,7200,'false'),
(34,35413,177693,-17718,-2207,32768,7200,'false'),
(34,35413,177694,-17811,-2207,32768,7200,'false'),
(34,35413,177396,-17452,-2207,32768,7200,'false'),
(34,35413,177396,-17545,-2207,32768,7200,'false'),
(34,35413,177397,-17634,-2207,32768,7200,'false'),
(34,35413,177397,-17723,-2207,32768,7200,'false'),
(34,35413,177398,-17817,-2207,32768,7200,'false'),
(34,35413,177749,-17446,-2207,32768,7200,'false'),
(34,35413,177749,-17538,-2207,32768,7200,'false'),
(34,35413,177750,-17628,-2207,32768,7200,'false'),
(34,35413,177750,-17717,-2207,32768,7200,'false'),
(34,35413,177751,-17810,-2207,32768,7200,'false'),
(34,35415,177531,-17399,-2215,32768,7200,'false'),
(34,35415,177527,-17537,-2215,32768,7200,'false'),
(34,35415,177527,-17578,-2215,32768,7200,'false'),
(34,35415,177524,-17763,-2215,32768,7200,'false'),
(34,35415,177523,-17810,-2215,32768,7200,'false'),
(34,35415,177636,-17516,-2215,32768,7200,'false'),
(34,35415,177635,-17603,-2215,32768,7200,'false'),
(34,35415,177633,-17740,-2215,32768,7200,'false'),
(34,35415,177632,-17788,-2215,32768,7200,'false'),
(34,35415,177631,-17835,-2215,32768,7200,'false'),
(34,35416,177501,-17424,-2219,32768,7200,'false'),
(34,35416,177500,-17469,-2219,32768,7200,'false'),
(34,35416,177496,-17645,-2219,32768,7200,'false'),
(34,35416,177496,-17686,-2219,32768,7200,'false'),
(34,35416,177666,-17508,-2219,32768,7200,'false'),
(34,35416,177664,-17559,-2219,32768,7200,'false'),
(34,35416,177664,-17599,-2219,32768,7200,'false'),
(34,35416,177662,-17644,-2219,32768,7200,'false'),
(34,35416,177662,-17685,-2219,32768,7200,'false'),
(34,35416,177661,-17818,-2219,32768,7200,'false'),
(34,35416,177728,-17377,-2219,32768,7200,'false'),
(34,35416,177725,-17503,-2219,32768,7200,'false'),
(34,35416,177724,-17553,-2219,32768,7200,'false'),
(34,35416,177724,-17594,-2219,32768,7200,'false'),
(34,35416,177722,-17728,-2219,32768,7200,'false'),
(34,35416,177722,-17768,-2219,32768,7200,'false'),
(34,35416,177721,-17813,-2219,32768,7200,'false'),
(34,35416,177567,-17376,-2219,32768,7200,'false'),
(34,35416,177560,-17849,-2219,32768,7200,'false'),
-- Region 6
(34,35410,178298,-17624,-2194,32768,7200,'true');
INSERT INTO `clanhall_siege_guards` VALUES
-- Partisan's Hideaway (Fortress of Resistance)
-- Mercury Monster
(21,35369,44545,108867,-2020,0,60,'false'),
(21,35369,44505,108867,-2020,0,60,'false'),
(21,35371,44535,108884,-2020,0,60,'false'),
(21,35371,44515,108884,-2020,0,60,'false'),
(21,35371,44515,108850,-2020,0,60,'false'),
(21,35371,44535,108850,-2020,0,60,'false'),
(21,35370,44565,108867,-2020,0,60,'false'),
(21,35370,44553,108895,-2020,0,60,'false'),
(21,35370,44535,108895,-2020,0,60,'false'),
(21,35370,44497,108895,-2020,0,60,'false'),
(21,35370,44485,108867,-2020,0,60,'false'),
(21,35370,44497,108839,-2020,0,60,'false'),
(21,35370,44525,108827,-2020,0,60,'false'),
(21,35370,44553,108839,-2020,0,60,'false'),
(21,35374,44812,109492,-1705,0,60,'false'),
(21,35373,44788,109492,-1705,0,60,'false'),
(21,35374,45236,108980,-1705,0,60,'false'),
(21,35373,45168,109020,-1705,0,60,'false'),
-- (21,35372,anywhere - total 15,0,60,'false'), TODO: needs support for random spawn by zone.
(21,35382,50343,111282,-1970,0,60,'false'),
(21,35383,43129,108841,-1980,0,60,'false'),
(21,35375,44525,108867,-2020,0,10800,'true');
INSERT INTO `clanhall_siege_guards` VALUES
-- Bandit Stronghold
(35,35560,79745,-15472,-1792,0,1200,'false'),
(35,35561,83348,-18267,-1248,14536,1200,'false'),
(35,35562,81258,-17387,-1248,11144,1200,'false'),
(35,35563,81832,-14223,-1248,-17664,1200,'false'),
(35,35564,83687,-14532,-1248,-19008,1200,'false'),
(35,35565,85263,-15447,-1248,-21328,1200,'false');
INSERT INTO `clanhall_siege_guards` VALUES
-- Beast Farm
(63,35612,60606,-93984,-1344,0,1200,'false'),
(63,35613,56098,-91770,-1360,0,1200,'false'),
(63,35614,58276,-90672,-1360,0,1200,'false'),
(63,35615,59970,-92422,-1360,0,1200,'false'),
(63,35616,58783,-94540,-1360,0,1200,'false'),
(63,35617,56415,-94126,-1360,0,1200,'false');
INSERT INTO `clanhall_siege_guards` VALUES
-- Fortress of the Dead
(64,35630,59282,-26496,568,49000,7200,'false'),
(64,35631,56619,-27866,568,49000,7200,'false'),
(64,35634,57931,-29540,565,49152,7200,'false'),
(64,35634,57888,-29540,565,49152,7200,'false'),
(64,35634,57845,-29540,565,49152,7200,'false'),
(64,35634,57801,-29540,565,49152,7200,'false'),
(64,35634,57758,-29540,565,49152,7200,'false'),
(64,35634,58150,-29540,565,49152,7200,'false'),
(64,35634,58107,-29540,565,49152,7200,'false'),
(64,35634,58063,-29540,565,49152,7200,'false'),
(64,35634,58020,-29540,565,49152,7200,'false'),
(64,35634,57977,-29540,565,49152,7200,'false'),
(64,35634,57783,-29569,565,49152,7200,'false'),
(64,35634,57740,-29569,565,49152,7200,'false'),
(64,35634,58170,-29570,565,49152,7200,'false'),
(64,35634,58128,-29570,565,49152,7200,'false'),
(64,35633,57929,-29570,575,49152,7200,'false'),
(64,35633,57885,-29570,575,49152,7200,'false'),
(64,35633,57836,-29570,575,49152,7200,'false'),
(64,35633,58072,-29570,575,49152,7200,'false'),
(64,35633,58029,-29570,575,49152,7200,'false'),
(64,35633,57980,-29570,575,49152,7200,'false'),
(64,35633,57928,-29606,575,49152,7200,'false'),
(64,35633,57885,-29606,575,49152,7200,'false'),
(64,35633,57836,-29606,575,49152,7200,'false'),
(64,35633,58072,-29607,575,49152,7200,'false'),
(64,35633,58028,-29607,575,49152,7200,'false'),
(64,35633,57979,-29607,575,49152,7200,'false'),
(64,35633,57780,-29606,575,49152,7200,'false'),
(64,35633,57731,-29606,575,49152,7200,'false'),
(64,35633,58172,-29608,575,49152,7200,'false'),
(64,35633,58123,-29608,575,49152,7200,'false'),
(64,35634,58435,-29647,567,49152,7200,'false'),
(64,35634,58450,-29681,567,49152,7200,'false'),
(64,35634,58468,-29713,567,49152,7200,'false'),
(64,35634,58484,-29745,567,49152,7200,'false'),
(64,35634,58500,-29777,567,49152,7200,'false'),
(64,35634,58520,-29815,587,49152,7200,'false'),
(64,35634,58536,-29848,587,49152,7200,'false'),
(64,35634,58556,-29886,567,49152,7200,'false'),
(64,35634,57473,-29664,567,49152,7200,'false'),
(64,35634,57452,-29695,567,49152,7200,'false'),
(64,35634,57435,-29728,567,49152,7200,'false'),
(64,35634,57420,-29760,567,49152,7200,'false'),
(64,35634,57409,-29791,567,49152,7200,'false'),
(64,35634,57394,-29824,580,49152,7200,'false'),
(64,35634,57379,-29856,580,49152,7200,'false'),
(64,35634,57363,-29888,567,49152,7200,'false'),
(64,35634,57893,-26684,591,-88,7200,'false'),
(64,35634,57893,-26722,591,-88,7200,'false'),
(64,35634,57893,-26759,591,-88,7200,'false'),
(64,35634,57893,-26646,591,-88,7200,'false'),
(64,35634,57863,-26646,591,-88,7200,'false'),
(64,35634,57863,-26684,591,-88,7200,'false'),
(64,35634,57863,-26722,591,-88,7200,'false'),
(64,35634,57863,-26758,591,-88,7200,'false'),
(64,35635,57973,-26684,591,-88,7200,'false'),
(64,35635,57973,-26722,591,-88,7200,'false'),
(64,35635,57973,-26759,591,-88,7200,'false'),
(64,35635,57973,-26646,591,-88,7200,'false'),
(64,35635,57943,-26646,591,-88,7200,'false'),
(64,35635,57943,-26684,591,-88,7200,'false'),
(64,35635,57943,-26721,591,-88,7200,'false'),
(64,35635,57943,-26758,591,-88,7200,'false'),
(64,35633,58046,-26682,591,-88,7200,'false'),
(64,35633,58046,-26720,591,-88,7200,'false'),
(64,35633,58046,-26758,591,-88,7200,'false'),
(64,35633,58046,-26644,591,-88,7200,'false'),
(64,35633,58017,-26644,591,-88,7200,'false'),
(64,35633,58017,-26682,591,-88,7200,'false'),
(64,35633,58017,-26720,591,-88,7200,'false'),
(64,35633,58017,-26757,591,-88,7200,'false'),
(64,35634,58889,-26764,565,-88,7200,'false'),
(64,35634,58889,-26802,565,-88,7200,'false'),
(64,35634,58889,-26840,565,-88,7200,'false'),
(64,35634,58889,-26876,565,-88,7200,'false'),
(64,35634,58889,-26726,565,-88,7200,'false'),
(64,35634,58889,-26570,565,-88,7200,'false'),
(64,35634,58889,-26608,565,-88,7200,'false'),
(64,35634,58889,-26645,565,-88,7200,'false'),
(64,35634,58889,-26682,565,-88,7200,'false'),
(64,35634,58889,-26532,565,-88,7200,'false'),
(64,35634,58887,-26379,565,-88,7200,'false'),
(64,35634,58887,-26417,565,-88,7200,'false'),
(64,35634,58887,-26454,565,-88,7200,'false'),
(64,35634,58887,-26491,565,-88,7200,'false'),
(64,35634,58887,-26341,565,-88,7200,'false'),
(64,35632,56669,-26839,592,16384,7200,'false'),
(64,35634,56708,-26902,565,16448,7200,'false'),
(64,35634,56746,-26902,565,16448,7200,'false'),
(64,35634,56784,-26902,565,16448,7200,'false'),
(64,35634,56820,-26902,565,16448,7200,'false'),
(64,35634,56858,-26903,565,16448,7200,'false'),
(64,35634,56894,-26903,565,16448,7200,'false'),
(64,35634,56670,-26902,565,16448,7200,'false'),
(64,35634,56935,-26903,565,16448,7200,'false'),
(64,35634,57018,-26902,565,16448,7200,'false'),
(64,35634,57056,-26902,565,16448,7200,'false'),
(64,35634,57093,-26902,565,16448,7200,'false'),
(64,35634,57130,-26902,565,16448,7200,'false'),
(64,35634,57168,-26903,565,16448,7200,'false'),
(64,35634,57204,-26903,565,16448,7200,'false'),
(64,35634,56980,-26902,565,16448,7200,'false'),
(64,35634,56708,-26874,565,16448,7200,'false'),
(64,35634,56746,-26874,565,16448,7200,'false'),
(64,35634,56783,-26874,565,16448,7200,'false'),
(64,35634,56820,-26874,565,16448,7200,'false'),
(64,35634,56857,-26875,565,16448,7200,'false'),
(64,35634,56894,-26875,565,16448,7200,'false'),
(64,35634,56670,-26874,565,16448,7200,'false'),
(64,35634,56935,-26875,565,16448,7200,'false'),
(64,35634,57018,-26875,565,16448,7200,'false'),
(64,35634,57056,-26875,565,16448,7200,'false'),
(64,35634,57094,-26875,565,16448,7200,'false'),
(64,35634,57131,-26875,565,16448,7200,'false'),
(64,35634,57168,-26876,565,16448,7200,'false'),
(64,35634,57205,-26876,565,16448,7200,'false'),
(64,35634,56980,-26875,565,16448,7200,'false'),
(64,35632,56708,-26839,592,16384,7200,'false'),
(64,35632,56748,-26839,592,16384,7200,'false'),
(64,35632,56788,-26839,592,16384,7200,'false'),
(64,35632,56829,-26839,592,16384,7200,'false'),
(64,35632,56870,-26839,592,16384,7200,'false'),
(64,35632,56910,-26839,592,16384,7200,'false'),
(64,35632,56950,-26839,592,16384,7200,'false'),
(64,35632,56989,-26839,592,16384,7200,'false'),
(64,35632,57030,-26839,592,16384,7200,'false'),
(64,35632,56667,-26799,592,16384,7200,'false'),
(64,35632,56706,-26799,592,16384,7200,'false'),
(64,35632,56747,-26799,592,16384,7200,'false'),
(64,35632,56786,-26799,592,16384,7200,'false'),
(64,35632,56827,-26799,592,16384,7200,'false'),
(64,35636,56869,-26802,587,16384,7200,'false'),
(64,35636,56908,-26802,587,16384,7200,'false'),
(64,35636,56948,-26802,587,16384,7200,'false'),
(64,35636,56989,-26802,587,16384,7200,'false'),
(64,35636,57030,-26802,587,16384,7200,'false'),
(64,35636,57071,-26804,587,16384,7200,'false'),
(64,35636,57111,-26804,587,16384,7200,'false'),
(64,35636,57151,-26804,587,16384,7200,'false'),
(64,35636,57191,-26804,587,16384,7200,'false'),
(64,35636,57233,-26804,587,16384,7200,'false'),
(64,35636,57070,-26842,587,16384,7200,'false'),
(64,35636,57110,-26842,587,16384,7200,'false'),
(64,35636,57150,-26842,587,16384,7200,'false'),
(64,35636,57190,-26842,587,16384,7200,'false'),
(64,35636,57232,-26842,587,16384,7200,'false'),
(64,35634,57461,-28550,565,0,7200,'false'),
(64,35634,57461,-28503,565,0,7200,'false'),
(64,35634,57461,-28455,565,0,7200,'false'),
(64,35634,57461,-28408,565,0,7200,'false'),
(64,35634,57461,-28360,565,0,7200,'false'),
(64,35634,57461,-28791,565,0,7200,'false'),
(64,35634,57461,-28744,565,0,7200,'false'),
(64,35634,57461,-28696,565,0,7200,'false'),
(64,35634,57461,-28649,565,0,7200,'false'),
(64,35634,57461,-28601,565,0,7200,'false'),
(64,35632,57543,-28587,592,0,7200,'false'),
(64,35636,57605,-28901,587,0,7200,'false'),
(64,35632,57543,-28632,592,0,7200,'false'),
(64,35632,57543,-28678,592,0,7200,'false'),
(64,35632,57543,-28727,592,0,7200,'false'),
(64,35632,57543,-28775,592,0,7200,'false'),
(64,35632,57606,-28399,592,0,7200,'false'),
(64,35632,57543,-28398,592,0,7200,'false'),
(64,35632,57543,-28444,592,0,7200,'false'),
(64,35632,57543,-28494,592,0,7200,'false'),
(64,35632,57543,-28541,592,0,7200,'false'),
(64,35636,57605,-28856,587,0,7200,'false'),
(64,35636,57605,-28807,587,0,7200,'false'),
(64,35636,57605,-28761,587,0,7200,'false'),
(64,35636,57605,-28716,587,0,7200,'false'),
(64,35636,57605,-28668,587,0,7200,'false'),
(64,35636,57605,-28624,587,0,7200,'false'),
(64,35636,57605,-28575,587,0,7200,'false'),
(64,35636,57605,-28529,587,0,7200,'false'),
(64,35636,57605,-28483,587,0,7200,'false'),
(64,35632,57543,-28826,592,0,7200,'false'),
(64,35632,57545,-28882,592,0,7200,'false'),
(64,35632,57545,-28933,592,0,7200,'false'),
(64,35634,57462,-29031,565,0,7200,'false'),
(64,35634,57462,-28984,565,0,7200,'false'),
(64,35634,57462,-28937,565,0,7200,'false'),
(64,35634,57462,-28889,565,0,7200,'false'),
(64,35634,57462,-28841,565,0,7200,'false'),
(64,35632,57546,-28986,592,0,7200,'false'),
(64,35632,57606,-28984,592,0,7200,'false'),
(64,35632,58972,-28365,592,-24512,7200,'false'),
(64,35634,58879,-28217,565,-24440,7200,'false'),
(64,35634,58913,-28250,565,-24440,7200,'false'),
(64,35634,58948,-28284,565,-24440,7200,'false'),
(64,35634,58980,-28316,565,-24440,7200,'false'),
(64,35634,59015,-28349,565,-24440,7200,'false'),
(64,35634,59050,-28384,565,-24440,7200,'false'),
(64,35634,59084,-28417,565,-24440,7200,'false'),
(64,35634,59119,-28450,565,-24440,7200,'false'),
(64,35634,59151,-28481,565,-24440,7200,'false'),
(64,35634,59187,-28518,565,-24440,7200,'false'),
(64,35634,59222,-28552,565,-24440,7200,'false'),
(64,35634,59256,-28585,565,-24440,7200,'false'),
(64,35634,59291,-28619,565,-24440,7200,'false'),
(64,35634,59322,-28650,565,-24440,7200,'false'),
(64,35632,59166,-28557,592,-24512,7200,'false'),
(64,35636,58894,-28289,587,41088,7200,'false'),
(64,35636,58931,-28325,587,41088,7200,'false'),
(64,35636,59007,-28399,587,41088,7200,'false'),
(64,35636,59044,-28435,587,41088,7200,'false'),
(64,35636,59090,-28484,587,41088,7200,'false'),
(64,35636,59127,-28519,587,41088,7200,'false'),
(64,35636,59207,-28597,587,41088,7200,'false'),
(64,35636,59244,-28633,587,41088,7200,'false'),
(64,35634,56938,-27347,576,32768,7200,'false'),
(64,35634,56938,-27309,576,32768,7200,'false'),
(64,35634,56938,-27271,576,32768,7200,'false'),
(64,35634,56938,-27235,576,32768,7200,'false'),
(64,35634,56940,-27197,576,32768,7200,'false'),
(64,35634,56940,-27160,576,32768,7200,'false'),
(64,35634,56938,-27385,576,32768,7200,'false'),
(64,35634,56940,-27120,576,32768,7200,'false'),
(64,35635,56910,-27347,576,32768,7200,'false'),
(64,35635,56910,-27309,576,32768,7200,'false'),
(64,35635,56910,-27271,576,32768,7200,'false'),
(64,35635,56910,-27234,576,32768,7200,'false'),
(64,35635,56912,-27197,576,32768,7200,'false'),
(64,35635,56912,-27160,576,32768,7200,'false'),
(64,35635,56910,-27385,576,32768,7200,'false'),
(64,35635,56912,-27119,576,32768,7200,'false'),
(64,35633,56880,-27346,576,32768,7200,'false'),
(64,35633,56881,-27308,576,32768,7200,'false'),
(64,35633,56881,-27271,576,32768,7200,'false'),
(64,35633,56881,-27234,576,32768,7200,'false'),
(64,35633,56882,-27197,576,32768,7200,'false'),
(64,35633,56882,-27160,576,32768,7200,'false'),
(64,35633,56880,-27384,576,32768,7200,'false'),
(64,35633,56883,-27119,576,32768,7200,'false'),
(64,35632,59015,-27459,575,49152,7200,'false'),
(64,35632,59054,-27459,575,49152,7200,'false'),
(64,35632,59094,-27459,575,49152,7200,'false'),
(64,35632,59134,-27459,575,49152,7200,'false'),
(64,35632,59175,-27459,575,49152,7200,'false'),
(64,35632,59220,-27459,575,49152,7200,'false'),
(64,35632,59259,-27459,575,49152,7200,'false'),
(64,35632,59299,-27459,575,49152,7200,'false'),
(64,35632,59015,-27409,575,49152,7200,'false'),
(64,35632,59054,-27409,575,49152,7200,'false'),
(64,35632,59094,-27409,575,49152,7200,'false'),
(64,35632,59133,-27409,575,49152,7200,'false'),
(64,35632,59174,-27409,575,49152,7200,'false'),
(64,35632,59220,-27409,575,49152,7200,'false'),
(64,35632,59259,-27409,575,49152,7200,'false'),
(64,35632,59299,-27409,575,49152,7200,'false'),
(64,35636,59015,-27352,575,49152,7200,'false'),
(64,35636,59054,-27352,575,49152,7200,'false'),
(64,35636,59094,-27352,575,49152,7200,'false'),
(64,35636,59134,-27352,575,49152,7200,'false'),
(64,35636,59175,-27352,575,49152,7200,'false'),
(64,35636,59220,-27352,575,49152,7200,'false'),
(64,35636,59259,-27352,575,49152,7200,'false'),
(64,35636,59299,-27352,575,49152,7200,'false'),
(64,35636,59016,-27299,575,49152,7200,'false'),
(64,35636,59055,-27299,575,49152,7200,'false'),
(64,35636,59095,-27299,575,49152,7200,'false'),
(64,35636,59134,-27299,575,49152,7200,'false'),
(64,35636,59175,-27299,575,49152,7200,'false'),
(64,35636,59220,-27299,575,49152,7200,'false'),
(64,35636,59260,-27299,575,49152,7200,'false'),
(64,35636,59300,-27299,575,49152,7200,'false'),
(64,35637,57288,-27776,587,32768,7200,'false'),
(64,35636,57174,-27680,587,32768,7200,'false'),
(64,35636,57175,-27643,587,32768,7200,'false'),
(64,35636,57175,-27606,587,32768,7200,'false'),
(64,35636,57175,-27755,587,32768,7200,'false'),
(64,35636,57174,-27718,587,32768,7200,'false'),
(64,35634,57237,-27608,576,32768,7200,'false'),
(64,35634,57239,-27763,576,32768,7200,'false'),
(64,35636,57209,-27701,587,32768,7200,'false'),
(64,35636,57210,-27664,587,32768,7200,'false'),
(64,35636,57209,-27627,587,32768,7200,'false'),
(64,35636,57210,-27776,587,32768,7200,'false'),
(64,35636,57209,-27739,587,32768,7200,'false'),
(64,35634,57239,-27725,576,32768,7200,'false'),
(64,35634,57238,-27687,576,32768,7200,'false'),
(64,35634,57237,-27648,576,32768,7200,'false'),
(64,35634,57260,-27625,576,32768,7200,'false'),
(64,35634,57262,-27779,576,32768,7200,'false'),
(64,35634,57262,-27742,576,32768,7200,'false'),
(64,35634,57262,-27704,576,32768,7200,'false'),
(64,35634,57261,-27665,576,32768,7200,'false'),
(64,35637,57288,-27732,587,32768,7200,'false'),
(64,35637,57288,-27687,587,32768,7200,'false'),
(64,35637,57288,-27644,587,32768,7200,'false'),
(64,35637,57288,-27599,587,32768,7200,'false'),
(64,35637,57256,-27574,587,32768,7200,'false'),
(64,35637,57543,-27786,587,32768,1200,'false'),
(64,35636,57429,-27690,587,32768,1200,'false'),
(64,35636,57430,-27653,587,32768,1200,'false'),
(64,35636,57429,-27616,587,32768,1200,'false'),
(64,35636,57430,-27765,587,32768,1200,'false'),
(64,35636,57429,-27727,587,32768,1200,'false'),
(64,35634,57492,-27618,576,32768,1200,'false'),
(64,35634,57494,-27772,576,32768,1200,'false'),
(64,35636,57464,-27711,587,32768,1200,'false'),
(64,35636,57465,-27674,587,32768,1200,'false'),
(64,35636,57464,-27637,587,32768,1200,'false'),
(64,35636,57464,-27785,587,32768,1200,'false'),
(64,35636,57463,-27748,587,32768,1200,'false'),
(64,35634,57494,-27735,576,32768,1200,'false'),
(64,35634,57493,-27697,576,32768,1200,'false'),
(64,35634,57492,-27658,576,32768,1200,'false'),
(64,35634,57515,-27634,576,32768,1200,'false'),
(64,35634,57517,-27789,576,32768,1200,'false'),
(64,35634,57517,-27752,576,32768,1200,'false'),
(64,35634,57516,-27714,576,32768,1200,'false'),
(64,35634,57515,-27675,576,32768,1200,'false'),
(64,35637,57543,-27742,587,32768,1200,'false'),
(64,35637,57543,-27697,587,32768,1200,'false'),
(64,35637,57543,-27654,587,32768,1200,'false'),
(64,35637,57543,-27609,587,32768,1200,'false'),
(64,35637,57578,-27783,587,32768,1200,'false'),
(64,35637,57578,-27739,587,32768,1200,'false'),
(64,35637,57578,-27695,587,32768,1200,'false'),
(64,35637,57578,-27651,587,32768,1200,'false'),
(64,35637,57578,-27607,587,32768,1200,'false'),
(64,35637,57476,-27575,587,32768,1200,'false'),
(64,35637,57511,-27573,587,32768,1200,'false'),
(64,35637,57473,-27837,587,32768,1200,'false'),
(64,35637,57508,-27835,587,32768,1200,'false'),
(64,35637,57905,-27648,576,32768,7200,'false'),
(64,35637,57905,-27712,576,32768,7200,'false'),
(64,35637,58233,-27182,576,32768,7200,'false'),
(64,35637,58233,-27232,576,32768,7200,'false'),
(64,35637,58233,-27282,576,32768,7200,'false'),
(64,35637,58233,-27332,576,32768,7200,'false'),
(64,35637,58233,-27382,576,32768,7200,'false'),
(64,35637,58233,-27432,576,32768,7200,'false'),
(64,35637,58233,-27482,576,32768,7200,'false'),
(64,35637,58233,-27532,576,32768,7200,'false'),
(64,35637,58233,-27582,576,32768,7200,'false'),
(64,35637,58233,-27632,576,32768,7200,'false'),
(64,35637,58233,-27682,576,32768,7200,'false'),
(64,35637,58233,-27732,576,32768,7200,'false'),
(64,35637,58233,-27782,576,32768,7200,'false'),
(64,35629,58680,-27507,592,32768,7200,'true');
INSERT INTO `clanhall_siege_guards` VALUES
-- Rainbow Springs
(62,35596,151552,-127075,-2208,5896,60,'false'),
(62,35588,151557,-126987,-2224,0,7200,'false'),
-- (62,35593,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
-- (62,35594,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
-- (62,35595,anywhere - total 10,0,60,'false'), TODO: needs support for random spawn by zone.
(62,35597,153136,-125333,-2208,-16328,60,'false'),
(62,35589,153135,-125425,-2224,0,7200,'false'),
-- (62,35593,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
-- (62,35594,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
-- (62,35595,anywhere - total 10,0,60,'false'), TODO: needs support for random spawn by zone.
(62,35598,155660,-125753,-2208,-16496,60,'false'),
(62,35590,155661,-125844,-2224,0,7200,'false'),
-- (62,35593,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
-- (62,35594,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
-- (62,35595,anywhere - total 10,0,60,'false'), TODO: needs support for random spawn by zone.
(62,35599,153887,-127538,-2208,15992,60,'false'),
(62,35591,153888,-127444,-2224,0,7200,'false');
-- (62,35593,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
-- (62,35594,anywhere - total 1,0,60,'false'), TODO: needs support for random spawn by zone.
-- (62,35595,anywhere - total 10,0,60,'false'); TODO: needs support for random spawn by zone.

View File

@@ -1,11 +1,11 @@
DROP TABLE IF EXISTS `cursed_weapons`;
CREATE TABLE IF NOT EXISTS `cursed_weapons` (
`itemId` INT,
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`playerKarma` INT DEFAULT 0,
`playerPkKills` INT DEFAULT 0,
`nbKills` INT DEFAULT 0,
`endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`itemId`),
KEY `charId` (`charId`)
DROP TABLE IF EXISTS `cursed_weapons`;
CREATE TABLE IF NOT EXISTS `cursed_weapons` (
`itemId` INT,
`charId` INT UNSIGNED NOT NULL DEFAULT 0,
`playerReputation` INT DEFAULT 0,
`playerPkKills` INT DEFAULT 0,
`nbKills` INT DEFAULT 0,
`endTime` bigint(13) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`itemId`),
KEY `charId` (`charId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,66 +1,66 @@
DROP TABLE IF EXISTS `custom_npc_buffer`;
CREATE TABLE IF NOT EXISTS `custom_npc_buffer` (
`npc_id` int(10) NOT NULL,
`skill_id` int(6) NOT NULL,
`skill_level` int(6) NOT NULL DEFAULT '1',
`skill_fee_id` int(6) NOT NULL DEFAULT '0',
`skill_fee_amount` int(6) NOT NULL DEFAULT '0',
`buff_group` int(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`npc_id`,`skill_id`,`buff_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `custom_npc_buffer` VALUES
(1000003,264,1,57,100,264),
(1000003,265,1,57,100,265),
(1000003,266,1,57,100,266),
(1000003,267,1,57,100,267),
(1000003,268,1,57,100,268),
(1000003,269,1,57,100,269),
(1000003,270,1,57,100,270),
(1000003,271,1,57,100,271),
(1000003,272,1,57,100,272),
(1000003,273,1,57,100,273),
(1000003,274,1,57,100,274),
(1000003,275,1,57,100,275),
(1000003,276,1,57,100,276),
(1000003,277,1,57,100,277),
(1000003,304,1,57,100,304),
(1000003,305,1,57,100,305),
(1000003,306,1,57,100,306),
(1000003,307,1,57,100,307),
(1000003,308,1,57,100,308),
(1000003,309,1,57,100,309),
(1000003,310,1,57,100,310),
(1000003,311,1,57,100,311),
(1000003,349,1,57,100,349),
(1000003,363,1,57,100,363),
(1000003,364,1,57,100,364),
(1000003,366,1,57,100,366),
(1000003,367,1,57,100,367),
(1000003,529,1,57,100,529),
(1000003,530,1,57,100,530),
(1000003,1032,1,57,100,1032),
(1000003,1033,1,57,100,1033),
(1000003,1035,1,57,100,1035),
(1000003,1036,1,57,100,1036),
(1000003,1040,1,57,100,1040),
(1000003,1043,1,57,100,1043),
(1000003,1044,1,57,100,1044),
(1000003,1045,1,57,100,1045),
(1000003,1048,1,57,100,1048),
(1000003,1059,1,57,100,1059),
(1000003,1062,1,57,100,1062),
(1000003,1068,1,57,100,1068),
(1000003,1077,1,57,100,1077),
(1000003,1078,1,57,100,1078),
(1000003,1085,1,57,100,1085),
(1000003,1086,1,57,100,1086),
(1000003,1182,1,57,100,1182),
(1000003,1189,1,57,100,1189),
(1000003,1191,1,57,100,1191),
(1000003,1204,1,57,100,1204),
(1000003,1240,1,57,100,1240),
(1000003,1242,1,57,100,1242),
(1000003,1243,1,57,100,1243),
(1000003,1303,1,57,100,1303),
DROP TABLE IF EXISTS `custom_npc_buffer`;
CREATE TABLE IF NOT EXISTS `custom_npc_buffer` (
`npc_id` mediumint(7) NOT NULL,
`skill_id` int(6) NOT NULL,
`skill_level` int(6) NOT NULL DEFAULT '1',
`skill_fee_id` int(6) NOT NULL DEFAULT '0',
`skill_fee_amount` int(6) NOT NULL DEFAULT '0',
`buff_group` int(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`npc_id`,`skill_id`,`buff_group`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `custom_npc_buffer` VALUES
(1000003,264,1,57,100,264),
(1000003,265,1,57,100,265),
(1000003,266,1,57,100,266),
(1000003,267,1,57,100,267),
(1000003,268,1,57,100,268),
(1000003,269,1,57,100,269),
(1000003,270,1,57,100,270),
(1000003,271,1,57,100,271),
(1000003,272,1,57,100,272),
(1000003,273,1,57,100,273),
(1000003,274,1,57,100,274),
(1000003,275,1,57,100,275),
(1000003,276,1,57,100,276),
(1000003,277,1,57,100,277),
(1000003,304,1,57,100,304),
(1000003,305,1,57,100,305),
(1000003,306,1,57,100,306),
(1000003,307,1,57,100,307),
(1000003,308,1,57,100,308),
(1000003,309,1,57,100,309),
(1000003,310,1,57,100,310),
(1000003,311,1,57,100,311),
(1000003,349,1,57,100,349),
(1000003,363,1,57,100,363),
(1000003,364,1,57,100,364),
(1000003,366,1,57,100,366),
(1000003,367,1,57,100,367),
(1000003,529,1,57,100,529),
(1000003,530,1,57,100,530),
(1000003,1032,1,57,100,1032),
(1000003,1033,1,57,100,1033),
(1000003,1035,1,57,100,1035),
(1000003,1036,1,57,100,1036),
(1000003,1040,1,57,100,1040),
(1000003,1043,1,57,100,1043),
(1000003,1044,1,57,100,1044),
(1000003,1045,1,57,100,1045),
(1000003,1048,1,57,100,1048),
(1000003,1059,1,57,100,1059),
(1000003,1062,1,57,100,1062),
(1000003,1068,1,57,100,1068),
(1000003,1077,1,57,100,1077),
(1000003,1078,1,57,100,1078),
(1000003,1085,1,57,100,1085),
(1000003,1086,1,57,100,1086),
(1000003,1182,1,57,100,1182),
(1000003,1189,1,57,100,1189),
(1000003,1191,1,57,100,1191),
(1000003,1204,1,57,100,1204),
(1000003,1240,1,57,100,1240),
(1000003,1242,1,57,100,1242),
(1000003,1243,1,57,100,1243),
(1000003,1303,1,57,100,1303),
(1000003,1397,1,57,100,1397);

View File

@@ -0,0 +1,9 @@
DROP TABLE IF EXISTS `event_schedulers`;
CREATE TABLE IF NOT EXISTS `event_schedulers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`eventName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`schedulerName` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`lastRun` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`),
UNIQUE KEY `eventName_schedulerName` (`eventName`,`schedulerName`) USING BTREE
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

View File

@@ -1,6 +0,0 @@
DROP TABLE IF EXISTS `fishing_championship`;
CREATE TABLE IF NOT EXISTS `fishing_championship` (
`player_name` VARCHAR(35) NOT NULL,
`fish_length` DOUBLE(10,3) NOT NULL,
`rewarded` INT(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,40 +1,40 @@
DROP TABLE IF EXISTS `grandboss_data`;
CREATE TABLE IF NOT EXISTS `grandboss_data` (
`boss_id` smallint(5) unsigned NOT NULL,
`loc_x` mediumint(6) NOT NULL,
`loc_y` mediumint(6) NOT NULL,
`loc_z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
`respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`currentHP` decimal(30,15) NOT NULL,
`currentMP` decimal(30,15) NOT NULL,
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`boss_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `grandboss_data` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`currentHP`,`currentMP`) VALUES
(29001, -21610, 181594, -5734, 0, 229898.48, 667.776), -- Queen Ant (40)
(29006, 17726, 108915, -6480, 0, 622493.58388, 3793.536), -- Core (50)
(29014, 55024, 17368, -5412, 10126, 622493.58388, 3793.536), -- Orfen (50)
-- (29019, 185708, 114298, -8221, 32768, 17850000, 39960), -- Antharas (79)
(29020, 116033, 17447, 10107, -25348, 4068372, 39960), -- Baium (75)
-- (29022, 55312, 219168, -3223, 0, 858518.36, 399600), -- Zaken (60)
-- (29025, 0, 0, 0, 0, 0, 0), -- Baium (Stone) (75)
(29028, -105200, -253104, -15264, 0, 62041918, 2248572), -- Valakas (85)
-- (29066, 185708, 114298, -8221,32768, 14518000, 3996000), -- Antharas Weak (79)
-- (29067, 185708, 114298, -8221,32768, 16184000, 3996000), -- Antharas Normal (79)
(29068, 185708, 114298, -8221,32768, 62802301, 1998000), -- Antharas Strong (85)
(29118, 0, 0, 0, 0, 4109288, 1220547); -- Beleth (83)
-- (29045, -87780, -155086, -9080, 16384, 1018821.42723286, 52001.06567747795), -- Frintezza (85)
-- (29046, -87789, -153295, -9176, 16384, 1824900, 23310), -- Scarlet Van Halisha (85)
-- (29047, -87789, -153295, -9176, 16384, 898044, 4519), -- Scarlet Van Halisha (85)
-- (29099, 0, 0, 0, 0, 1703893, 111000), -- Baylor (83)
-- (29150, 0, 0, 0, 0, 8727677, 204995), -- Ekimus (82)
-- (29163, 0, 0, 0, 0, 8727677, 204995), -- Tiat (87)
-- (29175, 0, 0, 0, 0, 8727677, 204995), -- Tiat (87)
-- (29176, 0, 0, 0, 0, 0, 0), -- Zaken Day (60)
-- (29177, 0, 0, 0, 0, 0, 0), -- Freya (Throne) (85)
-- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Spelling) (85)
-- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Stand) (85)
-- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Stand Hard) (85)
-- (29179, 0, 0, 0, 0, 0, 0), -- Zaken Day (83)
DROP TABLE IF EXISTS `grandboss_data`;
CREATE TABLE IF NOT EXISTS `grandboss_data` (
`boss_id` smallint(5) unsigned NOT NULL,
`loc_x` mediumint(6) NOT NULL,
`loc_y` mediumint(6) NOT NULL,
`loc_z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
`respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`currentHP` decimal(30,15) NOT NULL,
`currentMP` decimal(30,15) NOT NULL,
`status` tinyint(1) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`boss_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `grandboss_data` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`currentHP`,`currentMP`) VALUES
(29001, -21610, 181594, -5734, 0, 229898.48, 667.776), -- Queen Ant (40)
(29006, 17726, 108915, -6480, 0, 622493.58388, 3793.536), -- Core (50)
(29014, 55024, 17368, -5412, 10126, 622493.58388, 3793.536), -- Orfen (50)
-- (29019, 185708, 114298, -8221, 32768, 17850000, 39960), -- Antharas (79)
(29020, 116033, 17447, 10107, -25348, 4068372, 39960), -- Baium (75)
-- (29022, 55312, 219168, -3223, 0, 858518.36, 399600), -- Zaken (60)
-- (29025, 0, 0, 0, 0, 0, 0), -- Baium (Stone) (75)
(29028, -105200, -253104, -15264, 0, 62041918, 2248572), -- Valakas (85)
-- (29066, 185708, 114298, -8221,32768, 14518000, 3996000), -- Antharas Weak (79)
-- (29067, 185708, 114298, -8221,32768, 16184000, 3996000), -- Antharas Normal (79)
(29068, 185708, 114298, -8221,32768, 62802301, 1998000); -- Antharas Strong (85)
-- (29118, 0, 0, 0, 0, 4109288, 1220547); -- Beleth (83)
-- (29045, -87780, -155086, -9080, 16384, 1018821.42723286, 52001.06567747795), -- Frintezza (85)
-- (29046, -87789, -153295, -9176, 16384, 1824900, 23310), -- Scarlet Van Halisha (85)
-- (29047, -87789, -153295, -9176, 16384, 898044, 4519), -- Scarlet Van Halisha (85)
-- (29099, 0, 0, 0, 0, 1703893, 111000), -- Baylor (83)
-- (29150, 0, 0, 0, 0, 8727677, 204995), -- Ekimus (82)
-- (29163, 0, 0, 0, 0, 8727677, 204995), -- Tiat (87)
-- (29175, 0, 0, 0, 0, 8727677, 204995), -- Tiat (87)
-- (29176, 0, 0, 0, 0, 0, 0), -- Zaken Day (60)
-- (29177, 0, 0, 0, 0, 0, 0), -- Freya (Throne) (85)
-- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Spelling) (85)
-- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Stand) (85)
-- (29178, 0, 0, 0, 0, 0, 0), -- Freya (Stand Hard) (85)
-- (29179, 0, 0, 0, 0, 0, 0), -- Zaken Day (83)

View File

@@ -1,6 +0,0 @@
DROP TABLE IF EXISTS `grandboss_list`;
CREATE TABLE IF NOT EXISTS `grandboss_list` (
`player_id` decimal(11,0) NOT NULL,
`zone` decimal(11,0) NOT NULL,
PRIMARY KEY (`player_id`,`zone`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,8 +0,0 @@
DROP TABLE IF EXISTS `item_soulcrystal`;
CREATE TABLE `item_soulcrystal` (
`object_id` int(11) NOT NULL,
`slot_id` int(1) NOT NULL,
`is_special` bit(1) NOT NULL,
`effect_id` int(4) NOT NULL,
PRIMARY KEY (`object_id`,`slot_id`,`is_special`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `item_special_abilities`;
CREATE TABLE IF NOT EXISTS `item_special_abilities` (
`objectId` int(10) unsigned NOT NULL,
`type` tinyint(1) unsigned NOT NULL DEFAULT 1,
`optionId` int(10) unsigned NOT NULL,
`position` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`objectId`,`optionId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

File diff suppressed because it is too large Load Diff

View File

@@ -1,23 +1,21 @@
DROP TABLE IF EXISTS `messages`;
CREATE TABLE IF NOT EXISTS `messages` (
`messageId` INT NOT NULL DEFAULT 0,
`senderId` INT NOT NULL DEFAULT 0,
`receiverId` INT NOT NULL DEFAULT 0,
`subject` TINYTEXT,
`content` TEXT,
`expiration` bigint(13) unsigned NOT NULL DEFAULT '0',
`reqAdena` BIGINT NOT NULL DEFAULT 0,
`hasAttachments` enum('true','false') DEFAULT 'false' NOT NULL,
`isUnread` enum('true','false') DEFAULT 'true' NOT NULL,
`isDeletedBySender` enum('true','false') DEFAULT 'false' NOT NULL,
`isDeletedByReceiver` enum('true','false') DEFAULT 'false' NOT NULL,
`isLocked` enum('true','false') DEFAULT 'false' NOT NULL,
`sendBySystem` tinyint(1) NOT NULL DEFAULT 0,
`isReturned` enum('true','false') DEFAULT 'false' NOT NULL,
`itemId` INT(11) NOT NULL DEFAULT '0',
`enchantLvl` INT(3) NOT NULL DEFAULT '0',
`elementals` VARCHAR(25),
`systemMessage1` INT(10) NOT NULL DEFAULT '-1',
`systemMessage2` INT(10) NOT NULL DEFAULT '-1',
PRIMARY KEY (`messageId`)
DROP TABLE IF EXISTS `messages`;
CREATE TABLE IF NOT EXISTS `messages` (
`messageId` INT NOT NULL DEFAULT 0,
`senderId` INT NOT NULL DEFAULT 0,
`receiverId` INT NOT NULL DEFAULT 0,
`subject` TINYTEXT,
`content` TEXT,
`expiration` bigint(13) unsigned NOT NULL DEFAULT '0',
`reqAdena` BIGINT NOT NULL DEFAULT 0,
`hasAttachments` enum('true','false') DEFAULT 'false' NOT NULL,
`isUnread` enum('true','false') DEFAULT 'true' NOT NULL,
`isDeletedBySender` enum('true','false') DEFAULT 'false' NOT NULL,
`isDeletedByReceiver` enum('true','false') DEFAULT 'false' NOT NULL,
`isLocked` enum('true','false') DEFAULT 'false' NOT NULL,
`sendBySystem` tinyint(1) NOT NULL DEFAULT 0,
`isReturned` enum('true','false') DEFAULT 'false' NOT NULL,
`itemId` INT(11) NOT NULL DEFAULT '0',
`enchantLvl` INT(3) NOT NULL DEFAULT '0',
`elementals` VARCHAR(25),
PRIMARY KEY (`messageId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,12 +0,0 @@
DROP TABLE IF EXISTS `mods_wedding`;
CREATE TABLE IF NOT EXISTS `mods_wedding` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`player1Id` int(11) NOT NULL DEFAULT '0',
`player2Id` int(11) NOT NULL DEFAULT '0',
`married` varchar(5) DEFAULT NULL,
`affianceDate` decimal(20,0) DEFAULT '0',
`weddingDate` decimal(20,0) DEFAULT '0',
PRIMARY KEY (`id`),
KEY `player1Id` (`player1Id`),
KEY `player2Id` (`player2Id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,22 +0,0 @@
DROP TABLE IF EXISTS `npc_buffer`;
CREATE TABLE `npc_buffer` (
`npc_id` int(6) NOT NULL,
`skill_id` int(6) NOT NULL,
`skill_level` int(6) NOT NULL DEFAULT '1',
`skill_fee_id` int(6) NOT NULL DEFAULT '0',
`skill_fee_amount` int(6) NOT NULL DEFAULT '0',
`buff_group` int(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`npc_id`,`skill_id`,`buff_group`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `npc_buffer` VALUES
(36402,4356,3,0,0,4356),
(36402,4352,2,0,0,4352),
(36402,4345,3,0,0,4345),
(36402,4359,3,0,0,4359),
(36402,4351,6,0,0,4351),
(36402,4355,3,0,0,4355),
(36402,4357,2,0,0,4357),
(36402,4342,2,0,0,4342),
(36402,4358,3,0,0,4358),
(36402,4360,3,0,0,4360);

View File

@@ -0,0 +1,12 @@
DROP TABLE IF EXISTS `npc_respawns`;
CREATE TABLE IF NOT EXISTS `npc_respawns` (
`id` int(10) NOT NULL,
`x` int(10) NOT NULL,
`y` int(10) NOT NULL,
`z` int(10) NOT NULL,
`heading` int(10) NOT NULL,
`respawnTime` bigint(20) unsigned NOT NULL DEFAULT '0',
`currentHp` double unsigned NOT NULL,
`currentMp` double unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

File diff suppressed because it is too large Load Diff

View File

@@ -1,372 +0,0 @@
DROP TABLE IF EXISTS `raidboss_spawnlist`;
CREATE TABLE IF NOT EXISTS `raidboss_spawnlist` (
`boss_id` smallint(5) unsigned NOT NULL,
`amount` tinyint(1) unsigned NOT NULL DEFAULT '1',
`loc_x` mediumint(6) NOT NULL,
`loc_y` mediumint(6) NOT NULL,
`loc_z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
`respawn_delay` mediumint(6) unsigned NOT NULL DEFAULT '86400', -- 24 Hours
`respawn_random` mediumint(6) unsigned NOT NULL DEFAULT '43200', -- 12 Hours
`respawn_time` bigint(13) unsigned NOT NULL DEFAULT '0',
`currentHp` decimal(8,0) DEFAULT NULL,
`currentMp` decimal(8,0) DEFAULT NULL,
PRIMARY KEY (`boss_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
(25001,-54416,146480,-2887,0,86400,43200,95986,514), -- Greyclaw Kutus (23)
(25004,-94208,100240,-3520,0,86400,43200,168366,731), -- Turek Mercenary Captain (30)
(25007,124240,75376,-2800,0,86400,43200,331522,1178), -- Retreat Spider Cletu (42)
(25010,113920,52960,-3735,0,86400,43200,624464,1975), -- Furious Thieles (55)
(25013,169744,11920,-2732,0,86400,43200,507285,1660), -- Ghost Of Peasant Leader (50)
(25016,76787,245775,-10376,0,86400,43200,730956,2301), -- The 3rd Underwater Guardian (60)
(25019,7376,169376,-3600,0,86400,43200,206185,575), -- Pan Dryad (25)
(25020,90384,125568,-2128,0,86400,43200,156584,860), -- Breka Warlock Pastu (34)
(25023,27280,101744,-3696,0,86400,43200,208019,860), -- Stakato Queen Zyrnna (34)
(25026,92976,7920,-3914,0,86400,43200,352421,1598), -- Katu Van Leader Atui (49)
(25029,54941,206705,-3728,0,86400,43200,578190,1847), -- Atraiban (53)
(25032,88532,245798,-10376,0,86400,43200,690320,2169), -- Eva's Guardian Millenu (58)
-- (25035,180968,12035,-2720,0,86400,43200,888658,2987), -- Shilen's Messenger Cabrio (70) (Not spawned anymore in GoD)
(25038,-57360,186272,-4967,0,86400,43200,116581,668), -- Tirak (28)
(25041,10416,126880,-3676,0,86400,43200,165289,893), -- Remmel (35)
(25044,107792,27728,-3488,0,86400,43200,319791,1476), -- Barion (47)
(25047,116352,27648,-3319,0,86400,43200,352421,1598), -- Karte (49)
(25050,125520,27216,-3632,0,86400,43200,771340,1722), -- Verfa (51)
(25051,117760,-9072,-3264,0,86400,43200,818959,2639), -- Rahha (65)
-- (25054,113432,16403,3960,0,86400,43200,945900,3347), -- Kernon (75) (Not spawned anymore in GoD)
(25057,107056,168176,-3456,0,86400,43200,288415,1355), -- Biconne Of Blue Sky (45)
(25060,-60428,188264,-4512,0,86400,43200,99367,545), -- Unrequited Kael (24)
(25063,-91024,116304,-3466,0,86400,43200,330579,893), -- Chertuba Of Great Soul (35)
(25064,96891,93825,-3720,0,86400,43200,218810,1062), -- Wizard Of Storm Teruk (40)
(25067,94992,-23168,-2176,0,86400,43200,554640,1784), -- Captain Of Red Flag Shaka (52)
(25070,125600,50100,-3600,0,86400,43200,451391,1975), -- Enchanted Forest Watcher Ruell (55)
-- (25073,143265,110044,-3944,0,86400,43200,875948,2917), -- Bloody Priest Rudelto (69) (Not spawned anymore in H5)
(25076,-60976,127552,-2960,0,86400,43200,103092,575), -- Princess Molrang (25)
(25079,53712,102656,-1072,0,86400,43200,168366,731), -- Cat's Eye Bandit (30)
(25082,88512,140576,-3483,0,86400,43200,206753,1028), -- Leader Of Cat Gang (39)
(25085,66944,67504,-3704,0,86400,43200,371721,1296), -- Timak Orc Chief Ranger (44)
(25088,90848,16368,-5296,0,86400,43200,702418,1237), -- Crazy Mechanic Golem (43)
(25089,165424,93776,-2992,0,86400,43200,512194,2235), -- Soulless Wild Boar (59)
(25092,116151,16227,1944,0,86400,43200,888658,2987), -- Korim (70)
(25095,-37856,198128,-2672,0,86400,43200,121941,699), -- Elf Renoa (29)
(25098,123536,133504,-3584,0,86400,43200,330579,893), -- Sejarr's Servitor (35)
(25099,64048,16048,-3536,0,86400,43200,273375,1296), -- Rotten Tree Repiro (44)
(25102,113840,84256,-2480,0,86400,43200,576831,1355), -- Shacram (45)
(25103,135872,94592,-3735,0,86400,43200,451391,1975), -- Sorcerer Isirr (55)
(25106,173880,-11412,-2880,0,86400,43200,526218,2301), -- Ghost Of The Well Lidia (60)
-- (25109,152660,110387,-5520,0,86400,43200,935092,3274), -- Antharas Priest Cloe (74) (Not spawned anymore in H5)
(25112,116128,139392,-3640,0,86400,43200,127782,731), -- Agent Of Beres, Meana (30)
(25115,125789,207644,-3752,0,86400,43200,294846,1062), -- Icarus Sample 1 (40)
(25118,50896,146576,-3645,0,86400,43200,330579,893), -- Guilotine, Warden Of The Execution Grounds (35)
(25119,121872,64032,-3536,0,86400,43200,507285,1660), -- Messenger Of Fairy Queen Berun (50)
(25122,86290,-8232,-3032,0,86400,43200,467209,2039), -- Refugee Hopeful Leo (56)
(25125,170656,85184,-2000,0,86400,43200,1637918,2639), -- Fierce Tiger King Angel (65)
(25126,116263,15916,6992,0,86400,43200,1974940,3643), -- Longhorn Golkonda (79)
(25127,-47552,219232,-2413,0,86400,43200,198734,545), -- Langk Matriarch Rashkos (24)
(25128,17696,179056,-3520,0,86400,43200,148507,827), -- Vuku Grand Seer Gharmash (33)
(25131,75488,-9360,-2720,0,86400,43200,369009,1660), -- Carnage Lord Gato (50)
(25134,87536,75872,-3591,0,86400,43200,218810,1062), -- Leto Chief Talkin (40)
(25137,125280,102576,-3305,0,86400,43200,451391,1975), -- Beleth's Seer Sephia (55)
-- (25140,0,0,0,0,0,0,0,0), -- Hekaton Prime (65) (Not spawned anymore in H5)
(25143,113102,16002,6992,0,86400,43200,977229,3568), -- Fire Of Wrath Shuriel (78)
(25146,-13056,215680,-3760,0,86400,43200,90169,455), -- Serpent Demon Bifrons (21)
(25149,-12656,138176,-3584,0,907200,604800,103092,575), -- Zombie Lord Crowl (25)
(25152,43872,123968,-2928,0,86400,43200,165289,893), -- Flame Lord Shadar (35)
(25155,73520,66912,-3728,0,86400,43200,294846,1053), -- Shaman King Selu (40)
(25158,77104,5408,-3088,0,86400,43200,920790,1523), -- King Tarlk (48)
(25159,124984,43200,-3625,0,86400,43200,435256,1911), -- Paniel The Unicorn (54)
-- (25162,0,0,0,0,0,0,0,0), -- Giant Marpanak (60) (Not spawned anymore in H5)
(25163,130500,59098,3584,0,86400,43200,1777317,2987), -- Roaring Skylancer (70)
(25166,-21800,152000,-2900,0,86400,43200,134813,575), -- Ikuntai (25)
(25169,-54464,170288,-3136,0,86400,43200,336732,731), -- Ragraman (30)
(25170,26064,121808,-3738,0,86400,43200,195371,994), -- Lizardmen Leader Hellion (38)
(25173,75968,110784,-2512,0,86400,43200,288415,1355), -- Tiger King Karuta (45)
-- (25176,92544,115232,-3200,0,86400,43200,451391,1975), -- Black Lily (55) (Not spawned anymore in H5)
(25179,167152,53120,-4148,0,86400,43200,526218,2301), -- Guardian Of The Statue Of Giant Karum (60)
(25182,41966,215417,-3728,0,86400,43200,512194,2235), -- Demon Kurikups (59)
(25185,99732,204331,-3784,0,86400,43200,165289,893), -- Tasaba Patriarch Hellena (35)
(25188,127544,215264,-2960,0,86400,43200,255564,731), -- Apepi (30)
(25189,127837,200661,-3792,0,86400,43200,156584,860), -- Cronos's Servitor Mumu (34)
(25192,125920,190208,-3291,0,86400,43200,258849,1237), -- Earth Protector Panathen (43)
(25198,102656,157424,-3735,0,86400,43200,1777317,2987), -- Fafurion's Herald Lokness (70)
(25199,108096,157408,-3688,0,86400,43200,912634,3130), -- Water Dragon Seer Sheshark (72)
(25202,119760,157392,-3744,0,86400,43200,935092,3274), -- Krokian Padisha Sobekk (74)
(25205,123808,153408,-3671,0,86400,43200,956490,3420), -- Ocean Flame Ashakiel (76)
(25208,109663,213615,-3624,0,86400,43200,218810,1062), -- Water Couatle Ateka (40)
(25211,113456,198118,-3689,0,86400,43200,174646,927), -- Sebek (36)
(25214,111582,209341,-3687,0,86400,43200,218810,1062), -- Fafurion's Page Sika (40)
-- (25217,89904,105712,-3292,0,86400,43200,369009,1660), -- Cursed Clara (50) (Not spawned anymore in H5)
-- (25220,113551,17083,-2120,0,86400,43200,924022,3202), -- Death Lord Hallate (73) (Not spawned anymore in GoD)
(25223,43152,152352,-2848,0,86400,43200,165289,893), -- Soul Collector Acheron (35)
(25226,104240,-3664,-3392,0,86400,43200,768537,2435), -- Roaring Lord Kastor (62)
-- (25229,137568,-19488,-3552,0,86400,43200,1891801,3347), -- Storm Winged Naga (75) (Not spawned anymore in Infinite Odyssey)
(25230,66672,46704,-3920,0,86400,43200,482650,2104), -- Timak Seer Ragoth (57)
(25233,185800,-26500,-2000,0,86400,43200,1256671,2917), -- Spirit Of Andras, The Betrayer (69)
-- (25234,120080,111248,-3047,0,86400,43200,1052436,2301), -- Ancient Weird Drake (60) (Not spawned anymore in H5)
(25235,116400,-62528,-3264,0,86400,43200,912634,3130), -- Vanor Chief Kandra (72)
(25238,155000,85400,-3200,0,86400,43200,512194,2235), -- Abyss Brukunt (59)
(25241,165984,88048,-2384,0,86400,43200,624464,1975), -- Harit Hero Tamash (55)
(25244,171880,54868,-5992,0,86400,43200,1891801,3347), -- Last Lesser Giant Olkuth (75)
(25245,188809,47780,-5968,0,86400,43200,977229,3568), -- Last Lesser Giant Glaki (78)
(25248,127903,-13399,-3720,0,86400,43200,1825269,3130), -- Doom Blade Tanatos (72)
-- (25249,147104,-20560,-3377,0,86400,43200,945900,3347), -- Palatanos Of Horrific Power (75) (Not spawned anymore in Infinite Odyssey)
(25252,192376,22087,-3608,0,86400,43200,888658,2987), -- Palibati Queen Themis (70)
(25255,170048,-24896,-3440,0,86400,43200,1637918,2639), -- Gargoyle Lord Tiphon (65)
(25256,170320,42640,-4832,0,86400,43200,526218,2301), -- Taik High Prefect Arak (60)
(25259,42050,208107,-3752,0,86400,43200,1248928,1975), -- Zaken's Butcher Krantz (55)
(25260,93120,19440,-3607,0,86400,43200,392985,1355), -- Iron Giant Totem (45)
-- (25263,144400,-28192,-1920,0,86400,43200,848789,2777), -- Kernon's Faithful Servant Kelone (67) (Not spawned anymore in Infinite Odyssey)
-- (25266,188983,13647,-2672,0,86400,43200,945900,3347), -- Bloody Empress Decarbia (75) (Not spawned anymore in GoD)
(25269,123504,-23696,-3481,0,86400,43200,888658,3058), -- Beast Lord Behemoth (70)
(25272,49248,127792,-3552,0,86400,43200,233163,1415), -- Partisan Leader Talakin (28)
-- (25273,23800,119500,-8976,0,86400,43200,507285,2104), -- Carnamakos (50) (Spawn by Quest)
-- (25276,154088,-14116,-3736,0,86400,43200,1891801,3347), -- Death Lord Ipos (75) (Not spawned anymore in Infinite Odyssey)
(25277,54651,180269,-4976,0,86400,43200,507285,1660), -- Lilith's Witch Marilion (50)
(25280,85622,88766,-5120,0,86400,43200,1248928,1975), -- Pagan Watcher Cerberon (55)
(25281,151053,88124,-5424,0,86400,43200,1777317,2987), -- Anakim's Nemesis Zakaron (70)
(25282,179311,-7632,-4896,0,86400,43200,1891801,3347), -- Death Lord Shax (75)
-- (25283,184410,-10111,-5488,0,86400,43200,1639146,3793), -- Lilith (80) (Spawn by Seven Signs)
-- (25286,185000,-13000,-5488,0,86400,43200,1639146,3793), -- Anakim (80) (Spawn by Seven Signs)
-- (25290,186304,-43744,-3193,0,86400,43200,977229,3718), -- Daimon The White-Eyed (78) (Spawn by Quest 604_DaimontheWhiteEyedPart2)
(25293,134672,-115600,-1216,0,86400,43200,977229,3568), -- Hestia, Guardian Deity Of The Hot Springs (78)
-- (25296,158352,-121088,-2240,0,86400,43200,935092,3718), -- Icicle Emperor Bumbalump (74) (Spawn by Quest 625_TheFinestIngredientsPart2)
(25299,148160,-73808,-4919,0,86400,43200,714778,3718), -- Ketra's Hero Hekaton (80)
-- (25302,145504,-81664,-6016,0,86400,43200,773553,4183), -- Ketra's Commander Tayr (80) (Not spawned anymore in Infinite Odyssey)
-- (25305,145008,-84992,-6240,0,86400,43200,1639965,4553), -- Ketra's Chief Brakki (80) (Not spawned anymore in Infinite Odyssey)
-- (25306,142368,-82512,-6487,0,86400,43200,534922,3718), -- Soul Of Fire Nastron (80) (Spawn by Quest 616_MagicalPowerOfFirePart2)
(25309,115552,-39200,-2480,0,86400,43200,714778,3718), -- Varka's Hero Shadith (80)
-- (25312,109216,-36160,-938,0,86400,43200,773553,4183), -- Varka's Commander Mos (80) (Not spawned anymore in Infinite Odyssey)
-- (25315,105584,-43024,-1728,0,86400,43200,1639965,4553), -- Varka's Chief Horus (80) (Not spawned anymore in Infinite Odyssey)
-- (25316,105452,-36775,-1050,0,86400,43200,534922,3718), -- Soul Of Water Ashutar (80) (Spawn by Quest 610_MagicalPowerOfWaterPart2)
(25319,185820,-106096,-6314,34214,86400,43200,1100996,4304), -- Ember (80)
(25322,93296,-75104,-1824,0,86400,43200,834231,2707), -- Demon's Agent Falston (66)
(25325,91008,-85904,-2736,0,86400,43200,888658,2987), -- Flame Of Splendor Barakiel (70)
(25328,59331,-42403,-3003,0,10800,3600,900867,3058), -- Eilhalder Von Hellmann (71) (Only Spawn at Night)
-- (25333,0,0,0,0,0,0,0,0), -- Anakazel (28) (Spawn by Dimensional Rift)
-- (25334,0,0,0,0,0,0,0,0), -- Anakazel (38) (Spawn by Dimensional Rift)
-- (25335,0,0,0,0,0,0,0,0), -- Anakazel (48) (Spawn by Dimensional Rift)
-- (25336,0,0,0,0,0,0,0,0), -- Anakazel (58) (Spawn by Dimensional Rift)
-- (25337,0,0,0,0,0,0,0,0), -- Anakazel (68) (Spawn by Dimensional Rift)
-- (25338,0,0,0,0,0,0,0,0), -- Anakazel (78) (Spawn by Dimensional Rift)
-- (25339,0,0,0,0,86400,43200,96646,3718), -- Shadow Of Halisha (81) (Spawn by Four Sepulchers Instance)
-- (25342,0,0,0,0,86400,43200,96646,3718), -- Shadow Of Halisha (81) (Spawn by Four Sepulchers Instance)
-- (25346,0,0,0,0,86400,43200,96646,3718), -- Shadow Of Halisha (81) (Spawn by Four Sepulchers Instance)
-- (25349,0,0,0,0,86400,43200,96646,3718), -- Shadow Of Halisha (81) (Spawn by Four Sepulchers Instance)
(25352,-16912,174912,-3264,0,86400,43200,127782,731), -- Giant Wasteland Basilisk (30)
(25354,-16096,184288,-3817,0,86400,43200,165289,893), -- Gargoyle Lord Sirocco (35)
(25357,-3456,112864,-3456,0,86400,43200,90169,455), -- Sukar Wererat Chief (21)
(25360,29216,179280,-3624,0,86400,43200,107186,606), -- Tiger Hornet (26)
(25362,-55920,186768,-3336,0,86400,43200,95986,514), -- Tracker Leader Sharuk (23)
(25365,-62000,190256,-3687,0,86400,43200,214372,606), -- Patriarch Kuroboros (26)
(25366,-62368,179440,-3594,0,86400,43200,95986,514), -- Kuroboros' Priest (23)
(25369,-45616,111024,-3808,0,86400,43200,103092,575), -- Soul Scavenger (25)
(25372,48000,243376,-6611,0,86400,43200,175392,426), -- Discarded Guardian (20)
(25373,9649,77467,-3808,0,86400,43200,90169,455), -- Malex Herald Of Dagoniel (21)
(25375,22500,80300,-2772,0,86400,43200,87696,426), -- Zombie Lord Farakelsus (20)
-- (25378,-54096,84288,-3512,0,86400,43200,87696,426), -- Madness Beast (20) (The whole area was replaced on Infinite Odyssey)
(25380,-47367,51548,-5904,0,86400,43200,90169,455), -- Kaysha Herald Of Icarus (21)
(25383,51632,153920,-3552,0,86400,43200,156584,860), -- Revenant Of Sir Calibus (34)
-- (25385,53600,143472,-3872,0,86400,43200,174646,927), -- Evil Spirit Tempest (36) (Not spawned anymore in Ertheia)
(25388,40128,101920,-1241,0,86400,43200,165289,893), -- Red Eye Captain Trakia (35)
(25391,45600,120592,-2455,0,86400,43200,297015,827), -- Nurka's Messenger (33)
(25392,29928,107160,-3708,0,86400,43200,141034,795), -- Captain Of Queen's Royal Guards (32)
(25394,129481,219722,-3600,0,86400,43200,390743,994), -- Premo Prime (38)
(25395,15000,119000,-11900,0,86400,43200,288415,1355), -- Archon Suscepter (45)
(25398,5000,189000,-3728,0,86400,43200,165289,893), -- Eye Of Beleth (35)
(25401,117808,102880,-3600,0,86400,43200,141034,795), -- Skyla (32)
(25404,35992,191312,-3104,0,86400,43200,148507,827), -- Corsair Captain Kylon (33)
-- (25407,115072,112272,-3018,0,86400,43200,526218,2301), -- Lord Ishka (60) (Not spawned anymore in H5)
(25410,72192,125424,-3657,0,86400,43200,218810,1062), -- Road Scavenger Leader (40)
-- (25412,0,0,0,0,0,0,0,0), -- Necrosentinel Royal Guard (47) (Not spawned anymore in H5)
(25415,128352,138464,-3467,0,86400,43200,218810,1062), -- Nakondas (40)
(25418,62416,8096,-3376,0,86400,43200,273375,1296), -- Dread Avenger Kraven (44)
(25420,42032,24128,-4704,0,86400,43200,335987,1537), -- Orfen's Handmaiden (48)
-- (25423,113600,47120,-4640,0,86400,43200,539706,2368), -- Fairy Queen Timiniel [Removed Infinite Odyssey] (61)
(25426,-18048,-101264,-2112,0,86400,43200,103092,575), -- Betrayer Of Urutu Freki (25)
(25429,172064,-214752,-3565,0,86400,43200,103092,575), -- Mammon Collector Talos (25)
(25431,79648,18320,-5232,0,86400,43200,273375,1296), -- Flamestone Golem (44)
(25434,104096,-16896,-1803,0,86400,43200,451391,1975), -- Bandit Leader Barda (55)
(25437,67296,64128,-3723,0,86400,43200,576831,1355), -- Timak Orc Gosmos (45)
(25438,107000,92000,-2272,0,86400,43200,273375,1296), -- Thief Kelbar (44)
(25441,111440,82912,-2912,0,86400,43200,288415,1355), -- Evil Spirit Cyrion (45)
(25444,113232,17456,-4384,0,86400,43200,588136,2639), -- Enmity Ghost Ramdal (65)
(25447,113200,17552,-1424,0,86400,43200,645953,3058), -- Immortal Savior Mardil (71)
(25450,113600,15104,9559,0,86400,43200,987470,3643), -- Cherub Galaxia (79)
-- (25453,156704,-6096,-4185,0,86400,43200,888658,2987), -- Meanas Anor (70) (Not spawned anymore in Infinite Odyssey)
(25456,133632,87072,-3623,0,86400,43200,352421,1598), -- Mirror Of Oblivion (49)
(25460,150304,67776,-3688,0,86400,43200,385670,1722), -- Deadman Ereve (51)
(25463,166288,68096,-3264,0,86400,43200,467209,2039), -- Harit Guardian Garangky (56)
-- (25467,0,0,0,0,0,0,0,0), -- Gorgolos (64) (Not spawned anymore in H5)
-- (25470,0,0,0,0,0,0,0,0), -- Last Titan Utenus (66) (Not spawned anymore in H5)
(25473,175712,29856,-3776,0,86400,43200,402319,1784), -- Grave Robber Kim (52)
(25475,183568,24560,-3184,0,86400,43200,451391,1975), -- Ghost Knight Kabed (55)
(25478,168288,28368,-3632,0,86400,43200,588136,2639), -- Shilen's Priest Hisilrome (65)
(25481,53517,205413,-3728,0,86400,43200,418874,1847), -- Magus Kenishee (53)
(25484,43160,220463,-3680,0,86400,43200,369009,1660), -- Zaken's Chief Mate Tillion (50)
-- (25487,0,0,0,0,0,0,0,0), -- Water Spirit Lian (40) (Not spawned anymore in H5)
-- (25490,0,0,0,0,0,0,0,0), -- Gwindorr (40) (Not spawned anymore in H5)
(25493,83174,254428,-10873,0,86400,43200,451391,1975), -- Eva's Spirit Niniel (55)
(25496,88300,258000,-10200,0,86400,43200,402319,1784), -- Fafurion's Envoy Pingolpin (52)
(25498,126624,174448,-3056,0,86400,43200,288415,1355), -- Fafurion's Henchman Istary (45)
(25501,48575,-106191,-1568,0,86400,43200,127782,731), -- Boss Akata (30)
(25504,123000,-141000,-1100,0,86400,43200,206753,1028), -- Nellis' Vengeful Spirit (39)
(25506,127900,-160600,-1100,0,86400,43200,184670,960), -- Rayito The Looter (37)
-- (25509,0,0,0,0,0,0,0,0), -- Dark Shaman Varangka (53) (Not spawned anymore in H5)
-- (25512,0,0,0,0,0,0,0,0), -- Gigantic Chaos Golem (52) (Not spawned anymore in GoD)
-- (25514,0,0,0,0,0,0,0,0), -- Queen Shyeed (80) (Not spawned anymore in H5)
(25523,170000,-60000,-3500,0,86400,43200,1848045,3202), -- Plague Golem (73)
(25524,144600,-5500,-4100,0,86400,43200,956490,3420), -- Flamestone Giant (76)
(25527,3776,-6768,-3276,0,86400,43200,1608553,451), -- Uruka (80)
-- (25528,0,0,0,0,86400,43200,49148,9999), -- Tiberias (22) (handled by instance script)
-- (25531,0,0,0,0,86400,43200,2140552,9999), -- Darnel (81) (stats to be done)
-- (25532,0,0,0,0,86400,43200,534278,9999), -- Kechi (82) (stats to be done)
-- (25534,0,0,0,0,86400,43200,2129066,9999), -- Tears (83) (stats to be done)
-- (25536,0,0,0,0,86400,43200,1027906,9999), -- Hannibal (83) (stats to be done)
-- (25539,-17475,253163,-3432,0,86400,43200,2076371,9999), -- Typhoon (84) (Not spawned anymore in GoD)
-- (25540,0,0,0,0,86400,43200,3524173,9999), -- Demon Prince (83) (handled by instance script)
-- (25542,0,0,0,0,86400,43200,3524173,9999), -- Ranku (83) (handled by instance script)
-- (25544,-12557,273901,-9000,0,86400,43200,2682423,4177), -- Tully (83) (Not spawned anymore in GoD)
-- (25546,0,0,0,0,0,0,0,0), -- Rhianna the Traitor (74) (Spawned by instance)
-- (25549,0,0,0,0,0,0,0,0), -- Tesla the Deceiver (75) (Spawned by instance)
-- (25552,0,0,0,0,0,0,0,0), -- Soul Hunter Chakundel (76) (Spawned by instance)
-- (25553,0,0,0,0,0,0,0,0), -- Durango the Crusher (77) (Spawned by instance)
-- (25554,0,0,0,0,0,0,0,0), -- Brutus the Obstinate (78) (Spawned by instance)
-- (25557,0,0,0,0,0,0,0,0), -- Ranger Karankawa (79) (Spawned by instance)
-- (25560,0,0,0,0,0,0,0,0), -- Sargon the Mad (79) (Spawned by instance)
-- (25563,0,0,0,0,0,0,0,0), -- Beautiful Atrielle (81) (Spawned by instance)
-- (25566,0,0,0,0,0,0,0,0), -- Nagen the Tomboy (82) (Spawned by instance)
-- (25569,0,0,0,0,0,0,0,0), -- Jax the Destroyer (85) (Spawned by instance)
-- (25572,0,0,0,0,0,0,0,0), -- Hager the Outlaw (72) (Spawned by instance)
-- (25575,0,0,0,0,0,0,0,0), -- All-Seeing Rango (73) (Spawned by instance)
-- (25578,0,0,0,0,0,0,0,0), -- Jakard (73) (Spawned by instance)
-- (25579,0,0,0,0,0,0,0,0), -- Helsing (74) (Spawned by instance)
-- (25582,0,0,0,0,0,0,0,0), -- Gillien (75) (Spawned by instance)
-- (25585,0,0,0,0,0,0,0,0), -- Medici (76) (Spawned by instance)
-- (25588,0,0,0,0,0,0,0,0), -- Immortal Muus (77) (Spawned by instance)
-- (25589,0,0,0,0,0,0,0,0), -- Brand the Exile (78) (Spawned by instance)
-- (25592,0,0,0,0,0,0,0,0), -- Commander Koenig (79) (Spawned by instance)
-- (25593,0,0,0,0,0,0,0,0), -- Gerg the Hunter (80) (Spawned by instance)
-- (25603,20886,244088,11062,0,86400,43200,2308600,4255), -- Darion (87) (Not spawned anymore in GoD)
-- (25609,0,0,0,0,86400,43200,9999,9999), -- Epidos (82) (stats to be done)
-- (25610,0,0,0,0,86400,43200,9999,9999), -- Epidos (82) (stats to be done)
-- (25611,0,0,0,0,86400,43200,9999,9999), -- Epidos (82) (stats to be done)
-- (25612,0,0,0,0,86400,43200,9999,9999), -- Epidos (82) (stats to be done)
-- (25616,0,0,0,0,0,0,0,0), -- Lost Warden (29) (Spawned by Kamaloka's instance)
-- (25617,0,0,0,0,0,0,0,0), -- Lost Warden (39) (Spawned by Kamaloka's instance)
-- (25618,0,0,0,0,0,0,0,0), -- Lost Warden (49) (Spawned by Kamaloka's instance)
-- (25619,0,0,0,0,0,0,0,0), -- Lost Warden (59) (Spawned by Kamaloka's instance)
-- (25620,0,0,0,0,0,0,0,0), -- Lost Warden (69) (Spawned by Kamaloka's instance)
-- (25621,0,0,0,0,0,0,0,0), -- Lost Warden (78) (Spawned by Kamaloka's instance)
-- (25622,0,0,0,0,0,0,0,0), -- Lost Warden (81) (Spawned by Kamaloka's instance)
-- (25623,-192361,254528,15,0,86400,43200,99999,99999), -- Valdstone (80) (stats to be done)
-- (25624,-174600,219711,44,0,86400,43200,99999,99999), -- Rok (80) (stats to be done)
-- (25625,-181989,208968,44,0,86400,43200,99999,99999), -- Enira (80) (stats to be done)
-- (25626,-252898,235845,53,0,86400,43200,99999,99999), -- Dius (80) (stats to be done)
-- (25643,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Sentry (81) (stats to be done)
-- (25644,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Severer (81) (stats to be done)
-- (25645,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Soul Extractor (81) (stats to be done)
-- (25646,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Soul Devourer (81) (stats to be done)
-- (25647,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Fighter (81) (stats to be done)
-- (25648,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Fighter (81) (stats to be done)
-- (25649,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Executor (81) (stats to be done)
-- (25650,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Executor (81) (stats to be done)
-- (25651,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Prophet (81) (stats to be done)
-- (25652,0,0,0,0,86400,43200,9999,9999), -- Awakened Ancient Prophet (81) (stats to be done)
-- (25653,0,0,0,0,0,0,0,0), -- Kanadis Herald (81) (Spawned by Pailaka's instance)
-- (25654,0,0,0,0,0,0,0,0), -- Kanadis Herald (83) (Spawned by Pailaka's instance)
-- (25655,0,0,0,0,0,0,0,0), -- Kanadis Herald (85) (Spawned by Pailaka's instance)
-- (25659,0,0,0,0,0,0,0,0), -- Kanadis Guide (77) (Spawned by Pailaka's instance)
-- (25660,0,0,0,0,0,0,0,0), -- Kanadis Guide (80) (Spawned by Pailaka's instance)
-- (25661,0,0,0,0,0,0,0,0), -- Kanadis Guide (83) (Spawned by Pailaka's instance)
-- (25665,0,0,0,0,86400,43200,9999,9999), -- Yehan Klodekus (81) (stats to be done)
-- (25666,0,0,0,0,86400,43200,9999,9999), -- Yehan Klanikus (81) (stats to be done)
-- (25667,0,0,0,0,86400,43200,9999,9999), -- Cannibalistic Stakato Chief (82) (stats to be done)
-- (25668,0,0,0,0,86400,43200,9999,9999), -- Cannibalistic Stakato Chief (82) (stats to be done)
-- (25669,0,0,0,0,86400,43200,9999,9999), -- Cannibalistic Stakato Chief (82) (stats to be done)
-- (25670,0,0,0,0,86400,43200,9999,9999), -- Cannibalistic Stakato Chief (82) (stats to be done)
-- (25671,79634,-55428,-6104,0,86400,43200,743801,4022), -- Queen Shyeed (84) (Spawn by AI)
(25674,86534,216888,-3176,0,86400,43200,736436,3945), -- Gwindorr (83)
(25677,83056,183232,-3616,0,86400,43200,743801,4022), -- Water Spirit Lian (84)
(25680,193902,54135,-4184,0,21600,21600,2035459,3869), -- Giant Marpanak (82)
(25681,186210,61479,-4000,0,21600,21600,729145,3869), -- Gorgolos (82)
(25684,186919,56297,-4480,0,21600,21600,736436,3945), -- Last Titan Utenus (83)
-- (25687,191777,56197,-7624,0,0,3600,1027906,3945), -- Hekaton Prime (83) (Spawn by Quest)
-- (25690,0,0,0,0,0,0,0,0), -- Aenkinel (81) (Spawned by Delusion Chamber)
-- (25691,0,0,0,0,0,0,0,0), -- Aenkinel (81) (Spawned by Delusion Chamber)
-- (25692,0,0,0,0,0,0,0,0), -- Aenkinel (81) (Spawned by Delusion Chamber)
-- (25693,0,0,0,0,0,0,0,0), -- Aenkinel (81) (Spawned by Delusion Chamber)
-- (25694,0,0,0,0,0,0,0,0), -- Aenkinel (82) (Spawned by Delusion Chamber)
-- (25695,0,0,0,0,0,0,0,0), -- Aenkinel (84) (Spawned by Delusion Chamber)
(25696,-180146,175202,-10287,13632,86400,21600,1817998,40998), -- Taklacan (85)
(25697,-174800,186738,-15100,49504,86400,21600,15024785,40998), -- Torumba (85)
(25698,-213004,175631,-11978,16380,86400,21600,1502478,40998), -- Dopagen (85)
-- (25699,0,0,0,0,0,0,0,0), -- Glakias (85) (Spawned by Freya Boss Instance Normal)
-- (25700,0,0,0,0,0,0,0,0), -- Glakias (85) (Spawned by Freya Boss Instance Hard)
(25701,112798,-76800,-10,-15544,86400,43200,2231403,48422), -- Anays (84)
-- (25703,0,0,0,0,0,0,0,0), -- Gigantic Golem (79) (Spawned by Dr Chaos AI)
-- (25709,0,0,0,0,0,0,0,0), -- Lost Warden (83) (Spawned by Kamaloka's instance)
-- (25710,0,0,0,0,0,0,0,0), -- Lost Captain (83) (Spawned by Kamaloka's instance)
-- (25713,0,0,0,0,0,0,0,0), -- Darnels (84) (stats to be done)
-- (25714,0,0,0,0,0,0,0,0), -- Kietch (84) (stats to be done)
-- (25716,0,0,0,0,0,0,0,0), -- Tears (84) (stats to be done)
-- (29030,0,0,0,0,0,0,0,0), -- Fenril Hound Kerinne (84) (stats to be done)
-- (29033,0,0,0,0,0,0,0,0), -- Fenril Hound Freki (84) (stats to be done)
-- (29036,0,0,0,0,0,0,0,0), -- Fenril Hound Uruz (84) (stats to be done)
-- (29037,0,0,0,0,0,0,0,0), -- Fenril Hound Kinaz (84) (stats to be done)
(29040,189400,-105702,-782,0,604800,0,520605,4140), -- Wings of Flame Ixion (84) TODO: Check if respawn time should be stored into DB to be restored on restart (original record haven't dbsaving={death_time;parameters} and boss_respawn_set=yes parameters)
(29054,11882,-49216,-3008,0,0,0,1352750,1494), -- Venom (75)
-- (29056,0,0,0,0,0,0,0,0), -- Ice Fairy Sirra (60) (Not spawned anymore in H5)
-- (29060,106000,-128000,-3000,0,86400,43200,1566263,9999), -- Captain Of The Ice Queen's Royal Guard (59) (Spawn by Quest)
-- (29062,-16373,-53562,-10197,0,86400,43200,275385,9999), -- Andreas Van Halter (80) -- stats to be done (Spawn by Quest)
-- (29065,26528,-8244,-2007,0,86400,43200,1639965,9999), -- Sailren (80) -- stats to be done (Spawn by Quest)
(29095,147408,-43552,-2328,0,86400,43200,2289038,4553), -- Gordon (80) -- walking around Goddard
-- (29096,0,0,0,0,0,0,0,0), -- Anais (80) (Not spawned anymore in H5)
-- (29099,0,0,0,0,0,0,0,0), -- Baylor (83) (stats to be done)
-- (29129,0,0,0,0,0,0,0,0), -- Lost Captain (29) (Spawned by Kamaloka's instance)
-- (29132,0,0,0,0,0,0,0,0), -- Lost Captain (39) (Spawned by Kamaloka's instance)
-- (29135,0,0,0,0,0,0,0,0), -- Lost Captain (49) (Spawned by Kamaloka's instance)
-- (29138,0,0,0,0,0,0,0,0), -- Lost Captain (59) (Spawned by Kamaloka's instance)
-- (29141,0,0,0,0,0,0,0,0), -- Lost Captain (69) (Spawned by Kamaloka's instance)
-- (29144,0,0,0,0,0,0,0,0), -- Lost Captain (78) (Spawned by Kamaloka's instance)
-- (29147,0,0,0,0,0,0,0,0), -- Lost Captain (81) (Spawned by Kamaloka's instance)
-- (29186,0,0,0,0,0,0,0,0), -- Balor (85) (stats to be done)
(25725,152260,110394,-5552,0,86400,43200,6165648,20499), -- Drake Lord (85)
(25726,145788,120118,-3912,32768,86400,43200,6165648,20499), -- Behemoth Leader (85)
(25727,148241,117965,-3712,0,86400,43200,6165648,20499); -- Dragon Beast (85)
-- Removed
DELETE FROM `raidboss_spawnlist` WHERE (boss_id = 25118); -- Guilotine, Warden Of The Execution Grounds
DELETE FROM `raidboss_spawnlist` WHERE (boss_id = 25252); -- Palibati Queen Themis
DELETE FROM `raidboss_spawnlist` WHERE (boss_id = 25539); -- Typhoon
-- Guilotine Fortress
INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
(25886,48232,147384,-3400,10866,86400,43200,0,0),
(25887,43151,144689,-3100,52598,86400,43200,0,0),
(25888,44970,155903,-1000,52598,86400,43200,0,0),
(25892,44824,155944,-1056,35323,86400,43200,0,0);
-- Correct Location for Tiger King Karuta
REPLACE INTO `raidboss_spawnlist` (`boss_id`, `amount`, `loc_x`, `loc_y`, `loc_z`, `heading`, `respawn_delay`, `respawn_random`, `respawn_time`, `currentHp`, `currentMp`) VALUES
(25173, 1, 80049, 102334, -3577, 28250, 86400, 43200, 0, '235128', '1279');
-- Orc Village Area changes
INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`heading`,`respawn_delay`,`respawn_random`,`currentHp`,`currentMp`) VALUES
(25922, 17688, -148888, -184, 17681, 5000, 0, 3271103, 5116283),
(25927, -18371, -114358, -4072, 16383, 86400, 21600, 3271103, 5116283),
(25928, 16278, -119509, -880, 25269, 8000, 0, 3271103, 5116283),
(25929, 16125, -119266, -872, 50450, 8000, 0, 3271103, 5116283),
(25930, 16086, -119455, -880, 7324, 8000, 0, 3271103, 5116283),
(25931, 16318, -119300, -872, 40015, 8000, 0, 3271103, 5116283);
-- Wastelands
-- Ragraman
REPLACE INTO `raidboss_spawnlist` (`boss_id`, `amount`, `loc_x`, `loc_y`, `loc_z`, `heading`, `respawn_delay`, `respawn_random`, `respawn_time`, `currentHp`, `currentMp`) VALUES
(25169, 1, -54464, 172151, -3633, 0, 86400, 43200, 0, '175403', '473');
-- Rose
INSERT INTO `raidboss_spawnlist` (`boss_id`, `amount`, `loc_x`, `loc_y`, `loc_z`, `heading`, `respawn_delay`, `respawn_random`, `respawn_time`, `currentHp`, `currentMp`) VALUES
(25870, 1, -30013, 168759, -3862, 26591, 86400, 43200, 0, '517915', '517915');
-- Thorn
INSERT INTO `raidboss_spawnlist` (`boss_id`, `amount`, `loc_x`, `loc_y`, `loc_z`, `heading`, `respawn_delay`, `respawn_random`, `respawn_time`, `currentHp`, `currentMp`) VALUES
(25871, 1, -27329, 182826, -3639, 24935, 86400, 43200, 0, '517915', '517915');

View File

@@ -1,6 +0,0 @@
DROP TABLE IF EXISTS `rainbowsprings_attacker_list`;
CREATE TABLE IF NOT EXISTS `rainbowsprings_attacker_list` (
`clanId` int(10) DEFAULT NULL,
`war_decrees_count` double(20,0) DEFAULT NULL,
KEY `clanid` (`clanid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,20 +0,0 @@
DROP TABLE IF EXISTS `random_spawn`;
CREATE TABLE `random_spawn` (
`groupId` tinyint(3) unsigned NOT NULL,
`npcId` smallint(5) unsigned NOT NULL,
`count` tinyint(1) unsigned NOT NULL DEFAULT '1',
`initialDelay` int(8) NOT NULL DEFAULT '-1',
`respawnDelay` int(8) NOT NULL DEFAULT '-1',
`despawnDelay` int(8) NOT NULL DEFAULT '-1',
`broadcastSpawn` enum('true','false') NOT NULL DEFAULT 'false',
`randomSpawn` enum('true','false') NOT NULL DEFAULT 'true',
PRIMARY KEY (`groupId`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `random_spawn` VALUES
(136,32012,1,-1,3600000,0,'false','true'), -- Tantan (Aged ExAdventurer quest)
(137,32335,1,-1,120000,120000,'false','true'), -- Marksman (Guards on kamael island)
(138,32335,1,-1,120000,120000,'false','true'), -- Marksman (Guards on kamael island)
(139,32335,1,-1,120000,120000,'false','true'), -- Marksman (Guards on kamael island)
(140,32335,1,-1,120000,120000,'false','true'), -- Marksman (Guards on kamael island)
(141,32335,1,-1,120000,120000,'false','true'); -- Marksman (Guards on kamael island)

View File

@@ -1,61 +0,0 @@
DROP TABLE IF EXISTS `random_spawn_loc`;
CREATE TABLE `random_spawn_loc` (
`groupId` tinyint(3) unsigned NOT NULL,
`x` mediumint(6) NOT NULL,
`y` mediumint(6) NOT NULL,
`z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`groupId`,`x`,`y`,`z`,`heading`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
INSERT INTO `random_spawn_loc` VALUES
-- Aged ExAdventurer quest
(136,89856,-7248,-3034,0),
(136,79232,-5904,-2864,0),
(136,77584,-1120,-3626,0),
(136,96640,-1296,-3648,0),
(136,94416,-10256,-3245,0),
-- Guards on kamael island
(137,-73271,53065,-3696,59621),
(137,-77006,45317,-2752,19656),
(137,-77375,44929,-2720,13828),
(137,-80400,40591,-2824,39386),
(137,-81005,39627,-2840,30125),
(137,-82545,55187,-2848,5047),
(137,-83304,58078,-2768,44634),
(137,-83539,45978,-2832,1972),
(137,-84169,39571,-2448,34277),
(137,-92675,56763,-2840,18707),
(137,-92931,55027,-2592,63304),
(138,-103659,50494,-2000,40765),
(138,-107335,48421,-1416,25399),
(138,-107347,47372,-1464,59666),
(138,-107788,45439,-1584,28523),
(138,-109520,47211,-1288,44919),
(138,-109520,48888,-1208,49863),
(139,-116128,50592,-696,16859),
(139,-116225,50135,-744,10002),
(139,-116556,50016,-808,5365),
(139,-116619,49487,-872,21965),
(139,-117008,50954,-728,55329),
(139,-117055,49577,-896,3880),
(139,-117080,49690,-880,63806),
(139,-117606,49650,-920,17813),
(139,-117779,50125,-920,47382),
(139,-118000,50105,-968,27540),
(139,-118097,49912,-936,11260),
(139,-120378,37949,1408,4430),
(140,-121910,61003,-2368,64230),
(140,-122440,55179,-1608,56123),
(140,-122475,54840,-1560,5826),
(140,-122928,43524,888,44634),
(140,-123215,44319,928,30481),
(140,-123401,61164,-2656,47517),
(140,-123800,60127,-2632,56043),
(140,-123943,60348,-2632,22373),
(141,-124298,74848,-2800,35875),
(141,-124355,71875,-2800,58069),
(141,-124356,77403,-3392,58154),
(141,-124608,74480,-2704,57957),
(141,-126495,61819,-2704,33561);

View File

@@ -0,0 +1,8 @@
DROP TABLE IF EXISTS `residence_functions`;
CREATE TABLE IF NOT EXISTS `residence_functions` (
`id` int NOT NULL ,
`level` int NOT NULL ,
`expiration` bigint NOT NULL ,
`residenceId` int NOT NULL ,
PRIMARY KEY (`id`, `level`, `residenceId`)
);

View File

@@ -1,29 +0,0 @@
-- schedule_config format: Time to add from the last siege in this format DD;MM;YY;HH;mm
-- DD = Days to add to the current date for next siege
-- MM = Month to add to the current date for the next siege
-- YY = Years to add to the current date for the next siege
-- HH = Hour of the day when siege must start
-- mm = Minutes of the day when siege must start
-- Example for a siege each 7 days which starts at 12 o clock: 7;0;0;12;00
DROP TABLE IF EXISTS `siegable_clanhall`;
CREATE TABLE IF NOT EXISTS `siegable_clanhall` (
`clanHallId` int(10) NOT NULL DEFAULT '0',
`name` varchar(45) DEFAULT NULL,
`ownerId` int(10) DEFAULT NULL,
`desc` varchar(100) DEFAULT NULL,
`location` varchar(100) DEFAULT NULL,
`nextSiege` bigint(20) DEFAULT NULL,
`siegeLenght` int(10) DEFAULT NULL,
`schedule_config` varchar(20) DEFAULT NULL,
PRIMARY KEY (`clanHallId`),
KEY `ownerId` (`ownerId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
INSERT IGNORE INTO `siegable_clanhall` (`clanHallId`, `name`, `ownerId`, `desc`, `location`, `nextSiege`, `siegeLenght`, `schedule_config`) VALUES
(21, 'Fortress of Resistance', 0, 'Contestable Clan Hall', 'Dion', 0, 3600000, '14;0;0;12;00'),
(34, 'Devastated Castle', 0, 'Contestable Clan Hall', 'Aden', 0, 3600000, '14;0;0;12;00'),
(35, 'Bandit StrongHold', 0, 'Contestable Clan Hall', 'Oren', 0, 3600000, '14;0;0;12;00'),
(62, 'Rainbow Springs', 0, 'Contestable Clan Hall', 'Goddard', 0, 3600000, '14;0;0;12;00'),
(63, 'Beast Farm', 0, 'Contestable Clan Hall', 'Rune', 0, 3600000, '14;0;0;12;00'),
(64, 'Fortresss of the Dead', 0, 'Contestable Clan Hall', 'Rune', 0, 3600000, '14;0;0;12;00');

View File

@@ -1,10 +0,0 @@
DROP TABLE IF EXISTS `siegable_hall_flagwar_attackers`;
CREATE TABLE IF NOT EXISTS `siegable_hall_flagwar_attackers` (
`hall_id` tinyint(2) unsigned NOT NULL DEFAULT '0',
`flag` int(10) unsigned NOT NULL DEFAULT '0',
`npc` int(10) unsigned NOT NULL DEFAULT '0',
`clan_id` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`flag`),
KEY `hall_id` (`hall_id`),
KEY `clan_id` (`clan_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

View File

@@ -1,9 +0,0 @@
DROP TABLE IF EXISTS `siegable_hall_flagwar_attackers_members`;
CREATE TABLE IF NOT EXISTS `siegable_hall_flagwar_attackers_members` (
`hall_id` tinyint(2) unsigned NOT NULL DEFAULT '0',
`clan_id` int(10) unsigned NOT NULL DEFAULT '0',
`object_id` int(10) unsigned NOT NULL DEFAULT '0',
KEY `hall_id` (`hall_id`),
KEY `clan_id` (`clan_id`),
KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff