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