mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-03-23 07:40:14 +00:00
Load single-player NPC spawns from local AzerothCore SQL assets
This commit is contained in:
parent
5f519e77e3
commit
ae37e5592e
164 changed files with 1862344 additions and 60 deletions
89
assets/sql/base/areatrigger_involvedrelation.sql
Normal file
89
assets/sql/base/areatrigger_involvedrelation.sql
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
DROP TABLE IF EXISTS `areatrigger_involvedrelation`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `areatrigger_involvedrelation`
|
||||
(
|
||||
`id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier',
|
||||
`quest` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest Identifier',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Trigger System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `areatrigger_involvedrelation` WRITE;
|
||||
/*!40000 ALTER TABLE `areatrigger_involvedrelation` DISABLE KEYS */;
|
||||
INSERT INTO `areatrigger_involvedrelation` VALUES
|
||||
(78,155),
|
||||
(87,76),
|
||||
(88,62),
|
||||
(98,201),
|
||||
(169,287),
|
||||
(171,273),
|
||||
(173,437),
|
||||
(175,455),
|
||||
(178,503),
|
||||
(196,578),
|
||||
(216,870),
|
||||
(225,944),
|
||||
(230,954),
|
||||
(231,984),
|
||||
(232,984),
|
||||
(235,984),
|
||||
(246,1149),
|
||||
(302,1265),
|
||||
(362,1448),
|
||||
(482,1699),
|
||||
(522,1719),
|
||||
(822,2240),
|
||||
(1205,2989),
|
||||
(1388,3505),
|
||||
(2207,5156),
|
||||
(2327,4842),
|
||||
(2486,4811),
|
||||
(2726,6185),
|
||||
(2926,25),
|
||||
(2946,6421),
|
||||
(3367,6025),
|
||||
(3986,8286),
|
||||
(3991,1658),
|
||||
(4064,9160),
|
||||
(4071,9193),
|
||||
(4170,9400),
|
||||
(4200,9607),
|
||||
(4201,9608),
|
||||
(4280,9700),
|
||||
(4291,9701),
|
||||
(4293,9716),
|
||||
(4298,9731),
|
||||
(4300,9752),
|
||||
(4301,9786),
|
||||
(4473,10269),
|
||||
(4475,10275),
|
||||
(4581,10750),
|
||||
(4588,10772),
|
||||
(4899,11890),
|
||||
(4950,12036),
|
||||
(4963,11652),
|
||||
(4986,12263),
|
||||
(5003,12506),
|
||||
(5030,12575),
|
||||
(5052,12665),
|
||||
(5400,13607),
|
||||
(5703,24656),
|
||||
(5704,24656),
|
||||
(5705,24541),
|
||||
(5706,24541);
|
||||
/*!40000 ALTER TABLE `areatrigger_involvedrelation` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue