What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

bot

bisch0f1

New Member
Joined
Apr 30, 2016
Messages
11
Reaction score
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.
 
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:
Back
Top