From 5caf2faa24120f48522608c74b34c5ba4ce74ed5 Mon Sep 17 00:00:00 2001 From: mingchen Date: Thu, 7 Jun 2007 19:24:04 +0000 Subject: *Added basic support for EstateOwnerMessage **Added support for 'getinfo' method --- Common/OpenSim.Framework/Types/EstateSettings.cs | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'Common/OpenSim.Framework') diff --git a/Common/OpenSim.Framework/Types/EstateSettings.cs b/Common/OpenSim.Framework/Types/EstateSettings.cs index 1bd18d0..b34a1ac 100644 --- a/Common/OpenSim.Framework/Types/EstateSettings.cs +++ b/Common/OpenSim.Framework/Types/EstateSettings.cs @@ -37,6 +37,26 @@ namespace OpenSim.Framework.Types public class EstateSettings { //Settings to this island + public float billableFactor = (float)0.0; + public uint estateID = 0; + public uint parentEstateID = 0; + + public byte maxAgents = 40; + public float objectBonusFactor = (float)1.0; + + public int redirectGridX = 0; //?? + public int redirectGridY = 0; //?? + public uint regionFlags = 0; //?? + + public byte simAccess = 0; //?? + public float sunHour = 0; + + public float terrainRaiseLimit = 0; + public float terrainLowerLimit = 0; + + public bool useEstateSun = false; + public int pricePerMeter = 1; + public ushort regionWaterHeight = 20; public bool regionAllowTerraform = true; @@ -70,5 +90,8 @@ namespace OpenSim.Framework.Types // Terrain Default (Must be in F32 Format!) public string terrainFile = "default.r32"; public double terrainMultiplier = 60.0; + public float waterHeight = (float)20.0; + + } } -- cgit v1.1