From d5115ca68729782679a1e185ca79402092991dc8 Mon Sep 17 00:00:00 2001 From: Shauren Date: Fri, 3 Sep 2010 20:11:14 +0200 Subject: Core/Dungeon Finder: Added support for rewards for random dungeons Core/Quests: Simplified rewarding money from quests, now ModifyMoney and UpdateAchievementCriteria are called only once per quest Core/Achievements: Implemented ACHIEVEMENT_CRITERIA_TYPE_USE_LFD_TO_GROUP_WITH_PLAYERS --HG-- branch : trunk --- sql/base/world_database.sql | 48 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) (limited to 'sql/base/world_database.sql') diff --git a/sql/base/world_database.sql b/sql/base/world_database.sql index f74f8bbbcab..d5fe2a57039 100644 --- a/sql/base/world_database.sql +++ b/sql/base/world_database.sql @@ -592,6 +592,8 @@ INSERT INTO `command` VALUES ('reload item_enchantment_template',3,'Syntax: .reload item_enchantment_template\nReload item_enchantment_template table.'), ('reload item_loot_template',3,'Syntax: .reload item_loot_template\nReload item_loot_template table.'), ('reload item_set_names',3,'Syntax: .reload item_set_names\nReload item_set_names table.'), +('reload lfg_dungeon_encounters',3,'Syntax: .reload lfg_dungeon_encounters\nReload lfg_dungeon_encounters table.'), +('reload lfg_dungeon_rewards',3,'Syntax: .reload lfg_dungeon_rewards\nReload lfg_dungeon_rewards table.'), ('reload locales_creature',3,'Syntax: .reload locales_creature\nReload locales_creature table.'), ('reload locales_gameobject',3,'Syntax: .reload locales_gameobject\nReload locales_gameobject table.'), ('reload locales_gossip_menu_option',3, 'Syntax: .reload locales_gossip_menu_option\nReload locales_gossip_menu_option table.'), @@ -3090,6 +3092,52 @@ LOCK TABLES `item_template` WRITE; /*!40000 ALTER TABLE `item_template` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `lfg_dungeon_encounters` +-- + +DROP TABLE IF EXISTS `lfg_dungeon_encounters`; +CREATE TABLE `lfg_dungeon_encounters` ( + `achievementId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Achievement marking final boss completion', + `dungeonId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Dungeon entry from dbc', + PRIMARY KEY (`achievementId`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Dumping data for table `lfg_dungeon_encounters` +-- + +LOCK TABLES `lfg_dungeon_encounters` WRITE; +/*!40000 ALTER TABLE `lfg_dungeon_encounters` DISABLE KEYS */; +/*!40000 ALTER TABLE `lfg_dungeon_encounters` ENABLE KEYS */; +UNLOCK TABLES; + +-- +-- Table structure for table `lfg_dungeon_rewards` +-- + +DROP TABLE IF EXISTS `lfg_dungeon_rewards`; +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', + `firstMoneyVar` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Money multiplier for completing the dungeon first time in a day with less players than max', + `firstXPVar` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Experience multiplier for completing the dungeon first time in a day with less players than max', + `otherQuestId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Quest id with rewards for Nth dungeon this day', + `otherMoneyVar` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Money multiplier for completing the dungeon Nth time in a day with less players than max', + `otherXPVar` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Experience multiplier for completing the dungeon Nth time in a day with less players than max', + PRIMARY KEY (`dungeonId`,`maxLevel`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Dumping data for table `lfg_dungeon_rewards` +-- + +LOCK TABLES `lfg_dungeon_rewards` WRITE; +/*!40000 ALTER TABLE `lfg_dungeon_rewards` DISABLE KEYS */; +/*!40000 ALTER TABLE `lfg_dungeon_rewards` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `locales_achievement_reward` -- -- cgit v1.2.3