Exemplo n.º 1
0
        /// <summary>
        /// Approach the overview item
        /// </summary>
        /// <param name="entry">Name of the item as it appears on the overview</param>
        /// <returns>true on sucess, false otherwise</returns>
        public Boolean approach(OverViewEntry entry)
        {
            bool success = menu.open(entry);

            menu.click(MenuHandler.MENUITEMS.APPROACH);
            return(success);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Target the given overview entry
 /// </summary>
 /// <param name="entry">The overview entry to target</param>
 /// <returns>True on sucess, false otherwise</returns>
 public Boolean target(OverViewEntry entry)
 {
     menu.open(entry);
     menu.click(MenuHandler.MENUITEMS.LOCKTARGET);
     return(true);
 }
Exemplo n.º 3
0
 /// <summary>
 /// Target the given overview entry
 /// </summary>
 /// <param name="entry">The overview entry to target</param>
 /// <returns>True on sucess, false otherwise</returns>
 public Boolean target(OverViewEntry entry)
 {
     menu.open(entry);
     menu.click(MenuHandler.MENUITEMS.LOCKTARGET);
     return true;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Approach the overview item
 /// </summary>
 /// <param name="entry">Name of the item as it appears on the overview</param>
 /// <returns>true on sucess, false otherwise</returns>
 public Boolean approach(OverViewEntry entry)
 {
     bool success = menu.open(entry);
     menu.click(MenuHandler.MENUITEMS.APPROACH);
     return success;
 }
Exemplo n.º 5
0
 /// <summary>
 /// Sort by distance from player
 /// </summary>
 /// <param name="T">The object to compare against</param>
 /// <returns></returns>
 public int CompareTo(OverViewEntry T)
 {
     return(distance.CompareTo(T.distance));
 }
Exemplo n.º 6
0
 /// <summary>
 /// Sort by distance from player
 /// </summary>
 /// <param name="T">The object to compare against</param>
 /// <returns></returns>
 public int CompareTo(OverViewEntry T)
 {
     return distance.CompareTo(T.distance);
 }