Pages: 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 .. 26 :: one page |
|
Author |
Thread Statistics | Show CCP posts - 2 post(s) |

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.05.13 07:22:00 -
[271]
You get all jobs from that api (production, research...) _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

Wodeki
|
Posted - 2009.05.20 15:36:00 -
[272]
Edited by: Wodeki on 20/05/2009 15:39:42
|

Andrey Skorpion
|
Posted - 2009.05.20 17:16:00 -
[273]
Edited by: Andrey Skorpion on 20/05/2009 17:19:41 Hello guys!
I wonder how can i have a Characters list only having userID and APIkey.
EveApi api = new EveApi ( 9999, "asdaofvho1234789vsdf");
from here how can i retrieve the list of the character in that account? and how can i handle them?
@Edit is there a little guide on how to use EveAI as library?that help you build programs, or give you examples on how to use methods.
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.05.20 17:38:00 -
[274]
Originally by: Andrey Skorpion Edited by: Andrey Skorpion on 20/05/2009 17:19:41 Hello guys!
I wonder how can i have a Characters list only having userID and APIkey.
EveApi api = new EveApi ( 9999, "asdaofvho1234789vsdf");
from here how can i retrieve the list of the character in that account? and how can i handle them?
Something like: var accounts = api.GetAccountEntries ();
There is some info on the first topic of the thread (on eve-dev) _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

Kathryna Gorevic
|
Posted - 2009.05.21 08:35:00 -
[275]
Edited by: Kathryna Gorevic on 21/05/2009 08:35:49 Ok guys, now i have learned how to manage with api a litle; but i still have a huge problem:
-> After i open the API, with userID, apikey, and characterID, he cache somehow all data that i get from any GetXXX function, and when i run the same program he always give me back the same information. How can i update those information from the Eve Web Server?
For example: TimeSpan tempo; List<SkillInTraining> coda;
coda = api.GetCharacterSkillQueue();
tempo = coda[0].TrainingEnd.Subtract(coda[0].TrainingStart);
MessageBox(tempo.TotalSeconds.ToString());
This code, yesterday give me 20000 seconds, and today give me the same amount, but that character never stop learning that skill.
|

Yaghi
|
Posted - 2009.05.21 17:37:00 -
[276]
Hi, is there anyway to convert a string e.g. "Depleted Uranium L" to it's ID? I found this: Public Function GetIdForObject(ByVal eveAiObject As Object) As Integer but i don't know how to create the eveAiObject in VB. Can u give me some help, or is there a better way to do it?
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.05.21 23:31:00 -
[277]
Originally by: Kathryna Gorevic
-> After i open the API, with userID, apikey, and characterID, he cache somehow all data that i get from any GetXXX function, and when i run the same program he always give me back the same information. How can i update those information from the Eve Web Server?
I want to find a way to bypass the time that i have to wait before they refresh automatically the current information on cache.
The caching period is forced by the eve servers. You could deactivate the automatic caching in EveAI.Live but you sill wouldn't get new information any earlier. _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.05.21 23:36:00 -
[278]
Originally by: Yaghi Hi, is there anyway to convert a string e.g. "Depleted Uranium L" to it's ID? I found this: Public Function GetIdForObject(ByVal eveAiObject As Object) As Integer but i don't know how to create the eveAiObject in VB. Can u give me some help, or is there a better way to do it?
You cannot create that object yourself. You will have to use an existing one. ProductType type = api.EveApiCore.ProductTypes.Find (...); // Check for name equality here _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

Andrey Skorpion
|
Posted - 2009.05.25 17:20:00 -
[279]
How can i check if the api gived to me by the user (using textboxes) are correct or not?
i mean if someone give me:
UserID: 1 ApiKey: 1
how can i verify if the EveServer accept the connection with those parameters? |

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.05.26 06:50:00 -
[280]
Originally by: Andrey Skorpion How can i check if the api gived to me by the user (using textboxes) are correct or not?
i mean if someone give me:
UserID: 1 ApiKey: 1
how can i verify if the EveServer accept the connection with those parameters?
Just make an API call with them and observe the error return values. |
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.06.04 06:53:00 -
[281]
Edited by: Amida Ta on 04/06/2009 06:53:26 EveAI Live Version 1.1.6b has been released!
Changes since last version:
- Full data added for Celestial statistics in the DataCore (check if the type is a NaturalObjectCelestial which has statistics). Discussed and requested in another thread.
Here is the new version: http://dl.eve-files.com/media/corp/Foxfire/EveAI_Live_1.1.6b.zip _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

