kraszus
Members
-
Joined
-
Last visited
Reputation Activity
-
kraszus reacted to Haven65 in Bot stopping every 5 Meter´sAhhh he´s trying to revive his Pet that has to be the problem.
So i have to wait till level 10 then i guess
-
kraszus got a reaction from ⎝͠҉̭̫͖̗͇ͅTraWin ̍̍̍̍̍̍̍̍̍ in Upgrade to 3 sessions please::thumbs-up::
-
kraszus got a reaction from arkhan in move back if... add code in fightclass editorExcellent..will try it out
[EDIT] Works a treat. Thanks Arkhan :)
-
kraszus reacted to arkhan in move back if... add code in fightclass editorstatic Main() { wManager.Events.FightEvents.OnFightLoop += (unit, cancelable) => { if (unit.IsValid && ObjectManager.Target.IsTargetingMyPet && ObjectManager.Target.GetDistance <= 5) { wManager.Wow.Helpers.Move.Backward(Move.MoveAction.PressKey, 1500); } }; } 1)not tested, but that doesn't check if they are an obstacle behind you.
2) you could do more properly by using
MovementManager.Go(PathFinder.FindPath(ObjectManager.Me.Position, new Vector3(ObjectManager.Me.Position.X, ObjectManager.Me.Position.Y + 15, ObjectManager.Me.Position.Z))); For example