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