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

Descend to near ground?

Inrego

New Member
Joined
Feb 7, 2010
Messages
2,765
Reaction score
71
Is there any way to make it descend to near ground? For example if I want to dismount safely before using HS at some given condition.
 
it depends on what botbase you're using

if it's questing -
PHP:
				<CustomBehavior File="ForcedDismount" />
<custombehavior file="ForcedDismount"></custombehavior>
 
Nah I'm doing ma shizzle in PB.

EDIT: Nvm I figured that
Code:
Mount.Dismount()
will do it.
 
Last edited:
to descend it's something like...
while(Me.IsFlying)
{ WoWMovement.Move(WoWMovementType.Descend, TimeSpan.FromSeconds(1)); }

It's something like that. I forgot to svn my recent stuff so I could work on it at work :(
 
Well as I said, Mount.Dismount() does it all fine so no need to resolve into other methods :P
 
Back
Top