mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-04-17 01:23: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
79
assets/sql/base/milling_loot_template.sql
Normal file
79
assets/sql/base/milling_loot_template.sql
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
/*!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 `milling_loot_template`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `milling_loot_template`
|
||||
(
|
||||
`entry` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`item` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`ChanceOrQuestChance` float NOT NULL DEFAULT '100',
|
||||
`lootmode` smallint(5) unsigned NOT NULL DEFAULT '1',
|
||||
`groupid` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`mincountOrRef` mediumint(8) NOT NULL DEFAULT '1',
|
||||
`maxcount` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
PRIMARY KEY (`entry`,`item`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Loot System';
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
LOCK TABLES `milling_loot_template` WRITE;
|
||||
/*!40000 ALTER TABLE `milling_loot_template` DISABLE KEYS */;
|
||||
INSERT INTO `milling_loot_template` VALUES
|
||||
(765,11900,100,1,0,-11900,1),
|
||||
(785,11901,100,1,0,-11901,1),
|
||||
(2447,11900,100,1,0,-11900,1),
|
||||
(2449,11900,100,1,0,-11900,1),
|
||||
(2450,11902,100,1,0,-11902,1),
|
||||
(2452,11902,100,1,0,-11902,1),
|
||||
(2453,11903,100,1,0,-11903,1),
|
||||
(3355,11904,100,1,0,-11904,1),
|
||||
(3356,11905,100,1,0,-11905,1),
|
||||
(3357,11905,100,1,0,-11905,1),
|
||||
(3358,11907,100,1,0,-11907,1),
|
||||
(3369,11904,100,1,0,-11904,1),
|
||||
(3818,11906,100,1,0,-11906,1),
|
||||
(3819,11907,100,1,0,-11907,1),
|
||||
(3820,11903,100,1,0,-11903,1),
|
||||
(3821,11906,100,1,0,-11906,1),
|
||||
(4625,11908,100,1,0,-11908,1),
|
||||
(8831,11908,100,1,0,-11908,1),
|
||||
(8836,11908,100,1,0,-11908,1),
|
||||
(8838,11908,100,1,0,-11908,1),
|
||||
(8839,11909,100,1,0,-11909,1),
|
||||
(8845,11909,100,1,0,-11909,1),
|
||||
(8846,11909,100,1,0,-11909,1),
|
||||
(13463,11910,100,1,0,-11910,1),
|
||||
(13464,11910,100,1,0,-11910,1),
|
||||
(13465,11911,100,1,0,-11911,1),
|
||||
(13466,11911,100,1,0,-11911,1),
|
||||
(13467,11911,100,1,0,-11911,1),
|
||||
(22785,11913,100,1,0,-11913,1),
|
||||
(22786,11912,100,1,0,-11912,1),
|
||||
(22787,11912,100,1,0,-11912,1),
|
||||
(22789,11912,100,1,0,-11912,1),
|
||||
(22790,11914,100,1,0,-11914,1),
|
||||
(22791,11914,100,1,0,-11914,1),
|
||||
(22792,11914,100,1,0,-11914,1),
|
||||
(22793,11914,100,1,0,-11914,1),
|
||||
(36901,11916,100,1,0,-11916,1),
|
||||
(36903,11918,100,1,0,-11918,1),
|
||||
(36904,11916,100,1,0,-11916,1),
|
||||
(36905,11917,100,1,0,-11917,1),
|
||||
(36906,11917,100,1,0,-11917,1),
|
||||
(36907,11915,100,1,0,-11915,1),
|
||||
(37921,11916,100,1,0,-11916,1),
|
||||
(39969,11915,100,1,0,-11915,1),
|
||||
(39970,11915,100,1,0,-11915,1);
|
||||
/*!40000 ALTER TABLE `milling_loot_template` 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