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 :)";
|
2021-08-15 07:54:25 +02:00
|
|
|
|
public string GameMode { get; set; } = "";
|
2021-07-07 13:36:25 +02:00
|
|
|
|
public bool Allowlist { get; set; } = false;
|
|
|
|
|
public bool NpcsAllowed { get; set; } = true;
|
2021-09-29 14:34:22 +02:00
|
|
|
|
public bool ModsAllowed { get; set; } = false;
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|