[Classic] Addition/Removal of NPC XMLs.

This commit is contained in:
MobiusDev
2015-05-02 16:41:56 +00:00
parent 739a4cf6cb
commit e6a5cf87a1
405 changed files with 7707 additions and 416803 deletions

View File

@ -0,0 +1,19 @@
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)
(29020, 116033, 17447, 10107, -25348, 4068372, 39960), -- Baium (75)
(29068, 185708, 114298, -8221,32768, 62802301, 1998000); -- Antharas Strong (85)

View File

@ -0,0 +1,12 @@
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;

View File

@ -0,0 +1,9 @@
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;

File diff suppressed because it is too large Load Diff