What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal
RebornBuddy Forums

Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

[A][Q] Apexis Dailies and Missive quest farm *Complete*

Status
Not open for further replies.
Profile is awesome, thank you for putting in the effort. Currently runs better than the other released profile for dailies. As mentioned, HBRelog support to skip to the next task after quest turnins would be awesome.
 
Profile is awesome, thank you for putting in the effort. Currently runs better than the other released profile for dailies. As mentioned, HBRelog support to skip to the next task after quest turnins would be awesome.

Thanks, i will add that during the weekend, just been stomped with irl stuff the past days :)
 
Hey there bro... for those of us that use the HBRelog fix for questing profiles, simply add at the end:

PHP:
<CustomBehavior File="HBRelogSkip" />
https://www.thebuddyforum.com/honor...relog-opensource-relogger-26.html#post1829177

This seems like really solid code. My main beef is that you duplicate the turn in code with each quest. I have my own I was using, but was missing 2 or 3, so I am going to give yours a go the next few weeks. In addition, I had not included the Missives.

I have several toons that are max Garrison Resources and most > 2000 GR.
I have modified the code to do the following:
#1) Get quest from War Map
#2) Check Garrison Resources
#3) If GR > 1500 will go to Sergeant Crowler and buy the Missive that goes with the daily
#4) Then, using your code, activates the missive item to get the quest

I'll let you know how it goes over the next few weeks. Thanks again and +++ Rep to you!

Code Change... I've tested the buying part, but not yet the whole thing in combination
<QuestOrder>

<!-- Settings -->
<CustomBehavior File="UserSettings" KillBetweenHotspots="True"/>
<CustomBehavior File="UserSettings" AutoEquip="False"/>
<LootMobs Value="true" />
<While Condition="Me.IsHorde">
<CustomBehavior File="UserDialog" AllowBotStop="true" SoundCue="Exclamation" SoundCueInterval="1" Text="You must be Alliance to run this profile!" />
</While>
<!-- Settings -->

<!-- Get to garrison and war map for quest pickup -->
<If Condition="(!HasQuest(36679) &amp;&amp; !IsQuestCompleted(36679)) &amp;&amp; (!HasQuest(36681) &amp;&amp; !IsQuestCompleted(36681)) &amp;&amp; (!HasQuest(36675) &amp;&amp; !IsQuestCompleted(36675)) &amp;&amp; (!HasQuest(36678) &amp;&amp; !IsQuestCompleted(36678)) &amp;&amp; (!HasQuest(36682) &amp;&amp; !IsQuestCompleted(36682)) &amp;&amp; (!HasQuest(36649) &amp;&amp; !IsQuestCompleted(36649)) &amp;&amp; (!HasQuest(36683) &amp;&amp; !IsQuestCompleted(36683)) &amp;&amp; (!HasQuest(36680) &amp;&amp; !IsQuestCompleted(36680)) &amp;&amp; (!HasQuest(36648) &amp;&amp; !IsQuestCompleted(36648)) &amp;&amp; (!HasQuest(36677) &amp;&amp; !IsQuestCompleted(36677)) &amp;&amp; (!HasQuest(36676) &amp;&amp; !IsQuestCompleted(36676)) &amp;&amp; (!HasQuest(36685) &amp;&amp; !IsQuestCompleted(36685)) &amp;&amp; (!HasQuest(36674) &amp;&amp; !IsQuestCompleted(36674))" >
<If Condition="Me.ZoneId != 7078" >
<CustomBehavior File="Message" Text="Trying to hearthstone, waiting 30 seconds..." LogColor="Red" />
<CustomBehavior File="Misc\RunLua" Lua="UseItemByName(110560)" WaitTime="5500" /> <!-- Trying HS first -->
<CustomBehavior File="WaitTimer" WaitTime="20000" VariantTime="40000" TerminateWhen="Me.ZoneId == 7078" />
<CustomBehavior File="Message" Text="Moving to war map" LogColor="Red" />
<MoveTo DestName="War table" X="1948.811" Y="328.9721" Z="90.36076" />
</If>
<CustomBehavior File="Message" Text="Picking up Apexis daily.." LogColor="Red" />
<CustomBehavior File="InteractWith" MobId="236165" Range="5" WaitTime="2000" X="1948.811" Y="328.9721" Z="90.36076" /> <!-- War Map lvl 3 garrison. -->
<CustomBehavior File="Misc\RunLua" Lua="QuestChoiceFrameOption1.OptionButton:Click()" WaitTime="3000" />
</If>
<!-- Get to garrison and war map for quest pickup -->

