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

Behind Target not working

Nightskine

Member
Joined
Oct 30, 2010
Messages
150
Reaction score
1
I can't seem to get HB to realize if its behind the target or not ....
I've tried
Code:
if(Me.IsBehind(Me.CurrentTarget))

then

Code:
!Me.CurrentTarget.IsFacing(Me)

and then i put em together ...

Code:
if(Me.IsBehind(StyxWoW.Me.CurrentTarget) && !StyxWoW.Me.CurrentTarget.IsFacing(StyxWoW.Me))

No matter what even if I'm facing the target this returns true and HB still tries to backstab .... :(
Anyone know why?
 
I can't seem to get HB to realize if its behind the target or not ....
I've tried
Code:
if(Me.IsBehind(Me.CurrentTarget))
then

Code:
!Me.CurrentTarget.IsFacing(Me)
and then i put em together ...

Code:
if(Me.IsBehind(StyxWoW.Me.CurrentTarget) && !StyxWoW.Me.CurrentTarget.IsFacing(StyxWoW.Me))
No matter what even if I'm facing the target this returns true and HB still tries to backstab .... :(
Anyone know why?
try,
if(!Me.CurrentTarget.IsFacing(Me))
just by itself and see what results that gives you.
 
Last edited:
try,
if(!Me.CurrentTarget.IsFacing(Me))
just by itself and see what results that gives you.

All these methods dont work. ;)

If the target changes Rotation && target does not change Location && Me does nothing at all -> it wont update.

But that happens alot, because Druids and Rogues stun their targets.
 
Is there no way to go behind the target at this moment?
 
Back
Top