RAGECOOP-V/Server/Settings.cs

17 lines
675 B
C#
Raw Normal View History

2021-07-07 13:36:25 +02:00
namespace CoopServer
{
public class Settings
{
public int ServerPort { get; set; } = 4499;
public int MaxPlayers { get; set; } = 16;
public string ServerName { get; set; } = "GTACoop:R server";
public string WelcomeMessage { get; set; } = "Welcome on this server :)";
public bool Allowlist { get; set; } = false;
public bool NpcsAllowed { get; set; } = true;
2021-07-12 01:08:52 +02:00
public string MasterServer { get; set; } = "https://gtacoopr.entenkoeniq.de/servers";
2021-07-07 13:36:25 +02:00
public bool AnnounceSelf { get; set; } = true;
2021-07-12 01:31:11 +02:00
public bool UPnP { get; set; } = true;
2021-07-07 13:36:25 +02:00
public bool DebugMode { get; set; } = false;
}
}