/SecretLobby

A SCP:SL C# LobbyList API

Primary LanguageC#

Issues NuGet Codacy grade NugetDownloads

Secret Lobby

Secret Lobby is an API to get SCP:SL servers from the web api, and use them in C# Applications.

How to use

Secret Lobby is pretty simple to use.

Here's an example of how you would call it:

List<Server> list = LobbyList.GetLobbyList();
Console.WriteLine("Servers: " + list.Count);
Console.WriteLine("Top 20 in your area!");
for (int i = 0; i < 20; i++)
    Console.WriteLine("#" + (i + 1) + ": " + list[i].ServerInfo);
Console.Read();