From 169387b390649aa250481445dd95b9079bf2e75b Mon Sep 17 00:00:00 2001 From: "Justin Clark-Casey (justincc)" Date: Thu, 17 Nov 2011 23:53:25 +0000 Subject: [PATCH] Turn SellEnabled in the [EconomyModule] on by default. This only provides enough functionality to allow operations for no money (e.g. sell for $0). --- bin/OpenSim.ini.example | 16 +++++++--------- bin/OpenSimDefaults.ini | 15 +++++++++------ 2 files changed, 16 insertions(+), 15 deletions(-) diff --git a/bin/OpenSim.ini.example b/bin/OpenSim.ini.example index 253b24dbbf..e31d0f4244 100755 --- a/bin/OpenSim.ini.example +++ b/bin/OpenSim.ini.example @@ -532,19 +532,17 @@ [Economy] - ;; The economy module is not enabled by default and there is no easy, - ;; menu controlled way to do this. To enabled this module, insert - ;; economymodule = BetaGridLikeMoneyModule - ;; into the startup section (at the top of this file). - ;; Then configure the options below as needed. + ; The default economy module only implements just enough to allow free actions (transfer of objects, etc). + ; There is no intention to implement anything further in core OpenSimulator. + ; This functionality has to be provided by third party modules. - ;; Enables selling things for $0 - ; SellEnabled = "false" + ;; Enables selling things for $0. Default is true. + ; SellEnabled = true - ;; Money Unit fee to upload textures, animations etc + ;; Money Unit fee to upload textures, animations etc. Default is 0. ; PriceUpload = 0 - ;; Money Unit fee to create groups + ;; Money Unit fee to create groups. Default is 0. ; PriceGroupCreate = 0 diff --git a/bin/OpenSimDefaults.ini b/bin/OpenSimDefaults.ini index 2c5fbf5c90..e723330a47 100644 --- a/bin/OpenSimDefaults.ini +++ b/bin/OpenSimDefaults.ini @@ -1098,15 +1098,18 @@ [Economy] ; These economy values get used in the BetaGridLikeMoneyModule. - This module is for demonstration only - + ; The default economy module only implements just enough to allow free actions (transfer of objects, etc). + ; There is no intention to implement anything further in core OpenSimulator. + ; This functionality has to be provided by third party modules. - ; Enables selling things for $0 - SellEnabled = "false" + ;; Enables selling things for $0. Default is true. + SellEnabled = true - ; Money Unit fee to upload textures, animations etc - PriceUpload = 0 + ;; Money Unit fee to upload textures, animations etc. Default is 0. + PriceUpload = 0 - ; Money Unit fee to create groups - PriceGroupCreate = 0 + ;; Money Unit fee to create groups. Default is 0. + PriceGroupCreate = 0 ; We don't really know what the rest of these values do. These get sent to the client ; These taken from Agni at a Public Telehub. Change at your own risk.