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!

Questing bot base Ground mount travel form

tokinterrorz

Member
Joined
Oct 12, 2012
Messages
140
Hi as the title says would it be possible to have travel form as a option for ground mounts with the new glyph to make travel form 100% on the questing bot.
 
Unfortunately there's no way to include 'Travel Form' into the usable ground mount list.
However, you can still do what you're wanting by disabling mounting, and by writing a code to cast Travel Form into a DoWhen hook.

The DoWhen is necessary for as long as Singular doesn't cast Travel Form on its own - which in some cases it will if the bot doesn't mount.
You can try this without using the DoWhen hook to see if Singular will activate Travel Form on its own given that UseMount is set to false. If not, you'll need the DoWhen hook.


Anywho, here's an example of how you could use it in your profile:

PHP:
<HBProfile>
<QuestOrder>

	<UseMount Value="false" />

	<CustomBehavior File="Hooks\DoWhen" ActivityName="TravelFormHook" UseWhen="SpellManager.CanCast(783) &amp;&amp; !Me.HasAura(783) &amp;&amp; !Me.Combat &amp;&amp Me.IsMoving" >
		<CustomBehavior File="RunCode" Code="SpellManager.Cast(783)" WaitTime="1000" />
	</CustomBehavior>

	<!-- Your grind code here. -->

</QuestOrder>
</HBProfile>


The <UseMount/> line will turn off the usage of mounts.
Then the <CustomBehavior/> line will make the bot cast Travel Form at any time your not in combat, and when you're moving.
 
Back
Top