mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 18:15:31 +01:00
*Fix a typo in arathi_highlands.cpp and 748_world_scripts.sql
--HG-- branch : trunk
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
update creature_template set scriptname='npc_infused_crystal', flags_extra=0 where entry=16364;
|
||||
update quest_template set specialflags=2, reqcreatureorgoid1=1, reqcreatureorgocount1=1 where entry=8490;
|
||||
update quest_template set specialflags=2, reqcreatureorgoid1=0, reqcreatureorgocount1=0 where entry=8490;
|
||||
delete from creature where id=17086;
|
||||
@@ -34,7 +34,7 @@ EndContentData */
|
||||
|
||||
#define SAY_PROGRESS_1 "Ok, $N. Follow me to the cave where I'll attempt to harness the power of the rune stone into these goggles."
|
||||
#define SAY_PROGRESS_2 "I discovered this cave on our first day here. I believe the energy in the stone can be used to our advantage."
|
||||
#define SAY_PROGRESS_3 "I'll begin drawing energy from the stone. Your job, $N, i to defend me. This place is cursed... trust me."
|
||||
#define SAY_PROGRESS_3 "I'll begin drawing energy from the stone. Your job, $N, is to defend me. This place is cursed... trust me."
|
||||
#define EMOTE_PROGRESS_4 "begins tinkering with the goggles before the stone."
|
||||
#define SAY_AGGRO "Help!!! Get these things off me so I can get my work done!"
|
||||
#define SAY_PROGRESS_5 "Almost done! Just a little longer!"
|
||||
@@ -61,10 +61,8 @@ struct TRINITY_DLL_DECL npc_professor_phizzlethorpeAI : public npc_escortAI
|
||||
case 8:DoTextEmote(EMOTE_PROGRESS_4, NULL);break;
|
||||
case 9:
|
||||
{
|
||||
Creature* sum1 = m_creature->SummonCreature(MOB_VENGEFUL_SURGE, -2052.96, -2142.49, 20.15, 1.0f, TEMPSUMMON_DEAD_DESPAWN, 0);
|
||||
Creature* sum2 = m_creature->SummonCreature(MOB_VENGEFUL_SURGE, -2052.96, -2142.49, 20.15, 1.0f, TEMPSUMMON_DEAD_DESPAWN, 0);
|
||||
sum1->Attack(m_creature, true);
|
||||
sum2->Attack(m_creature, true);
|
||||
m_creature->SummonCreature(MOB_VENGEFUL_SURGE, -2052.96, -2142.49, 20.15, 1.0f, TEMPSUMMON_CORPSE_DESPAWN, 0);
|
||||
m_creature->SummonCreature(MOB_VENGEFUL_SURGE, -2052.96, -2142.49, 20.15, 1.0f, TEMPSUMMON_CORPSE_DESPAWN, 0);
|
||||
break;
|
||||
}
|
||||
case 10:DoSay(SAY_PROGRESS_5, LANG_UNIVERSAL, player, true);break;
|
||||
@@ -73,11 +71,17 @@ struct TRINITY_DLL_DECL npc_professor_phizzlethorpeAI : public npc_escortAI
|
||||
case 20:
|
||||
DoTextEmote(EMOTE_PROGRESS_8, NULL);
|
||||
DoSay(SAY_PROGRESS_9, LANG_UNIVERSAL, player, true);
|
||||
if(player)
|
||||
((Player*)player)->GroupEventHappens(QUEST_SUNKEN_TREASURE, m_creature);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
void JustSummoned(Creature *summoned)
|
||||
{
|
||||
summoned->AI()->AttackStart(m_creature);
|
||||
}
|
||||
|
||||
void Reset(){}
|
||||
|
||||
void Aggro(Unit* who)
|
||||
|
||||
Reference in New Issue
Block a user