These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
EveAI Live (EVE-Online API/class library for .Net/ C#/ VB.Net)
EveAI.DataCore core = new EveAI.DataCore();EveAI.DataReader reader = new EveAI.StaticDataDataReader(core);reader.Read(EveAI.DataTypes.Products | EveAI.DataTypes.Names);EveAI.Live.Market.EveCentralMarketApi market = new EveAI.Live.Market.EveCentralMarketApi(core);stat = market.GetProductStatistics(core.FindProductType(34));
Making New Eden a safer place, One frozen corpse at a time.
Imports EveAI.LiveImports EveAI.Live.Account
Dim apiData As New AuthenticationData()apiData.KeyID = 0 'Change these to correct infoapiData.VCode = ""apiData.CharacterID = 0Dim characterListApi As New AccountCharactersApi()characterListApi.AuthenticationData = apiDatacharacterListApi.UpdateData()Dim chars As List(Of AccountCharacter)chars = characterListApi.Data
AuthenticationData apiData = new AuthenticationData();apiData.KeyID = KEY_ID;apiData.VCode = V_CODE;apiData.CharacterID = CHAR_ID;int rowCount = 2560;long fromID = -1L;CharacterWalletJournalApi walletJournal = new CharacterWalletJournalApi(rowCount, fromID);walletJournal.AuthenticationData = apiData;walletJournal.RowCount = rowCount; //these are redundant but put herewalletJournal.FromID = fromID; //because i wanted to show both wayswalletJournal.UpdateData();
EveAI developper: https://forums.eveonline.com/default.aspx?g=posts&t=21803