An open API service indexing awesome lists of open source software.

https://github.com/karashiiro/ffxivaddressinfo

A C# package with FFXIV data center addresses.
https://github.com/karashiiro/ffxivaddressinfo

csharp datacenter ffxiv server world

Last synced: 7 months ago
JSON representation

A C# package with FFXIV data center addresses.

Awesome Lists containing this project

README

          

# FFXIVAddressInfo
A C# package with FFXIV data center addresses, scraped from [Is XIV Up](https://is.xivup.com/adv).

## Installation
`Install-Package FFXIVAddressInfo` or other methods as described [here](https://www.nuget.org/packages/FFXIVAddressInfo/).

Consider setting your installed version to `1.0.*` to get automatic updates as server addresses change.

## Example

```csharp
Console.WriteLine(DataCenters.Aether.LobbyServer);

foreach (var address of DataCenters.Aether.Addresses)
{
Console.WriteLine(address.ToString());
}
```