Knowing a station's region

Amadeus

The Maestro
Staff member
I just added the functionality necessary to do this (and it will need to be added to the .NET wrapper).

However, as of verison 20071218.0231 you can do this:

Code:
echo ${EVE.Station[#].Region.Name}

Here are the patch notes that refer to this:

Code:
December 20, 2007 -- By Amadeus
[ISXEVE-20071218.0231]
* Added a new MEMBER to the 'eve' datatype:
  1.  Station[#]                    (station type)         [would be the ID# of any station]
* Added new MEMBERS to the 'station' datatype:
  1.  Name                          (string type)
  2.  Description                   (string type)
  3.  ID                            (int type)
  4.  TypeID                        (int type)
  5.  Type                          (string type)
  6.  OwnerID                       (int type)
  7.  Owner                         (string type)
  8.  OwnerTypeID                   (int type)
  9.  OwnerType                     (string type)
  10. SolarSystem                   (interstellar type)
  11. Constellation                 (interstellar type)
  12. Region                        (interstellar type)
  13. X                             (double type)
  14. Y                             (double type)
  15. Z                             (double type)
  16. Radius                        (double type)
  17. Security                      (int type)
  18. DockingCostPerVolume          (double type)
  19. MaxShipVolumeDockable         (double type)
  20. OfficeRentalCost              (int type)
  21. ReprocessingEfficiency        (double type)
  22. ReprocessingStationTakes      (double type)
  23. Conquerable                   (bool type)
  24. GetServices[<index:string>]   (int type)
* Added new METHOD to the 'station' datatype:
  1.  DoGetServices[<index:string>]

Also -- please note (and remember) that you can easily get a station object for the station you're currently sitting in by doing ${Me.Station}.
 
Top Bottom