219 lines
7.2 KiB
C++
219 lines
7.2 KiB
C++
/*
|
|
* Copyright (C) 2016+ AzerothCore <www.azerothcore.org>, released under GNU GPL v2 license: https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-GPL2
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
/* ScriptData
|
|
SDName: Feralas
|
|
SD%Complete: 100
|
|
SDComment: Quest support: 3520, 2767, Special vendor Gregan Brewspewer
|
|
SDCategory: Feralas
|
|
EndScriptData */
|
|
|
|
#include "ScriptMgr.h"
|
|
#include "ScriptedCreature.h"
|
|
#include "ScriptedEscortAI.h"
|
|
#include "ScriptedGossip.h"
|
|
#include "SpellScript.h"
|
|
#include "Player.h"
|
|
#include "WorldSession.h"
|
|
|
|
/*######
|
|
## npc_gregan_brewspewer
|
|
######*/
|
|
|
|
#define GOSSIP_HELLO "Buy somethin', will ya?"
|
|
|
|
class npc_gregan_brewspewer : public CreatureScript
|
|
{
|
|
public:
|
|
npc_gregan_brewspewer() : CreatureScript("npc_gregan_brewspewer") { }
|
|
|
|
bool OnGossipSelect(Player* player, Creature* creature, uint32 /*sender*/, uint32 action) override
|
|
{
|
|
ClearGossipMenuFor(player);
|
|
if (action == GOSSIP_ACTION_INFO_DEF + 1)
|
|
{
|
|
AddGossipItemFor(player, GOSSIP_ICON_VENDOR, GOSSIP_TEXT_BROWSE_GOODS, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_TRADE);
|
|
SendGossipMenuFor(player, 2434, creature->GetGUID());
|
|
}
|
|
if (action == GOSSIP_ACTION_TRADE)
|
|
player->GetSession()->SendListInventory(creature->GetGUID());
|
|
return true;
|
|
}
|
|
|
|
bool OnGossipHello(Player* player, Creature* creature) override
|
|
{
|
|
if (creature->IsQuestGiver())
|
|
player->PrepareQuestMenu(creature->GetGUID());
|
|
|
|
if (creature->IsVendor() && player->GetQuestStatus(3909) == QUEST_STATUS_INCOMPLETE)
|
|
AddGossipItemFor(player, GOSSIP_ICON_CHAT, GOSSIP_HELLO, GOSSIP_SENDER_MAIN, GOSSIP_ACTION_INFO_DEF + 1);
|
|
|
|
SendGossipMenuFor(player, 2433, creature->GetGUID());
|
|
return true;
|
|
}
|
|
|
|
};
|
|
|
|
/*######
|
|
## npc_oox22fe
|
|
######*/
|
|
|
|
enum OOX
|
|
{
|
|
SAY_OOX_START = 0,
|
|
SAY_OOX_AGGRO = 1,
|
|
SAY_OOX_AMBUSH = 2,
|
|
SAY_OOX_END = 3,
|
|
|
|
NPC_YETI = 7848,
|
|
NPC_GORILLA = 5260,
|
|
NPC_WOODPAW_REAVER = 5255,
|
|
NPC_WOODPAW_BRUTE = 5253,
|
|
NPC_WOODPAW_ALPHA = 5258,
|
|
NPC_WOODPAW_MYSTIC = 5254,
|
|
|
|
QUEST_RESCUE_OOX22FE = 2767,
|
|
FACTION_ESCORTEE_A = 774,
|
|
FACTION_ESCORTEE_H = 775
|
|
};
|
|
|
|
class npc_oox22fe : public CreatureScript
|
|
{
|
|
public:
|
|
npc_oox22fe() : CreatureScript("npc_oox22fe") { }
|
|
|
|
bool OnQuestAccept(Player* player, Creature* creature, const Quest* quest) override
|
|
{
|
|
if (quest->GetQuestId() == QUEST_RESCUE_OOX22FE)
|
|
{
|
|
creature->AI()->Talk(SAY_OOX_START);
|
|
//change that the npc is not lying dead on the ground
|
|
creature->SetStandState(UNIT_STAND_STATE_STAND);
|
|
|
|
if (player->GetTeamId() == TEAM_ALLIANCE)
|
|
creature->setFaction(FACTION_ESCORTEE_A);
|
|
|
|
if (player->GetTeamId() == TEAM_HORDE)
|
|
creature->setFaction(FACTION_ESCORTEE_H);
|
|
|
|
if (npc_escortAI* pEscortAI = CAST_AI(npc_oox22fe::npc_oox22feAI, creature->AI()))
|
|
pEscortAI->Start(true, false, player->GetGUID());
|
|
|
|
}
|
|
return true;
|
|
}
|
|
|
|
CreatureAI* GetAI(Creature* creature) const override
|
|
{
|
|
return new npc_oox22feAI(creature);
|
|
}
|
|
|
|
struct npc_oox22feAI : public npc_escortAI
|
|
{
|
|
npc_oox22feAI(Creature* creature) : npc_escortAI(creature) { }
|
|
|
|
void WaypointReached(uint32 waypointId) override
|
|
{
|
|
switch (waypointId)
|
|
{
|
|
// First Ambush(3 Yetis)
|
|
case 11:
|
|
Talk(SAY_OOX_AMBUSH);
|
|
me->SummonCreature(NPC_YETI, -4841.01f, 1593.91f, 73.42f, 3.98f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
me->SummonCreature(NPC_YETI, -4837.61f, 1568.58f, 78.21f, 3.13f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
me->SummonCreature(NPC_YETI, -4841.89f, 1569.95f, 76.53f, 0.68f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
break;
|
|
//Second Ambush(3 Gorillas)
|
|
case 21:
|
|
Talk(SAY_OOX_AMBUSH);
|
|
me->SummonCreature(NPC_GORILLA, -4652.76f, 1956.69f, 67.99f, 3.74f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
me->SummonCreature(NPC_GORILLA, -4654.73f, 1959.71f, 47.66f, 3.78f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
me->SummonCreature(NPC_GORILLA, -4657.01f, 1963.19f, 67.48f, 3.84f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
break;
|
|
//Third Ambush(4 Gnolls)
|
|
case 30:
|
|
Talk(SAY_OOX_AMBUSH);
|
|
me->SummonCreature(NPC_WOODPAW_REAVER, -4425.14f, 2075.87f, 47.77f, 3.77f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
me->SummonCreature(NPC_WOODPAW_BRUTE, -4426.68f, 2077.98f, 47.57f, 3.77f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
me->SummonCreature(NPC_WOODPAW_MYSTIC, -4428.33f, 2080.24f, 47.43f, 3.87f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
me->SummonCreature(NPC_WOODPAW_ALPHA, -4430.04f, 2075.54f, 46.83f, 3.81f, TEMPSUMMON_CORPSE_TIMED_DESPAWN, 10000);
|
|
break;
|
|
case 37:
|
|
Talk(SAY_OOX_END);
|
|
// Award quest credit
|
|
if (Player* player = GetPlayerForEscort())
|
|
player->GroupEventHappens(QUEST_RESCUE_OOX22FE, me);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void Reset() override
|
|
{
|
|
if (!HasEscortState(STATE_ESCORT_ESCORTING))
|
|
me->SetStandState(UNIT_STAND_STATE_DEAD);
|
|
}
|
|
|
|
void EnterCombat(Unit* /*who*/) override
|
|
{
|
|
//For an small probability the npc says something when he get aggro
|
|
if (urand(0, 9) > 7)
|
|
Talk(SAY_OOX_AGGRO);
|
|
}
|
|
|
|
void JustSummoned(Creature* summoned) override
|
|
{
|
|
summoned->AI()->AttackStart(me);
|
|
}
|
|
};
|
|
|
|
};
|
|
|
|
enum GordunniTrap
|
|
{
|
|
GO_GORDUNNI_DIRT_MOUND = 144064,
|
|
};
|
|
|
|
class spell_gordunni_trap : public SpellScriptLoader
|
|
{
|
|
public:
|
|
spell_gordunni_trap() : SpellScriptLoader("spell_gordunni_trap") { }
|
|
|
|
class spell_gordunni_trap_SpellScript : public SpellScript
|
|
{
|
|
PrepareSpellScript(spell_gordunni_trap_SpellScript);
|
|
|
|
void HandleDummy()
|
|
{
|
|
if (Unit* caster = GetCaster())
|
|
if (GameObject* chest = caster->SummonGameObject(GO_GORDUNNI_DIRT_MOUND, caster->GetPositionX(), caster->GetPositionY(), caster->GetPositionZ(), 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0))
|
|
{
|
|
chest->SetSpellId(GetSpellInfo()->Id);
|
|
caster->RemoveGameObject(chest, false);
|
|
}
|
|
}
|
|
|
|
void Register() override
|
|
{
|
|
OnCast += SpellCastFn(spell_gordunni_trap_SpellScript::HandleDummy);
|
|
}
|
|
};
|
|
|
|
SpellScript* GetSpellScript() const override
|
|
{
|
|
return new spell_gordunni_trap_SpellScript();
|
|
}
|
|
};
|
|
|
|
/*######
|
|
## AddSC
|
|
######*/
|
|
|
|
void AddSC_feralas()
|
|
{
|
|
new npc_gregan_brewspewer();
|
|
new npc_oox22fe();
|
|
new spell_gordunni_trap();
|
|
}
|