mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-19 10:23:50 +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
115
assets/sql/base/locales_quest.sql
Normal file
115
assets/sql/base/locales_quest.sql
Normal file
|
|
@ -0,0 +1,115 @@
|
|||
/*!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 `locales_quest`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `locales_quest`
|
||||
(
|
||||
`Id` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`Title_loc1` text,
|
||||
`Title_loc2` text,
|
||||
`Title_loc3` text,
|
||||
`Title_loc4` text,
|
||||
`Title_loc5` text,
|
||||
`Title_loc6` text,
|
||||
`Title_loc7` text,
|
||||
`Title_loc8` text,
|
||||
`Details_loc1` text,
|
||||
`Details_loc2` text,
|
||||
`Details_loc3` text,
|
||||
`Details_loc4` text,
|
||||
`Details_loc5` text,
|
||||
`Details_loc6` text,
|
||||
`Details_loc7` text,
|
||||
`Details_loc8` text,
|
||||
`Objectives_loc1` text,
|
||||
`Objectives_loc2` text,
|
||||
`Objectives_loc3` text,
|
||||
`Objectives_loc4` text,
|
||||
`Objectives_loc5` text,
|
||||
`Objectives_loc6` text,
|
||||
`Objectives_loc7` text,
|
||||
`Objectives_loc8` text,
|
||||
`OfferRewardText_loc1` text,
|
||||
`OfferRewardText_loc2` text,
|
||||
`OfferRewardText_loc3` text,
|
||||
`OfferRewardText_loc4` text,
|
||||
`OfferRewardText_loc5` text,
|
||||
`OfferRewardText_loc6` text,
|
||||
`OfferRewardText_loc7` text,
|
||||
`OfferRewardText_loc8` text,
|
||||
`RequestItemsText_loc1` text,
|
||||
`RequestItemsText_loc2` text,
|
||||
`RequestItemsText_loc3` text,
|
||||
`RequestItemsText_loc4` text,
|
||||
`RequestItemsText_loc5` text,
|
||||
`RequestItemsText_loc6` text,
|
||||
`RequestItemsText_loc7` text,
|
||||
`RequestItemsText_loc8` text,
|
||||
`EndText_loc1` text,
|
||||
`EndText_loc2` text,
|
||||
`EndText_loc3` text,
|
||||
`EndText_loc4` text,
|
||||
`EndText_loc5` text,
|
||||
`EndText_loc6` text,
|
||||
`EndText_loc7` text,
|
||||
`EndText_loc8` text,
|
||||
`CompletedText_loc1` text,
|
||||
`CompletedText_loc2` text,
|
||||
`CompletedText_loc3` text,
|
||||
`CompletedText_loc4` text,
|
||||
`CompletedText_loc5` text,
|
||||
`CompletedText_loc6` text,
|
||||
`CompletedText_loc7` text,
|
||||
`CompletedText_loc8` text,
|
||||
`ObjectiveText1_loc1` text,
|
||||
`ObjectiveText1_loc2` text,
|
||||
`ObjectiveText1_loc3` text,
|
||||
`ObjectiveText1_loc4` text,
|
||||
`ObjectiveText1_loc5` text,
|
||||
`ObjectiveText1_loc6` text,
|
||||
`ObjectiveText1_loc7` text,
|
||||
`ObjectiveText1_loc8` text,
|
||||
`ObjectiveText2_loc1` text,
|
||||
`ObjectiveText2_loc2` text,
|
||||
`ObjectiveText2_loc3` text,
|
||||
`ObjectiveText2_loc4` text,
|
||||
`ObjectiveText2_loc5` text,
|
||||
`ObjectiveText2_loc6` text,
|
||||
`ObjectiveText2_loc7` text,
|
||||
`ObjectiveText2_loc8` text,
|
||||
`ObjectiveText3_loc1` text,
|
||||
`ObjectiveText3_loc2` text,
|
||||
`ObjectiveText3_loc3` text,
|
||||
`ObjectiveText3_loc4` text,
|
||||
`ObjectiveText3_loc5` text,
|
||||
`ObjectiveText3_loc6` text,
|
||||
`ObjectiveText3_loc7` text,
|
||||
`ObjectiveText3_loc8` text,
|
||||
`ObjectiveText4_loc1` text,
|
||||
`ObjectiveText4_loc2` text,
|
||||
`ObjectiveText4_loc3` text,
|
||||
`ObjectiveText4_loc4` text,
|
||||
`ObjectiveText4_loc5` text,
|
||||
`ObjectiveText4_loc6` text,
|
||||
`ObjectiveText4_loc7` text,
|
||||
`ObjectiveText4_loc8` text,
|
||||
PRIMARY KEY (`Id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `locales_quest` WRITE;
|
||||
/*!40000 ALTER TABLE `locales_quest` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `locales_quest` 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