My character stands los while trying to attack a mob while it is farming, for example Ravenholdt rep, it stands and tries to kill the target when it it los until I manually move my character so that he can attack, could you try to fix this bugg please? It would be amasing. Had to set my pull range to 30 to reduce the amout of Line of Sight buggs.
I've been trying out the regular one and Altarboy, both CCs has the LOS bugg, (dwarf shadow priest). Do you have any recommended ccs? Edit: It's only a few mobs that has this los bugg, like when I try to farm Steamwheedle Cartel, my character stands below the stairs and tries to attack the target and just gets stuck there until i move him, or change the pull range to like 16.
Looking for something like this? It should work for if something is up some stairs or some crap but HB thinks it is in LoS. Code: while (Navigator.GeneratePath(Me.Location, Target.Location).Length > 2) { Navigator.MoveTo(Target.Location); Thread.Sleep(250); } The .Length > 2 being that the path it generates should have 2 points. The first being your location, the second being the targets location. The generator doesn't take into account where you toon is. It just decides where the clicks should be. I used this in my Mage Helper plugin to solve the issue of it trying to blink through trees and the crap on the ground, which it can't blink through obviously (fences and such). Hope it helped. -Panda.