Big re-organization of repository [W.I.P]
This commit is contained in:
parent
c62a72c0a8
commit
0f85ce1c54
3016 changed files with 1271 additions and 1 deletions
|
|
@ -1,327 +0,0 @@
|
|||
/*
|
||||
* Copyright (C)
|
||||
* Copyright (C)
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of the GNU General Public License as published by the
|
||||
* Free Software Foundation; either version 2 of the License, or (at your
|
||||
* option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along
|
||||
* with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/* ScriptData
|
||||
SDName: Silverpine_Forest
|
||||
SD%Complete: 100
|
||||
SDComment: Quest support: 435, 452
|
||||
SDCategory: Silverpine Forest
|
||||
EndScriptData */
|
||||
|
||||
/* ContentData
|
||||
npc_deathstalker_erland
|
||||
pyrewood_ambush
|
||||
EndContentData */
|
||||
|
||||
#include "ScriptMgr.h"
|
||||
#include "ScriptedCreature.h"
|
||||
#include "ScriptedEscortAI.h"
|
||||
#include "Player.h"
|
||||
|
||||
/*######
|
||||
## npc_deathstalker_erland
|
||||
######*/
|
||||
|
||||
enum Erland
|
||||
{
|
||||
SAY_QUESTACCEPT = 0,
|
||||
SAY_START = 1,
|
||||
SAY_AGGRO = 2,
|
||||
SAY_PROGRESS = 3,
|
||||
SAY_LAST = 4,
|
||||
|
||||
SAY_RANE = 0,
|
||||
SAY_RANE_ANSWER = 5,
|
||||
SAY_MOVE_QUINN = 6,
|
||||
|
||||
SAY_QUINN = 7,
|
||||
SAY_QUINN_ANSWER = 0,
|
||||
SAY_BYE = 8,
|
||||
|
||||
QUEST_ESCORTING = 435,
|
||||
NPC_RANE = 1950,
|
||||
NPC_QUINN = 1951
|
||||
};
|
||||
|
||||
class npc_deathstalker_erland : public CreatureScript
|
||||
{
|
||||
public:
|
||||
npc_deathstalker_erland() : CreatureScript("npc_deathstalker_erland") { }
|
||||
|
||||
struct npc_deathstalker_erlandAI : public npc_escortAI
|
||||
{
|
||||
npc_deathstalker_erlandAI(Creature* creature) : npc_escortAI(creature) { }
|
||||
|
||||
void WaypointReached(uint32 waypointId)
|
||||
{
|
||||
Player* player = GetPlayerForEscort();
|
||||
if (!player)
|
||||
return;
|
||||
|
||||
switch (waypointId)
|
||||
{
|
||||
case 1:
|
||||
Talk(SAY_START, player);
|
||||
break;
|
||||
case 10:
|
||||
Talk(SAY_PROGRESS);
|
||||
break;
|
||||
case 13:
|
||||
Talk(SAY_LAST, player);
|
||||
player->GroupEventHappens(QUEST_ESCORTING, me);
|
||||
break;
|
||||
case 15:
|
||||
if (Creature* rane = me->FindNearestCreature(NPC_RANE, 20.0f))
|
||||
rane->AI()->Talk(SAY_RANE);
|
||||
break;
|
||||
case 16:
|
||||
Talk(SAY_RANE_ANSWER);
|
||||
break;
|
||||
case 17:
|
||||
Talk(SAY_MOVE_QUINN);
|
||||
break;
|
||||
case 24:
|
||||
Talk(SAY_QUINN);
|
||||
break;
|
||||
case 25:
|
||||
if (Creature* quinn = me->FindNearestCreature(NPC_QUINN, 20.0f))
|
||||
quinn->AI()->Talk(SAY_QUINN_ANSWER);
|
||||
break;
|
||||
case 26:
|
||||
Talk(SAY_BYE);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void Reset() { }
|
||||
|
||||
void EnterCombat(Unit* who)
|
||||
{
|
||||
Talk(SAY_AGGRO, who);
|
||||
}
|
||||
};
|
||||
|
||||
bool OnQuestAccept(Player* player, Creature* creature, Quest const* quest)
|
||||
{
|
||||
if (quest->GetQuestId() == QUEST_ESCORTING)
|
||||
{
|
||||
creature->AI()->Talk(SAY_QUESTACCEPT, player);
|
||||
|
||||
if (npc_escortAI* pEscortAI = CAST_AI(npc_deathstalker_erland::npc_deathstalker_erlandAI, creature->AI()))
|
||||
pEscortAI->Start(true, false, player->GetGUID());
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
CreatureAI* GetAI(Creature* creature) const
|
||||
{
|
||||
return new npc_deathstalker_erlandAI(creature);
|
||||
}
|
||||
};
|
||||
|
||||
/*######
|
||||
## pyrewood_ambush
|
||||
#######*/
|
||||
|
||||
#define QUEST_PYREWOOD_AMBUSH 452
|
||||
|
||||
#define NPCSAY_INIT "Get ready, they'll be arriving any minute..." //not blizzlike
|
||||
#define NPCSAY_END "Thanks for your help!" //not blizzlike
|
||||
|
||||
static float PyrewoodSpawnPoints[3][4] =
|
||||
{
|
||||
//pos_x pos_y pos_z orien
|
||||
//outside
|
||||
/*
|
||||
{-400.85f, 1513.64f, 18.67f, 0},
|
||||
{-397.32f, 1514.12f, 18.67f, 0},
|
||||
{-397.44f, 1511.09f, 18.67f, 0},
|
||||
*/
|
||||
//door
|
||||
{-396.17f, 1505.86f, 19.77f, 0},
|
||||
{-396.91f, 1505.77f, 19.77f, 0},
|
||||
{-397.94f, 1504.74f, 19.77f, 0},
|
||||
};
|
||||
|
||||
#define WAIT_SECS 6000
|
||||
|
||||
class pyrewood_ambush : public CreatureScript
|
||||
{
|
||||
public:
|
||||
pyrewood_ambush() : CreatureScript("pyrewood_ambush") { }
|
||||
|
||||
bool OnQuestAccept(Player* player, Creature* creature, const Quest *quest)
|
||||
{
|
||||
if (quest->GetQuestId() == QUEST_PYREWOOD_AMBUSH && !CAST_AI(pyrewood_ambush::pyrewood_ambushAI, creature->AI())->QuestInProgress)
|
||||
{
|
||||
CAST_AI(pyrewood_ambush::pyrewood_ambushAI, creature->AI())->QuestInProgress = true;
|
||||
CAST_AI(pyrewood_ambush::pyrewood_ambushAI, creature->AI())->Phase = 0;
|
||||
CAST_AI(pyrewood_ambush::pyrewood_ambushAI, creature->AI())->KillCount = 0;
|
||||
CAST_AI(pyrewood_ambush::pyrewood_ambushAI, creature->AI())->PlayerGUID = player->GetGUID();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
CreatureAI* GetAI(Creature* creature) const
|
||||
{
|
||||
return new pyrewood_ambushAI(creature);
|
||||
}
|
||||
|
||||
struct pyrewood_ambushAI : public ScriptedAI
|
||||
{
|
||||
pyrewood_ambushAI(Creature* creature) : ScriptedAI(creature), Summons(me)
|
||||
{
|
||||
QuestInProgress = false;
|
||||
}
|
||||
|
||||
uint32 Phase;
|
||||
int8 KillCount;
|
||||
uint32 WaitTimer;
|
||||
uint64 PlayerGUID;
|
||||
SummonList Summons;
|
||||
|
||||
bool QuestInProgress;
|
||||
|
||||
void Reset()
|
||||
{
|
||||
WaitTimer = WAIT_SECS;
|
||||
|
||||
if (!QuestInProgress) //fix reset values (see UpdateVictim)
|
||||
{
|
||||
Phase = 0;
|
||||
KillCount = 0;
|
||||
PlayerGUID = 0;
|
||||
Summons.DespawnAll();
|
||||
}
|
||||
}
|
||||
|
||||
void EnterCombat(Unit* /*who*/) { }
|
||||
|
||||
void JustSummoned(Creature* summoned)
|
||||
{
|
||||
Summons.Summon(summoned);
|
||||
++KillCount;
|
||||
}
|
||||
|
||||
void SummonedCreatureDespawn(Creature* summoned)
|
||||
{
|
||||
Summons.Despawn(summoned);
|
||||
--KillCount;
|
||||
}
|
||||
|
||||
void SummonCreatureWithRandomTarget(uint32 creatureId, int position)
|
||||
{
|
||||
if (Creature* summoned = me->SummonCreature(creatureId, PyrewoodSpawnPoints[position][0], PyrewoodSpawnPoints[position][1], PyrewoodSpawnPoints[position][2], PyrewoodSpawnPoints[position][3], TEMPSUMMON_CORPSE_TIMED_DESPAWN, 15000))
|
||||
{
|
||||
Unit* target = NULL;
|
||||
if (PlayerGUID)
|
||||
if (Player* player = ObjectAccessor::GetPlayer(*me, PlayerGUID))
|
||||
if (player->IsAlive() && RAND(0, 1))
|
||||
target = player;
|
||||
|
||||
if (!target)
|
||||
target = me;
|
||||
|
||||
summoned->setFaction(168);
|
||||
summoned->AddThreat(target, 32.0f);
|
||||
summoned->AI()->AttackStart(target);
|
||||
}
|
||||
}
|
||||
|
||||
void JustDied(Unit* /*killer*/)
|
||||
{
|
||||
if (PlayerGUID)
|
||||
if (Player* player = ObjectAccessor::GetPlayer(*me, PlayerGUID))
|
||||
if (player->GetQuestStatus(QUEST_PYREWOOD_AMBUSH) == QUEST_STATUS_INCOMPLETE)
|
||||
player->FailQuest(QUEST_PYREWOOD_AMBUSH);
|
||||
}
|
||||
|
||||
void UpdateAI(uint32 diff)
|
||||
{
|
||||
//TC_LOG_INFO("scripts", "DEBUG: p(%i) k(%i) d(%u) W(%i)", Phase, KillCount, diff, WaitTimer);
|
||||
|
||||
if (!QuestInProgress)
|
||||
return;
|
||||
|
||||
if (KillCount && Phase < 6)
|
||||
{
|
||||
if (!UpdateVictim()) //reset() on target Despawn...
|
||||
return;
|
||||
|
||||
DoMeleeAttackIfReady();
|
||||
return;
|
||||
}
|
||||
|
||||
switch (Phase)
|
||||
{
|
||||
case 0:
|
||||
if (WaitTimer == WAIT_SECS)
|
||||
me->MonsterSay(NPCSAY_INIT, LANG_UNIVERSAL, NULL); //no blizzlike
|
||||
|
||||
if (WaitTimer <= diff)
|
||||
{
|
||||
WaitTimer -= diff;
|
||||
return;
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
SummonCreatureWithRandomTarget(2060, 1);
|
||||
break;
|
||||
case 2:
|
||||
SummonCreatureWithRandomTarget(2061, 2);
|
||||
SummonCreatureWithRandomTarget(2062, 0);
|
||||
break;
|
||||
case 3:
|
||||
SummonCreatureWithRandomTarget(2063, 1);
|
||||
SummonCreatureWithRandomTarget(2064, 2);
|
||||
SummonCreatureWithRandomTarget(2065, 0);
|
||||
break;
|
||||
case 4:
|
||||
SummonCreatureWithRandomTarget(2066, 1);
|
||||
SummonCreatureWithRandomTarget(2067, 0);
|
||||
SummonCreatureWithRandomTarget(2068, 2);
|
||||
break;
|
||||
case 5: //end
|
||||
if (PlayerGUID)
|
||||
{
|
||||
if (Player* player = ObjectAccessor::GetPlayer(*me, PlayerGUID))
|
||||
{
|
||||
me->MonsterSay(NPCSAY_END, LANG_UNIVERSAL, NULL); //not blizzlike
|
||||
player->GroupEventHappens(QUEST_PYREWOOD_AMBUSH, me);
|
||||
}
|
||||
}
|
||||
QuestInProgress = false;
|
||||
Reset();
|
||||
break;
|
||||
}
|
||||
++Phase; //prepare next phase
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/*######
|
||||
## AddSC
|
||||
######*/
|
||||
|
||||
void AddSC_silverpine_forest()
|
||||
{
|
||||
new npc_deathstalker_erland();
|
||||
new pyrewood_ambush();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue