Exemplo n.º 1
0
        /// <summary>
        /// Wrapper for the StackAllHangarItems method of the character type.
        /// </summary>
        /// <returns></returns>
        public bool StackAllHangarItems()
        {
            // TODO - Remove this when stealthbot is updated.
            Tracing.SendCallback("Character.StackAllHangarItems - Redirecting to EVEWindow");
            EVEWindow wnd = new EVEWindow(LavishScript.Objects.GetObject("EVEWindow", "ByName", "hangarFloor"));

            return(wnd.StackAll());
        }
Exemplo n.º 2
0
        /// <summary>
        /// Same as right click, Stack All -- consolidates stacks
        /// </summary>
        public bool StackAllCargo()
        {
            // TODO - Remove this when stealthbot is updated.
            Tracing.SendCallback("Entity.StackAllCargo - Redirecting to EVEWindow");
            EVEWindow wnd = new EVEWindow(LavishScript.Objects.GetObject("EVEWindow", "ByName", this.ID.ToString(CultureInfo.CurrentCulture)));

            return(wnd.StackAll());
        }
Exemplo n.º 3
0
        /// <summary>
        /// Wrapper for the StackAllCargo method of the ship type.
        /// </summary>
        /// <returns></returns>
        public bool StackAllCargo()
        {
            // TODO - Remove this when stealthbot is updated.
            Tracing.SendCallback("Ship.StackAllCargo - Redirecting to EVEWindow");
            var wnd = new EVEWindow(LavishScript.Objects.GetObject("EVEWindow", "ByName", ID.ToString()));

            return(wnd.StackAll());
        }
Exemplo n.º 4
0
 /// <summary>
 /// Same as right click, Stack All -- consolidates stacks
 /// </summary>
 public bool StackAllCargo()
 {
     // TODO - Remove this when stealthbot is updated.
     Tracing.SendCallback("Entity.StackAllCargo - Redirecting to EVEWindow");
     EVEWindow wnd = new EVEWindow(LavishScript.Objects.GetObject("EVEWindow", "ByName", this.ID.ToString()));
     return wnd.StackAll();
 }
Exemplo n.º 5
0
 /// <summary>
 /// Wrapper for the StackAllHangarItems method of the character type.
 /// </summary>
 /// <returns></returns>
 public bool StackAllHangarItems()
 {
     // TODO - Remove this when stealthbot is updated.
     Tracing.SendCallback("Character.StackAllHangarItems - Redirecting to EVEWindow");
     EVEWindow wnd = new EVEWindow(LavishScript.Objects.GetObject("EVEWindow", "ByName", "hangarFloor"));
     return wnd.StackAll();
 }