* move archived files into old dir * auth * characters * world * mistake * revert some stuff * Squash time! * newline
86 lines
4.9 KiB
SQL
86 lines
4.9 KiB
SQL
-- --------------------------------------------------------
|
|
-- Host: 127.0.0.1
|
|
-- Server version: 8.1.0 - MySQL Community Server - GPL
|
|
-- Server OS: Win64
|
|
-- HeidiSQL Version: 12.3.0.6589
|
|
-- --------------------------------------------------------
|
|
|
|
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
|
/*!40101 SET NAMES utf8 */;
|
|
/*!50503 SET NAMES utf8mb4 */;
|
|
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
|
/*!40103 SET TIME_ZONE='+00:00' */;
|
|
/*!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 */;
|
|
|
|
-- Dumping structure for table acore_world.milling_loot_template
|
|
DROP TABLE IF EXISTS `milling_loot_template`;
|
|
CREATE TABLE IF NOT EXISTS `milling_loot_template` (
|
|
`Entry` int unsigned NOT NULL DEFAULT '0',
|
|
`Item` int unsigned NOT NULL DEFAULT '0',
|
|
`Reference` int NOT NULL DEFAULT '0',
|
|
`Chance` float NOT NULL DEFAULT '100',
|
|
`QuestRequired` tinyint NOT NULL DEFAULT '0',
|
|
`LootMode` smallint unsigned NOT NULL DEFAULT '1',
|
|
`GroupId` tinyint unsigned NOT NULL DEFAULT '0',
|
|
`MinCount` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`MaxCount` tinyint unsigned NOT NULL DEFAULT '1',
|
|
`Comment` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
PRIMARY KEY (`Entry`,`Item`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Loot System';
|
|
|
|
-- Dumping data for table acore_world.milling_loot_template: ~45 rows (approximately)
|
|
DELETE FROM `milling_loot_template`;
|
|
INSERT INTO `milling_loot_template` (`Entry`, `Item`, `Reference`, `Chance`, `QuestRequired`, `LootMode`, `GroupId`, `MinCount`, `MaxCount`, `Comment`) VALUES
|
|
(765, 11900, 11900, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(785, 11901, 11901, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(2447, 11900, 11900, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(2449, 11900, 11900, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(2450, 11902, 11902, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(2452, 11902, 11902, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(2453, 11903, 11903, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3355, 11904, 11904, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3356, 11905, 11905, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3357, 11905, 11905, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3358, 11907, 11907, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3369, 11904, 11904, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3818, 11906, 11906, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3819, 11907, 11907, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3820, 11903, 11903, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(3821, 11906, 11906, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(4625, 11908, 11908, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(8831, 11908, 11908, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(8836, 11908, 11908, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(8838, 11908, 11908, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(8839, 11909, 11909, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(8845, 11909, 11909, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(8846, 11909, 11909, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(13463, 11910, 11910, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(13464, 11910, 11910, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(13465, 11911, 11911, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(13466, 11911, 11911, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(13467, 11911, 11911, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(22785, 11913, 11913, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(22786, 11912, 11912, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(22787, 11912, 11912, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(22789, 11912, 11912, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(22790, 11914, 11914, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(22791, 11914, 11914, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(22792, 11914, 11914, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(22793, 11914, 11914, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(36901, 11916, 11916, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(36903, 11918, 11918, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(36904, 11916, 11916, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(36905, 11917, 11917, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(36906, 11917, 11917, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(36907, 11915, 11915, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(37921, 11916, 11916, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(39969, 11915, 11915, 100, 0, 1, 0, 1, 1, '(ReferenceTable)'),
|
|
(39970, 11915, 11915, 100, 0, 1, 0, 1, 1, '(ReferenceTable)');
|
|
|
|
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
|
|
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
|
|
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
|
|
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
|
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;
|