Has anyone done a profile that basically picks up the quest in Vale from Lyalia/Sunwalker Dezco > Flies down to Krasarang wilds > Kills those mobs > Turns it in > Unlocks the dailies?
I checked the brodieman compendium but I cant find the starter quest.
I tried doing the quest myself but I suck at doing these type of grind quests. can post the code I wrote if that helps anyone. Also this is only for Dominance Offensive (Horde).
Thanks for any replies.
I checked the brodieman compendium but I cant find the starter quest.
I tried doing the quest myself but I suck at doing these type of grind quests. can post the code I wrote if that helps anyone. Also this is only for Dominance Offensive (Horde).
PHP:
<If Condition="!HasQuest(32249) && !IsQuestCompleted(32249)">
<CustomBehavior File="Message" Text="Going to meet the scout" LogColor="GreenYellow" />
<CustomBehavior File="FlyTo" X="1475.207" Y="886.2841" Z="425.7177" />
<CustomBehavior File="ForcedDismount" />
<While Condition="!HasQuest(32249)">
<PickUp QuestName="Meet the Scout" QuestId="32249" GiverId="64566" GiverName="Sunwalker Dezco" />
<CustomBehavior File="Message" Text="Picked up the quest Meet the scout now flying" LogColor="GreenYellow" />
<CustomBehavior File="WaitTimer" WaitTime="2500" GoalText="Waiting to get to the ground. {TimeRemaining}" />
</While>
</If>
<If Condition="HasQuest(32249) && IsQuestCompleted(32249)">
<CustomBehavior File="Message" Text="Got the quest (32249), flying to krasarang" LogColor="GreenYellow" />
<CustomBehavior File="FlyTo" X="-2121.019" Y="2540.502" Z="3.400465" />
<CustomBehavior File="ForcedDismount" />
<MoveTo QuestName="Meet the Scout" QuestId="32249" X="-2121.019" Y="2540.502" Z="3.400465" />
<While Condition="HasQuest(32249)">
<TurnIn QuestId="32249" TurnInId="67812" TurnInName="Scout Rokla" QuestName="Meet the Scout" />
<CustomBehavior File="WaitTimer" WaitTime="2500" GoalText="Waiting to get to the ground. {TimeRemaining}" />
</While>
<CustomBehavior File="WaitTimer" WaitTime="25000" GoalText="Waiting for garrosh to set foot on land {TimeRemaining}" />
</If>
<If Condition="!HasQuest(32250) && !IsQuestCompleted(32250)">
<CustomBehavior File="Message" Text="Picking up next quest 32250" LogColor="GreenYellow" />
<PickUp QuestName="The Might of the Warchief" QuestId="32250" GiverId="67867" GiverName="Garrosh Hellscream" />
</If>
<If Condition="HasQuest(32250) && !IsQuestCompleted(32250)">
<Objective QuestName="The Might of the Warchief" QuestId="32250" Type="KillMob" KillCount="25" MobId="67900" MobName="Alliance Sentinel" />
<CustomBehavior File="MoveTo" X="-1771.047" Y="2448.35" Z="25.49337" />
<CustomBehavior File="ForcedDismount" />
<MoveTo QuestName="The Might of the Warchief" QuestId="32250" X="-1771.047" Y="2448.35" Z="25.49337" />
<CustomBehavior File="WaitTimer" WaitTime="25000" GoalText="Waiting to get to the ground. {TimeRemaining}" />
<CustomBehavior File="MoveTo" X="-1914.921" Y="2210.144" Z="2.206123" />
<CustomBehavior File="ForcedDismount" />
<MoveTo QuestName="The Might of the Warchief" QuestId="32250" X="-1914.921" Y="2210.144" Z="2.206123" />
<CustomBehavior File="WaitTimer" WaitTime="25000" GoalText="Waiting to get to the ground. {TimeRemaining}" />
<CustomBehavior File="Message" Text="Turning in the quest to garrosh" LogColor="GreenYellow" />
<TurnIn QuestId="32250" TurnInId="67867" TurnInName="Garrosh Hellscream" QuestName="The Might of the Warchief" />
</If>
<If Condition="!HasQuest(32108) && !IsQuestCompleted(32108)">
<CustomBehavior File="Message" Text="Picking up the next quest." LogColor="GreenYellow" />
<PickUp QuestName="Domination Point" QuestId="32108" GiverId="67867" GiverName="Garrosh Hellscream" />
</If>
<If Condition="HasQuest(32108) && IsQuestCompleted(32108)">
<CustomBehavior File="FlyTo" X="-2104.795" Y="2549.499" Z="3.019181" />
<CustomBehavior File="ForcedDismount" />
<MoveTo QuestName="Domination Point" QuestId="32108" X="-2104.795" Y="2549.499" Z="3.019181" />
<TurnIn QuestId="32108" TurnInId="216274" TurnInName="Signal Fire" QuestName="Domination Point" />
</If>