@@ -450,7 +450,7 @@ struct npc_taelan_fordringAI: public npc_escortAI, private DialogueHelper
450
450
else if (eventType == AI_EVENT_CUSTOM_B && pInvoker->GetEntry () == NPC_ISILLIEN)
451
451
{
452
452
StartNextDialogueText (NPC_TIRION_FORDRING);
453
- m_creature->SummonCreature (NPC_TIRION_FORDRING, 2620 .273f , -1920 .917f , 74 .25f , 0 , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE* IN_MILLISECONDS);
453
+ m_creature->SummonCreature (NPC_TIRION_FORDRING, 2620 .273f , -1920 .917f , 74 .25f , 0 , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE * IN_MILLISECONDS);
454
454
}
455
455
}
456
456
@@ -480,9 +480,9 @@ struct npc_taelan_fordringAI: public npc_escortAI, private DialogueHelper
480
480
// summon additional crimson elites
481
481
float fX , fY , fZ ;
482
482
pSummoned->GetNearPoint (pSummoned, fX , fY , fZ , 0 , 5 .0f , M_PI_F * 1 .25f );
483
- pSummoned->SummonCreature (NPC_CRIMSON_ELITE, fX , fY , fZ , pSummoned->GetOrientation (), TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE* IN_MILLISECONDS);
483
+ pSummoned->SummonCreature (NPC_CRIMSON_ELITE, fX , fY , fZ , pSummoned->GetOrientation (), TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE * IN_MILLISECONDS);
484
484
pSummoned->GetNearPoint (pSummoned, fX , fY , fZ , 0 , 5 .0f , 0 );
485
- pSummoned->SummonCreature (NPC_CRIMSON_ELITE, fX , fY , fZ , pSummoned->GetOrientation (), TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE* IN_MILLISECONDS);
485
+ pSummoned->SummonCreature (NPC_CRIMSON_ELITE, fX , fY , fZ , pSummoned->GetOrientation (), TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE * IN_MILLISECONDS);
486
486
break ;
487
487
case NPC_TIRION_FORDRING:
488
488
m_tirionGuid = pSummoned->GetObjectGuid ();
@@ -576,7 +576,7 @@ struct npc_taelan_fordringAI: public npc_escortAI, private DialogueHelper
576
576
break ;
577
577
case SAY_REACH_TOWER:
578
578
// start fight event
579
- m_creature->SummonCreature (NPC_ISILLIEN, 2693 .12f , -1943 .04f , 72 .04f , 2 .11f , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE* IN_MILLISECONDS);
579
+ m_creature->SummonCreature (NPC_ISILLIEN, 2693 .12f , -1943 .04f , 72 .04f , 2 .11f , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE * IN_MILLISECONDS);
580
580
break ;
581
581
case SAY_ISILLIEN_2:
582
582
if (Creature* pIsillien = m_creature->GetMap ()->GetCreature (m_isillenGuid))
@@ -585,9 +585,9 @@ struct npc_taelan_fordringAI: public npc_escortAI, private DialogueHelper
585
585
case SPELL_CRUSADER_STRIKE:
586
586
{
587
587
// spawn additioinal elites
588
- m_creature->SummonCreature (NPC_CRIMSON_ELITE, 2711 .32f , -1882 .67f , 67 .89f , 3 .2f , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE* IN_MILLISECONDS);
589
- m_creature->SummonCreature (NPC_CRIMSON_ELITE, 2710 .93f , -1878 .90f , 67 .97f , 3 .2f , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE* IN_MILLISECONDS);
590
- m_creature->SummonCreature (NPC_CRIMSON_ELITE, 2710 .53f , -1875 .28f , 67 .90f , 3 .2f , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE* IN_MILLISECONDS);
588
+ m_creature->SummonCreature (NPC_CRIMSON_ELITE, 2711 .32f , -1882 .67f , 67 .89f , 3 .2f , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE * IN_MILLISECONDS);
589
+ m_creature->SummonCreature (NPC_CRIMSON_ELITE, 2710 .93f , -1878 .90f , 67 .97f , 3 .2f , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE * IN_MILLISECONDS);
590
+ m_creature->SummonCreature (NPC_CRIMSON_ELITE, 2710 .53f , -1875 .28f , 67 .90f , 3 .2f , TEMPSUMMON_TIMED_OOC_OR_DEAD_DESPAWN, 15 * MINUTE * IN_MILLISECONDS);
591
591
592
592
std::list<Creature*> lElitesInRange;
593
593
Player* pPlayer = GetPlayerForEscort ();
@@ -651,10 +651,10 @@ struct npc_taelan_fordringAI: public npc_escortAI, private DialogueHelper
651
651
pTirion->SetFacingToObject (pPlayer);
652
652
}
653
653
654
- pTirion->ForcedDespawn (3 * MINUTE* IN_MILLISECONDS);
654
+ pTirion->ForcedDespawn (3 * MINUTE * IN_MILLISECONDS);
655
655
pTirion->SetFlag (UNIT_NPC_FLAGS, UNIT_NPC_FLAG_QUESTGIVER);
656
656
}
657
- m_creature->ForcedDespawn (3 * MINUTE* IN_MILLISECONDS);
657
+ m_creature->ForcedDespawn (3 * MINUTE * IN_MILLISECONDS);
658
658
break ;
659
659
}
660
660
}
0 commit comments