Quantar Raalsken
Gallente
|
Posted - 2009.06.04 12:34:00 -
[282]
Originally by: Amida Ta Edited by: Amida Ta on 04/06/2009 06:53:26 EveAI Live Version 1.1.6b has been released!
Changes since last version:
- Full data added for Celestial statistics in the DataCore (check if the type is a NaturalObjectCelestial which has statistics). Discussed and requested in another thread.
Here is the new version: http://dl.eve-files.com/media/corp/Foxfire/EveAI_Live_1.1.6b.zip
  
======= Homeworld Hamachi Network
|

Professor McCopy
|
Posted - 2009.06.18 21:57:00 -
[283]
Thanks for the great lib Amida. I have been using EveAI for a little while and have been trying to familiarize myself with it. I have one question though. When using complex mode, a skill api call will return with Skill set to null. This is not a problem with simple mode. "How do you get that specific data while using complex mode?
Dim SkillQueue As New EveAI.Live.Character.CharacterSkillQueueApi SkillQueue.AuthenticationData = API.Authentication SkillQueue.UpdateData()
Just wondering since I am kinda stuck on this. Everything else seems to be fine.
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.06.18 22:41:00 -
[284]
Originally by: Professor McCopy Thanks for the great lib Amida. I have been using EveAI for a little while and have been trying to familiarize myself with it. I have one question though. When using complex mode, a skill api call will return with Skill set to null. This is not a problem with simple mode. "How do you get that specific data while using complex mode?
Dim SkillQueue As New EveAI.Live.Character.CharacterSkillQueueApi SkillQueue.AuthenticationData = API.Authentication SkillQueue.UpdateData()
Just wondering since I am kinda stuck on this. Everything else seems to be fine.
In complex mode this won't happen automatically. Look at this post to find your how you can use EveAI without doing it yourself: http://www.eveonline.com/ingameboard.asp?a=topic&threadID=654430&page=9#267 |

EOH Tomw
Gallente Eve Online Hold'Em ISK Six
|
Posted - 2009.06.19 03:48:00 -
[285]
CorporationStarbaseList
I am trying to get the MOON and Moonnames from this but they dont seem to be avaliable anyway i try. Would like to keep what Plant and Moon the poses are located at. i can get everything else to work but that.
Any help would be much appericated.
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.06.19 10:13:00 -
[286]
Originally by: EOH Tomw
Moon name is currently Blank. I have downloaded the EveAI.Data.zip and tried reading it in but i get a file not found error while trying that.
You have to specify the directory only for the StaticDataDataReader. _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

