Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System.Collections.Generic;
- using EveAI.Live;
- using EveAI.Live.Character;
- namespace Example_EveAI
- {
- class Program
- {
- static void Main(string[] args)
- {
- long KEY_ID = 0; //Change these to correct info.
- string V_CODE = "";
- long CHAR_ID = 0;
- AuthenticationData apiData = new AuthenticationData();
- apiData.KeyID = KEY_ID;
- apiData.VCode = V_CODE;
- apiData.CharacterID = CHAR_ID;
- CharacterContactListApi ContactApi = new CharacterContactListApi();
- ContactApi.AuthenticationData = apiData;
- ContactApi.UpdateData();
- List<EveAI.Live.Utility.Contact> contacts = ContactApi.Data;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment