mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-17 09:33:51 +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
46
assets/sql/base/lfg_dungeon_rewards.sql
Normal file
46
assets/sql/base/lfg_dungeon_rewards.sql
Normal file
|
|
@ -0,0 +1,46 @@
|
|||
/*!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 `lfg_dungeon_rewards`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `lfg_dungeon_rewards`
|
||||
(
|
||||
`dungeonId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Dungeon entry from dbc',
|
||||
`maxLevel` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT 'Max level at which this reward is rewarded',
|
||||
`firstQuestId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest id with rewards for first dungeon this day',
|
||||
`otherQuestId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest id with rewards for Nth dungeon this day',
|
||||
PRIMARY KEY (`dungeonId`,`maxLevel`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `lfg_dungeon_rewards` WRITE;
|
||||
/*!40000 ALTER TABLE `lfg_dungeon_rewards` DISABLE KEYS */;
|
||||
INSERT INTO `lfg_dungeon_rewards` VALUES
|
||||
(258,15,24881,24889),
|
||||
(258,25,24882,24890),
|
||||
(258,34,24883,24891),
|
||||
(258,45,24884,24892),
|
||||
(258,55,24885,24893),
|
||||
(258,60,24886,24894),
|
||||
(259,64,24887,24895),
|
||||
(259,70,24888,24896),
|
||||
(260,70,24922,24923),
|
||||
(261,80,24790,24791),
|
||||
(262,80,24788,24789),
|
||||
(285,80,25482,0),
|
||||
(286,80,25484,0),
|
||||
(287,80,25483,0),
|
||||
(288,80,25485,0);
|
||||
/*!40000 ALTER TABLE `lfg_dungeon_rewards` 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