I wonder if it's possible to create a profile, wich does some quests and after that grinds untill a specific level. I couldnt realize it yet. Is is possible? The following example does not work for me: Code: . . . <TurnIn QuestName="Bounty on Garrick Padfoot" QuestId="6" TurnInName="Deputy Willem" TurnInId="823" /> <Objective QuestName="Skirmish at Echo Ridge" QuestId="21" Type="KillMob" MobId="80" KillCount="8" /> <TurnIn QuestName="Skirmish at Echo Ridge" QuestId="21" TurnInName="Marshal McBride" TurnInId="197" /> <PickUp QuestName="Report to Goldshire" QuestId="54" GiverName="Marshal McBride" GiverId="197" /> </QuestOrder> <Factions> 7 </Factions> <Hotspots> <Hotspot X="-9040.257" Y="-291.3885" Z="74.59972" /> <Hotspot X="-9076.493" Y="-331.4807" Z="73.45306" /> <Hotspot X="-9108.929" Y="-340.9735" Z="73.41761" /> <Hotspot X="-9122.935" Y="-368.1663" Z="73.70058" /> <Hotspot X="-9065.465" Y="-376.6882" Z="73.49092" /> <Hotspot X="-9006.606" Y="-363.0595" Z="74.94422" /> </Hotspots> So just putting hotspots after the quest part does not work. Any Ideas?
Do it like this; Code: TurnIn QuestName="Bounty on Garrick Padfoot" QuestId="6" TurnInName="Deputy Willem" TurnInId="823" /> <Objective QuestName="Skirmish at Echo Ridge" QuestId="21" Type="KillMob" MobId="80" KillCount="8" /> <TurnIn QuestName="Skirmish at Echo Ridge" QuestId="21" TurnInName="Marshal McBride" TurnInId="197" /> <PickUp QuestName="Report to Goldshire" QuestId="54" GiverName="Marshal McBride" GiverId="197" /> <SetGrindArea> <GrindArea> <TargetMinLevel>5</TargetMinLevel> <TragetMaxLevel>7</TargetMaxLevel> <Factions> 7 </Factions> <Hotspots> <Hotspot X="-9040.257" Y="-291.3885" Z="74.59972" /> <Hotspot X="-9076.493" Y="-331.4807" Z="73.45306" /> <Hotspot X="-9108.929" Y="-340.9735" Z="73.41761" /> <Hotspot X="-9122.935" Y="-368.1663" Z="73.70058" /> <Hotspot X="-9065.465" Y="-376.6882" Z="73.49092" /> <Hotspot X="-9006.606" Y="-363.0595" Z="74.94422" /> </Hotspots> </GrindArea> </SetGrindArea> <GrindTo Level="8" /> After the GrindTo bit you can do <Checkpoint Level="8" /> which will add a checkpoint for your bot to start from when you restart. Doing it like I have shown above means you do not need to keep opening and closing <QuestOrder> tags.
Try changing to <SetGrindArea> <GrindArea> <TargetMinLevel>1</TargetMinLevel> <TargetMaxLevel>99</TargetMaxLevel> <Factions>7</Factions> <Hotspots> <Hotspot X="-9040.257" Y="-291.3885" Z="74.59972" /> <Hotspot X="-9076.493" Y="-331.4807" Z="73.45306" /> <Hotspot X="-9108.929" Y="-340.9735" Z="73.41761" /> <Hotspot X="-9122.935" Y="-368.1663" Z="73.70058" /> <Hotspot X="-9065.465" Y="-376.6882" Z="73.49092" /> <Hotspot X="-9006.606" Y="-363.0595" Z="74.94422" /> </Hotspots> </GrindArea> </SetGrindArea> <GrindTo Level="" /> Change the GrindTo Level to whatever level you wanna grind to *Edit* I type too slow
Ok. I removed the "</SetGrindArea>" cause the bot told me it's an unknown tag. First step done. I don't get errors anymore. But HB still tells me "Nothing more to do. Stopping bot." =/