EOH Tomw
Gallente Eve Online Hold'Em ISK Six
|
Posted - 2009.06.19 11:24:00 -
[287]
Originally by: Amida Ta Edited by: Amida Ta on 19/06/2009 10:18:08
Originally by: EOH Tomw
Moon name is currently Blank. I have downloaded the EveAI.Data.zip and tried reading it in but i get a file not found error while trying that.
You have to specify the directory only for the StaticDataDataReader.
Moonnames should be available even without the complete EveAI.Data.zip. Is the MoonID correct? (Can't test because my corp does not have any POSses).
There is a moon ID listed when i ask for that.
I have tryed useing the CoreData using the following to no availe to get the moon info.
Dim core As New EveAI.DataCore() Dim reader As New EveAI.DataDecoder.DataDecoderDataReader(core, "C:\temp\") reader.Read(EveAI.DataTypes.Celestials)
Dim reader2 As EveAI.DataReader reader2.Read() Then i tryed this
reader2.Core.FindCelestial(item2.MoonID)
If you wana meat up in game i can give you an apikey you can use to test with.
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.06.19 14:25:00 -
[288]
Originally by: EOH Tomw
Dim core As New EveAI.DataCore() Dim reader As New EveAI.DataDecoder.DataDecoderDataReader(core, "C:\temp\") reader.Read(EveAI.DataTypes.Celestials)
You need to use the StaticDataDataReader, not a DataDecoderDataReader. Other than that you also might need to pass more types to the reader.Read (to try don't specify any which will load everything) _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.06.19 14:36:00 -
[289]
EveAI Live Version 1.1.6c has been released!
Changes since last version:
- Custom request for an addition. Thanks for the ISK!
Here is the new version: http://dl.eve-files.com/media/corp/Foxfire/EveAI_Live_1.1.6c.zip _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

JuicyCakes
|
Posted - 2009.06.22 03:32:00 -
[290]
Hi,
Quick question about caching. Lets say my app uses the EveAI to pull Jump data (cache interval is 1 hour) at 21:00:00. Then the app tries to pull updated Jump data at 22:00:00. At 22:00:00 exact, will the app get new data or cached data? I guess what I'm trying to ask is are the cachUntil timestamps inclusive or exclusive?
I also prefer to disable caching on the client side and just ask the server for updated data every hour. Is there an API call in EveAI to do that? I looked at the EveApi but couldn't find any relevant members.
Thanks, James |
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.06.22 16:42:00 -
[291]
Originally by: JuicyCakes Quick question about caching. Lets say my app uses the EveAI to pull Jump data (cache interval is 1 hour) at 21:00:00. Then the app tries to pull updated Jump data at 22:00:00. At 22:00:00 exact, will the app get new data or cached data? I guess what I'm trying to ask is are the cachUntil timestamps inclusive or exclusive?
To be honest I don't know. But I don't think it is relevant either. Just assume it is inclusive and wait that one second.
Originally by: JuicyCakes
I also prefer to disable caching on the client side and just ask the server for updated data every hour. Is there an API call in EveAI to do that? I looked at the EveApi but couldn't find any relevant members.
In the simple mode all caching is completely transparent. In complex mode (using the *Api classes directly) you can contol memory and file based caches exactly (IgnoreMemoryCache, PersistData). |

JuicyCakes
|
Posted - 2009.06.22 20:30:00 -
[292]
Thank you for that info.
The inclusive/exclusiveness is important to me, as I'm planning to run this program for extended durations (> 10 days at a time). At that duration, there will be noticeable drifts in start/end times.
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.06.23 15:17:00 -
[293]
I still don't get where your problem is, even if you could run your application for centuries... If you want the most current data (I guess thats what you want) just update as soon as allowed. |

Wodeki
|
Posted - 2009.07.08 18:18:00 -
[294]
Is there any way to determine the researched ME/PE levels of a blueprint if you own the item? The Blueprint object does not seem to contain this information, although I do know that it is contained within the game. I am not certain if the Eve API even supports passing this information.
|

TeliaA
|
Posted - 2009.07.08 20:51:00 -
[295]
Edited by: TeliaA on 08/07/2009 20:51:21
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.07.08 20:52:00 -
[296]
EveAI Live Version 1.1.7 has been released!
Changes since last version:
- Updated the static data to Aprocrypha 1.3.1
Here is the new version: http://dl.eve-files.com/media/corp/Foxfire/EveAI_Live_1.1.7.zip _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

EOH Tomw
Gallente Eve Online Hold'Em ISK Six
|
Posted - 2009.07.10 19:30:00 -
[297]
So next up on my questions and awnsers list is Items in Wormholes. The systems have Names and Planets and Moons. When pulling my starbase list i am getting a few with no moon names. I know they released the wormwhole info but cant seem to find it in the eveai library. Point me in the right direction on master of the API...
|

Amida Ta
German Mining and Manufacture Corp.
|
Posted - 2009.07.11 16:06:00 -
[298]
I'm not sure if I understand your problem? You are missing moon data within wormholes? And in what case? When using the full EveAI.Data.zip file? Please note that this is only somewhat supported.
I just checked and it seems the data is in there. I'll upload a new version 1.3.1 for it anyways, but I somehow doubt this will solve your problem. _________________________ EveAI.Live - The EVE-Online API/class library for .Net, C# and VB.Net |

Rivercuomo
|
Posted - 2009.07.13 05:24:00 -
[299]
Is there some kind of documentation with this? As I am very new to c# and OO in general.
I don't understand how to grab corporation wallet info. I played around with it and got the character sheet, and corporation info to come up, but how do I get journal info? |

Osku Rei
Caldari Knights of the Old Empire AAA Citizens
|
Posted - 2009.07.13 16:31:00 -
[300]
hey all, can someone help me with getting the details of a starbase (pos) I have a directors API and i am able to get the list of pos's that the corp has and display in a datagrid
however when i try to get the details of a pos is comes back with an error, this is my code
StarbaseDetail starbaseDetail = EveApi.GetStarbaseDetail(Account ID, Char ID, "Full Api", Starbase ID); Console.WriteLine("usageFlags: {0} deployFlags: {1}", starbaseDetail.UsageFlags, starbaseDetail.DeployFlags);
foreach (StarbaseDetail.FuelListItem fli in starbaseDetail.FuelList) { dataGridView2.DataSource = starbaseDetail.FuelList; } }
the Account ID etc are just to represent the data ( o i dont post his full api on the forms :) )
it highlights the first line and gives a "NullReferenceException was unhandled" error
can someone point me in the right direction, either here or contact me ingame on this char
thanks Travian - Free webbased MMO/RPG >>LINK<<< - If you get to 75 or more population ill give you some resources + help :D(uk6) |
|
|
|
|
Pages: 1 2 3 4 5 6 7 8 9 [10] 11 12 13 14 15 16 17 18 19 20 .. 26 :: one page |
First page | Previous page | Next page | Last page |