TrinityCore
zone_blasted_lands.cpp
Go to the documentation of this file.
1/*
2 * This file is part of the TrinityCore Project. See AUTHORS file for Copyright information
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#include "ScriptMgr.h"
19#include "SpellScript.h"
20#include "Player.h"
21#include "Group.h"
22
23/*######
24## Quest 3628: You Are Rakh'likh, Demon
25######*/
26
28{
31};
32
33// 27686 - Teleport to Razelikh (GROUP)
35{
36 bool Validate(SpellInfo const* /*spell*/) override
37 {
39 }
40
41 void HandleScriptEffect(SpellEffIndex /* effIndex */)
42 {
43 if (Player* player = GetHitPlayer())
44 {
45 if (Group* group = player->GetGroup())
46 {
47 for (GroupReference* itr = group->GetFirstMember(); itr != nullptr; itr = itr->next())
48 if (Player* member = itr->GetSource())
49 if (member->IsWithinDistInMap(player, 20.0f) && !member->isDead())
50 member->CastSpell(member, SPELL_TELEPORT_SINGLE_IN_GROUP, true);
51 }
52 else
53 player->CastSpell(player, SPELL_TELEPORT_SINGLE, true);
54 }
55 }
56
57 void Register() override
58 {
60 }
61};
62
63/*######
64## Quests 36881 and 34398: Warlords of Draenor: The Dark Portal
65######*/
66
68{
70
72};
73
75{
76public:
77 player_teleport_to_tanaan() : PlayerScript("player_teleport_to_tanaan") { }
78
79 void OnMovieComplete(Player* player, uint32 movieId) override
80 {
81 if (movieId == MOVIE_INTO_THE_PORTAL)
82 player->CastSpell(player, SPELL_TELEPORT_TO_TANAAN, true);
83 }
84};
85
87{
90}
uint32_t uint32
Definition: Define.h:142
#define RegisterSpellScript(spell_script)
Definition: ScriptMgr.h:1369
SpellEffIndex
Definition: SharedDefines.h:29
@ EFFECT_0
Definition: SharedDefines.h:30
@ SPELL_EFFECT_SCRIPT_EFFECT
#define SpellEffectFn(F, I, N)
Definition: SpellScript.h:842
GroupReference * next()
Definition: Group.h:197
static bool ValidateSpellInfo(std::initializer_list< uint32 > spellIds)
Definition: SpellScript.h:162
Player * GetHitPlayer() const
HookList< EffectHandler > OnEffectHitTarget
Definition: SpellScript.h:840
SpellCastResult CastSpell(CastSpellTargetArg const &targets, uint32 spellId, CastSpellExtraArgs const &args={ })
Definition: Object.cpp:2896
void OnMovieComplete(Player *player, uint32 movieId) override
bool Validate(SpellInfo const *) override
void HandleScriptEffect(SpellEffIndex)
TeleportToTanaan
@ SPELL_TELEPORT_TO_TANAAN
@ MOVIE_INTO_THE_PORTAL
void AddSC_blasted_lands()
TeleportToRazelikh
@ SPELL_TELEPORT_SINGLE_IN_GROUP
@ SPELL_TELEPORT_SINGLE