So far on lvls 45/46 its grinding in the Hinterlands, but it's going all the way back to Tarren Mill to repair at Ott? Instead of going to Raventusk Village in Hinterlands.. And instead of taking the hill passage from Hillsbrad to Hinterlands... Its going up into WPL and running through the middle of the city there and getting raped hard. Can't get out of it unless I manually do it. I keep having to intervene and physically take it to Raventusk, fly to Tarren Mill, restart, let it do its repair/mail, then put it on the FP back so it doesnt run back through WPL. Anyway to fix it so it uses Raventusk village as its Vendor/Mailer? And any idea why it's using WPL to get there? When I first saw it, it was running from the Badlands and took the Hillsbrad/Hinterlands hill passage... But on its way to repair it went to WPL instead of going BACK the way it came in...
Dunno if this is by the desgin. Im level 55 and have the goal: Grind to 56? thought this was questing? =) Prudneck #Norway
when you need to grind to lvl 16 its going for the ambermill, where my lock died 228 times last night maby its smart to blackspot the ambermill castle greetz zekko
I don't know if it is just me or what, but when I started this profile on a level 1 undead warrior, it is only doing 1 quest at a time why is that?
Thats the way the profile is written. That way you can have your toons train hebing and mining and it will actually pass enough nodes to level with the character ( seeing as youre gonna run past the same ones a few times )
I had a problem in trifals glades. At <Hotspot X="2036.745" Y="-400.4679" Z="35.45261" /> my toon just stood still until i went afk. HB said it was pathing to sell Jahan Hawking. Can u take a peak please i really wanna try this prof. The other 1-60's get stuck too much. Edit: I moved my toon onto the road and restarded the profile, and it changed the pathing to sell: Eliza Callen. Only around 20yards south.
Why does this profile keeping running my guy through WPL to train their skills? Why doesn't it use flight paths?
Hi Hawker, first of all: thanks for this nice profile! As far as I can rate it, there's a little bit much of grinding for a "questing profile". Quests like "The Rescue" (http://www.wowhead.com/quest=498) and "Souvenirs of Death" (http://www.wowhead.com/quest=546) could be done earlier then at level 28 for example, like some others.. Also it would be very nice if using flight paths could be added within the next releases of HB. I know it's not related to the profile but I also know you can affect it GB is already supporting flight paths so it shouldn't be that much complex to add it. Adding flight paths would prevent running into areas the toon can't handle at its level and speed up everything. With kind regards, iggi
Agreed, but I believe it may be that way for "squishier" classes. Plus it's not all that hard to change it to suit your character
Elixir of Agony isn't working because HB isn't looting the gameobjects. Code: <!-- Elixir of Agony (level 28) --> <!-- Bring 6 Mudsnout Blossoms to Apothecary Lydon in Tarren Mill. --> <!-- http://www.wowhead.com/quest=509 --> <PickUp QuestName="Elixir of Agony" GiverName="Apothecary Lydon" QuestId="509" GiverId="2216" /> <!-- Item: Mudsnout Blossoms --> <Objective QuestName="Elixir of Agony" QuestId="509" Type="Collect" CollectCount="6" ItemId="3502" /> <TurnIn QuestName="Elixir of Agony" NpcName="Apothecary Lydon" QuestId="509" TurnInId="2216" /> Add this to Line 2731: Code: <Quest Id="509" Name="Elixir of Agony"> <Objective Type="CollectItem" ItemId="3502" CollectCount="6"> <CollectFrom> <GameObject Id="1723" Name="Mudsnout Blossom" /> </CollectFrom> <Hotspots> <Hotspot X="-918.0053" Y="-967.9159" Z="30.3479" /> <Hotspot X="-925.5412" Y="-1037.438" Z="30.3479" /> </Hotspots> </Objective> </Quest>
The Rescue Objective and TurnIn is missing. Code: <!-- The Rescue (level 22) --> <!-- Krusk in Tarren Mill needs you to free Drull and Tog'thar from Durnholde Keep. --> <!-- http://www.wowhead.com/quest=498 --> <PickUp QuestName="The Rescue" GiverName="Krusk" QuestId="498" GiverId="2229" /> Change the upper code to: Code: <!-- The Rescue (level 22) --> <!-- Krusk in Tarren Mill needs you to free Drull and Tog'thar from Durnholde Keep. --> <!-- http://www.wowhead.com/quest=498 --> <PickUp QuestName="The Rescue" GiverName="Krusk" QuestId="498" GiverId="2229" /> <!-- Item: Dull Iron Key from Jailor Eston --> <Objective QuestName="The Rescue" QuestId="498" Type="Collect" CollectCount="1" ItemId="3467" /> <!-- Item: Gold Key from Jailor Marlgen --> <Objective QuestName="The Rescue" QuestId="498" Type="Collect" CollectCount="1" ItemId="3499" /> <!-- free Tog'thar --> <Objective QuestName="The Rescue" QuestId="498" Type="UseObject" ObjectId="1722" /> <!-- free Drull --> <Objective QuestName="The Rescue" QuestId="498" Type="UseObject" ObjectId="1721" /> <TurnIn QuestName="The Rescue" NpcName="Krusk" QuestId="498" TurnInId="2229" /> Add this code near line 2731: Code: <Quest Id="498" Name="The Rescue"> <Objective Type="Collect" ItemId="3467" CollectCount="1"> <CollectFrom> <Mob Id="2427" Name="Jailor Eston" /> </CollectFrom> <Hotspots> <Hotspot X="-469.9816" Y="-1463.003" Z="88.21662" /> <Hotspot X="-455.171" Y="-1423.746" Z="92.96922" /> <Hotspot X="-492.731" Y="-1477.969" Z="88.01555" /> </Hotspots> </Objective> <Objective Type="Collect" ItemId="3499" CollectCount="1"> <CollectFrom> <Mob Id="2428" Name="Jailor Marlgen" /> </CollectFrom> <Hotspots> <Hotspot X="-469.9816" Y="-1463.003" Z="88.21662" /> <Hotspot X="-455.171" Y="-1423.746" Z="92.96922" /> <Hotspot X="-492.731" Y="-1477.969" Z="88.01555" /> </Hotspots> </Objective> <Objective Type="UseObject" ObjectId="1722" UseCount="1"> <Hotspots> <Hotspot X="-448.6585" Y="-1485.179" Z="92.34547" /> </Hotspots> </Objective> <Objective Type="UseObject" ObjectId="1721" UseCount="1"> <Hotspots> <Hotspot X="-487.3264" Y="-1342.575" Z="53.63044" /> </Hotspots> </Objective> </Quest> Maybe <GrindTo Level="23" /> is needless when adding this Quest, cause the toon will kill many mobs while on it.
Soothing Turtle Bisque was added but you forgot to call PickUp / Objective / TurnIn. I recommend adding it for level 30, cause it's possible to do it on that level and there is a long grinding session between 30 and 31. Look for: Code: <GrindTo Level="31" /> Replace with: Code: <!-- Soothing Turtle Bisque (level 31) --> <!-- Bring 10 pieces of Turtle Meat to Christoph Jeffcoat in Tarren Mill. --> <!-- http://www.wowhead.com/quest=7321 --> <PickUp QuestName="Soothing Turtle Bisque" GiverName="Christoph Jeffcoat" QuestId="7321" GiverId="2393" /> <!-- Item: Turtle Meat --> <Objective QuestName="Soothing Turtle Bisque" QuestId="7321" Type="Collect" CollectCount="10" ItemId="3712" /> <TurnIn QuestName="Soothing Turtle Bisque" NpcName="Christoph Jeffcoat" QuestId="7321" TurnInId="2393" /> <GrindTo Level="31" /> Maybe the questreward should be added to be protected: Look for: Code: </ProtectedItems> Replace with: Code: <!--Recipe: Soothing Turtle Bisque--> <Item>3737</Item> </ProtectedItems>
When reaching level 31 you are skipping some already added quests because of switching to another subprofile. Look For: Code: <GrindTo Level="31" /> <!-- Creature: Captain Ironhill --> <Objective QuestName="Battle of Hillsbrad" QuestId="541" Type="KillMob" KillCount="1" MobId="2304" /> <!-- Creature: Dun Garok Mountaineer --> <Objective QuestName="Battle of Hillsbrad" QuestId="541" Type="KillMob" KillCount="8" MobId="2344" /> <!-- Creature: Dun Garok Rifleman --> <Objective QuestName="Battle of Hillsbrad" QuestId="541" Type="KillMob" KillCount="4" MobId="2345" /> <!-- Creature: Dun Garok Priest --> <Objective QuestName="Battle of Hillsbrad" QuestId="541" Type="KillMob" KillCount="2" MobId="2346" /> <TurnIn QuestName="Battle of Hillsbrad" NpcName="High Executor Darthalia" QuestId="541" TurnInId="2215" /> <!-- Item: Humbert's Sword --> <Objective QuestName="Humbert's Sword" QuestId="547" Type="Collect" CollectCount="1" ItemId="3693" /> <TurnIn QuestName="Humbert's Sword" NpcName="Deathguard Humbert" QuestId="547" TurnInId="2419" /> </QuestOrder> Replace with: Code: <GrindTo Level="31" /> </QuestOrder> Look for: Code: <PickUp QuestName="The Hammer May Fall" GiverName="Tallow" QuestId="676" GiverId="2770" /> Add after: Code: <!-- Creature: Captain Ironhill --> <Objective QuestName="Battle of Hillsbrad" QuestId="541" Type="KillMob" KillCount="1" MobId="2304" /> <!-- Creature: Dun Garok Mountaineer --> <Objective QuestName="Battle of Hillsbrad" QuestId="541" Type="KillMob" KillCount="8" MobId="2344" /> <!-- Creature: Dun Garok Rifleman --> <Objective QuestName="Battle of Hillsbrad" QuestId="541" Type="KillMob" KillCount="4" MobId="2345" /> <!-- Creature: Dun Garok Priest --> <Objective QuestName="Battle of Hillsbrad" QuestId="541" Type="KillMob" KillCount="2" MobId="2346" /> <TurnIn QuestName="Battle of Hillsbrad" NpcName="High Executor Darthalia" QuestId="541" TurnInId="2215" /> <!-- Item: Humbert's Sword --> <Objective QuestName="Humbert's Sword" QuestId="547" Type="Collect" CollectCount="1" ItemId="3693" /> <TurnIn QuestName="Humbert's Sword" NpcName="Deathguard Humbert" QuestId="547" TurnInId="2419" /> Even if you change this there will be a very long grinding session between 31 and 33. I'm going to check if some additional quests can be added now. /EDIT Seems like you got all quests for that level here. So without switching the area there is no way to level without grinding between 31 and 33.