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

<ForcedMount> Issues in Profile writing

abndrew82

New Member
Joined
May 14, 2010
Messages
323
Reaction score
1
I am trying to use the ForcedMount Custom Behavior in a profile and having issues.

This is the line I am using

<custombehavior file="ForcedMount" questid="27722" mounttype="Flying"><custombehavior file="ForcedMount" questid="27722" mounttype="Flying">Cant Get it to show the code in the post, so attached as a text file

What happens though, is it appears as if the character trying mount flying mount, but tries to excel before hand and ends up jumping and interrupting the cast.

Anybody have luck with the custom behavior and can shed some light.

Am trying to get character to go to a certain quest turn in in Org, but the mesh cant find it by default.</custombehavior></custombehavior>

Mod:
Use php tags like so:


PHP:
<CustomBehavior File="ForcedMount" QuestId="27722" MountType="Flying" />
 

Attachments

Last edited by a moderator:
bump

I also have the issue that the bot jumps interupting the flying mount cast.
 
The CB itself is jumping, so a waittimer doesn't work here.
But in the new honorbuddy-version ForceMount works nearly correct (for me)
 
The CB itself is jumping, so a waittimer doesn't work here.
But in the new honorbuddy-version ForceMount works nearly correct (for me)

This works perfectly for me on all toons that i've used it on
PHP:
			<If Condition="(HasQuest(27398))" >
				<CustomBehavior File="ForcedMount" QuestId="0" MountType="Flying" />
				<CustomBehavior File="WaitTimer" WaitTime="2000"/>
				<CustomBehavior File="FlyTo" X="-8214.752" Y="428.5352" Z="118.0506" />
				<CustomBehavior File="RunMacro" Macro="/dismount\n/cancelaura Swift Flight Form\n/cancelaura Flight Form" NumOfTimes="1" WaitTime="2000" />
			</If>
 
Back
Top