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!

possible to make bot never dismount to fight while herbing ?

nypan

New Member
Joined
Sep 28, 2013
Messages
26
hey is it possible to make bot never dismount to fight while herbing ?.. the bot would be much safer if it just kept running on skygolem and never dismount while herbig.. i have the enchant on gloves so i can herb even tho npcs attacking me
 
hey is it possible to make bot never dismount to fight while herbing ?.. the bot would be much safer if it just kept running on skygolem and never dismount while herbig.. i have the enchant on gloves so i can herb even tho npcs attacking me

Have you looked into the Run Like Hell settings in:
Honorbuddy\Quest Behaviors\RunLikeHell.cs

That is a good place to look to find how the bot operates and what you may need to do in your profile in order to replicate the behavior!
Something like:

Follows path one time as listed.
Code:
<CustomBehavior File="RunLikeHell" >
     <Hotspot X="4554.003" Y="-4718.743" Z="883.0464" />
     <Hotspot X="4578.725" Y="-4721.257" Z="882.8724" />
     <Hotspot X="4584.166" Y="-4693.487" Z="882.7331" />
</CustomBehavior>
Follows route up to 4 times, moves to next spot only if ModId 40434 is within 10 yds
Code:
<CustomBehavior File="RunLikeHell" NumOfTimes="4" MobId="40434" Range="10">
     <Hotspot X="4554.003" Y="-4718.743" Z="883.0464" />
     <Hotspot X="4578.725" Y="-4721.257" Z="882.8724" />
     <Hotspot X="4584.166" Y="-4693.487" Z="882.7331" />
</CustomBehavior>

Follows the route up to 4 times, moves to next spot only if ModId 40434 is within 10 yds, stops at 4 loops or when QuestId 25499 is complete.
Code:
<CustomBehavior File="RunLikeHell" QuestId="25499" NumOfTimes="4" MobId="40434" Range="10">
     <Hotspot X="4554.003" Y="-4718.743" Z="883.0464" />
     <Hotspot X="4578.725" Y="-4721.257" Z="882.8724" />
     <Hotspot X="4584.166" Y="-4693.487" Z="882.7331" />
</CustomBehavior>
 
Last edited:
Back
Top