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!

Need help with farming profile (Profile Attached)

GaijinSmash

New Member
Joined
Apr 22, 2015
Messages
2
I've been trying to make a profile for farming specific mobs for crafting materials. The profile will start without any error messages but the bot won't move. It just stands there. I've checked the log folder and it's empty so I don't have one to attach.

I've attached my farming profile, would anyone be able to tell me what I did wrong with it? Thanks in advance!
 

Attachments

I've been trying to make a profile for farming specific mobs for crafting materials. The profile will start without any error messages but the bot won't move. It just stands there. I've checked the log folder and it's empty so I don't have one to attach.

I've attached my farming profile, would anyone be able to tell me what I did wrong with it? Thanks in advance!

Code:
<Profile>
<Name>Your Profile Name Here</Name>
<KillRadius>80</KillRadius>
<!-- Just Having the GrindAreas will tell the bot nothing, so yeah, it'll just stand there amusing itself -->
<GrindAreas>
  <GrindArea name="LetsKillHoglets">
    <Hotspots>
      <Hotspot Radius="80" XYZ="434.1374, 30.28624, 78.03606"/>
    </Hotspots>
  <TargetMobs>
    <TargetMob Id="295"/> <!-- Mob names are no longer supported, you need the mob ID. Hoglets MobId is 295, they reside in Central Shroud -->
  </TargetMobs>
  <MinLevel>10</MinLevel>
  <MaxLevel>51</MaxLevel>
  </GrindArea>
</GrindAreas>
  <!-- This is where you tell the bot what to do. OrderBot profiles "Need" the Order -->
  <Order>
    <!-- If you aren't in the Central Shroud (Bentbranch Meadows). Tell the bot to haul ass -->
    <If Condition="not IsOnMap(148)">
      <TeleportTo AetheryteId="3" Name="Bentbranch Meadows"/>
    </If>
    <!-- Once there... Grind until you drop -->
    <Grind grindref="LetsKillHoglets" While="true" PostCombatDelay="2.5"/>
  </Order>
</Profile>
 
Last edited:
Back
Top