<!-- Buy Missive Quest to go with Apexis Daily if Garrison Resources > 1500 -->
<If Condition="WoWCurrency.GetCurrencyById(824) != null &amp;&amp; WoWCurrency.GetCurrencyById(824).Amount &gt; 1500">
<!-- Assault on the Everbloom Wilds ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36676) &amp;&amp; !IsQuestCompleted(36676) &amp;&amp;
!HasItem(122404) &amp;&amp; !HasQuest(38192) &amp;&amp; !IsQuestCompleted(38192)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122404" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on the Iron Siegeworks ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36674) &amp;&amp; !IsQuestCompleted(36674) &amp;&amp;
!HasItem(122406) &amp;&amp; !HasQuest(38191) &amp;&amp; !IsQuestCompleted(38191)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122406" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Magnarok ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36675) &amp;&amp; !IsQuestCompleted(36675) &amp;&amp;
!HasItem(122399) &amp;&amp; !HasQuest(38190) &amp;&amp; !IsQuestCompleted(38190)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122399" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Stonefury Cliffs ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36648) &amp;&amp; !IsQuestCompleted(36648) &amp;&amp;
!HasItem(122401) &amp;&amp; !HasQuest(38189) &amp;&amp; !IsQuestCompleted(38189)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122401" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on the Gorian Proving Grounds ... Buying Corresponding Missive Quest -->
<!-- Assault on the Broken Precipice ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36677) &amp;&amp; !IsQuestCompleted(36677) &amp;&amp;
!HasItem(122423) &amp;&amp; !HasQuest(38193) &amp;&amp; !IsQuestCompleted(38193)" >
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122423" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Mok'gol Watchpost ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36678) &amp;&amp; !IsQuestCompleted(36678) &amp;&amp;
!HasItem(122422) &amp;&amp; !HasQuest(38195) &amp;&amp; !IsQuestCompleted(38195)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122422" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Darktide Roost ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36679) &amp;&amp; !IsQuestCompleted(36679) &amp;&amp;
!HasItem(122417) &amp;&amp; !HasQuest(38196) &amp;&amp; !IsQuestCompleted(38196)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122417" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Pillars of Fate ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36682) &amp;&amp; !IsQuestCompleted(36682) &amp;&amp;
!HasItem(122409) &amp;&amp; !HasQuest(38199) &amp;&amp; !IsQuestCompleted(38199)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122409" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Socrethar's Rise ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36680) &amp;&amp; !IsQuestCompleted(36680) &amp;&amp;
!HasItem(122415) &amp;&amp; !HasQuest(38197) &amp;&amp; !IsQuestCompleted(38197)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122415" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Lost Veil Anzu ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36681) &amp;&amp; !IsQuestCompleted(36681) &amp;&amp;
HasItem(122414) &amp;&amp; !HasQuest(38198) &amp;&amp; !IsQuestCompleted(38198)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122414" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Skettis ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36683) &amp;&amp; !IsQuestCompleted(36683) &amp;&amp;
!HasItem(122407) &amp;&amp; !HasQuest(38200) &amp;&amp; !IsQuestCompleted(38200)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122407" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
<!-- Assault on Shattrath Harbor ... Buying Corresponding Missive Quest -->
<If Condition="HasQuest(36649) &amp;&amp; !IsQuestCompleted(36649) &amp;&amp;
!HasItem(122410) &amp;&amp; !HasQuest(38201) &amp;&amp; !IsQuestCompleted(38201)">
<CustomBehavior File="InteractWith" MobId="78564" InteractByBuyingItemId="122410" X="1948.352" Y="282.8125" Z="88.9659" />
</If>
</If>

