• Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • possible to make bot never dismount to fight while herbing ?

    Discussion in 'Honorbuddy Support' started by nypan, Oct 17, 2016.

    1. nypan

      nypan New Member

      Joined:
      Sep 28, 2013
      Messages:
      26
      Likes Received:
      0
      Trophy Points:
      1
      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
       
    2. BigStud

      BigStud Community Developer

      Joined:
      Oct 21, 2013
      Messages:
      79
      Likes Received:
      1
      Trophy Points:
      8
      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: Oct 17, 2016

    Share This Page