public static ulong GetTargetGuid() { PlayerScan scan = new PlayerScan(); scan.Ping(); WowObject obj = scan.GetLocalTarget(); return(obj.Guid); }
public static bool IsTargetDead() { PlayerScan scan = new PlayerScan(); scan.Ping(); WowObject obj = scan.GetLocalTarget(); return(obj.isDead); }
public static Point GetTargetPos() { PlayerScan scan = new PlayerScan(); scan.Ping(); WowObject obj = scan.GetLocalTarget(); return(new Point(obj.XPos, obj.YPos)); }