diff options
| author | Malcrom <malcromdev@gmail.com> | 2013-06-13 00:50:21 -0230 |
|---|---|---|
| committer | Malcrom <malcromdev@gmail.com> | 2013-06-13 00:50:21 -0230 |
| commit | 4065a8509f389d3b5d89d44cab5298ccde534a3d (patch) | |
| tree | 03aa5ab139c2c3ea51c0cc368aa0f5fed7069890 /sql | |
| parent | 2f771d4950fd551eeca7d91a49c2dfd7fd48ec6f (diff) | |
Script: Add scripting for Quest A Blade Fit For A Champion
Still need pooled spawning for entry 33224. Aokromes has info if someone wants to do it.
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2013_06_13_00_world_misc.sql | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sql/updates/world/2013_06_13_00_world_misc.sql b/sql/updates/world/2013_06_13_00_world_misc.sql new file mode 100644 index 00000000000..09e3a3cb92b --- /dev/null +++ b/sql/updates/world/2013_06_13_00_world_misc.sql @@ -0,0 +1,15 @@ +-- Updates for Quest A Blade Fit For A Champion + +UPDATE `creature_template` SET `ScriptName`= 'npc_lake_frog' WHERE `entry` IN (33211,33224); +UPDATE `creature_template` SET `npcflag`=1 WHERE `entry` IN (33224); + +-- Add option conditions for gossip +DELETE FROM `conditions` WHERE `SourceTypeOrReferenceId` IN (15) AND `SourceGroup` IN (10316); +INSERT INTO `conditions` (`SourceTypeOrReferenceId`,`SourceGroup`,`SourceEntry`,`ElseGroup`,`ConditionTypeOrReference`,`ConditionValue1`,`ConditionValue2`,`ConditionValue3`,`NegativeCondition`,`ErrorTextId`,`ScriptName`,`Comment`) VALUES +(15,10316,0,0,2,44981,1,1,1,0,'','Maiden of Ashwood Lake - Show gossip option if player does not have Ashwood Brand'); + +-- NPC talk text insert from sniff +DELETE FROM `creature_text` WHERE `entry`=33220; +INSERT INTO `creature_text` (`entry`,`groupid`,`id`,`text`,`type`,`language`,`probability`,`emote`,`duration`,`sound`,`comment`) VALUES +(33220,0,0, 'Can it really be? Free after all these years?',12,0,100,1,0,0, 'Maiden of Ashwood Lake'), +(33220,1,0, 'And now, I must return to the waters of the lake.',12,0,100,2,0,0, 'Maiden of Ashwood Lake'); |
