Jump to content

reapler

Elite user
  • Posts

    288
  • Joined

  • Last visited

Reputation Activity

  1. Thanks
    reapler reacted to Droidz in GetHashCode() & Equals() position implementation   
    Hello, thank you,
    I added it, wait next update:
    public override int GetHashCode() { try { return (X.GetHashCode() * 397 ^ Y.GetHashCode()) * 397 ^ Z.GetHashCode(); } catch { } return 0; } public override bool Equals(object obj) { try { var v = obj as Vector3; if (v == null) return false; return X == v.X && Y == v.Y && Z == v.Z; } catch { } return false; }  
  2. Like
    reapler reacted to Droidz in "[MovementManager] Think we are stuck" while stunned   
    Hello, wait next update, I'll check more info before to move ("!IsCast && !Influenced && !IsStunned && !IsOnTaxi" instead only "!IsCast")
  3. Thanks
    reapler reacted to Droidz in PathFinder.Pather.FindZ(); NullReferenceException   
    Hello, you need to call 
    wManager.Wow.Helpers.PathFinder.GetZPosition(new Vector3(1, 2, 3));  
×
×
  • Create New...