RunUO/Scripts/Settings.cs

26 lines
1.1 KiB
C#

namespace Server
{
public static class Settings
{
public static string S_ServerName = "Avatars Conquest";
public static int S_Port = 8008;
public static bool S_RestartOnCrash = false;
public static double S_ServerSaveMinutes = 30.0; // 5-240 minutes range
public static double S_ServerSaveWarningSeconds = 15;
public static bool S_SaveOnCharacterLogout = true;
public static int S_MaxAccountsPerIP = 3;
public static int S_DeleteDaysDelay = 3; // 1-14 range
public static int S_CorpseDecay = 10;
public static int S_BoneDecay = 1430;
public static double S_StatGain = 33.3; // 10-50 range
public static double S_StatGainDelay = 7.5; // 5-60 m inutes range
public static int S_SkillGain = 0; // 0-10 range
public static int S_MinGold = 500; // minimum is 0
public static int S_MaxGold = 1000; // maximum is 10,000
public static bool S_CanStealWhileHoldingThings = true;
public static bool S_MonstersSurprise = true;
public static bool S_DungeonTraps = true;
public static double S_FarmSpawnTimer = 15.0;
public static int S_HarvestRange = 2;
}
}