<!-- Accepting scout missives if they're in bag -->
<If Condition="HasItem(122406) &amp;&amp; !HasQuest(38191) &amp;&amp; !IsQuestCompleted(38191)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Iron Siegeworks...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Iron Siegeworks" QuestId="38191" GiverName="Scouting Missive: Iron Siegeworks" GiverId="122406" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122417) &amp;&amp; !HasQuest(38196) &amp;&amp; !IsQuestCompleted(38196)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Darktide Roost...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Darktide Roost" QuestId="38196" GiverName="Scouting Missive: Darktide Roost" GiverId="122417" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122409) &amp;&amp; !HasQuest(38199) &amp;&amp; !IsQuestCompleted(38199)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Pillars of Fate...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Pillars of Fate" QuestId="38199" GiverName="Scouting Missive: Pillars of Fate" GiverId="122409" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122410) &amp;&amp; !HasQuest(38201) &amp;&amp; !IsQuestCompleted(38201)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Shattrath Harbor...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Shattrath Harbor" QuestId="38201" GiverName="Scouting Missive: Shattrath Harbor" GiverId="122410" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122407) &amp;&amp; !HasQuest(38200) &amp;&amp; !IsQuestCompleted(38200)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Skettis...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Skettis" QuestId="38200" GiverName="Scouting Missive: Skettis" GiverId="122407" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122415) &amp;&amp; !HasQuest(38197) &amp;&amp; !IsQuestCompleted(38197)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Socrethar's Rise...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Socrethar's Rise" QuestId="38197" GiverName="Scouting Missive: Socrethar's Rise" GiverId="122415" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122401) &amp;&amp; !HasQuest(38189) &amp;&amp; !IsQuestCompleted(38189)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Stonefury Cliffs...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Stonefury Cliffs" QuestId="38189" GiverName="Scouting Missive: Stonefury Cliffs" GiverId="122401" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122414) &amp;&amp; !HasQuest(38198) &amp;&amp; !IsQuestCompleted(38198)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Lost Veil Anzu...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Lost Veil Anzu" QuestId="38198" GiverName="Scouting Missive: Lost Veil Anzu" GiverId="122414" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122404) &amp;&amp; !HasQuest(38192) &amp;&amp; !IsQuestCompleted(38192)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Everbloom Wilds...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Everbloom Wilds" QuestId="38192" GiverName="Scouting Missive: Everbloom Wilds" GiverId="122404" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122399) &amp;&amp; !HasQuest(38190) &amp;&amp; !IsQuestCompleted(38190)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Magnarok...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Magnarok" QuestId="38190" GiverName="Scouting Missive: Magnarok" GiverId="122399" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122422) &amp;&amp; !HasQuest(38195) &amp;&amp; !IsQuestCompleted(38195)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Mok'Gol Watchpost...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Mok'Gol Watchpost" QuestId="38195" GiverName="Scouting Missive: Mok'Gol Watchpost" GiverId="122422" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>

<If Condition="HasItem(122423) &amp;&amp; !HasQuest(38193) &amp;&amp; !IsQuestCompleted(38193)">
<CustomBehavior File="Message" Text="Detected...Scouting Missive: Assault on the Broken Precipice...Accepting quest..." LogColor="Red" />
<PickUp QuestName="Scouting Missive: Assault on the Broken Precipice" QuestId="38193" GiverName="Scouting Missive: Assault on the Broken Precipice" GiverId="122423" GiverType="Item" />
<CustomBehavior File="WaitTimer" WaitTime="1000" /> <!-- Wait for next quest pickup. -->
</If>
<!-- Accepting scout missives if they're in bag -->

<!-- Quest start -->
 
