예제 #1
0
        public bool Update(System.Windows.Point Player, System.Windows.Point Additional = default(System.Windows.Point))
        {
            if (_AcdID != Actor.x000_Id)
            {
                return(false);
            }

            try
            {
                var x = DiabloIII.FromD3toScreenCoords(
                    GameManagerAccountHelper.Current.Player.Point(),
                    Actor.Point());

                X = x.X;
                Y = x.Y;
            }

            catch (Exception e)
            {
                DebugWriter.Write(e);
            }
            return(true);
        }
예제 #2
0
 public ItemFinder(int processID)
 {
     d3         = new DiabloIII(processID);
     IgnoreList = new List <ACDActor>();
 }
예제 #3
0
 public ItemFinder()
 {
     d3         = new DiabloIII();
     IgnoreList = new List <ACDActor>();
 }
예제 #4
0
파일: ItemFinder.cs 프로젝트: usuket/Works
 public ItemFinder(int processID)
 {
     d3 = new DiabloIII(processID);
     IgnoreList = new List<ACDActor>();
 }
예제 #5
0
파일: ItemFinder.cs 프로젝트: usuket/Works
 public ItemFinder()
 {
     d3 = new DiabloIII();
     IgnoreList = new List<ACDActor>();
 }