custom_spawnlist.sql 776 B

12345678910111213141516171819202122
  1. --
  2. -- Table structure for table `custom_spawnlist`
  3. --
  4. DROP TABLE IF EXISTS `custom_spawnlist`;
  5. CREATE TABLE `custom_spawnlist` (
  6. `id` int(11) NOT NULL auto_increment,
  7. `location` varchar(40) NOT NULL default '',
  8. `count` int(9) NOT NULL default '0',
  9. `npc_templateid` int(9) NOT NULL default '0',
  10. `locx` int(9) NOT NULL default '0',
  11. `locy` int(9) NOT NULL default '0',
  12. `locz` int(9) NOT NULL default '0',
  13. `randomx` int(9) NOT NULL default '0',
  14. `randomy` int(9) NOT NULL default '0',
  15. `heading` int(9) NOT NULL default '0',
  16. `respawn_delay` int(9) NOT NULL default '0',
  17. `loc_id` int(9) NOT NULL default '0',
  18. `periodOfDay` decimal(2,0) default '0',
  19. PRIMARY KEY (id),
  20. KEY `key_npc_templateid` (`npc_templateid`)
  21. ) ENGINE=MyISAM;