Last edited:
This seems like really solid code. My main beef is that you duplicate the turn in code with each quest. I have my own I was using, but was missing 2 or 3, so I am going to give yours a go the next few weeks. In addition, I had not included the Missives.

I have several toons that are max Garrison Resources and most > 2000 GR.
I have modified the code to do the following:
#1) Get quest from War Map
#2) Check Garrison Resources
#3) If GR > 1500 will go to Sergeant Crowler and buy the Missive that goes with the daily
#4) Then, using your code, activates the missive item to get the quest
Thanks :)

What's the beef ? Its only for the daily since it can only be one quest active, I felt it made sense to add the garrison hearthstone and turnin after each daily.
The missive quests is handled at the end so it won't go and turn in unless you finished with all accepted missives.
Only real cost is one garrison heartstone IF you also have a missive quests that isn't the daily.

I debated if I should add buying functionality but ultimately decided against it. Even with a upper limit set I didn't want my profile spending peoples resources.
I'm sure some people have a need for it, so great that you're adding it! :)
 
Thanks :)

What's the beef ? Its only for the daily since it can only be one quest active, I felt it made sense to add the garrison hearthstone and turnin after each daily.
The missive quests is handled at the end so it won't go and turn in unless you finished with all accepted missives.
Only real cost is one garrison heartstone IF you also have a missive quests that isn't the daily.

I debated if I should add buying functionality but ultimately decided against it. Even with a upper limit set I didn't want my profile spending peoples resources.
I'm sure some people have a need for it, so great that you're adding it! :)

Yes, it will do a great job at doing all of the missives, but I suspect that would rarely be the case as the GR would be the limiting factor. To me it only makes sense to do the missive quest along with the daily, unless you had a ton of GR sitting around and needed a ton of apexis crystals.

By the way, I included the code in the spoiler tags above, if anyone needs it.
 
You are free todo whatever you want, long as you give credit where credit is due :P
 
You are free todo whatever you want, long as you give credit where credit is due :P
I have no desire to post a profile that is already several times over in the Paid section and now free through the Buddy Team.
However, since you already had the missives items it was somewhat beneficial with the GR check and purchasing.

By the way I fixed the Skettis Quest if you want it..

<!-- Daily: Skettis -->
<While Condition="HasQuest(36683) &amp;&amp; !IsQuestCompleted(36683)" >
<CustomBehavior File="Message" Text="Starting Daily: Skettis" LogColor="Red" />
<While Condition="GetItemCount(118701) &lt; 1 &amp;&amp; !IsQuestCompleted(36683)">
<CustomBehavior File="Message" Text="Getting Keys" LogColor="Red" />
<MoveTo X="887.6411" Y="1538.374" Z="316.1979" />
<MoveTo X="912.7523" Y="1662.244" Z="303.2291" />
<MoveTo X="1013.219" Y="1742.091" Z="311.0891" />
<MoveTo X="991.7393" Y="1617.3" Z="301.1343" />
<MoveTo X="942.0189" Y="1549.533" Z="303.1424" />
</While>
<If Condition="Me.HasAura(170810)"> <!-- Turn In Freed Arakkoa For Boost ... Bug Check -->
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89063" InteractByGossipOptions="1" ProactiveCombatStrategy="ClearMobsTargetingUs" X="919.0364" Y="1063.517" Z="178.7565" />
</If>
<While Condition="GetItemCount(118701) &gt; 0 &amp;&amp; !IsQuestCompleted(36683)">
<CustomBehavior File="Message" Text="Using Keys" LogColor="Red" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="927.4302" Y="1109.982" Z="177.7719" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="935.5799" Y="1137.93" Z="175.8775" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="922.0088" Y="1166.132" Z="174.6728" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="925.2773" Y="1220.4" Z="174.5785" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="921.2315" Y="1266.414" Z="174.1359" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="864.089" Y="1365.999" Z="239.7733" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="918.6618" Y="1542.793" Z="303.1169" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="958.5007" Y="1544.44" Z="303.421" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="981.4299" Y="1519.226" Z="308.3579" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="1000.52" Y="1556.435" Z="305.7618" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="1000.216" Y="1622.127" Z="302.8696" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="972.5557" Y="1624.125" Z="302.1305" />
<If Condition="Me.HasAura(170810)"> <!-- Turn In Freed Arakkoa For Boost ...Top of Hill -->
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89061" InteractByGossipOptions="1" ProactiveCombatStrategy="ClearMobsTargetingUs" X="1010.645" Y="1845.524" Z="309.5683" />
</If>
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="1027.988" Y="1740.086" Z="313.4011" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="961.7664" Y="1728.609" Z="315.7767" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="925.5558" Y="1621.679" Z="302.0634" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="919.5193" Y="1683.136" Z="309.8745" />
<If Condition="Me.HasAura(170810)"> <!-- Turn In Freed Arakkoa For Boost ...Bottom of Hill -->
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89063" InteractByGossipOptions="1" ProactiveCombatStrategy="ClearMobsTargetingUs" X="919.0364" Y="1063.517" Z="178.7565" />
</If>
</While>
</While>

