[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,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;