Sync with L2jServer HighFive Oct 22nd 2015.
This commit is contained in:
@ -11,4 +11,4 @@ CREATE TABLE IF NOT EXISTS `announcements` (
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||
|
||||
INSERT INTO announcements (`type`, `author`, `content`) VALUES
|
||||
(0, 'Mobius', 'Powered by L2J-Mobius');
|
||||
(0, 'Mobius', 'Server powered by L2J-Mobius project.');
|
@ -1,6 +1,6 @@
|
||||
DROP TABLE IF EXISTS `custom_npc_buffer`;
|
||||
CREATE TABLE IF NOT EXISTS `custom_npc_buffer` (
|
||||
`npc_id` mediumint(7) NOT NULL,
|
||||
`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',
|
||||
|
@ -2,8 +2,8 @@ DROP TABLE IF EXISTS `custom_spawnlist`;
|
||||
CREATE TABLE IF NOT EXISTS `custom_spawnlist` (
|
||||
`location` varchar(40) NOT NULL DEFAULT '',
|
||||
`count` tinyint(1) unsigned NOT NULL DEFAULT '0',
|
||||
`npc_templateid` mediumint(7) unsigned NOT NULL DEFAULT '0',
|
||||
`locx` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`npc_templateid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`locx` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`locy` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`locz` mediumint(6) NOT NULL DEFAULT '0',
|
||||
`randomx` mediumint(6) NOT NULL DEFAULT '0',
|
||||
|
@ -331,9 +331,9 @@ INSERT IGNORE INTO `raidboss_spawnlist` (`boss_id`,`loc_x`,`loc_y`,`loc_z`,`head
|
||||
-- (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,152316,110439,-5520,36811,129600,86400,6165648,20499), -- Drake Lord (85)
|
||||
(25726,145734,120031,-3912,45303,129600,86400,6165648,20499), -- Behemoth Leader (85)
|
||||
(25727,148482,117859,-3712,36584,129600,86400,6165648,20499); -- Dragon Beast (85)
|
||||
(25725,152260,110394,-5552,0,129600,86400,6165648,20499), -- Drake Lord (85)
|
||||
(25726,145788,120118,-3912,32768,129600,86400,6165648,20499), -- Behemoth Leader (85)
|
||||
(25727,148241,117965,-3712,0,129600,86400,6165648,20499); -- Dragon Beast (85)
|
||||
|
||||
-- Removed
|
||||
DELETE FROM `raidboss_spawnlist` WHERE (boss_id = 25118); -- Guilotine, Warden Of The Execution Grounds
|
||||
|
Reference in New Issue
Block a user