Ryan00793

EveAI VB Example

Jan 7th, 2016
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.51 KB | None | 0 0
  1. Imports EveAI.Live
  2. Imports EveAI.Live.Account
  3.  
  4. Module Module1
  5.  
  6.     Sub Main()
  7.         Dim apiData As New AuthenticationData()
  8.         apiData.KeyID = 0 'Change these to correct info
  9.         apiData.VCode = ""
  10.         apiData.CharacterID = 0
  11.  
  12.         Dim characterListApi As New AccountCharactersApi()
  13.         characterListApi.AuthenticationData = apiData
  14.         characterListApi.UpdateData()
  15.         Dim chars As List(Of AccountCharacter)
  16.         chars = characterListApi.Data
  17.  
  18.     End Sub
  19.  
  20. End Module
Advertisement
Add Comment
Please, Sign In to add comment