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!

Stealth Aura or help with questing profile PLEASE

twistedcf

Member
Joined
Jun 3, 2010
Messages
164
Hi So Im currently trying to get a questing profile to work using an If statement where If Im stealthed it will move to hotspots but if stealth is broken it will run to a certain location and use vanish. The trouble Im having is that I dont know how to use the quest behavior for HASAURA. If anyone can help me with this id greatly appreciate it. Or if you have an alternative way of doing this.
Something like this.

<If Condition="Me.HASAURAHERE>
<CustomBehavior File="NoCombatMoveTo" X="-7722.195" Y="-1601.23" Z="130.9897" />
<CustomBehavior File="NoCombatMoveTo" X="-7716.877" Y="-1593.674" Z="132.3927" />
<Else>
<CustomBehavior File="NoCombatMoveTo" X="-7716.877" Y="-1593.674" Z="132.3927" />
<CustomBehavior File="RunMacro" Macro="/cast vanish" />
</If>
 
Have you tried:

Code:
Me.HasAura("NAME")

or

Code:
Me.ActiveAuras.ContainsKey["NAME"]

?
 
Back
Top