• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Grinding after Questing

    Discussion in 'Archives' started by Pexus, Aug 28, 2010.

    1. Pexus

      Pexus Member

      Joined:
      Feb 5, 2010
      Messages:
      222
      Likes Received:
      2
      Trophy Points:
      18
      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?
       
    2. Synik

      Synik Active Member

      Joined:
      Jan 30, 2010
      Messages:
      995
      Likes Received:
      42
      Trophy Points:
      28
      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.
       
    3. logicalstep

      logicalstep New Member

      Joined:
      May 19, 2010
      Messages:
      25
      Likes Received:
      0
      Trophy Points:
      1
      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 :D
       
    4. Pexus

      Pexus Member

      Joined:
      Feb 5, 2010
      Messages:
      222
      Likes Received:
      2
      Trophy Points:
      18
      Ah cool. Gonna try this. Thanks
       
    5. Pexus

      Pexus Member

      Joined:
      Feb 5, 2010
      Messages:
      222
      Likes Received:
      2
      Trophy Points:
      18
      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."

      =/
       
    6. Synik

      Synik Active Member

      Joined:
      Jan 30, 2010
      Messages:
      995
      Likes Received:
      42
      Trophy Points:
      28
      Make sure it is within your QuestOrder tags.
       
    7. Pexus

      Pexus Member

      Joined:
      Feb 5, 2010
      Messages:
      222
      Likes Received:
      2
      Trophy Points:
      18
      Ah. Okay. Now it works. :)
      Thanks a lot!
       
      Last edited: Aug 28, 2010

    Share This Page