mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
Merge remote-tracking branch 'origin/master' into mmaps
This commit is contained in:
@@ -45,6 +45,7 @@ EndContentData */
|
||||
#include "ScriptedGossip.h"
|
||||
#include "ScriptedEscortAI.h"
|
||||
#include "Group.h"
|
||||
#include "SpellScript.h"
|
||||
|
||||
/*#####
|
||||
# mob_mature_netherwing_drake
|
||||
@@ -1868,9 +1869,41 @@ public:
|
||||
};
|
||||
};
|
||||
|
||||
/*#####
|
||||
#
|
||||
######*/
|
||||
enum ZuluhedChains
|
||||
{
|
||||
QUEST_ZULUHED = 10866,
|
||||
NPC_KARYNAKU = 22112,
|
||||
};
|
||||
|
||||
class spell_unlocking_zuluheds_chains : public SpellScriptLoader
|
||||
{
|
||||
public:
|
||||
spell_unlocking_zuluheds_chains() : SpellScriptLoader("spell_unlocking_zuluheds_chains") { }
|
||||
|
||||
class spell_unlocking_zuluheds_chains_SpellScript : public SpellScript
|
||||
{
|
||||
PrepareSpellScript(spell_unlocking_zuluheds_chains_SpellScript);
|
||||
|
||||
void HandleOnCast()
|
||||
{
|
||||
// FIXME: Hackish solution, a better way to reward killcredit should be found
|
||||
if (Unit* caster = GetCaster())
|
||||
if(Player* player = caster->ToPlayer())
|
||||
if (player->GetQuestStatus(QUEST_ZULUHED) == QUEST_STATUS_INCOMPLETE)
|
||||
player->CastedCreatureOrGO(NPC_KARYNAKU, MAKE_NEW_GUID(0, NPC_KARYNAKU, HIGHGUID_UNIT), 0);
|
||||
}
|
||||
|
||||
void Register()
|
||||
{
|
||||
OnCast += SpellCastFn(spell_unlocking_zuluheds_chains_SpellScript::HandleOnCast);
|
||||
}
|
||||
};
|
||||
|
||||
SpellScript* GetSpellScript() const
|
||||
{
|
||||
return new spell_unlocking_zuluheds_chains_SpellScript();
|
||||
}
|
||||
};
|
||||
|
||||
void AddSC_shadowmoon_valley()
|
||||
{
|
||||
@@ -1889,4 +1922,5 @@ void AddSC_shadowmoon_valley()
|
||||
new mob_illidari_spawn();
|
||||
new mob_torloth_the_magnificent();
|
||||
new npc_enraged_spirit();
|
||||
new spell_unlocking_zuluheds_chains();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user