Corrected quest texts.

This commit is contained in:
Zyres
2018-04-24 19:14:21 +02:00
parent 83f7b7e828
commit a8dc2b730f
4 changed files with 107 additions and 96 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -8,7 +8,7 @@ CREATE TABLE IF NOT EXISTS `world_db_version` (
`id` smallint(6) NOT NULL AUTO_INCREMENT,
`LastUpdate` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1;
) ENGINE=InnoDB AUTO_INCREMENT=28 DEFAULT CHARSET=latin1;
DELETE FROM `world_db_version`;
/*!40000 ALTER TABLE `world_db_version` DISABLE KEYS */;
@@ -38,7 +38,8 @@ INSERT INTO `world_db_version` (`id`, `LastUpdate`) VALUES
(23, '1.3.40_quest_properties'),
(24, '1.3.41_kezan_initiale_data'),
(25, '1.3.42_missing_properties'),
(26, '1.3.43_build_transports');
(26, '1.3.43_build_transports'),
(27, '1.3.44_quest_text_fix');
/*!40000 ALTER TABLE `world_db_version` ENABLE KEYS */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;

View File

@@ -0,0 +1,11 @@
/*
Corrected quest texts from contribution
*/
UPDATE `quest_properties` SET `Details` = 'I\'ve actually nearly perfected my dream machine: The Skystrider! The world\'s first flying Mechanostrider! But, wel $B$BWhen I was putting the finishing touches on it in my secret cavern lab, my other creations became, er, jealous. Giving mechanical birds a personality to begin with was probably a bad idea, but that\'s already done.$B$BI need the Supermechanical Robo-Widget from the original Skystrider if I want to rebuild it! Please, journey into the cave and retrieve it for me!' WHERE `entry` = 27032;
UPDATE `quest_properties` SET `Objectives` = 'Bring 20 of the Minion\'s Scourgestone to Duke Nicholas Zverenhoff at the Light.' WHERE `entry` = 5510;
UPDATE `quest_properties` SET `IncompleteText` = 'The "Holly Preserver" machine looks like some sort of still at first, but a careful examination of it reveals some goblin-esque changes to it. Still, your skill at cooking seems to allow you to understand how the machine works.$B$BThere is already fresh holly in the machine - you simply need to provide some deeprock salt and five gold coins to get the machine working.' WHERE `entry` = 8763;
UPDATE `quest_properties` SET `IncompleteText` = 'This dirt has been recently disturbed.' WHERE `entry` = 11392;
UPDATE `quest_properties` SET `IncompleteText` = '$n, it is good to see you again. I\'m sure the children enjoy tales of your heroism.' WHERE `entry` = 11403;
INSERT INTO `world_db_version` VALUES ('27', '1.3.44_quest_text_fix');