• Visit Rebornbuddy
  • bot

    Discussion in 'Honorbuddy Forum' started by bisch0f1, Jun 6, 2016.

    1. bisch0f1

      bisch0f1 New Member

      Joined:
      Apr 30, 2016
      Messages:
      11
      Likes Received:
      0
      Trophy Points:
      0
      is there a bot that just moves towards your target? doesn't do any abilities or spells or cc just chases the enemy for you.
       
    2. Azhemoth

      Azhemoth Active Member

      Joined:
      May 8, 2013
      Messages:
      534
      Likes Received:
      43
      Trophy Points:
      28
      You could actually do this with a profile on the questing botbase.
      eg:

      PHP:
      <HBProfile>
      <
      QuestOrder>

      <
      DisableBehavior Name="Combat" />

      <
      CustomBehavior File="RunCode"><![CDATA[
          while (
      true
          {
              while (
      StyxWoW.Me.CurrentTarget != null && StyxWoW.Me.CurrentTarget.Distance >= 5)
              {
                  
      Navigator.MoveTo(StyxWoW.Me.CurrentTarget.Location);
                  
      await Coroutine.Yield();
              }
              
      await Coroutine.Yield();
          }
      ]]>
      </
      CustomBehavior>

      </
      QuestOrder>
      </
      HBProfile>

      This example is using Navigator which is Honorbuddy's ground-based movement logic. It will only follow the target while on the ground.

      You can replace Navigator.MoveTo with Flightor.MoveTo - which Flightor supports flying mounts and ground mounts.

      Flightor automatically calculates the path to the target, and will generate the best method of movement depending on the situation.
       
      Last edited: Jun 7, 2016
    3. bisch0f1

      bisch0f1 New Member

      Joined:
      Apr 30, 2016
      Messages:
      11
      Likes Received:
      0
      Trophy Points:
      0
      can you pm please
       

    Share This Page