Could you anyone help me with these two questions (NET CODE)
1.How to open on station the corporate hangar?
In old code I used EVEGlobal.Instance.Extension.EVEWindow("OpenHangarFloor");
2.How to stack all items on station (items and ships)
In old code I used EVEGlobal.Instance.Extension.EVEWindow.("hangarFloor").StackAll();
EVEGlobal.Instance.Extension.EVEWindow("shipHangar").StackAll();
The class EVEGlobal define the basic
public sealed class EVEGlobal
{
public static readonly EVEGlobal Instance = new EVEGlobal();
public Extension Extension { get; private set; }
public Character Character { get; private set; }
public EVE.ISXEVE.EVE Eve { get; private set; }
public LavishNav lavishNew { get; private set; }
private EVEGlobal()
{
Extension = new Extension();
Character = Extension.Me;
Eve = Extension.EVE();
}
1.How to open on station the corporate hangar?
In old code I used EVEGlobal.Instance.Extension.EVEWindow("OpenHangarFloor");
2.How to stack all items on station (items and ships)
In old code I used EVEGlobal.Instance.Extension.EVEWindow.("hangarFloor").StackAll();
EVEGlobal.Instance.Extension.EVEWindow("shipHangar").StackAll();
The class EVEGlobal define the basic
public sealed class EVEGlobal
{
public static readonly EVEGlobal Instance = new EVEGlobal();
public Extension Extension { get; private set; }
public Character Character { get; private set; }
public EVE.ISXEVE.EVE Eve { get; private set; }
public LavishNav lavishNew { get; private set; }
private EVEGlobal()
{
Extension = new Extension();
Character = Extension.Me;
Eve = Extension.EVE();
}