/// <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()); }
/// <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()); }
/// <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()); }
/// <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(); }
/// <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(); }