<!-- Turn In -->
<If Condition="HasQuest(36683) &amp;&amp; IsQuestCompleted(36683)" >
<CustomBehavior File="Message" Text="Quest completed, Trying to hearthstone, waiting 30 seconds..." LogColor="Red" />
<CustomBehavior File="Misc\RunLua" Lua="UseItemByName(110560)" WaitTime="5500" /> <!-- Trying HS first -->
<CustomBehavior File="WaitTimer" WaitTime="20000" VariantTime="40000" TerminateWhen="Me.ZoneId == 7078" />
<MoveTo DestName="War table" X="1948.811" Y="328.9721" Z="90.36076" />
<TurnIn QuestId="36683" QuestName="Assault on Skettis" TurnInName="Scout Valdez" TurnInId="81152" X="1949.675" Y="333.9757" Z="90.41009" />
</If>
*** Much faster than grinding IMO ***
 
I have no desire to post a profile that is already several times over in the Paid section and now free through the Buddy Team.
However, since you already had the missives items it was somewhat beneficial with the GR check and purchasing.

I had no idea that someone released a paid version of this after my release.
Bit silly to release a paid version after I released free but hey. Don't really care.

Will check Skettis, thanks :)
 
I have no desire to post a profile that is already several times over in the Paid section and now free through the Buddy Team.
However, since you already had the missives items it was somewhat beneficial with the GR check and purchasing.

By the way I fixed the Skettis Quest if you want it..

