diff options
author | SnapperRy <snapperryen@gmail.com> | 2016-10-10 17:56:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-10 17:56:49 +0200 |
commit | 04618be4279560fd05c8f7ce48895560f2ff39de (patch) | |
tree | 4c2b4035b6839981d9ece5bd8291d23a18fc302a | |
parent | 0ecb8836e28c0bff5810281c05159a5def9ba1c3 (diff) |
DB/Misc:
- Quest Nessa Shadowsong and following steps are only available to Night Elves.
- Fix offer reward text for quest Elanaria.
- NPC Webwood Spider should be neutral.
- Small cosmetic fix for quest Force Commander Danath's end event.
- Prevent NPCs Gnarlpine Shaman and Elder Timberling from spamming healing spells.
-rw-r--r-- | sql/updates/world/3.3.5/2016_10_10_02_world_335.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/world/3.3.5/2016_10_10_02_world_335.sql b/sql/updates/world/3.3.5/2016_10_10_02_world_335.sql new file mode 100644 index 00000000000..58095f67c25 --- /dev/null +++ b/sql/updates/world/3.3.5/2016_10_10_02_world_335.sql @@ -0,0 +1,11 @@ +-- +UPDATE `quest_template` SET `AllowableRaces`=8 WHERE `ID` IN (6344, 6341, 6342, 6343); + +UPDATE `quest_offer_reward` SET `RewardText`="I bid you greetings, $N. Your name rings loudly in Darnassus, for you show promise. But we shall soon see if you possess the strength of will to follow the path of the $C." WHERE `ID`=1684; + +UPDATE `creature_template` SET `faction`=189 WHERE `entry`=1986; + +UPDATE `smart_scripts` SET `action_param2`=2 WHERE `entryorguid`=16819 AND `id`=1; + +UPDATE `smart_scripts` SET `event_param2`=30000, `event_param4`=30000 WHERE `entryorguid`=2030 AND `id`=2; +UPDATE `smart_scripts` SET `event_param2`=30000, `event_param4`=30000 WHERE `entryorguid`=2009 AND `id`=0; |