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.
- Host: GitHub
- URL: https://github.com/karashiiro/ffxivaddressinfo
- Owner: karashiiro
- License: mit
- Created: 2023-09-25T01:54:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-05T03:32:01.000Z (about 2 years ago)
- Last Synced: 2025-01-19T16:33:49.385Z (9 months ago)
- Topics: csharp, datacenter, ffxiv, server, world
- Language: C#
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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());
}
```