<!-- Daily: Skettis -->
<While Condition="HasQuest(36683) && !IsQuestCompleted(36683)" >
<CustomBehavior File="Message" Text="Starting Daily: Skettis" LogColor="Red" />
<While Condition="GetItemCount(118701) < 1 && !IsQuestCompleted(36683)">
<CustomBehavior File="Message" Text="Getting Keys" LogColor="Red" />
<MoveTo X="887.6411" Y="1538.374" Z="316.1979" />
<MoveTo X="912.7523" Y="1662.244" Z="303.2291" />
<MoveTo X="1013.219" Y="1742.091" Z="311.0891" />
<MoveTo X="991.7393" Y="1617.3" Z="301.1343" />
<MoveTo X="942.0189" Y="1549.533" Z="303.1424" />
</While>
<If Condition="Me.HasAura(170810)"> <!-- Turn In Freed Arakkoa For Boost ... Bug Check -->
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89063" InteractByGossipOptions="1" ProactiveCombatStrategy="ClearMobsTargetingUs" X="919.0364" Y="1063.517" Z="178.7565" />
</If>
<While Condition="GetItemCount(118701) > 0 && !IsQuestCompleted(36683)">
<CustomBehavior File="Message" Text="Using Keys" LogColor="Red" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="927.4302" Y="1109.982" Z="177.7719" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="935.5799" Y="1137.93" Z="175.8775" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="922.0088" Y="1166.132" Z="174.6728" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="925.2773" Y="1220.4" Z="174.5785" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="921.2315" Y="1266.414" Z="174.1359" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="864.089" Y="1365.999" Z="239.7733" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="918.6618" Y="1542.793" Z="303.1169" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="958.5007" Y="1544.44" Z="303.421" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="981.4299" Y="1519.226" Z="308.3579" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="1000.52" Y="1556.435" Z="305.7618" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="1000.216" Y="1622.127" Z="302.8696" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="972.5557" Y="1624.125" Z="302.1305" />
<If Condition="Me.HasAura(170810)"> <!-- Turn In Freed Arakkoa For Boost ...Top of Hill -->
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89061" InteractByGossipOptions="1" ProactiveCombatStrategy="ClearMobsTargetingUs" X="1010.645" Y="1845.524" Z="309.5683" />
</If>
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="1027.988" Y="1740.086" Z="313.4011" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="961.7664" Y="1728.609" Z="315.7767" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="925.5558" Y="1621.679" Z="302.0634" />
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89076" WaitForNpcs="false" Range="5" CollectionDistance="15" WaitTime="2000" X="919.5193" Y="1683.136" Z="309.8745" />
<If Condition="Me.HasAura(170810)"> <!-- Turn In Freed Arakkoa For Boost ...Bottom of Hill -->
<CustomBehavior File="InteractWith" QuestId="36683" MobId="89063" InteractByGossipOptions="1" ProactiveCombatStrategy="ClearMobsTargetingUs" X="919.0364" Y="1063.517" Z="178.7565" />
</If>
</While>
</While>

<!-- Turn In -->
<If Condition="HasQuest(36683) && IsQuestCompleted(36683)" >
<CustomBehavior File="Message" Text="Quest completed, Trying to hearthstone, waiting 30 seconds..." LogColor="Red" />
<CustomBehavior File="Misc\RunLua" Lua="UseItemByName(110560)" WaitTime="5500" /> <!-- Trying HS first -->
<CustomBehavior File="WaitTimer" WaitTime="20000" VariantTime="40000" TerminateWhen="Me.ZoneId == 7078" />
<MoveTo DestName="War table" X="1948.811" Y="328.9721" Z="90.36076" />
<TurnIn QuestId="36683" QuestName="Assault on Skettis" TurnInName="Scout Valdez" TurnInId="81152" X="1949.675" Y="333.9757" Z="90.41009" />
</If>
*** Much faster than grinding IMO ***

This was very beneficial, thank you.

I'd be interested to hear how your missive purchases work out. I made an attempt at something similar, but failed miserably.
 
I'd be interested to hear how your missive purchases work out. I made an attempt at something similar, but failed miserably.

This profile supports all missive quests, you could just use my code ? :s
 
This was very beneficial, thank you.

I'd be interested to hear how your missive purchases work out. I made an attempt at something similar, but failed miserably.

Code to add for purchasing the missive that corresponds to the Apexis Daily was in Post #28

This profile supports all missive quests, you could just use my code ? :s

I agree. TomTen2's code is solid. I have been running it for the past 3 days with no errors. I have also checked over 1/2 the missive grind points. This in combination with a modification to the Skettis daily is working better than the free Buddy Store one at the moment... not to mention it does two quests in one!!!

Props again to TomTen!!!
 
Btw.. there is a mob is skettis that gives you 30% after a kill.
Respawns fast as hell. takes about 3 min to make the 4 kills needed to get complete.
Its an elite with 890k hp but if you got decent gear it is really easy. And fast.
And he is really easy to reach.
He is a huge apexis robot on the west side of upper skettis.
 
Keep getting this error every time I try to run this profile:

Message: [string "WoW.lua"]:1: Couldn't find CVar named 'autoSelfCast'
Stack: [string "WoW.lua"]:1: in main chunk
 
Status
Not open for further replies.
Back
Top