[Classic] Addition/Removal of NPC XMLs.
This commit is contained in:
9
trunk/dist/tools/sql/classic/random_spawn_loc.sql
vendored
Normal file
9
trunk/dist/tools/sql/classic/random_spawn_loc.sql
vendored
Normal 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;
|
Reference in New Issue
Block a user