diff options
author | Blaymoira <none@none> | 2008-12-27 22:46:01 +0100 |
---|---|---|
committer | Blaymoira <none@none> | 2008-12-27 22:46:01 +0100 |
commit | 27f770a40a72cb1d4e269a142e854e921c88e2bc (patch) | |
tree | 7b284e4a9554c6e3e392f58d7a9a182dd0e582aa | |
parent | 536879150daec567a582cfeb1f125f733fc9d5bc (diff) |
*Support for quest 1144 - by guenex
*Changed in midnight - by Anubisss
--HG--
branch : trunk
-rw-r--r-- | sql/updates/686_world_scripts.sql | 16 | ||||
-rw-r--r-- | src/bindings/scripts/Makefile.am | 1 | ||||
-rw-r--r-- | src/bindings/scripts/ScriptMgr.cpp | 6 | ||||
-rw-r--r-- | src/bindings/scripts/VC71/71ScriptDev2.vcproj | 4 | ||||
-rw-r--r-- | src/bindings/scripts/VC80/80ScriptDev2.vcproj | 4 | ||||
-rw-r--r-- | src/bindings/scripts/VC90/90ScriptDev2.vcproj | 4 | ||||
-rw-r--r-- | src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp | 1 |
7 files changed, 36 insertions, 0 deletions
diff --git a/sql/updates/686_world_scripts.sql b/sql/updates/686_world_scripts.sql new file mode 100644 index 00000000000..b09691841b8 --- /dev/null +++ b/sql/updates/686_world_scripts.sql @@ -0,0 +1,16 @@ +UPDATE `quest_template` SET `SpecialFlags` = 2 WHERE `entry` = 1144; +UPDATE `creature_template` SET `Scriptname`='npc_willix' WHERE entry=4508; + +DELETE FROM script_texts WHERE entry BETWEEN -1047000 and -1047010; +INSERT INTO script_texts (entry, content_default, sound, type, language, comment) VALUES +(-1047000, 'Phew! Finally,out here. However, it will not become easy. Detain your eyes after annoyance.', 0, 0, 0, 'Willix'), +(-1047001, 'There on top resides Charlga Razorflank. The damned old Crone.', 0, 0, 0, 'Willix'), +(-1047002, 'Help! Get this Raging Agam\'ar from me!', 0, 0, 0, 'Willix'), +(-1047003, 'In this ditch there are Blueleaf Tuber! As if the gold waited only to be dug out, I say it you!', 0, 0, 0, 'Willix'), +(-1047004, 'Danger is behind every corner.', 0, 0, 0, 'Willix'), +(-1047005, 'I do not understand how these disgusting animals can live at such a place.... puh as this stinks!', 0, 0, 0, 'Willix'), +(-1047006, 'I think, I see a way how we come out of this damned thorn tangle.', 0, 0, 0, 'Willix'), +(-1047007, 'I am glad that we are out again from this damned ditch. However, up here it is not much better!', 0, 0, 0, 'Willix'), +(-1047008, 'Finally! I am glad that I come, finally out here.', 0, 0, 0, 'Willix'), +(-1047009, 'I will rather rest a moment and come again to breath, before I return to Ratchet.', 0, 0, 0, 'Willix'), +(-1047010, 'Many thanks for your help.', 0, 0, 0, 'Willix');
\ No newline at end of file diff --git a/src/bindings/scripts/Makefile.am b/src/bindings/scripts/Makefile.am index 7086664d0ac..94a01ac23af 100644 --- a/src/bindings/scripts/Makefile.am +++ b/src/bindings/scripts/Makefile.am @@ -275,6 +275,7 @@ scripts/zone/netherstorm/netherstorm.cpp \ scripts/zone/onyxias_lair/boss_onyxia.cpp \ scripts/zone/orgrimmar/orgrimmar.cpp \ scripts/zone/razorfen_downs/boss_amnennar_the_coldbringer.cpp \ +scripts/zone/razorfen_kraul/razorfen_kraul.cpp \ scripts/zone/ruins_of_ahnqiraj/boss_ayamiss.cpp \ scripts/zone/ruins_of_ahnqiraj/boss_buru.cpp \ scripts/zone/ruins_of_ahnqiraj/boss_kurinnaxx.cpp \ diff --git a/src/bindings/scripts/ScriptMgr.cpp b/src/bindings/scripts/ScriptMgr.cpp index 3b29f9ddf8f..49a1dc79cc8 100644 --- a/src/bindings/scripts/ScriptMgr.cpp +++ b/src/bindings/scripts/ScriptMgr.cpp @@ -410,6 +410,9 @@ extern void AddSC_orgrimmar(); //Razorfen Downs extern void AddSC_boss_amnennar_the_coldbringer(); +//Razorfen Kraul +extern void AddSC_razorfen_kraul(); + //Redridge Mountains //Ruins of Ahn'Qiraj //Scarlet Monastery @@ -1608,6 +1611,9 @@ void ScriptsInit() //Razorfen Downs AddSC_boss_amnennar_the_coldbringer(); + //Razorfen Kraul + AddSC_razorfen_kraul(); + //Redridge Mountains //Ruins of Ahn'Qiraj //Scarlet Monastery diff --git a/src/bindings/scripts/VC71/71ScriptDev2.vcproj b/src/bindings/scripts/VC71/71ScriptDev2.vcproj index d0cd6592152..5d8da080d66 100644 --- a/src/bindings/scripts/VC71/71ScriptDev2.vcproj +++ b/src/bindings/scripts/VC71/71ScriptDev2.vcproj @@ -532,6 +532,10 @@ <Filter Name="Razorfen Kraul" > + <File + RelativePath="..\scripts\zone\razorfen_kraul\razorfen_kraul.cpp" + > + </File> </Filter> <Filter Name="Redridge Mountains" diff --git a/src/bindings/scripts/VC80/80ScriptDev2.vcproj b/src/bindings/scripts/VC80/80ScriptDev2.vcproj index d82a8bf0087..60b74c03320 100644 --- a/src/bindings/scripts/VC80/80ScriptDev2.vcproj +++ b/src/bindings/scripts/VC80/80ScriptDev2.vcproj @@ -709,6 +709,10 @@ <Filter Name="Razorfen Kraul" > + <File + RelativePath="..\scripts\zone\razorfen_kraul\razorfen_kraul.cpp" + > + </File> </Filter> <Filter Name="Redridge Mountains" diff --git a/src/bindings/scripts/VC90/90ScriptDev2.vcproj b/src/bindings/scripts/VC90/90ScriptDev2.vcproj index 49debbd79bf..9c8c7da5a93 100644 --- a/src/bindings/scripts/VC90/90ScriptDev2.vcproj +++ b/src/bindings/scripts/VC90/90ScriptDev2.vcproj @@ -702,6 +702,10 @@ <Filter Name="Razorfen Kraul" > + <File + RelativePath="..\scripts\zone\razorfen_kraul\razorfen_kraul.cpp" + > + </File> </Filter> <Filter Name="Redridge Mountains" diff --git a/src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp b/src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp index 9e390e6bb21..30e8a49b84a 100644 --- a/src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp +++ b/src/bindings/scripts/scripts/zone/karazhan/boss_midnight.cpp @@ -58,6 +58,7 @@ struct TRINITY_DLL_DECL boss_midnightAI : public ScriptedAI Attumen = 0; Mount_Timer = 0; + m_creature->RemoveFlag(UNIT_FIELD_FLAGS, UNIT_FLAG_NON_ATTACKABLE); m_creature->SetVisibility(VISIBILITY_ON); } |