#W# Source and Scripts added. Added Scripts/Settings.cs to expose some basic tweak able settings.

This commit is contained in:
WarrentyExpired 2026-08-06 11:06:05 -04:00
parent b51c58f514
commit 3045c83799
3512 changed files with 627673 additions and 0 deletions

22
Scripts/Settings.cs Normal file
View file

@ -0,0 +1,22 @@
namespace Server
{
public static class Settings
{
public static string S_ServerName = "Avatars Conquest";
public static int S_Port = 8008;
public static double S_ServerSaveMinutes = 5.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;
}
}